From 65cd4dd639da3b995c7ac9c2778477cef80b336b Mon Sep 17 00:00:00 2001 From: Turiiya <34311583+ttytm@users.noreply.github.com> Date: Thu, 28 Mar 2024 21:47:08 +0100 Subject: [PATCH] update generated --- tree_sitter_v/bindings/node_types.v | 10 +- tree_sitter_v/src/grammar.json | 97 +- tree_sitter_v/src/node-types.json | 35 +- tree_sitter_v/src/parser.c | 474896 +++++++++++++------------ 4 files changed, 247230 insertions(+), 227808 deletions(-) diff --git a/tree_sitter_v/bindings/node_types.v b/tree_sitter_v/bindings/node_types.v index b03310fd..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 @@ -92,6 +93,7 @@ pub enum NodeType { label_definition label_reference labeled_statement + line_comment literal literal_attribute lock_expression @@ -139,6 +141,7 @@ pub enum NodeType { selector_expression send_statement shared_type + shebang short_element_list short_lambda signature @@ -171,7 +174,6 @@ pub enum NodeType { var_definition_list visibility_modifiers wrong_pointer_type - comment escape_sequence false_ float_literal @@ -182,7 +184,6 @@ pub enum NodeType { none_ pseudo_compile_time_identifier rune_literal - shebang true_ } @@ -341,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 @@ -402,6 +404,7 @@ const node_type_name_to_enum = { 'label_definition': NodeType.label_definition 'label_reference': NodeType.label_reference 'labeled_statement': NodeType.labeled_statement + 'line_comment': NodeType.line_comment 'literal': NodeType.literal 'literal_attribute': NodeType.literal_attribute 'lock_expression': NodeType.lock_expression @@ -449,6 +452,7 @@ const node_type_name_to_enum = { 'selector_expression': NodeType.selector_expression 'send_statement': NodeType.send_statement 'shared_type': NodeType.shared_type + 'shebang': NodeType.shebang 'short_element_list': NodeType.short_element_list 'short_lambda': NodeType.short_lambda 'signature': NodeType.signature @@ -481,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 - 'comment': NodeType.comment 'escape_sequence': NodeType.escape_sequence 'false': NodeType.false_ 'float_literal': NodeType.float_literal @@ -492,6 +495,5 @@ const node_type_name_to_enum = { 'none': NodeType.none_ 'pseudo_compile_time_identifier': NodeType.pseudo_compile_time_identifier 'rune_literal': NodeType.rune_literal - 'shebang': NodeType.shebang 'true': NodeType.true_ } diff --git a/tree_sitter_v/src/grammar.json b/tree_sitter_v/src/grammar.json index 09ba8108..35858416 100644 --- a/tree_sitter_v/src/grammar.json +++ b/tree_sitter_v/src/grammar.json @@ -120,31 +120,72 @@ ] }, "shebang": { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "\\#\\!([^\\\\\\r\\n]+)+" - } + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#!" + }, + { + "type": "PATTERN", + "value": ".*" + } + ] }, - "comment": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\/\\/[^\\n\\r]*" - }, - { - "type": "PATTERN", - "value": "\\/\\*(?:[^\\/][^\\*]+\\/\\*+[^\\/][^\\*]+)+(?:[^\\*][^\\/]+\\*+\\/[^\\*][^\\/]+)+\\/" - }, - { - "type": "PATTERN", - "value": "\\/\\*[^\\*]*\\*\\/" + "line_comment": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "PATTERN", + "value": ".*" + } + ] + }, + "block_comment": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "(?:[^/][^*]+\\/\\*+[^/][^*]+)+(?:[^*][^/]+\\*+\\/[^*][^/]+)+" + }, + { + "type": "PATTERN", + "value": "[^*]*\\*" + } + ] } - ] - } + }, + { + "type": "STRING", + "value": "/" + } + ] + }, + "comment": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "line_comment" + }, + { + "type": "SYMBOL", + "name": "block_comment" + } + ] }, "module_clause": { "type": "SEQ", @@ -8529,13 +8570,17 @@ } }, "extras": [ + { + "type": "PATTERN", + "value": "\\s" + }, { "type": "SYMBOL", - "name": "comment" + "name": "line_comment" }, { - "type": "PATTERN", - "value": "\\s" + "type": "SYMBOL", + "name": "block_comment" } ], "conflicts": [ diff --git a/tree_sitter_v/src/node-types.json b/tree_sitter_v/src/node-types.json index bab1d7bc..4427e58c 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, @@ -2220,6 +2225,11 @@ ] } }, + { + "type": "line_comment", + "named": true, + "fields": {} + }, { "type": "literal", "named": true, @@ -3383,6 +3393,11 @@ ] } }, + { + "type": "shebang", + "named": true, + "fields": {} + }, { "type": "short_element_list", "named": true, @@ -4346,6 +4361,10 @@ "type": "#", "named": false }, + { + "type": "#!", + "named": false + }, { "type": "#[", "named": false @@ -4454,6 +4473,14 @@ "type": "/", "named": false }, + { + "type": "/*", + "named": false + }, + { + "type": "//", + "named": false + }, { "type": "/=", "named": false @@ -4582,10 +4609,6 @@ "type": "chan", "named": false }, - { - "type": "comment", - "named": true - }, { "type": "const", "named": false @@ -4730,10 +4753,6 @@ "type": "shared", "named": false }, - { - "type": "shebang", - "named": true - }, { "type": "spawn", "named": false diff --git a/tree_sitter_v/src/parser.c b/tree_sitter_v/src/parser.c index 4057694d..29fccd8a 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 4717 -#define LARGE_STATE_COUNT 1623 -#define SYMBOL_COUNT 352 +#define STATE_COUNT 4758 +#define LARGE_STATE_COUNT 1649 +#define SYMBOL_COUNT 358 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 138 +#define TOKEN_COUNT 141 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 46 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -28,356 +28,362 @@ enum ts_symbol_identifiers { anon_sym_LF = 2, anon_sym_CR = 3, anon_sym_CR_LF = 4, - sym_shebang = 5, - sym_comment = 6, - anon_sym_module = 7, - anon_sym_import = 8, - anon_sym_SEMI = 9, - anon_sym_DOT = 10, - anon_sym_as = 11, - anon_sym_LBRACE = 12, - anon_sym_COMMA = 13, - anon_sym_RBRACE = 14, - anon_sym_const = 15, - anon_sym_LPAREN = 16, - anon_sym_RPAREN = 17, - anon_sym_EQ = 18, - anon_sym___global = 19, - anon_sym_type = 20, - anon_sym_PIPE = 21, - anon_sym_fn = 22, - anon_sym_PLUS = 23, - anon_sym_DASH = 24, - anon_sym_STAR = 25, - anon_sym_SLASH = 26, - anon_sym_PERCENT = 27, - anon_sym_LT = 28, - anon_sym_GT = 29, - anon_sym_EQ_EQ = 30, - anon_sym_BANG_EQ = 31, - anon_sym_LT_EQ = 32, - anon_sym_GT_EQ = 33, - anon_sym_DOT_DOT_DOT = 34, - anon_sym_LBRACK = 35, - anon_sym_LT2 = 36, - anon_sym_RBRACK = 37, - anon_sym_struct = 38, - anon_sym_union = 39, - anon_sym_pub = 40, - anon_sym_mut = 41, - anon_sym_COLON = 42, - anon_sym_enum = 43, - anon_sym_interface = 44, - anon_sym_PLUS_PLUS = 45, - anon_sym_DASH_DASH = 46, - anon_sym_QMARK = 47, - anon_sym_BANG = 48, - anon_sym_go = 49, - anon_sym_spawn = 50, - anon_sym_json_DOTdecode = 51, - anon_sym_LBRACK2 = 52, - anon_sym_TILDE = 53, - anon_sym_CARET = 54, - anon_sym_AMP = 55, - anon_sym_LT_DASH = 56, - anon_sym_LT_LT = 57, - anon_sym_GT_GT = 58, - anon_sym_GT_GT_GT = 59, - anon_sym_AMP_CARET = 60, - anon_sym_AMP_AMP = 61, - anon_sym_PIPE_PIPE = 62, - anon_sym_DOLLAR = 63, - anon_sym_or = 64, - sym_escape_sequence = 65, - sym_none = 66, - sym_true = 67, - sym_false = 68, - sym_nil = 69, - anon_sym_QMARK_DOT = 70, - anon_sym_POUND_LBRACK = 71, - anon_sym_if = 72, - anon_sym_else = 73, - anon_sym_DOLLARif = 74, - anon_sym_DOLLARelse = 75, - anon_sym_is = 76, - anon_sym_BANGis = 77, - anon_sym_in = 78, - anon_sym_BANGin = 79, - anon_sym_match = 80, - anon_sym_select = 81, - anon_sym_STAR_EQ = 82, - anon_sym_SLASH_EQ = 83, - anon_sym_PERCENT_EQ = 84, - anon_sym_LT_LT_EQ = 85, - anon_sym_GT_GT_EQ = 86, - anon_sym_GT_GT_GT_EQ = 87, - anon_sym_AMP_EQ = 88, - anon_sym_AMP_CARET_EQ = 89, - anon_sym_PLUS_EQ = 90, - anon_sym_DASH_EQ = 91, - anon_sym_PIPE_EQ = 92, - anon_sym_CARET_EQ = 93, - anon_sym_COLON_EQ = 94, - anon_sym_lock = 95, - anon_sym_rlock = 96, - anon_sym_unsafe = 97, - anon_sym_sql = 98, - sym_int_literal = 99, - sym_float_literal = 100, - sym_rune_literal = 101, - aux_sym_c_string_literal_token1 = 102, - aux_sym_c_string_literal_token2 = 103, - aux_sym_raw_string_literal_token1 = 104, - aux_sym_raw_string_literal_token2 = 105, - aux_sym_format_specifier_token1 = 106, - aux_sym_format_specifier_token2 = 107, - anon_sym_0 = 108, - sym_pseudo_compile_time_identifier = 109, - anon_sym_static = 110, - anon_sym_volatile = 111, - anon_sym_shared = 112, - anon_sym_map_LBRACK = 113, - anon_sym_chan = 114, - anon_sym_thread = 115, - anon_sym_atomic = 116, - anon_sym_assert = 117, - anon_sym_defer = 118, - anon_sym_goto = 119, - anon_sym_break = 120, - anon_sym_continue = 121, - anon_sym_return = 122, - anon_sym_DOLLARfor = 123, - anon_sym_for = 124, - anon_sym_DOT_DOT = 125, - anon_sym_POUND = 126, - aux_sym_hash_statement_token1 = 127, - anon_sym_asm = 128, - aux_sym__content_block_token1 = 129, - anon_sym_AT_LBRACK = 130, - sym___dolcbr = 131, - sym___double_quote = 132, - sym___single_quote = 133, - sym___c_double_quote = 134, - sym___c_single_quote = 135, - sym___r_double_quote = 136, - sym___r_single_quote = 137, - sym_source_file = 138, - sym_module_clause = 139, - sym_import_list = 140, - sym_import_declaration = 141, - sym_import_spec = 142, - sym_import_path = 143, - sym_import_name = 144, - sym_import_alias = 145, - sym_selective_import_list = 146, - sym_const_declaration = 147, - sym_const_definition = 148, - sym_global_var_declaration = 149, - sym_global_var_definition = 150, - sym__global_var_value = 151, - sym_type_declaration = 152, - sym__type_union_list = 153, - sym_function_declaration = 154, - sym_static_method_declaration = 155, - sym_static_receiver = 156, - sym__function_name = 157, - sym_overridable_operator = 158, - sym_receiver = 159, - sym_signature = 160, - sym_parameter_list = 161, - sym_parameter_declaration = 162, - sym_type_parameter_list = 163, - sym_type_parameter_declaration = 164, - sym_generic_parameters = 165, - sym_generic_parameter = 166, - sym_struct_declaration = 167, - sym__struct_body = 168, - sym_struct_field_scope = 169, - sym_struct_field_declaration = 170, - sym__struct_field_definition = 171, - sym_embedded_definition = 172, - sym_enum_declaration = 173, - sym_enum_backed_type = 174, - sym__enum_body = 175, - sym_enum_field_definition = 176, - sym_interface_declaration = 177, - sym__interface_body = 178, - sym_interface_method_definition = 179, - sym__expression = 180, - sym__expression_without_blocks = 181, - sym__expression_with_blocks = 182, - sym_strictly_expression_list = 183, - sym_inc_expression = 184, - sym_dec_expression = 185, - sym_or_block_expression = 186, - sym_option_propagation_expression = 187, - sym_result_propagation_expression = 188, - sym_anon_struct_value_expression = 189, - sym_go_expression = 190, - sym_spawn_expression = 191, - sym_parenthesized_expression = 192, - sym_call_expression = 193, - sym_type_parameters = 194, - sym_argument_list = 195, - sym_short_lambda = 196, - sym_argument = 197, - sym_special_argument_list = 198, - sym_type_initializer = 199, - sym_type_initializer_body = 200, - sym_element_list = 201, - sym_short_element_list = 202, - sym_keyed_element = 203, - sym_function_literal = 204, - sym_capture_list = 205, - sym_capture = 206, - sym_reference_expression = 207, - sym_type_reference_expression = 208, - sym_unary_expression = 209, - sym_receive_expression = 210, - sym_binary_expression = 211, - sym_as_type_cast_expression = 212, - sym_compile_time_selector_expression = 213, - sym_or_block = 214, - sym__max_group = 215, - sym_literal = 216, - sym_spread_expression = 217, - sym_map_init_expression = 218, - sym_map_keyed_element = 219, - sym_array_creation = 220, - sym_fixed_array_creation = 221, - sym_selector_expression = 222, - sym_index_expression = 223, - sym_slice_expression = 224, - sym_if_expression = 225, - sym_else_branch = 226, - sym_compile_time_if_expression = 227, - sym_is_expression = 228, - sym_not_is_expression = 229, - sym_in_expression = 230, - sym_not_in_expression = 231, - sym_enum_fetch = 232, - sym_match_expression = 233, - sym_match_arms = 234, - sym_match_arm = 235, - sym_match_expression_list = 236, - sym_match_arm_type = 237, - sym_match_else_arm_clause = 238, - sym_select_expression = 239, - sym_select_arm = 240, - sym_select_arm_statement = 241, - sym__select_arm_assignment_statement = 242, - sym_select_var_declaration = 243, - sym_select_else_arn_clause = 244, - sym_lock_expression = 245, - sym_unsafe_expression = 246, - sym_sql_expression = 247, - sym_c_string_literal = 248, - sym_raw_string_literal = 249, - sym_interpreted_string_literal = 250, - sym_string_interpolation = 251, - sym_format_specifier = 252, - sym_visibility_modifiers = 253, - sym_mutability_modifiers = 254, - sym_mutable_identifier = 255, - sym_mutable_expression = 256, - sym_identifier_list = 257, - sym_expression_list = 258, - sym_expression_without_blocks_list = 259, - sym_plain_type = 260, - sym__plain_type_without_special = 261, - sym_anon_struct_type = 262, - sym_multi_return_type = 263, - sym_result_type = 264, - sym_option_type = 265, - sym_qualified_type = 266, - sym_fixed_array_type = 267, - sym_array_type = 268, - sym_pointer_type = 269, - sym_wrong_pointer_type = 270, - sym_map_type = 271, - sym_channel_type = 272, - sym_shared_type = 273, - sym_thread_type = 274, - sym_atomic_type = 275, - sym_generic_type = 276, - sym_function_type = 277, - sym__statement_list = 278, - sym__statement = 279, - sym_simple_statement = 280, - sym_assert_statement = 281, - sym_append_statement = 282, - sym_send_statement = 283, - sym_var_declaration = 284, - sym_var_definition_list = 285, - sym_var_definition = 286, - sym_assignment_statement = 287, - sym_block = 288, - sym_defer_statement = 289, - sym_label_reference = 290, - sym_goto_statement = 291, - sym_break_statement = 292, - sym_continue_statement = 293, - sym_return_statement = 294, - sym_label_definition = 295, - sym_labeled_statement = 296, - sym_empty_labeled_statement = 297, - sym_compile_time_for_statement = 298, - sym_for_statement = 299, - sym_range_clause = 300, - sym_for_clause = 301, - sym__definite_range = 302, - sym_range = 303, - sym_hash_statement = 304, - sym_asm_statement = 305, - sym__content_block = 306, - sym_attributes = 307, - sym_attribute = 308, - sym_attribute_expression = 309, - sym_if_attribute = 310, - sym__plain_attribute = 311, - sym_literal_attribute = 312, - sym_value_attribute = 313, - sym_key_value_attribute = 314, - sym___rcbr = 315, - aux_sym_source_file_repeat1 = 316, - aux_sym_import_list_repeat1 = 317, - aux_sym_import_path_repeat1 = 318, - aux_sym_selective_import_list_repeat1 = 319, - aux_sym_const_declaration_repeat1 = 320, - aux_sym_global_var_declaration_repeat1 = 321, - aux_sym__type_union_list_repeat1 = 322, - aux_sym_parameter_list_repeat1 = 323, - aux_sym_type_parameter_list_repeat1 = 324, - aux_sym_generic_parameters_repeat1 = 325, - aux_sym__struct_body_repeat1 = 326, - aux_sym__enum_body_repeat1 = 327, - aux_sym__interface_body_repeat1 = 328, - aux_sym_strictly_expression_list_repeat1 = 329, - aux_sym_type_parameters_repeat1 = 330, - aux_sym_argument_list_repeat1 = 331, - aux_sym_short_lambda_repeat1 = 332, - aux_sym_element_list_repeat1 = 333, - aux_sym_short_element_list_repeat1 = 334, - aux_sym_capture_list_repeat1 = 335, - aux_sym_map_init_expression_repeat1 = 336, - aux_sym__array_repeat1 = 337, - aux_sym_match_arms_repeat1 = 338, - aux_sym_match_expression_list_repeat1 = 339, - aux_sym_select_expression_repeat1 = 340, - aux_sym_c_string_literal_repeat1 = 341, - aux_sym_c_string_literal_repeat2 = 342, - aux_sym_raw_string_literal_repeat1 = 343, - aux_sym_raw_string_literal_repeat2 = 344, - aux_sym_string_interpolation_repeat1 = 345, - aux_sym_identifier_list_repeat1 = 346, - aux_sym_expression_without_blocks_list_repeat1 = 347, - aux_sym__statement_list_repeat1 = 348, - aux_sym_var_definition_list_repeat1 = 349, - aux_sym_attributes_repeat1 = 350, - aux_sym_attribute_repeat1 = 351, - alias_sym_element = 352, - alias_sym_field_name = 353, - alias_sym_interpolation_expression = 354, + anon_sym_POUND_BANG = 5, + aux_sym_shebang_token1 = 6, + anon_sym_SLASH_SLASH = 7, + anon_sym_SLASH_STAR = 8, + aux_sym_block_comment_token1 = 9, + anon_sym_SLASH = 10, + anon_sym_module = 11, + anon_sym_import = 12, + anon_sym_SEMI = 13, + anon_sym_DOT = 14, + anon_sym_as = 15, + anon_sym_LBRACE = 16, + anon_sym_COMMA = 17, + anon_sym_RBRACE = 18, + anon_sym_const = 19, + anon_sym_LPAREN = 20, + anon_sym_RPAREN = 21, + anon_sym_EQ = 22, + anon_sym___global = 23, + anon_sym_type = 24, + anon_sym_PIPE = 25, + anon_sym_fn = 26, + anon_sym_PLUS = 27, + anon_sym_DASH = 28, + anon_sym_STAR = 29, + anon_sym_PERCENT = 30, + anon_sym_LT = 31, + anon_sym_GT = 32, + anon_sym_EQ_EQ = 33, + anon_sym_BANG_EQ = 34, + anon_sym_LT_EQ = 35, + anon_sym_GT_EQ = 36, + anon_sym_DOT_DOT_DOT = 37, + anon_sym_LBRACK = 38, + anon_sym_LT2 = 39, + anon_sym_RBRACK = 40, + anon_sym_struct = 41, + anon_sym_union = 42, + anon_sym_pub = 43, + anon_sym_mut = 44, + anon_sym_COLON = 45, + anon_sym_enum = 46, + anon_sym_interface = 47, + anon_sym_PLUS_PLUS = 48, + anon_sym_DASH_DASH = 49, + anon_sym_QMARK = 50, + anon_sym_BANG = 51, + anon_sym_go = 52, + anon_sym_spawn = 53, + anon_sym_json_DOTdecode = 54, + anon_sym_LBRACK2 = 55, + anon_sym_TILDE = 56, + anon_sym_CARET = 57, + anon_sym_AMP = 58, + anon_sym_LT_DASH = 59, + anon_sym_LT_LT = 60, + anon_sym_GT_GT = 61, + anon_sym_GT_GT_GT = 62, + anon_sym_AMP_CARET = 63, + anon_sym_AMP_AMP = 64, + anon_sym_PIPE_PIPE = 65, + anon_sym_DOLLAR = 66, + anon_sym_or = 67, + sym_escape_sequence = 68, + sym_none = 69, + sym_true = 70, + sym_false = 71, + sym_nil = 72, + anon_sym_QMARK_DOT = 73, + anon_sym_POUND_LBRACK = 74, + anon_sym_if = 75, + anon_sym_else = 76, + anon_sym_DOLLARif = 77, + anon_sym_DOLLARelse = 78, + anon_sym_is = 79, + anon_sym_BANGis = 80, + anon_sym_in = 81, + anon_sym_BANGin = 82, + anon_sym_match = 83, + anon_sym_select = 84, + anon_sym_STAR_EQ = 85, + anon_sym_SLASH_EQ = 86, + anon_sym_PERCENT_EQ = 87, + anon_sym_LT_LT_EQ = 88, + anon_sym_GT_GT_EQ = 89, + anon_sym_GT_GT_GT_EQ = 90, + anon_sym_AMP_EQ = 91, + anon_sym_AMP_CARET_EQ = 92, + anon_sym_PLUS_EQ = 93, + anon_sym_DASH_EQ = 94, + anon_sym_PIPE_EQ = 95, + anon_sym_CARET_EQ = 96, + anon_sym_COLON_EQ = 97, + anon_sym_lock = 98, + anon_sym_rlock = 99, + anon_sym_unsafe = 100, + anon_sym_sql = 101, + sym_int_literal = 102, + sym_float_literal = 103, + sym_rune_literal = 104, + aux_sym_c_string_literal_token1 = 105, + aux_sym_c_string_literal_token2 = 106, + aux_sym_raw_string_literal_token1 = 107, + aux_sym_raw_string_literal_token2 = 108, + aux_sym_format_specifier_token1 = 109, + aux_sym_format_specifier_token2 = 110, + anon_sym_0 = 111, + sym_pseudo_compile_time_identifier = 112, + anon_sym_static = 113, + anon_sym_volatile = 114, + anon_sym_shared = 115, + anon_sym_map_LBRACK = 116, + anon_sym_chan = 117, + anon_sym_thread = 118, + anon_sym_atomic = 119, + anon_sym_assert = 120, + anon_sym_defer = 121, + anon_sym_goto = 122, + anon_sym_break = 123, + anon_sym_continue = 124, + anon_sym_return = 125, + anon_sym_DOLLARfor = 126, + anon_sym_for = 127, + anon_sym_DOT_DOT = 128, + anon_sym_POUND = 129, + aux_sym_hash_statement_token1 = 130, + anon_sym_asm = 131, + aux_sym__content_block_token1 = 132, + anon_sym_AT_LBRACK = 133, + sym___dolcbr = 134, + sym___double_quote = 135, + sym___single_quote = 136, + sym___c_double_quote = 137, + sym___c_single_quote = 138, + sym___r_double_quote = 139, + sym___r_single_quote = 140, + sym_source_file = 141, + sym_shebang = 142, + sym_line_comment = 143, + sym_block_comment = 144, + sym_module_clause = 145, + sym_import_list = 146, + sym_import_declaration = 147, + sym_import_spec = 148, + sym_import_path = 149, + sym_import_name = 150, + sym_import_alias = 151, + sym_selective_import_list = 152, + sym_const_declaration = 153, + sym_const_definition = 154, + sym_global_var_declaration = 155, + sym_global_var_definition = 156, + sym__global_var_value = 157, + sym_type_declaration = 158, + sym__type_union_list = 159, + sym_function_declaration = 160, + sym_static_method_declaration = 161, + sym_static_receiver = 162, + sym__function_name = 163, + sym_overridable_operator = 164, + sym_receiver = 165, + sym_signature = 166, + sym_parameter_list = 167, + sym_parameter_declaration = 168, + sym_type_parameter_list = 169, + sym_type_parameter_declaration = 170, + sym_generic_parameters = 171, + sym_generic_parameter = 172, + sym_struct_declaration = 173, + sym__struct_body = 174, + sym_struct_field_scope = 175, + sym_struct_field_declaration = 176, + sym__struct_field_definition = 177, + sym_embedded_definition = 178, + sym_enum_declaration = 179, + sym_enum_backed_type = 180, + sym__enum_body = 181, + sym_enum_field_definition = 182, + sym_interface_declaration = 183, + sym__interface_body = 184, + sym_interface_method_definition = 185, + sym__expression = 186, + sym__expression_without_blocks = 187, + sym__expression_with_blocks = 188, + sym_strictly_expression_list = 189, + sym_inc_expression = 190, + sym_dec_expression = 191, + sym_or_block_expression = 192, + sym_option_propagation_expression = 193, + sym_result_propagation_expression = 194, + sym_anon_struct_value_expression = 195, + sym_go_expression = 196, + sym_spawn_expression = 197, + sym_parenthesized_expression = 198, + sym_call_expression = 199, + sym_type_parameters = 200, + sym_argument_list = 201, + sym_short_lambda = 202, + sym_argument = 203, + sym_special_argument_list = 204, + sym_type_initializer = 205, + sym_type_initializer_body = 206, + sym_element_list = 207, + sym_short_element_list = 208, + sym_keyed_element = 209, + sym_function_literal = 210, + sym_capture_list = 211, + sym_capture = 212, + sym_reference_expression = 213, + sym_type_reference_expression = 214, + sym_unary_expression = 215, + sym_receive_expression = 216, + sym_binary_expression = 217, + sym_as_type_cast_expression = 218, + sym_compile_time_selector_expression = 219, + sym_or_block = 220, + sym__max_group = 221, + sym_literal = 222, + sym_spread_expression = 223, + sym_map_init_expression = 224, + sym_map_keyed_element = 225, + sym_array_creation = 226, + sym_fixed_array_creation = 227, + sym_selector_expression = 228, + sym_index_expression = 229, + sym_slice_expression = 230, + sym_if_expression = 231, + sym_else_branch = 232, + sym_compile_time_if_expression = 233, + sym_is_expression = 234, + sym_not_is_expression = 235, + sym_in_expression = 236, + sym_not_in_expression = 237, + sym_enum_fetch = 238, + sym_match_expression = 239, + sym_match_arms = 240, + sym_match_arm = 241, + sym_match_expression_list = 242, + sym_match_arm_type = 243, + sym_match_else_arm_clause = 244, + sym_select_expression = 245, + sym_select_arm = 246, + sym_select_arm_statement = 247, + sym__select_arm_assignment_statement = 248, + sym_select_var_declaration = 249, + sym_select_else_arn_clause = 250, + sym_lock_expression = 251, + sym_unsafe_expression = 252, + sym_sql_expression = 253, + sym_c_string_literal = 254, + sym_raw_string_literal = 255, + sym_interpreted_string_literal = 256, + sym_string_interpolation = 257, + sym_format_specifier = 258, + sym_visibility_modifiers = 259, + sym_mutability_modifiers = 260, + sym_mutable_identifier = 261, + sym_mutable_expression = 262, + sym_identifier_list = 263, + sym_expression_list = 264, + sym_expression_without_blocks_list = 265, + sym_plain_type = 266, + sym__plain_type_without_special = 267, + sym_anon_struct_type = 268, + sym_multi_return_type = 269, + sym_result_type = 270, + sym_option_type = 271, + sym_qualified_type = 272, + sym_fixed_array_type = 273, + sym_array_type = 274, + sym_pointer_type = 275, + sym_wrong_pointer_type = 276, + sym_map_type = 277, + sym_channel_type = 278, + sym_shared_type = 279, + sym_thread_type = 280, + sym_atomic_type = 281, + sym_generic_type = 282, + sym_function_type = 283, + sym__statement_list = 284, + sym__statement = 285, + sym_simple_statement = 286, + sym_assert_statement = 287, + sym_append_statement = 288, + sym_send_statement = 289, + sym_var_declaration = 290, + sym_var_definition_list = 291, + sym_var_definition = 292, + sym_assignment_statement = 293, + sym_block = 294, + sym_defer_statement = 295, + sym_label_reference = 296, + sym_goto_statement = 297, + sym_break_statement = 298, + sym_continue_statement = 299, + sym_return_statement = 300, + sym_label_definition = 301, + sym_labeled_statement = 302, + sym_empty_labeled_statement = 303, + sym_compile_time_for_statement = 304, + sym_for_statement = 305, + sym_range_clause = 306, + sym_for_clause = 307, + sym__definite_range = 308, + sym_range = 309, + sym_hash_statement = 310, + sym_asm_statement = 311, + sym__content_block = 312, + sym_attributes = 313, + sym_attribute = 314, + sym_attribute_expression = 315, + sym_if_attribute = 316, + sym__plain_attribute = 317, + sym_literal_attribute = 318, + sym_value_attribute = 319, + sym_key_value_attribute = 320, + sym___rcbr = 321, + aux_sym_source_file_repeat1 = 322, + aux_sym_import_list_repeat1 = 323, + aux_sym_import_path_repeat1 = 324, + aux_sym_selective_import_list_repeat1 = 325, + aux_sym_const_declaration_repeat1 = 326, + aux_sym_global_var_declaration_repeat1 = 327, + aux_sym__type_union_list_repeat1 = 328, + aux_sym_parameter_list_repeat1 = 329, + aux_sym_type_parameter_list_repeat1 = 330, + aux_sym_generic_parameters_repeat1 = 331, + aux_sym__struct_body_repeat1 = 332, + aux_sym__enum_body_repeat1 = 333, + aux_sym__interface_body_repeat1 = 334, + aux_sym_strictly_expression_list_repeat1 = 335, + aux_sym_type_parameters_repeat1 = 336, + aux_sym_argument_list_repeat1 = 337, + aux_sym_short_lambda_repeat1 = 338, + aux_sym_element_list_repeat1 = 339, + aux_sym_short_element_list_repeat1 = 340, + aux_sym_capture_list_repeat1 = 341, + aux_sym_map_init_expression_repeat1 = 342, + aux_sym__array_repeat1 = 343, + aux_sym_match_arms_repeat1 = 344, + aux_sym_match_expression_list_repeat1 = 345, + aux_sym_select_expression_repeat1 = 346, + aux_sym_c_string_literal_repeat1 = 347, + aux_sym_c_string_literal_repeat2 = 348, + aux_sym_raw_string_literal_repeat1 = 349, + aux_sym_raw_string_literal_repeat2 = 350, + aux_sym_string_interpolation_repeat1 = 351, + aux_sym_identifier_list_repeat1 = 352, + aux_sym_expression_without_blocks_list_repeat1 = 353, + aux_sym__statement_list_repeat1 = 354, + aux_sym_var_definition_list_repeat1 = 355, + aux_sym_attributes_repeat1 = 356, + aux_sym_attribute_repeat1 = 357, + alias_sym_element = 358, + alias_sym_field_name = 359, + alias_sym_interpolation_expression = 360, }; static const char * const ts_symbol_names[] = { @@ -386,8 +392,12 @@ static const char * const ts_symbol_names[] = { [anon_sym_LF] = "\n", [anon_sym_CR] = "\r", [anon_sym_CR_LF] = "\r\n", - [sym_shebang] = "shebang", - [sym_comment] = "comment", + [anon_sym_POUND_BANG] = "#!", + [aux_sym_shebang_token1] = "shebang_token1", + [anon_sym_SLASH_SLASH] = "//", + [anon_sym_SLASH_STAR] = "/*", + [aux_sym_block_comment_token1] = "block_comment_token1", + [anon_sym_SLASH] = "/", [anon_sym_module] = "module", [anon_sym_import] = "import", [anon_sym_SEMI] = ";", @@ -407,7 +417,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_PLUS] = "+", [anon_sym_DASH] = "-", [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", [anon_sym_PERCENT] = "%", [anon_sym_LT] = "<", [anon_sym_GT] = ">", @@ -520,6 +529,9 @@ static const char * const ts_symbol_names[] = { [sym___r_double_quote] = "__r_double_quote", [sym___r_single_quote] = "__r_single_quote", [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", @@ -744,8 +756,12 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LF] = anon_sym_LF, [anon_sym_CR] = anon_sym_CR, [anon_sym_CR_LF] = anon_sym_CR_LF, - [sym_shebang] = sym_shebang, - [sym_comment] = sym_comment, + [anon_sym_POUND_BANG] = anon_sym_POUND_BANG, + [aux_sym_shebang_token1] = aux_sym_shebang_token1, + [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, + [anon_sym_SLASH_STAR] = anon_sym_SLASH_STAR, + [aux_sym_block_comment_token1] = aux_sym_block_comment_token1, + [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_module] = anon_sym_module, [anon_sym_import] = anon_sym_import, [anon_sym_SEMI] = anon_sym_SEMI, @@ -765,7 +781,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, @@ -878,6 +893,9 @@ static const TSSymbol ts_symbol_map[] = { [sym___r_double_quote] = sym___r_double_quote, [sym___r_single_quote] = sym___r_single_quote, [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, @@ -1117,13 +1135,29 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_shebang] = { + [anon_sym_POUND_BANG] = { .visible = true, - .named = true, + .named = false, + }, + [aux_sym_shebang_token1] = { + .visible = false, + .named = false, }, - [sym_comment] = { + [anon_sym_SLASH_SLASH] = { .visible = true, - .named = true, + .named = false, + }, + [anon_sym_SLASH_STAR] = { + .visible = true, + .named = false, + }, + [aux_sym_block_comment_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, }, [anon_sym_module] = { .visible = true, @@ -1201,10 +1235,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, [anon_sym_PERCENT] = { .visible = true, .named = false, @@ -1653,6 +1683,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_shebang] = { + .visible = true, + .named = true, + }, + [sym_line_comment] = { + .visible = true, + .named = true, + }, + [sym_block_comment] = { + .visible = true, + .named = true, + }, [sym_module_clause] = { .visible = true, .named = true, @@ -2646,8 +2688,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [23] = {.index = 33, .length = 2}, [24] = {.index = 35, .length = 2}, [25] = {.index = 37, .length = 1}, - [27] = {.index = 38, .length = 2}, - [28] = {.index = 40, .length = 3}, + [27] = {.index = 38, .length = 3}, + [28] = {.index = 41, .length = 2}, [29] = {.index = 43, .length = 1}, [30] = {.index = 44, .length = 2}, [31] = {.index = 46, .length = 2}, @@ -2833,12 +2875,12 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [37] = {field_body, 2}, [38] = - {field_field, 2}, - {field_operand, 0}, - [40] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, + [41] = + {field_field, 2}, + {field_operand, 0}, [43] = {field_operator, 0}, [44] = @@ -3428,7 +3470,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [62] = 62, [63] = 63, [64] = 64, - [65] = 63, + [65] = 64, [66] = 66, [67] = 67, [68] = 68, @@ -3475,66 +3517,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [109] = 108, [110] = 110, [111] = 111, - [112] = 110, + [112] = 111, [113] = 111, [114] = 110, [115] = 115, - [116] = 111, - [117] = 115, - [118] = 110, + [116] = 115, + [117] = 110, + [118] = 111, [119] = 110, - [120] = 111, + [120] = 115, [121] = 115, [122] = 110, - [123] = 110, + [123] = 115, [124] = 110, [125] = 115, - [126] = 115, + [126] = 111, [127] = 115, - [128] = 111, + [128] = 110, [129] = 111, [130] = 111, [131] = 115, - [132] = 110, + [132] = 111, [133] = 110, - [134] = 111, - [135] = 115, - [136] = 110, - [137] = 111, - [138] = 111, - [139] = 115, - [140] = 115, - [141] = 115, - [142] = 110, - [143] = 111, - [144] = 115, - [145] = 111, - [146] = 110, - [147] = 111, + [134] = 115, + [135] = 110, + [136] = 115, + [137] = 115, + [138] = 110, + [139] = 111, + [140] = 111, + [141] = 110, + [142] = 111, + [143] = 110, + [144] = 111, + [145] = 110, + [146] = 111, + [147] = 115, [148] = 115, [149] = 149, [150] = 150, [151] = 151, - [152] = 151, - [153] = 150, - [154] = 151, + [152] = 150, + [153] = 151, + [154] = 150, [155] = 151, - [156] = 150, - [157] = 151, + [156] = 151, + [157] = 150, [158] = 150, [159] = 151, [160] = 151, [161] = 151, - [162] = 150, + [162] = 151, [163] = 150, - [164] = 151, + [164] = 150, [165] = 150, - [166] = 150, + [166] = 151, [167] = 151, [168] = 150, [169] = 150, [170] = 150, - [171] = 151, + [171] = 150, [172] = 151, [173] = 150, [174] = 151, @@ -3542,25 +3584,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [176] = 176, [177] = 177, [178] = 177, - [179] = 177, - [180] = 180, - [181] = 181, + [179] = 179, + [180] = 177, + [181] = 177, [182] = 177, [183] = 177, [184] = 177, [185] = 177, - [186] = 177, + [186] = 186, [187] = 177, [188] = 177, [189] = 177, [190] = 177, [191] = 177, [192] = 192, - [193] = 192, + [193] = 193, [194] = 192, [195] = 192, [196] = 192, - [197] = 197, + [197] = 192, [198] = 192, [199] = 192, [200] = 192, @@ -3568,249 +3610,249 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [202] = 192, [203] = 192, [204] = 192, - [205] = 68, - [206] = 70, - [207] = 66, + [205] = 205, + [206] = 66, + [207] = 207, [208] = 71, - [209] = 209, + [209] = 70, [210] = 210, [211] = 69, - [212] = 212, - [213] = 67, - [214] = 214, + [212] = 68, + [213] = 213, + [214] = 67, [215] = 215, [216] = 216, [217] = 217, [218] = 218, - [219] = 218, - [220] = 220, - [221] = 220, - [222] = 222, - [223] = 218, - [224] = 218, - [225] = 220, - [226] = 222, - [227] = 222, - [228] = 222, - [229] = 222, - [230] = 217, + [219] = 219, + [220] = 219, + [221] = 219, + [222] = 219, + [223] = 219, + [224] = 224, + [225] = 225, + [226] = 219, + [227] = 219, + [228] = 219, + [229] = 229, + [230] = 219, [231] = 218, - [232] = 220, - [233] = 220, - [234] = 220, - [235] = 235, - [236] = 236, - [237] = 222, - [238] = 218, - [239] = 239, - [240] = 240, - [241] = 241, - [242] = 242, - [243] = 243, - [244] = 218, - [245] = 220, - [246] = 239, - [247] = 222, - [248] = 248, - [249] = 222, - [250] = 222, - [251] = 222, - [252] = 222, - [253] = 218, - [254] = 222, - [255] = 222, - [256] = 222, - [257] = 220, - [258] = 243, - [259] = 218, - [260] = 220, + [232] = 219, + [233] = 229, + [234] = 219, + [235] = 219, + [236] = 229, + [237] = 218, + [238] = 224, + [239] = 218, + [240] = 219, + [241] = 218, + [242] = 219, + [243] = 229, + [244] = 224, + [245] = 224, + [246] = 219, + [247] = 218, + [248] = 224, + [249] = 229, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 224, + [256] = 256, + [257] = 257, + [258] = 219, + [259] = 219, + [260] = 260, [261] = 218, - [262] = 222, - [263] = 220, - [264] = 222, - [265] = 222, - [266] = 222, - [267] = 243, - [268] = 222, - [269] = 243, - [270] = 243, - [271] = 243, - [272] = 218, - [273] = 220, - [274] = 243, - [275] = 222, - [276] = 218, - [277] = 220, - [278] = 222, - [279] = 243, - [280] = 243, - [281] = 243, - [282] = 282, - [283] = 243, - [284] = 284, - [285] = 243, - [286] = 222, - [287] = 243, - [288] = 284, - [289] = 289, - [290] = 290, - [291] = 218, - [292] = 220, - [293] = 222, - [294] = 294, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 298, + [262] = 219, + [263] = 263, + [264] = 229, + [265] = 224, + [266] = 224, + [267] = 218, + [268] = 229, + [269] = 269, + [270] = 229, + [271] = 224, + [272] = 263, + [273] = 219, + [274] = 219, + [275] = 275, + [276] = 225, + [277] = 277, + [278] = 224, + [279] = 224, + [280] = 280, + [281] = 219, + [282] = 229, + [283] = 283, + [284] = 218, + [285] = 218, + [286] = 219, + [287] = 218, + [288] = 229, + [289] = 229, + [290] = 224, + [291] = 217, + [292] = 224, + [293] = 293, + [294] = 229, + [295] = 218, + [296] = 218, + [297] = 219, + [298] = 229, [299] = 299, - [300] = 300, + [300] = 299, [301] = 301, - [302] = 302, - [303] = 300, + [302] = 299, + [303] = 303, [304] = 304, [305] = 305, [306] = 306, - [307] = 302, - [308] = 301, + [307] = 304, + [308] = 303, [309] = 306, - [310] = 306, + [310] = 299, [311] = 299, - [312] = 301, - [313] = 302, - [314] = 306, - [315] = 301, - [316] = 306, - [317] = 301, - [318] = 318, - [319] = 302, - [320] = 320, - [321] = 306, - [322] = 302, + [312] = 303, + [313] = 299, + [314] = 299, + [315] = 299, + [316] = 299, + [317] = 299, + [318] = 299, + [319] = 299, + [320] = 299, + [321] = 304, + [322] = 305, [323] = 306, - [324] = 301, - [325] = 302, - [326] = 306, - [327] = 327, - [328] = 301, - [329] = 304, - [330] = 300, - [331] = 306, - [332] = 302, + [324] = 299, + [325] = 299, + [326] = 305, + [327] = 304, + [328] = 306, + [329] = 303, + [330] = 304, + [331] = 299, + [332] = 299, [333] = 306, - [334] = 301, + [334] = 304, [335] = 306, - [336] = 301, - [337] = 302, - [338] = 302, + [336] = 299, + [337] = 303, + [338] = 338, [339] = 306, - [340] = 301, - [341] = 299, - [342] = 302, - [343] = 320, - [344] = 344, - [345] = 302, - [346] = 306, - [347] = 299, - [348] = 320, - [349] = 304, - [350] = 300, + [340] = 304, + [341] = 305, + [342] = 306, + [343] = 304, + [344] = 304, + [345] = 299, + [346] = 301, + [347] = 303, + [348] = 299, + [349] = 301, + [350] = 350, [351] = 306, - [352] = 299, - [353] = 306, - [354] = 301, - [355] = 320, - [356] = 320, - [357] = 306, + [352] = 304, + [353] = 303, + [354] = 354, + [355] = 299, + [356] = 305, + [357] = 303, [358] = 358, - [359] = 302, - [360] = 320, - [361] = 344, - [362] = 302, - [363] = 306, - [364] = 299, - [365] = 299, + [359] = 359, + [360] = 305, + [361] = 361, + [362] = 303, + [363] = 303, + [364] = 364, + [365] = 305, [366] = 306, - [367] = 320, - [368] = 299, - [369] = 320, - [370] = 306, - [371] = 304, - [372] = 302, - [373] = 320, - [374] = 299, - [375] = 306, - [376] = 320, - [377] = 301, - [378] = 299, - [379] = 379, - [380] = 306, - [381] = 320, - [382] = 302, - [383] = 299, - [384] = 306, - [385] = 320, - [386] = 299, - [387] = 306, - [388] = 388, - [389] = 389, + [367] = 304, + [368] = 301, + [369] = 350, + [370] = 299, + [371] = 305, + [372] = 350, + [373] = 305, + [374] = 303, + [375] = 375, + [376] = 306, + [377] = 377, + [378] = 304, + [379] = 305, + [380] = 299, + [381] = 303, + [382] = 305, + [383] = 303, + [384] = 358, + [385] = 303, + [386] = 350, + [387] = 305, + [388] = 303, + [389] = 306, [390] = 390, [391] = 391, - [392] = 390, - [393] = 393, - [394] = 394, - [395] = 395, - [396] = 396, + [392] = 391, + [393] = 391, + [394] = 391, + [395] = 391, + [396] = 391, [397] = 391, - [398] = 398, - [399] = 399, + [398] = 358, + [399] = 391, [400] = 391, - [401] = 398, - [402] = 391, - [403] = 390, + [401] = 401, + [402] = 402, + [403] = 391, [404] = 404, [405] = 391, - [406] = 391, + [406] = 406, [407] = 407, - [408] = 395, - [409] = 395, - [410] = 396, - [411] = 391, - [412] = 399, - [413] = 391, - [414] = 391, + [408] = 408, + [409] = 391, + [410] = 410, + [411] = 390, + [412] = 404, + [413] = 410, + [414] = 414, [415] = 415, - [416] = 416, - [417] = 390, + [416] = 410, + [417] = 410, [418] = 391, [419] = 419, - [420] = 391, - [421] = 395, - [422] = 344, - [423] = 423, - [424] = 391, - [425] = 391, - [426] = 390, - [427] = 391, - [428] = 428, - [429] = 391, + [420] = 404, + [421] = 390, + [422] = 410, + [423] = 410, + [424] = 424, + [425] = 425, + [426] = 402, + [427] = 410, + [428] = 404, + [429] = 410, [430] = 430, - [431] = 399, + [431] = 431, [432] = 432, [433] = 391, - [434] = 390, - [435] = 399, - [436] = 399, - [437] = 399, - [438] = 399, - [439] = 399, - [440] = 399, - [441] = 441, - [442] = 399, - [443] = 399, - [444] = 399, - [445] = 399, + [434] = 410, + [435] = 410, + [436] = 391, + [437] = 437, + [438] = 410, + [439] = 410, + [440] = 404, + [441] = 410, + [442] = 404, + [443] = 425, + [444] = 391, + [445] = 390, [446] = 446, - [447] = 447, + [447] = 446, [448] = 448, [449] = 449, [450] = 450, @@ -3818,1067 +3860,1067 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [452] = 452, [453] = 453, [454] = 454, - [455] = 455, + [455] = 454, [456] = 456, [457] = 457, [458] = 458, [459] = 459, [460] = 460, [461] = 461, - [462] = 455, + [462] = 453, [463] = 463, - [464] = 464, + [464] = 406, [465] = 465, [466] = 466, [467] = 467, [468] = 468, [469] = 469, [470] = 470, - [471] = 464, + [471] = 459, [472] = 472, [473] = 473, [474] = 474, - [475] = 475, - [476] = 475, - [477] = 475, - [478] = 475, - [479] = 463, - [480] = 475, - [481] = 475, - [482] = 475, - [483] = 475, - [484] = 469, - [485] = 461, + [475] = 358, + [476] = 476, + [477] = 463, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, [486] = 486, [487] = 487, - [488] = 475, - [489] = 455, - [490] = 490, - [491] = 464, - [492] = 475, - [493] = 474, - [494] = 457, - [495] = 475, - [496] = 457, - [497] = 490, - [498] = 487, - [499] = 487, - [500] = 455, - [501] = 344, - [502] = 490, - [503] = 461, - [504] = 464, - [505] = 474, - [506] = 487, - [507] = 461, - [508] = 455, - [509] = 464, - [510] = 490, - [511] = 344, - [512] = 469, - [513] = 474, - [514] = 344, - [515] = 490, - [516] = 487, - [517] = 461, - [518] = 461, - [519] = 519, - [520] = 474, - [521] = 455, - [522] = 464, - [523] = 464, - [524] = 474, - [525] = 519, - [526] = 344, - [527] = 527, + [488] = 488, + [489] = 472, + [490] = 448, + [491] = 451, + [492] = 452, + [493] = 446, + [494] = 485, + [495] = 456, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 485, + [500] = 454, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 472, + [505] = 505, + [506] = 497, + [507] = 452, + [508] = 448, + [509] = 509, + [510] = 451, + [511] = 453, + [512] = 454, + [513] = 513, + [514] = 514, + [515] = 469, + [516] = 503, + [517] = 517, + [518] = 485, + [519] = 496, + [520] = 472, + [521] = 470, + [522] = 469, + [523] = 470, + [524] = 448, + [525] = 451, + [526] = 496, + [527] = 497, [528] = 528, - [529] = 461, - [530] = 455, - [531] = 490, - [532] = 487, - [533] = 457, - [534] = 461, - [535] = 455, - [536] = 464, - [537] = 457, - [538] = 474, - [539] = 528, - [540] = 540, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 446, - [545] = 545, - [546] = 528, - [547] = 519, - [548] = 469, - [549] = 541, - [550] = 543, - [551] = 446, - [552] = 344, - [553] = 541, - [554] = 490, - [555] = 545, - [556] = 556, - [557] = 557, - [558] = 528, - [559] = 519, - [560] = 469, - [561] = 541, - [562] = 543, + [529] = 503, + [530] = 469, + [531] = 531, + [532] = 453, + [533] = 533, + [534] = 503, + [535] = 453, + [536] = 497, + [537] = 496, + [538] = 459, + [539] = 485, + [540] = 470, + [541] = 472, + [542] = 469, + [543] = 456, + [544] = 454, + [545] = 453, + [546] = 546, + [547] = 358, + [548] = 487, + [549] = 459, + [550] = 452, + [551] = 474, + [552] = 446, + [553] = 469, + [554] = 446, + [555] = 487, + [556] = 459, + [557] = 456, + [558] = 452, + [559] = 559, + [560] = 474, + [561] = 358, + [562] = 487, [563] = 446, - [564] = 545, + [564] = 564, [565] = 565, - [566] = 566, - [567] = 545, - [568] = 568, - [569] = 487, - [570] = 528, - [571] = 519, - [572] = 469, - [573] = 541, - [574] = 543, - [575] = 446, - [576] = 469, - [577] = 545, - [578] = 519, - [579] = 528, - [580] = 519, - [581] = 541, - [582] = 528, - [583] = 545, - [584] = 469, - [585] = 543, - [586] = 446, - [587] = 446, - [588] = 447, - [589] = 589, - [590] = 545, - [591] = 543, - [592] = 528, - [593] = 519, - [594] = 469, - [595] = 487, - [596] = 596, - [597] = 490, - [598] = 344, - [599] = 474, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 464, - [604] = 604, - [605] = 455, - [606] = 461, - [607] = 607, - [608] = 457, - [609] = 541, - [610] = 543, - [611] = 446, - [612] = 545, - [613] = 528, - [614] = 519, - [615] = 469, - [616] = 545, - [617] = 607, - [618] = 446, - [619] = 568, - [620] = 620, - [621] = 541, - [622] = 543, - [623] = 623, - [624] = 541, - [625] = 543, - [626] = 541, - [627] = 541, - [628] = 628, - [629] = 541, - [630] = 446, - [631] = 631, - [632] = 543, - [633] = 543, - [634] = 541, - [635] = 543, - [636] = 446, - [637] = 545, - [638] = 344, - [639] = 528, - [640] = 519, - [641] = 469, - [642] = 642, - [643] = 446, - [644] = 487, - [645] = 490, - [646] = 487, - [647] = 490, - [648] = 648, - [649] = 461, - [650] = 650, - [651] = 344, + [566] = 459, + [567] = 456, + [568] = 452, + [569] = 569, + [570] = 474, + [571] = 467, + [572] = 474, + [573] = 573, + [574] = 574, + [575] = 358, + [576] = 487, + [577] = 577, + [578] = 446, + [579] = 503, + [580] = 497, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 496, + [585] = 565, + [586] = 451, + [587] = 467, + [588] = 559, + [589] = 470, + [590] = 467, + [591] = 591, + [592] = 448, + [593] = 593, + [594] = 459, + [595] = 456, + [596] = 503, + [597] = 497, + [598] = 446, + [599] = 496, + [600] = 470, + [601] = 487, + [602] = 470, + [603] = 453, + [604] = 559, + [605] = 451, + [606] = 606, + [607] = 454, + [608] = 358, + [609] = 469, + [610] = 470, + [611] = 496, + [612] = 497, + [613] = 613, + [614] = 469, + [615] = 503, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 472, + [620] = 474, + [621] = 621, + [622] = 453, + [623] = 454, + [624] = 469, + [625] = 448, + [626] = 470, + [627] = 496, + [628] = 451, + [629] = 497, + [630] = 503, + [631] = 469, + [632] = 632, + [633] = 454, + [634] = 452, + [635] = 635, + [636] = 456, + [637] = 459, + [638] = 638, + [639] = 454, + [640] = 485, + [641] = 453, + [642] = 454, + [643] = 452, + [644] = 644, + [645] = 453, + [646] = 646, + [647] = 647, + [648] = 459, + [649] = 649, + [650] = 467, + [651] = 474, [652] = 652, - [653] = 653, - [654] = 654, - [655] = 487, + [653] = 485, + [654] = 497, + [655] = 472, [656] = 656, - [657] = 474, - [658] = 658, - [659] = 490, - [660] = 660, - [661] = 661, - [662] = 541, - [663] = 344, - [664] = 543, - [665] = 446, - [666] = 545, - [667] = 528, - [668] = 668, - [669] = 519, - [670] = 469, - [671] = 458, - [672] = 672, - [673] = 474, - [674] = 674, + [657] = 657, + [658] = 456, + [659] = 452, + [660] = 474, + [661] = 474, + [662] = 635, + [663] = 358, + [664] = 664, + [665] = 470, + [666] = 358, + [667] = 448, + [668] = 487, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 487, + [673] = 446, + [674] = 446, [675] = 675, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 679, + [676] = 496, + [677] = 358, + [678] = 474, + [679] = 452, [680] = 680, - [681] = 464, - [682] = 475, - [683] = 455, - [684] = 457, - [685] = 464, - [686] = 686, - [687] = 455, - [688] = 344, - [689] = 474, - [690] = 545, - [691] = 464, - [692] = 541, - [693] = 455, - [694] = 543, - [695] = 461, + [681] = 681, + [682] = 503, + [683] = 497, + [684] = 684, + [685] = 685, + [686] = 496, + [687] = 559, + [688] = 470, + [689] = 467, + [690] = 456, + [691] = 456, + [692] = 358, + [693] = 459, + [694] = 487, + [695] = 453, [696] = 696, - [697] = 461, - [698] = 542, + [697] = 697, + [698] = 698, [699] = 699, - [700] = 699, - [701] = 648, - [702] = 447, + [700] = 700, + [701] = 469, + [702] = 702, [703] = 703, - [704] = 446, - [705] = 457, - [706] = 706, - [707] = 545, - [708] = 703, - [709] = 699, - [710] = 463, - [711] = 711, - [712] = 455, - [713] = 648, - [714] = 447, - [715] = 449, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 528, - [720] = 699, - [721] = 519, - [722] = 469, - [723] = 463, - [724] = 648, - [725] = 447, - [726] = 726, - [727] = 727, - [728] = 699, - [729] = 463, - [730] = 648, - [731] = 699, - [732] = 732, - [733] = 487, - [734] = 699, - [735] = 463, - [736] = 464, - [737] = 648, - [738] = 519, - [739] = 461, - [740] = 474, - [741] = 741, - [742] = 447, - [743] = 743, - [744] = 490, - [745] = 344, + [704] = 454, + [705] = 487, + [706] = 456, + [707] = 707, + [708] = 487, + [709] = 358, + [710] = 453, + [711] = 474, + [712] = 476, + [713] = 452, + [714] = 714, + [715] = 456, + [716] = 358, + [717] = 487, + [718] = 453, + [719] = 451, + [720] = 454, + [721] = 503, + [722] = 459, + [723] = 456, + [724] = 456, + [725] = 452, + [726] = 469, + [727] = 459, + [728] = 474, + [729] = 358, + [730] = 454, + [731] = 467, + [732] = 487, + [733] = 456, + [734] = 497, + [735] = 469, + [736] = 503, + [737] = 448, + [738] = 485, + [739] = 459, + [740] = 456, + [741] = 452, + [742] = 474, + [743] = 487, + [744] = 487, + [745] = 446, [746] = 746, - [747] = 747, - [748] = 474, - [749] = 749, + [747] = 472, + [748] = 497, + [749] = 496, [750] = 750, - [751] = 464, - [752] = 474, - [753] = 699, - [754] = 754, - [755] = 541, - [756] = 463, - [757] = 455, - [758] = 758, - [759] = 759, - [760] = 648, - [761] = 761, - [762] = 461, - [763] = 675, - [764] = 642, - [765] = 447, - [766] = 766, - [767] = 457, - [768] = 543, - [769] = 769, - [770] = 457, - [771] = 457, - [772] = 699, - [773] = 446, - [774] = 463, - [775] = 648, - [776] = 447, + [751] = 446, + [752] = 459, + [753] = 456, + [754] = 452, + [755] = 485, + [756] = 474, + [757] = 470, + [758] = 358, + [759] = 470, + [760] = 760, + [761] = 358, + [762] = 762, + [763] = 487, + [764] = 764, + [765] = 765, + [766] = 446, + [767] = 469, + [768] = 446, + [769] = 454, + [770] = 559, + [771] = 771, + [772] = 470, + [773] = 453, + [774] = 487, + [775] = 496, + [776] = 496, [777] = 777, [778] = 778, - [779] = 487, - [780] = 717, - [781] = 490, - [782] = 344, - [783] = 699, - [784] = 543, - [785] = 463, - [786] = 648, - [787] = 447, - [788] = 474, - [789] = 461, - [790] = 455, - [791] = 464, + [779] = 446, + [780] = 780, + [781] = 497, + [782] = 505, + [783] = 448, + [784] = 470, + [785] = 785, + [786] = 503, + [787] = 503, + [788] = 788, + [789] = 453, + [790] = 453, + [791] = 454, [792] = 792, - [793] = 464, - [794] = 474, - [795] = 344, - [796] = 545, - [797] = 469, - [798] = 490, - [799] = 487, - [800] = 528, - [801] = 699, - [802] = 519, - [803] = 528, - [804] = 519, - [805] = 469, - [806] = 528, - [807] = 545, - [808] = 469, - [809] = 809, - [810] = 810, - [811] = 463, - [812] = 812, - [813] = 813, - [814] = 519, - [815] = 648, - [816] = 528, - [817] = 545, - [818] = 446, - [819] = 447, - [820] = 455, - [821] = 469, - [822] = 461, - [823] = 543, - [824] = 824, - [825] = 519, - [826] = 699, - [827] = 528, - [828] = 828, - [829] = 541, - [830] = 463, - [831] = 344, - [832] = 648, - [833] = 447, - [834] = 834, - [835] = 446, - [836] = 836, - [837] = 543, - [838] = 457, - [839] = 545, - [840] = 840, - [841] = 490, - [842] = 699, - [843] = 446, - [844] = 541, - [845] = 845, + [793] = 793, + [794] = 503, + [795] = 497, + [796] = 796, + [797] = 797, + [798] = 451, + [799] = 496, + [800] = 459, + [801] = 801, + [802] = 456, + [803] = 452, + [804] = 474, + [805] = 358, + [806] = 487, + [807] = 472, + [808] = 476, + [809] = 469, + [810] = 469, + [811] = 811, + [812] = 470, + [813] = 448, + [814] = 814, + [815] = 446, + [816] = 559, + [817] = 454, + [818] = 453, + [819] = 454, + [820] = 469, + [821] = 821, + [822] = 496, + [823] = 497, + [824] = 503, + [825] = 825, + [826] = 826, + [827] = 487, + [828] = 472, + [829] = 358, + [830] = 470, + [831] = 559, + [832] = 832, + [833] = 474, + [834] = 496, + [835] = 452, + [836] = 497, + [837] = 485, + [838] = 657, + [839] = 467, + [840] = 485, + [841] = 446, + [842] = 559, + [843] = 467, + [844] = 503, + [845] = 696, [846] = 487, - [847] = 490, - [848] = 463, - [849] = 455, - [850] = 344, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 678, - [855] = 490, - [856] = 461, - [857] = 464, - [858] = 474, - [859] = 859, - [860] = 487, - [861] = 861, - [862] = 461, - [863] = 455, - [864] = 464, - [865] = 865, - [866] = 474, - [867] = 677, - [868] = 868, - [869] = 344, - [870] = 543, - [871] = 490, - [872] = 872, - [873] = 487, - [874] = 474, - [875] = 464, - [876] = 394, - [877] = 877, + [847] = 497, + [848] = 358, + [849] = 503, + [850] = 559, + [851] = 792, + [852] = 697, + [853] = 497, + [854] = 453, + [855] = 474, + [856] = 459, + [857] = 456, + [858] = 452, + [859] = 474, + [860] = 358, + [861] = 487, + [862] = 454, + [863] = 496, + [864] = 470, + [865] = 469, + [866] = 469, + [867] = 446, + [868] = 452, + [869] = 456, + [870] = 870, + [871] = 871, + [872] = 459, + [873] = 454, + [874] = 446, + [875] = 453, + [876] = 503, + [877] = 470, [878] = 878, - [879] = 879, - [880] = 455, - [881] = 541, - [882] = 461, - [883] = 883, - [884] = 487, - [885] = 344, - [886] = 528, - [887] = 461, - [888] = 490, - [889] = 344, - [890] = 490, - [891] = 487, - [892] = 519, - [893] = 893, - [894] = 455, - [895] = 464, - [896] = 474, - [897] = 344, - [898] = 490, - [899] = 487, - [900] = 449, - [901] = 469, - [902] = 487, - [903] = 461, - [904] = 474, - [905] = 905, - [906] = 469, - [907] = 490, - [908] = 475, - [909] = 519, - [910] = 344, - [911] = 528, - [912] = 455, - [913] = 457, - [914] = 914, - [915] = 915, - [916] = 545, - [917] = 747, - [918] = 543, - [919] = 474, + [879] = 473, + [880] = 487, + [881] = 454, + [882] = 469, + [883] = 358, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 888, + [889] = 453, + [890] = 470, + [891] = 496, + [892] = 496, + [893] = 470, + [894] = 469, + [895] = 474, + [896] = 452, + [897] = 451, + [898] = 456, + [899] = 454, + [900] = 496, + [901] = 901, + [902] = 497, + [903] = 448, + [904] = 697, + [905] = 696, + [906] = 497, + [907] = 907, + [908] = 459, + [909] = 456, + [910] = 503, + [911] = 911, + [912] = 453, + [913] = 446, + [914] = 474, + [915] = 472, + [916] = 452, + [917] = 459, + [918] = 456, + [919] = 452, [920] = 920, - [921] = 541, + [921] = 459, [922] = 922, - [923] = 677, - [924] = 446, - [925] = 678, - [926] = 464, - [927] = 927, - [928] = 455, - [929] = 461, + [923] = 459, + [924] = 924, + [925] = 446, + [926] = 559, + [927] = 474, + [928] = 451, + [929] = 487, [930] = 487, - [931] = 931, - [932] = 545, - [933] = 933, - [934] = 934, - [935] = 541, - [936] = 446, - [937] = 447, - [938] = 545, - [939] = 457, - [940] = 648, - [941] = 941, - [942] = 543, - [943] = 943, - [944] = 455, - [945] = 945, - [946] = 946, - [947] = 941, - [948] = 344, - [949] = 490, - [950] = 490, - [951] = 446, - [952] = 545, - [953] = 528, - [954] = 344, - [955] = 519, - [956] = 469, - [957] = 469, - [958] = 519, - [959] = 528, - [960] = 541, - [961] = 455, - [962] = 543, - [963] = 446, - [964] = 545, - [965] = 464, - [966] = 490, - [967] = 455, - [968] = 528, - [969] = 519, - [970] = 469, - [971] = 971, - [972] = 71, - [973] = 70, - [974] = 68, - [975] = 67, - [976] = 69, - [977] = 977, - [978] = 294, - [979] = 296, - [980] = 297, - [981] = 289, - [982] = 236, - [983] = 242, - [984] = 984, - [985] = 241, - [986] = 298, - [987] = 282, - [988] = 295, - [989] = 235, - [990] = 240, - [991] = 991, - [992] = 389, - [993] = 289, - [994] = 379, - [995] = 240, - [996] = 996, - [997] = 235, - [998] = 998, - [999] = 999, - [1000] = 295, - [1001] = 297, - [1002] = 1002, - [1003] = 298, - [1004] = 241, - [1005] = 294, - [1006] = 432, - [1007] = 398, - [1008] = 396, - [1009] = 68, - [1010] = 70, - [1011] = 398, - [1012] = 396, - [1013] = 71, - [1014] = 404, - [1015] = 393, - [1016] = 67, - [1017] = 69, - [1018] = 678, - [1019] = 865, - [1020] = 718, - [1021] = 679, - [1022] = 661, - [1023] = 706, - [1024] = 758, - [1025] = 920, - [1026] = 459, - [1027] = 450, - [1028] = 448, - [1029] = 656, - [1030] = 946, - [1031] = 922, - [1032] = 716, - [1033] = 933, - [1034] = 540, - [1035] = 460, - [1036] = 453, - [1037] = 678, - [1038] = 726, - [1039] = 877, - [1040] = 456, - [1041] = 677, - [1042] = 931, - [1043] = 473, - [1044] = 915, - [1045] = 893, - [1046] = 914, - [1047] = 943, - [1048] = 872, - [1049] = 836, - [1050] = 834, - [1051] = 851, - [1052] = 623, - [1053] = 602, - [1054] = 927, - [1055] = 668, - [1056] = 749, - [1057] = 934, - [1058] = 674, - [1059] = 653, - [1060] = 654, - [1061] = 660, - [1062] = 672, - [1063] = 676, - [1064] = 945, - [1065] = 905, - [1066] = 658, + [931] = 503, + [932] = 358, + [933] = 487, + [934] = 559, + [935] = 358, + [936] = 936, + [937] = 453, + [938] = 454, + [939] = 446, + [940] = 469, + [941] = 485, + [942] = 559, + [943] = 470, + [944] = 496, + [945] = 497, + [946] = 503, + [947] = 503, + [948] = 924, + [949] = 358, + [950] = 456, + [951] = 485, + [952] = 467, + [953] = 885, + [954] = 954, + [955] = 955, + [956] = 472, + [957] = 474, + [958] = 958, + [959] = 452, + [960] = 467, + [961] = 467, + [962] = 456, + [963] = 497, + [964] = 964, + [965] = 448, + [966] = 467, + [967] = 459, + [968] = 581, + [969] = 451, + [970] = 559, + [971] = 496, + [972] = 467, + [973] = 973, + [974] = 69, + [975] = 68, + [976] = 71, + [977] = 70, + [978] = 67, + [979] = 979, + [980] = 250, + [981] = 251, + [982] = 269, + [983] = 280, + [984] = 283, + [985] = 985, + [986] = 275, + [987] = 260, + [988] = 988, + [989] = 257, + [990] = 256, + [991] = 252, + [992] = 253, + [993] = 277, + [994] = 994, + [995] = 361, + [996] = 253, + [997] = 252, + [998] = 251, + [999] = 250, + [1000] = 280, + [1001] = 1001, + [1002] = 256, + [1003] = 1003, + [1004] = 359, + [1005] = 283, + [1006] = 1006, + [1007] = 257, + [1008] = 68, + [1009] = 402, + [1010] = 425, + [1011] = 71, + [1012] = 67, + [1013] = 425, + [1014] = 70, + [1015] = 402, + [1016] = 69, + [1017] = 401, + [1018] = 419, + [1019] = 408, + [1020] = 581, + [1021] = 911, + [1022] = 958, + [1023] = 955, + [1024] = 796, + [1025] = 514, + [1026] = 509, + [1027] = 406, + [1028] = 746, + [1029] = 501, + [1030] = 649, + [1031] = 685, + [1032] = 771, + [1033] = 465, + [1034] = 684, + [1035] = 681, + [1036] = 680, + [1037] = 785, + [1038] = 564, + [1039] = 646, + [1040] = 546, + [1041] = 533, + [1042] = 488, + [1043] = 483, + [1044] = 482, + [1045] = 814, + [1046] = 638, + [1047] = 478, + [1048] = 528, + [1049] = 621, + [1050] = 670, + [1051] = 780, + [1052] = 907, + [1053] = 644, + [1054] = 498, + [1055] = 406, + [1056] = 468, + [1057] = 826, + [1058] = 697, + [1059] = 778, + [1060] = 750, + [1061] = 801, + [1062] = 922, + [1063] = 777, + [1064] = 760, + [1065] = 901, + [1066] = 647, [1067] = 652, - [1068] = 686, - [1069] = 769, - [1070] = 824, - [1071] = 883, - [1072] = 451, - [1073] = 452, - [1074] = 631, - [1075] = 628, - [1076] = 711, - [1077] = 677, - [1078] = 454, - [1079] = 732, - [1080] = 853, - [1081] = 620, - [1082] = 809, - [1083] = 810, - [1084] = 812, - [1085] = 828, - [1086] = 813, - [1087] = 470, - [1088] = 394, - [1089] = 472, - [1090] = 840, - [1091] = 861, - [1092] = 465, - [1093] = 754, - [1094] = 750, - [1095] = 941, - [1096] = 878, - [1097] = 879, - [1098] = 696, - [1099] = 466, - [1100] = 467, - [1101] = 941, - [1102] = 394, - [1103] = 680, - [1104] = 468, - [1105] = 859, - [1106] = 604, - [1107] = 852, - [1108] = 486, - [1109] = 778, - [1110] = 527, - [1111] = 777, - [1112] = 556, - [1113] = 557, - [1114] = 565, - [1115] = 668, - [1116] = 566, - [1117] = 589, - [1118] = 759, - [1119] = 596, - [1120] = 761, - [1121] = 766, - [1122] = 741, - [1123] = 600, - [1124] = 601, - [1125] = 71, - [1126] = 70, - [1127] = 68, - [1128] = 69, - [1129] = 68, + [1068] = 466, + [1069] = 656, + [1070] = 707, + [1071] = 888, + [1072] = 793, + [1073] = 618, + [1074] = 675, + [1075] = 886, + [1076] = 671, + [1077] = 954, + [1078] = 531, + [1079] = 714, + [1080] = 698, + [1081] = 577, + [1082] = 517, + [1083] = 486, + [1084] = 617, + [1085] = 821, + [1086] = 513, + [1087] = 936, + [1088] = 825, + [1089] = 797, + [1090] = 613, + [1091] = 764, + [1092] = 920, + [1093] = 449, + [1094] = 460, + [1095] = 606, + [1096] = 964, + [1097] = 583, + [1098] = 450, + [1099] = 581, + [1100] = 788, + [1101] = 700, + [1102] = 670, + [1103] = 703, + [1104] = 699, + [1105] = 616, + [1106] = 569, + [1107] = 457, + [1108] = 458, + [1109] = 461, + [1110] = 884, + [1111] = 696, + [1112] = 878, + [1113] = 697, + [1114] = 871, + [1115] = 479, + [1116] = 480, + [1117] = 481, + [1118] = 696, + [1119] = 582, + [1120] = 702, + [1121] = 591, + [1122] = 870, + [1123] = 484, + [1124] = 502, + [1125] = 574, + [1126] = 573, + [1127] = 832, + [1128] = 593, + [1129] = 71, [1130] = 70, - [1131] = 1131, + [1131] = 68, [1132] = 67, - [1133] = 71, - [1134] = 289, - [1135] = 297, - [1136] = 240, + [1133] = 70, + [1134] = 71, + [1135] = 1135, + [1136] = 68, [1137] = 69, - [1138] = 296, - [1139] = 298, - [1140] = 241, - [1141] = 236, - [1142] = 294, - [1143] = 235, - [1144] = 242, - [1145] = 295, - [1146] = 71, - [1147] = 1147, - [1148] = 68, - [1149] = 1149, - [1150] = 389, - [1151] = 70, - [1152] = 282, - [1153] = 379, - [1154] = 1154, - [1155] = 67, - [1156] = 941, - [1157] = 393, - [1158] = 398, - [1159] = 396, - [1160] = 396, - [1161] = 432, - [1162] = 404, - [1163] = 398, - [1164] = 1164, - [1165] = 1165, - [1166] = 943, - [1167] = 660, - [1168] = 877, - [1169] = 872, - [1170] = 879, - [1171] = 68, - [1172] = 834, - [1173] = 941, - [1174] = 394, - [1175] = 467, - [1176] = 824, - [1177] = 749, - [1178] = 934, - [1179] = 466, - [1180] = 674, - [1181] = 809, - [1182] = 465, - [1183] = 810, - [1184] = 812, - [1185] = 813, - [1186] = 945, - [1187] = 905, - [1188] = 658, - [1189] = 556, - [1190] = 67, - [1191] = 883, - [1192] = 454, - [1193] = 678, - [1194] = 452, - [1195] = 840, - [1196] = 451, - [1197] = 769, - [1198] = 927, - [1199] = 677, - [1200] = 668, - [1201] = 861, - [1202] = 828, - [1203] = 878, - [1204] = 686, - [1205] = 754, - [1206] = 602, - [1207] = 750, - [1208] = 696, - [1209] = 623, - [1210] = 1210, - [1211] = 557, - [1212] = 468, - [1213] = 853, - [1214] = 893, - [1215] = 631, - [1216] = 527, - [1217] = 718, - [1218] = 920, - [1219] = 565, - [1220] = 566, - [1221] = 836, - [1222] = 726, - [1223] = 711, - [1224] = 933, - [1225] = 473, - [1226] = 653, + [1138] = 256, + [1139] = 253, + [1140] = 283, + [1141] = 280, + [1142] = 251, + [1143] = 269, + [1144] = 260, + [1145] = 250, + [1146] = 252, + [1147] = 67, + [1148] = 257, + [1149] = 275, + [1150] = 359, + [1151] = 361, + [1152] = 70, + [1153] = 71, + [1154] = 277, + [1155] = 1155, + [1156] = 1156, + [1157] = 68, + [1158] = 1158, + [1159] = 69, + [1160] = 425, + [1161] = 402, + [1162] = 401, + [1163] = 408, + [1164] = 425, + [1165] = 581, + [1166] = 419, + [1167] = 402, + [1168] = 1168, + [1169] = 1169, + [1170] = 707, + [1171] = 533, + [1172] = 638, + [1173] = 621, + [1174] = 646, + [1175] = 675, + [1176] = 671, + [1177] = 954, + [1178] = 907, + [1179] = 680, + [1180] = 618, + [1181] = 617, + [1182] = 613, + [1183] = 714, + [1184] = 698, + [1185] = 699, + [1186] = 771, + [1187] = 814, + [1188] = 606, + [1189] = 764, + [1190] = 583, + [1191] = 582, + [1192] = 760, + [1193] = 793, + [1194] = 777, + [1195] = 778, + [1196] = 574, + [1197] = 573, + [1198] = 780, + [1199] = 785, + [1200] = 796, + [1201] = 797, + [1202] = 901, + [1203] = 700, + [1204] = 502, + [1205] = 911, + [1206] = 920, + [1207] = 870, + [1208] = 1208, + [1209] = 964, + [1210] = 958, + [1211] = 484, + [1212] = 481, + [1213] = 871, + [1214] = 480, + [1215] = 878, + [1216] = 479, + [1217] = 884, + [1218] = 71, + [1219] = 461, + [1220] = 69, + [1221] = 458, + [1222] = 955, + [1223] = 68, + [1224] = 457, + [1225] = 70, + [1226] = 466, [1227] = 69, - [1228] = 654, - [1229] = 716, - [1230] = 460, - [1231] = 472, - [1232] = 69, - [1233] = 1210, - [1234] = 589, - [1235] = 470, - [1236] = 450, - [1237] = 67, - [1238] = 486, - [1239] = 706, - [1240] = 68, - [1241] = 915, - [1242] = 70, - [1243] = 946, - [1244] = 459, - [1245] = 448, - [1246] = 71, - [1247] = 69, - [1248] = 71, - [1249] = 865, - [1250] = 859, - [1251] = 852, - [1252] = 732, - [1253] = 851, - [1254] = 1254, - [1255] = 931, - [1256] = 778, - [1257] = 777, - [1258] = 766, - [1259] = 761, - [1260] = 759, - [1261] = 758, - [1262] = 741, - [1263] = 540, - [1264] = 672, - [1265] = 70, - [1266] = 453, - [1267] = 680, - [1268] = 679, - [1269] = 661, - [1270] = 922, - [1271] = 656, - [1272] = 652, - [1273] = 456, - [1274] = 628, - [1275] = 596, - [1276] = 676, - [1277] = 914, - [1278] = 620, - [1279] = 604, - [1280] = 600, - [1281] = 601, - [1282] = 296, - [1283] = 67, - [1284] = 677, - [1285] = 678, - [1286] = 242, - [1287] = 236, - [1288] = 379, - [1289] = 389, - [1290] = 1290, - [1291] = 1290, - [1292] = 297, - [1293] = 297, - [1294] = 240, - [1295] = 696, - [1296] = 398, - [1297] = 235, - [1298] = 396, - [1299] = 432, - [1300] = 298, - [1301] = 241, - [1302] = 294, - [1303] = 289, - [1304] = 295, - [1305] = 927, - [1306] = 602, - [1307] = 404, - [1308] = 941, - [1309] = 623, - [1310] = 393, - [1311] = 295, - [1312] = 1312, - [1313] = 298, - [1314] = 241, - [1315] = 294, - [1316] = 396, - [1317] = 235, - [1318] = 240, - [1319] = 398, - [1320] = 289, - [1321] = 674, - [1322] = 934, - [1323] = 749, - [1324] = 840, - [1325] = 810, - [1326] = 654, - [1327] = 527, - [1328] = 1328, - [1329] = 883, - [1330] = 711, - [1331] = 660, - [1332] = 672, - [1333] = 472, - [1334] = 658, - [1335] = 905, - [1336] = 945, - [1337] = 470, - [1338] = 686, - [1339] = 450, - [1340] = 834, - [1341] = 836, - [1342] = 872, - [1343] = 877, - [1344] = 448, - [1345] = 750, - [1346] = 676, - [1347] = 865, - [1348] = 933, - [1349] = 946, - [1350] = 1350, - [1351] = 920, - [1352] = 879, - [1353] = 878, - [1354] = 718, - [1355] = 859, - [1356] = 706, - [1357] = 941, - [1358] = 852, - [1359] = 540, - [1360] = 678, - [1361] = 677, - [1362] = 851, - [1363] = 732, - [1364] = 778, - [1365] = 777, - [1366] = 766, - [1367] = 861, - [1368] = 761, - [1369] = 653, - [1370] = 726, - [1371] = 759, - [1372] = 824, - [1373] = 758, - [1374] = 893, - [1375] = 813, - [1376] = 943, - [1377] = 812, - [1378] = 741, - [1379] = 680, - [1380] = 828, - [1381] = 451, - [1382] = 452, - [1383] = 454, - [1384] = 769, - [1385] = 716, - [1386] = 931, - [1387] = 679, - [1388] = 853, - [1389] = 465, - [1390] = 466, - [1391] = 467, - [1392] = 661, - [1393] = 656, - [1394] = 468, - [1395] = 809, - [1396] = 453, - [1397] = 486, - [1398] = 922, - [1399] = 456, - [1400] = 459, - [1401] = 556, - [1402] = 557, - [1403] = 565, - [1404] = 566, - [1405] = 460, - [1406] = 589, - [1407] = 473, - [1408] = 596, - [1409] = 915, - [1410] = 600, - [1411] = 601, - [1412] = 754, - [1413] = 604, - [1414] = 620, - [1415] = 628, - [1416] = 631, - [1417] = 914, - [1418] = 652, - [1419] = 1419, - [1420] = 1420, - [1421] = 394, - [1422] = 69, - [1423] = 668, - [1424] = 1424, - [1425] = 68, - [1426] = 70, - [1427] = 71, - [1428] = 67, - [1429] = 1429, - [1430] = 394, - [1431] = 668, - [1432] = 68, - [1433] = 70, - [1434] = 71, - [1435] = 404, - [1436] = 1436, - [1437] = 1437, - [1438] = 1438, - [1439] = 941, - [1440] = 1440, - [1441] = 1441, - [1442] = 69, - [1443] = 1443, + [1228] = 888, + [1229] = 465, + [1230] = 886, + [1231] = 460, + [1232] = 486, + [1233] = 746, + [1234] = 581, + [1235] = 685, + [1236] = 684, + [1237] = 450, + [1238] = 449, + [1239] = 513, + [1240] = 1208, + [1241] = 517, + [1242] = 531, + [1243] = 681, + [1244] = 406, + [1245] = 501, + [1246] = 697, + [1247] = 696, + [1248] = 1248, + [1249] = 656, + [1250] = 67, + [1251] = 652, + [1252] = 647, + [1253] = 509, + [1254] = 644, + [1255] = 616, + [1256] = 593, + [1257] = 591, + [1258] = 922, + [1259] = 67, + [1260] = 569, + [1261] = 801, + [1262] = 832, + [1263] = 750, + [1264] = 826, + [1265] = 936, + [1266] = 70, + [1267] = 71, + [1268] = 514, + [1269] = 468, + [1270] = 498, + [1271] = 68, + [1272] = 825, + [1273] = 821, + [1274] = 528, + [1275] = 649, + [1276] = 703, + [1277] = 702, + [1278] = 478, + [1279] = 564, + [1280] = 482, + [1281] = 670, + [1282] = 483, + [1283] = 488, + [1284] = 577, + [1285] = 546, + [1286] = 67, + [1287] = 788, + [1288] = 696, + [1289] = 269, + [1290] = 275, + [1291] = 69, + [1292] = 697, + [1293] = 260, + [1294] = 361, + [1295] = 1295, + [1296] = 1295, + [1297] = 359, + [1298] = 513, + [1299] = 419, + [1300] = 401, + [1301] = 253, + [1302] = 252, + [1303] = 253, + [1304] = 256, + [1305] = 257, + [1306] = 450, + [1307] = 449, + [1308] = 257, + [1309] = 408, + [1310] = 256, + [1311] = 425, + [1312] = 714, + [1313] = 402, + [1314] = 252, + [1315] = 251, + [1316] = 581, + [1317] = 251, + [1318] = 250, + [1319] = 283, + [1320] = 280, + [1321] = 250, + [1322] = 1322, + [1323] = 425, + [1324] = 564, + [1325] = 546, + [1326] = 533, + [1327] = 283, + [1328] = 280, + [1329] = 402, + [1330] = 484, + [1331] = 814, + [1332] = 832, + [1333] = 1333, + [1334] = 460, + [1335] = 793, + [1336] = 746, + [1337] = 777, + [1338] = 760, + [1339] = 796, + [1340] = 785, + [1341] = 780, + [1342] = 699, + [1343] = 698, + [1344] = 797, + [1345] = 870, + [1346] = 581, + [1347] = 680, + [1348] = 871, + [1349] = 685, + [1350] = 684, + [1351] = 681, + [1352] = 675, + [1353] = 964, + [1354] = 486, + [1355] = 671, + [1356] = 958, + [1357] = 955, + [1358] = 466, + [1359] = 577, + [1360] = 501, + [1361] = 509, + [1362] = 488, + [1363] = 483, + [1364] = 482, + [1365] = 478, + [1366] = 514, + [1367] = 528, + [1368] = 649, + [1369] = 646, + [1370] = 498, + [1371] = 468, + [1372] = 697, + [1373] = 465, + [1374] = 826, + [1375] = 696, + [1376] = 638, + [1377] = 750, + [1378] = 621, + [1379] = 801, + [1380] = 878, + [1381] = 618, + [1382] = 922, + [1383] = 825, + [1384] = 821, + [1385] = 954, + [1386] = 617, + [1387] = 1387, + [1388] = 884, + [1389] = 901, + [1390] = 703, + [1391] = 613, + [1392] = 702, + [1393] = 778, + [1394] = 707, + [1395] = 907, + [1396] = 606, + [1397] = 788, + [1398] = 936, + [1399] = 531, + [1400] = 771, + [1401] = 517, + [1402] = 764, + [1403] = 700, + [1404] = 911, + [1405] = 920, + [1406] = 656, + [1407] = 457, + [1408] = 458, + [1409] = 461, + [1410] = 652, + [1411] = 886, + [1412] = 647, + [1413] = 644, + [1414] = 479, + [1415] = 480, + [1416] = 481, + [1417] = 616, + [1418] = 583, + [1419] = 582, + [1420] = 574, + [1421] = 593, + [1422] = 502, + [1423] = 591, + [1424] = 888, + [1425] = 569, + [1426] = 573, + [1427] = 1427, + [1428] = 1428, + [1429] = 670, + [1430] = 67, + [1431] = 406, + [1432] = 1432, + [1433] = 670, + [1434] = 1434, + [1435] = 406, + [1436] = 69, + [1437] = 71, + [1438] = 68, + [1439] = 70, + [1440] = 70, + [1441] = 71, + [1442] = 68, + [1443] = 401, [1444] = 1444, - [1445] = 915, - [1446] = 914, - [1447] = 69, - [1448] = 660, - [1449] = 878, - [1450] = 1450, + [1445] = 1445, + [1446] = 67, + [1447] = 911, + [1448] = 67, + [1449] = 1449, + [1450] = 920, [1451] = 1451, - [1452] = 459, + [1452] = 1452, [1453] = 1453, - [1454] = 460, - [1455] = 922, - [1456] = 456, - [1457] = 1457, - [1458] = 470, - [1459] = 67, - [1460] = 71, - [1461] = 472, - [1462] = 70, - [1463] = 473, - [1464] = 68, - [1465] = 1465, - [1466] = 1466, - [1467] = 1467, + [1454] = 1454, + [1455] = 581, + [1456] = 1456, + [1457] = 591, + [1458] = 901, + [1459] = 825, + [1460] = 569, + [1461] = 821, + [1462] = 1462, + [1463] = 1463, + [1464] = 1464, + [1465] = 814, + [1466] = 514, + [1467] = 509, [1468] = 1468, - [1469] = 1469, - [1470] = 1470, + [1469] = 486, + [1470] = 460, [1471] = 1471, [1472] = 1472, - [1473] = 453, - [1474] = 1474, - [1475] = 450, - [1476] = 1476, - [1477] = 1477, + [1473] = 907, + [1474] = 936, + [1475] = 1475, + [1476] = 501, + [1477] = 788, [1478] = 1478, [1479] = 1479, - [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 813, - [1485] = 1485, - [1486] = 1486, - [1487] = 879, + [1480] = 771, + [1481] = 764, + [1482] = 703, + [1483] = 702, + [1484] = 1484, + [1485] = 465, + [1486] = 466, + [1487] = 68, [1488] = 1488, - [1489] = 448, + [1489] = 656, [1490] = 1490, - [1491] = 1491, - [1492] = 840, - [1493] = 861, - [1494] = 653, - [1495] = 654, + [1491] = 700, + [1492] = 1492, + [1493] = 652, + [1494] = 647, + [1495] = 1495, [1496] = 1496, - [1497] = 672, + [1497] = 1497, [1498] = 1498, - [1499] = 676, - [1500] = 686, - [1501] = 711, - [1502] = 716, - [1503] = 732, - [1504] = 809, - [1505] = 853, - [1506] = 810, - [1507] = 931, - [1508] = 812, + [1499] = 1499, + [1500] = 644, + [1501] = 70, + [1502] = 69, + [1503] = 577, + [1504] = 71, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, + [1508] = 528, [1509] = 1509, [1510] = 1510, [1511] = 1511, - [1512] = 396, + [1512] = 1512, [1513] = 1513, - [1514] = 1514, - [1515] = 1515, + [1514] = 616, + [1515] = 593, [1516] = 1516, [1517] = 1517, [1518] = 1518, @@ -4889,12 +4931,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 69, + [1526] = 1526, [1527] = 1527, [1528] = 1528, [1529] = 1529, [1530] = 1530, - [1531] = 1531, + [1531] = 402, [1532] = 1532, [1533] = 1533, [1534] = 1534, @@ -4904,10 +4946,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1538] = 1538, [1539] = 1539, [1540] = 1540, - [1541] = 631, + [1541] = 1541, [1542] = 1542, - [1543] = 1543, - [1544] = 1544, + [1543] = 69, + [1544] = 67, [1545] = 1545, [1546] = 1546, [1547] = 1547, @@ -4918,7 +4960,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 1555, + [1555] = 649, [1556] = 1556, [1557] = 1557, [1558] = 1558, @@ -4932,12 +4974,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1566] = 1566, [1567] = 1567, [1568] = 1568, - [1569] = 67, + [1569] = 1569, [1570] = 1570, [1571] = 1571, [1572] = 1572, [1573] = 1573, - [1574] = 398, + [1574] = 1574, [1575] = 1575, [1576] = 1576, [1577] = 1577, @@ -4969,1897 +5011,1897 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1603] = 1603, [1604] = 1604, [1605] = 1605, - [1606] = 67, - [1607] = 68, - [1608] = 69, - [1609] = 70, - [1610] = 71, + [1606] = 1606, + [1607] = 425, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, [1611] = 1611, [1612] = 1612, - [1613] = 67, - [1614] = 1614, - [1615] = 1615, - [1616] = 67, - [1617] = 1617, - [1618] = 716, - [1619] = 470, - [1620] = 472, - [1621] = 448, - [1622] = 450, - [1623] = 450, - [1624] = 448, - [1625] = 470, - [1626] = 716, - [1627] = 472, - [1628] = 472, - [1629] = 448, - [1630] = 716, - [1631] = 448, - [1632] = 450, - [1633] = 470, - [1634] = 450, - [1635] = 716, - [1636] = 470, - [1637] = 1637, - [1638] = 472, - [1639] = 215, - [1640] = 242, - [1641] = 241, - [1642] = 289, - [1643] = 248, - [1644] = 297, - [1645] = 296, - [1646] = 295, - [1647] = 298, - [1648] = 236, - [1649] = 240, - [1650] = 235, - [1651] = 294, - [1652] = 396, - [1653] = 379, - [1654] = 389, - [1655] = 398, - [1656] = 216, - [1657] = 242, - [1658] = 295, - [1659] = 809, - [1660] = 810, - [1661] = 812, - [1662] = 813, - [1663] = 289, - [1664] = 1664, - [1665] = 840, - [1666] = 297, - [1667] = 711, - [1668] = 1664, - [1669] = 282, - [1670] = 296, - [1671] = 453, - [1672] = 654, - [1673] = 653, - [1674] = 298, - [1675] = 460, - [1676] = 459, - [1677] = 1677, - [1678] = 941, - [1679] = 432, - [1680] = 407, - [1681] = 861, - [1682] = 473, - [1683] = 294, - [1684] = 394, - [1685] = 235, - [1686] = 878, - [1687] = 879, - [1688] = 404, - [1689] = 732, - [1690] = 241, - [1691] = 240, - [1692] = 236, - [1693] = 407, - [1694] = 660, - [1695] = 672, - [1696] = 393, - [1697] = 668, - [1698] = 676, - [1699] = 686, - [1700] = 456, - [1701] = 628, - [1702] = 865, - [1703] = 893, - [1704] = 943, - [1705] = 623, - [1706] = 602, - [1707] = 706, - [1708] = 927, - [1709] = 451, - [1710] = 853, - [1711] = 394, - [1712] = 452, - [1713] = 454, - [1714] = 465, - [1715] = 466, - [1716] = 467, - [1717] = 468, - [1718] = 836, - [1719] = 726, - [1720] = 556, - [1721] = 557, - [1722] = 565, - [1723] = 566, - [1724] = 589, - [1725] = 486, - [1726] = 600, - [1727] = 601, - [1728] = 604, - [1729] = 620, - [1730] = 631, - [1731] = 652, - [1732] = 656, - [1733] = 661, - [1734] = 677, - [1735] = 678, - [1736] = 679, - [1737] = 379, - [1738] = 680, - [1739] = 828, - [1740] = 389, - [1741] = 741, - [1742] = 758, - [1743] = 658, - [1744] = 759, - [1745] = 761, - [1746] = 766, - [1747] = 777, - [1748] = 718, - [1749] = 778, - [1750] = 540, - [1751] = 920, - [1752] = 946, - [1753] = 933, - [1754] = 877, - [1755] = 851, - [1756] = 852, - [1757] = 859, - [1758] = 394, - [1759] = 824, - [1760] = 596, - [1761] = 905, - [1762] = 945, - [1763] = 914, - [1764] = 915, - [1765] = 872, - [1766] = 922, - [1767] = 931, - [1768] = 398, - [1769] = 396, - [1770] = 941, - [1771] = 883, - [1772] = 769, - [1773] = 674, - [1774] = 754, - [1775] = 527, - [1776] = 750, - [1777] = 834, - [1778] = 696, - [1779] = 677, - [1780] = 934, - [1781] = 749, - [1782] = 678, - [1783] = 240, - [1784] = 236, - [1785] = 235, - [1786] = 216, - [1787] = 296, - [1788] = 216, - [1789] = 242, - [1790] = 236, - [1791] = 432, - [1792] = 240, - [1793] = 235, - [1794] = 941, - [1795] = 242, - [1796] = 668, - [1797] = 404, - [1798] = 1798, - [1799] = 295, - [1800] = 296, - [1801] = 394, - [1802] = 297, - [1803] = 289, - [1804] = 294, - [1805] = 241, - [1806] = 298, - [1807] = 241, - [1808] = 298, - [1809] = 393, - [1810] = 295, - [1811] = 294, - [1812] = 297, - [1813] = 289, - [1814] = 943, - [1815] = 922, - [1816] = 389, - [1817] = 454, - [1818] = 452, - [1819] = 451, - [1820] = 927, - [1821] = 602, - [1822] = 623, - [1823] = 396, - [1824] = 893, - [1825] = 631, - [1826] = 465, - [1827] = 466, - [1828] = 467, - [1829] = 726, - [1830] = 398, - [1831] = 468, - [1832] = 540, - [1833] = 716, - [1834] = 282, - [1835] = 706, - [1836] = 282, - [1837] = 527, - [1838] = 718, - [1839] = 941, - [1840] = 920, - [1841] = 946, - [1842] = 933, - [1843] = 877, - [1844] = 872, - [1845] = 836, - [1846] = 678, - [1847] = 677, - [1848] = 834, - [1849] = 749, - [1850] = 934, - [1851] = 674, - [1852] = 945, - [1853] = 905, - [1854] = 658, - [1855] = 486, - [1856] = 472, - [1857] = 883, - [1858] = 828, - [1859] = 396, - [1860] = 754, - [1861] = 750, - [1862] = 470, - [1863] = 865, - [1864] = 696, - [1865] = 678, - [1866] = 556, - [1867] = 677, - [1868] = 931, - [1869] = 557, - [1870] = 389, - [1871] = 379, - [1872] = 859, - [1873] = 565, - [1874] = 566, - [1875] = 589, - [1876] = 596, - [1877] = 600, - [1878] = 601, - [1879] = 604, - [1880] = 453, - [1881] = 379, - [1882] = 456, - [1883] = 459, - [1884] = 460, - [1885] = 620, - [1886] = 473, - [1887] = 915, - [1888] = 914, - [1889] = 628, - [1890] = 824, - [1891] = 1891, - [1892] = 653, - [1893] = 654, - [1894] = 240, - [1895] = 852, - [1896] = 660, - [1897] = 235, - [1898] = 652, - [1899] = 298, - [1900] = 672, - [1901] = 676, - [1902] = 686, - [1903] = 711, - [1904] = 656, - [1905] = 732, - [1906] = 853, - [1907] = 661, - [1908] = 679, - [1909] = 809, - [1910] = 680, - [1911] = 450, - [1912] = 810, - [1913] = 812, - [1914] = 448, - [1915] = 741, - [1916] = 758, - [1917] = 813, - [1918] = 759, - [1919] = 761, - [1920] = 766, - [1921] = 241, - [1922] = 777, - [1923] = 778, - [1924] = 851, - [1925] = 840, - [1926] = 861, - [1927] = 295, - [1928] = 878, - [1929] = 297, - [1930] = 879, - [1931] = 398, - [1932] = 289, - [1933] = 769, - [1934] = 294, - [1935] = 404, - [1936] = 984, - [1937] = 282, - [1938] = 282, - [1939] = 432, - [1940] = 393, - [1941] = 282, - [1942] = 393, - [1943] = 1943, - [1944] = 1944, - [1945] = 1945, - [1946] = 404, - [1947] = 432, - [1948] = 628, - [1949] = 557, - [1950] = 653, - [1951] = 879, - [1952] = 565, - [1953] = 754, - [1954] = 750, - [1955] = 566, - [1956] = 654, - [1957] = 668, - [1958] = 589, - [1959] = 660, - [1960] = 672, - [1961] = 596, - [1962] = 676, - [1963] = 600, - [1964] = 686, - [1965] = 711, - [1966] = 914, - [1967] = 732, - [1968] = 601, - [1969] = 527, - [1970] = 853, - [1971] = 604, - [1972] = 769, - [1973] = 620, - [1974] = 915, - [1975] = 628, - [1976] = 809, - [1977] = 810, - [1978] = 631, - [1979] = 652, - [1980] = 656, - [1981] = 812, - [1982] = 661, - [1983] = 813, - [1984] = 840, - [1985] = 861, - [1986] = 679, - [1987] = 680, - [1988] = 394, - [1989] = 741, - [1990] = 758, - [1991] = 941, - [1992] = 759, - [1993] = 761, - [1994] = 766, - [1995] = 777, - [1996] = 778, - [1997] = 452, - [1998] = 824, - [1999] = 851, - [2000] = 852, - [2001] = 859, - [2002] = 865, - [2003] = 861, - [2004] = 677, - [2005] = 678, - [2006] = 878, - [2007] = 486, + [1613] = 1613, + [1614] = 69, + [1615] = 67, + [1616] = 70, + [1617] = 68, + [1618] = 71, + [1619] = 1619, + [1620] = 1620, + [1621] = 1621, + [1622] = 1622, + [1623] = 69, + [1624] = 1624, + [1625] = 1625, + [1626] = 69, + [1627] = 1627, + [1628] = 821, + [1629] = 825, + [1630] = 702, + [1631] = 703, + [1632] = 577, + [1633] = 703, + [1634] = 821, + [1635] = 825, + [1636] = 702, + [1637] = 577, + [1638] = 821, + [1639] = 1639, + [1640] = 825, + [1641] = 825, + [1642] = 821, + [1643] = 703, + [1644] = 702, + [1645] = 703, + [1646] = 702, + [1647] = 577, + [1648] = 577, + [1649] = 254, + [1650] = 257, + [1651] = 275, + [1652] = 256, + [1653] = 251, + [1654] = 280, + [1655] = 250, + [1656] = 269, + [1657] = 283, + [1658] = 252, + [1659] = 253, + [1660] = 260, + [1661] = 215, + [1662] = 216, + [1663] = 361, + [1664] = 359, + [1665] = 425, + [1666] = 402, + [1667] = 275, + [1668] = 1668, + [1669] = 764, + [1670] = 408, + [1671] = 260, + [1672] = 670, + [1673] = 419, + [1674] = 656, + [1675] = 1675, + [1676] = 652, + [1677] = 700, + [1678] = 647, + [1679] = 644, + [1680] = 1675, + [1681] = 616, + [1682] = 430, + [1683] = 593, + [1684] = 591, + [1685] = 569, + [1686] = 430, + [1687] = 528, + [1688] = 514, + [1689] = 283, + [1690] = 257, + [1691] = 280, + [1692] = 256, + [1693] = 253, + [1694] = 252, + [1695] = 251, + [1696] = 250, + [1697] = 509, + [1698] = 501, + [1699] = 771, + [1700] = 788, + [1701] = 465, + [1702] = 277, + [1703] = 406, + [1704] = 460, + [1705] = 269, + [1706] = 486, + [1707] = 814, + [1708] = 401, + [1709] = 466, + [1710] = 581, + [1711] = 696, + [1712] = 780, + [1713] = 685, + [1714] = 680, + [1715] = 684, + [1716] = 681, + [1717] = 546, + [1718] = 777, + [1719] = 760, + [1720] = 450, + [1721] = 457, + [1722] = 699, + [1723] = 698, + [1724] = 697, + [1725] = 746, + [1726] = 458, + [1727] = 461, + [1728] = 479, + [1729] = 480, + [1730] = 481, + [1731] = 707, + [1732] = 484, + [1733] = 750, + [1734] = 801, + [1735] = 564, + [1736] = 778, + [1737] = 468, + [1738] = 498, + [1739] = 449, + [1740] = 502, + [1741] = 714, + [1742] = 697, + [1743] = 696, + [1744] = 793, + [1745] = 513, + [1746] = 406, + [1747] = 964, + [1748] = 958, + [1749] = 517, + [1750] = 573, + [1751] = 531, + [1752] = 826, + [1753] = 478, + [1754] = 574, + [1755] = 582, + [1756] = 482, + [1757] = 901, + [1758] = 583, + [1759] = 606, + [1760] = 613, + [1761] = 617, + [1762] = 955, + [1763] = 832, + [1764] = 618, + [1765] = 907, + [1766] = 954, + [1767] = 621, + [1768] = 886, + [1769] = 888, + [1770] = 483, + [1771] = 911, + [1772] = 488, + [1773] = 920, + [1774] = 675, + [1775] = 638, + [1776] = 646, + [1777] = 649, + [1778] = 359, + [1779] = 936, + [1780] = 361, + [1781] = 884, + [1782] = 878, + [1783] = 871, + [1784] = 425, + [1785] = 402, + [1786] = 581, + [1787] = 922, + [1788] = 533, + [1789] = 870, + [1790] = 406, + [1791] = 671, + [1792] = 797, + [1793] = 796, + [1794] = 785, + [1795] = 257, + [1796] = 256, + [1797] = 581, + [1798] = 280, + [1799] = 283, + [1800] = 406, + [1801] = 257, + [1802] = 401, + [1803] = 251, + [1804] = 252, + [1805] = 269, + [1806] = 275, + [1807] = 408, + [1808] = 253, + [1809] = 670, + [1810] = 269, + [1811] = 250, + [1812] = 216, + [1813] = 419, + [1814] = 260, + [1815] = 275, + [1816] = 1816, + [1817] = 250, + [1818] = 251, + [1819] = 216, + [1820] = 252, + [1821] = 253, + [1822] = 256, + [1823] = 260, + [1824] = 283, + [1825] = 280, + [1826] = 577, + [1827] = 617, + [1828] = 466, + [1829] = 954, + [1830] = 922, + [1831] = 277, + [1832] = 425, + [1833] = 1833, + [1834] = 955, + [1835] = 801, + [1836] = 277, + [1837] = 425, + [1838] = 832, + [1839] = 958, + [1840] = 707, + [1841] = 964, + [1842] = 750, + [1843] = 460, + [1844] = 793, + [1845] = 886, + [1846] = 826, + [1847] = 468, + [1848] = 486, + [1849] = 696, + [1850] = 280, + [1851] = 283, + [1852] = 697, + [1853] = 402, + [1854] = 498, + [1855] = 531, + [1856] = 517, + [1857] = 513, + [1858] = 449, + [1859] = 450, + [1860] = 501, + [1861] = 696, + [1862] = 457, + [1863] = 458, + [1864] = 461, + [1865] = 697, + [1866] = 509, + [1867] = 514, + [1868] = 528, + [1869] = 714, + [1870] = 581, + [1871] = 479, + [1872] = 480, + [1873] = 481, + [1874] = 901, + [1875] = 936, + [1876] = 484, + [1877] = 502, + [1878] = 702, + [1879] = 703, + [1880] = 573, + [1881] = 574, + [1882] = 582, + [1883] = 814, + [1884] = 359, + [1885] = 478, + [1886] = 361, + [1887] = 569, + [1888] = 583, + [1889] = 606, + [1890] = 613, + [1891] = 591, + [1892] = 593, + [1893] = 465, + [1894] = 618, + [1895] = 616, + [1896] = 644, + [1897] = 647, + [1898] = 621, + [1899] = 638, + [1900] = 646, + [1901] = 671, + [1902] = 675, + [1903] = 680, + [1904] = 482, + [1905] = 907, + [1906] = 652, + [1907] = 698, + [1908] = 699, + [1909] = 821, + [1910] = 483, + [1911] = 656, + [1912] = 402, + [1913] = 825, + [1914] = 760, + [1915] = 488, + [1916] = 533, + [1917] = 546, + [1918] = 564, + [1919] = 777, + [1920] = 788, + [1921] = 681, + [1922] = 920, + [1923] = 888, + [1924] = 250, + [1925] = 778, + [1926] = 251, + [1927] = 911, + [1928] = 252, + [1929] = 780, + [1930] = 785, + [1931] = 253, + [1932] = 796, + [1933] = 797, + [1934] = 684, + [1935] = 870, + [1936] = 257, + [1937] = 871, + [1938] = 878, + [1939] = 884, + [1940] = 649, + [1941] = 700, + [1942] = 685, + [1943] = 764, + [1944] = 771, + [1945] = 746, + [1946] = 256, + [1947] = 361, + [1948] = 359, + [1949] = 408, + [1950] = 988, + [1951] = 401, + [1952] = 419, + [1953] = 277, + [1954] = 408, + [1955] = 277, + [1956] = 419, + [1957] = 1957, + [1958] = 1958, + [1959] = 1959, + [1960] = 277, + [1961] = 401, + [1962] = 697, + [1963] = 513, + [1964] = 483, + [1965] = 826, + [1966] = 478, + [1967] = 750, + [1968] = 801, + [1969] = 482, + [1970] = 1970, + [1971] = 922, + [1972] = 406, + [1973] = 888, + [1974] = 488, + [1975] = 533, + [1976] = 884, + [1977] = 870, + [1978] = 546, + [1979] = 964, + [1980] = 955, + [1981] = 466, + [1982] = 465, + [1983] = 406, + [1984] = 581, + [1985] = 460, + [1986] = 486, + [1987] = 814, + [1988] = 954, + [1989] = 670, + [1990] = 685, + [1991] = 684, + [1992] = 681, + [1993] = 501, + [1994] = 509, + [1995] = 514, + [1996] = 528, + [1997] = 760, + [1998] = 936, + [1999] = 826, + [2000] = 750, + [2001] = 832, + [2002] = 569, + [2003] = 591, + [2004] = 593, + [2005] = 616, + [2006] = 644, + [2007] = 647, [2008] = 468, - [2009] = 467, - [2010] = 466, - [2011] = 465, - [2012] = 941, - [2013] = 840, - [2014] = 658, - [2015] = 905, - [2016] = 394, - [2017] = 879, - [2018] = 473, - [2019] = 824, - [2020] = 945, - [2021] = 813, - [2022] = 834, - [2023] = 451, - [2024] = 696, - [2025] = 927, - [2026] = 602, - [2027] = 679, - [2028] = 859, - [2029] = 852, - [2030] = 623, - [2031] = 943, - [2032] = 812, - [2033] = 893, - [2034] = 810, - [2035] = 828, - [2036] = 931, - [2037] = 556, - [2038] = 778, - [2039] = 460, - [2040] = 696, - [2041] = 777, - [2042] = 809, - [2043] = 766, - [2044] = 454, - [2045] = 459, - [2046] = 631, - [2047] = 456, - [2048] = 883, - [2049] = 761, - [2050] = 759, - [2051] = 758, - [2052] = 750, - [2053] = 754, - [2054] = 922, - [2055] = 453, - [2056] = 828, - [2057] = 453, - [2058] = 931, - [2059] = 680, - [2060] = 674, - [2061] = 934, - [2062] = 749, - [2063] = 883, - [2064] = 726, - [2065] = 941, - [2066] = 834, - [2067] = 836, - [2068] = 872, - [2069] = 877, - [2070] = 853, - [2071] = 920, - [2072] = 668, - [2073] = 922, - [2074] = 933, - [2075] = 946, - [2076] = 941, - [2077] = 456, - [2078] = 941, - [2079] = 878, - [2080] = 620, - [2081] = 604, - [2082] = 706, - [2083] = 718, - [2084] = 394, - [2085] = 540, - [2086] = 678, - [2087] = 658, - [2088] = 905, - [2089] = 945, - [2090] = 674, - [2091] = 934, - [2092] = 749, - [2093] = 677, - [2094] = 836, - [2095] = 2095, - [2096] = 726, - [2097] = 601, - [2098] = 600, - [2099] = 459, - [2100] = 668, - [2101] = 460, - [2102] = 527, - [2103] = 566, - [2104] = 732, - [2105] = 623, - [2106] = 602, - [2107] = 927, - [2108] = 451, - [2109] = 452, - [2110] = 454, - [2111] = 711, - [2112] = 872, - [2113] = 686, - [2114] = 676, - [2115] = 672, - [2116] = 465, - [2117] = 466, - [2118] = 467, - [2119] = 660, - [2120] = 540, - [2121] = 468, - [2122] = 877, - [2123] = 933, - [2124] = 565, - [2125] = 946, - [2126] = 769, - [2127] = 2127, - [2128] = 556, - [2129] = 557, - [2130] = 473, - [2131] = 486, - [2132] = 920, - [2133] = 589, - [2134] = 654, - [2135] = 596, - [2136] = 915, - [2137] = 914, - [2138] = 706, - [2139] = 865, - [2140] = 653, - [2141] = 851, - [2142] = 893, - [2143] = 677, - [2144] = 652, - [2145] = 656, - [2146] = 678, - [2147] = 661, - [2148] = 677, - [2149] = 678, - [2150] = 943, - [2151] = 741, - [2152] = 718, - [2153] = 470, - [2154] = 716, - [2155] = 448, - [2156] = 450, - [2157] = 472, - [2158] = 296, - [2159] = 236, - [2160] = 2160, - [2161] = 242, - [2162] = 389, - [2163] = 2163, - [2164] = 379, - [2165] = 2165, - [2166] = 398, - [2167] = 2167, - [2168] = 2168, - [2169] = 396, - [2170] = 2170, - [2171] = 393, - [2172] = 2172, - [2173] = 2173, - [2174] = 396, - [2175] = 398, - [2176] = 404, - [2177] = 396, - [2178] = 398, - [2179] = 2179, - [2180] = 432, - [2181] = 941, - [2182] = 467, - [2183] = 602, - [2184] = 878, - [2185] = 761, - [2186] = 759, - [2187] = 758, - [2188] = 741, - [2189] = 861, - [2190] = 680, - [2191] = 679, - [2192] = 661, - [2193] = 828, - [2194] = 840, - [2195] = 656, - [2196] = 652, - [2197] = 677, - [2198] = 678, - [2199] = 628, - [2200] = 620, - [2201] = 472, - [2202] = 813, - [2203] = 812, - [2204] = 810, - [2205] = 809, - [2206] = 604, - [2207] = 601, - [2208] = 600, - [2209] = 596, - [2210] = 716, - [2211] = 883, - [2212] = 769, - [2213] = 754, - [2214] = 589, - [2215] = 566, - [2216] = 750, - [2217] = 565, - [2218] = 631, - [2219] = 658, - [2220] = 853, - [2221] = 557, - [2222] = 453, - [2223] = 556, - [2224] = 696, - [2225] = 905, - [2226] = 941, - [2227] = 732, - [2228] = 450, - [2229] = 486, - [2230] = 711, - [2231] = 686, - [2232] = 676, - [2233] = 672, - [2234] = 660, - [2235] = 468, - [2236] = 654, - [2237] = 945, - [2238] = 653, - [2239] = 931, - [2240] = 466, - [2241] = 865, - [2242] = 465, - [2243] = 240, - [2244] = 766, - [2245] = 454, - [2246] = 452, - [2247] = 2247, - [2248] = 451, - [2249] = 927, - [2250] = 2250, + [2009] = 652, + [2010] = 656, + [2011] = 531, + [2012] = 517, + [2013] = 920, + [2014] = 911, + [2015] = 502, + [2016] = 700, + [2017] = 582, + [2018] = 583, + [2019] = 764, + [2020] = 771, + [2021] = 617, + [2022] = 618, + [2023] = 621, + [2024] = 638, + [2025] = 646, + [2026] = 788, + [2027] = 907, + [2028] = 698, + [2029] = 699, + [2030] = 814, + [2031] = 777, + [2032] = 778, + [2033] = 780, + [2034] = 785, + [2035] = 796, + [2036] = 797, + [2037] = 696, + [2038] = 697, + [2039] = 901, + [2040] = 871, + [2041] = 878, + [2042] = 466, + [2043] = 465, + [2044] = 888, + [2045] = 460, + [2046] = 486, + [2047] = 501, + [2048] = 509, + [2049] = 514, + [2050] = 528, + [2051] = 936, + [2052] = 569, + [2053] = 591, + [2054] = 593, + [2055] = 616, + [2056] = 644, + [2057] = 714, + [2058] = 793, + [2059] = 647, + [2060] = 652, + [2061] = 656, + [2062] = 564, + [2063] = 958, + [2064] = 920, + [2065] = 954, + [2066] = 911, + [2067] = 700, + [2068] = 764, + [2069] = 771, + [2070] = 886, + [2071] = 649, + [2072] = 788, + [2073] = 907, + [2074] = 696, + [2075] = 901, + [2076] = 681, + [2077] = 697, + [2078] = 498, + [2079] = 696, + [2080] = 680, + [2081] = 684, + [2082] = 675, + [2083] = 746, + [2084] = 671, + [2085] = 832, + [2086] = 685, + [2087] = 670, + [2088] = 746, + [2089] = 696, + [2090] = 581, + [2091] = 697, + [2092] = 707, + [2093] = 531, + [2094] = 406, + [2095] = 564, + [2096] = 546, + [2097] = 533, + [2098] = 581, + [2099] = 581, + [2100] = 581, + [2101] = 488, + [2102] = 483, + [2103] = 482, + [2104] = 478, + [2105] = 517, + [2106] = 513, + [2107] = 884, + [2108] = 878, + [2109] = 498, + [2110] = 468, + [2111] = 871, + [2112] = 870, + [2113] = 797, + [2114] = 796, + [2115] = 785, + [2116] = 780, + [2117] = 801, + [2118] = 778, + [2119] = 777, + [2120] = 922, + [2121] = 760, + [2122] = 2122, + [2123] = 714, + [2124] = 793, + [2125] = 699, + [2126] = 698, + [2127] = 964, + [2128] = 958, + [2129] = 680, + [2130] = 955, + [2131] = 707, + [2132] = 675, + [2133] = 671, + [2134] = 449, + [2135] = 670, + [2136] = 649, + [2137] = 646, + [2138] = 638, + [2139] = 621, + [2140] = 450, + [2141] = 449, + [2142] = 450, + [2143] = 618, + [2144] = 457, + [2145] = 458, + [2146] = 461, + [2147] = 617, + [2148] = 613, + [2149] = 606, + [2150] = 886, + [2151] = 479, + [2152] = 480, + [2153] = 481, + [2154] = 583, + [2155] = 582, + [2156] = 484, + [2157] = 574, + [2158] = 573, + [2159] = 502, + [2160] = 484, + [2161] = 481, + [2162] = 480, + [2163] = 573, + [2164] = 574, + [2165] = 479, + [2166] = 461, + [2167] = 458, + [2168] = 606, + [2169] = 457, + [2170] = 613, + [2171] = 825, + [2172] = 821, + [2173] = 703, + [2174] = 702, + [2175] = 577, + [2176] = 269, + [2177] = 260, + [2178] = 2178, + [2179] = 275, + [2180] = 359, + [2181] = 361, + [2182] = 2182, + [2183] = 401, + [2184] = 2184, + [2185] = 425, + [2186] = 402, + [2187] = 2187, + [2188] = 2188, + [2189] = 419, + [2190] = 2190, + [2191] = 2191, + [2192] = 2192, + [2193] = 2193, + [2194] = 402, + [2195] = 2195, + [2196] = 425, + [2197] = 581, + [2198] = 425, + [2199] = 2199, + [2200] = 408, + [2201] = 402, + [2202] = 764, + [2203] = 656, + [2204] = 684, + [2205] = 280, + [2206] = 2206, + [2207] = 283, + [2208] = 685, + [2209] = 746, + [2210] = 649, + [2211] = 886, + [2212] = 2212, + [2213] = 466, + [2214] = 465, + [2215] = 954, + [2216] = 955, + [2217] = 577, + [2218] = 958, + [2219] = 964, + [2220] = 793, + [2221] = 460, + [2222] = 714, + [2223] = 702, + [2224] = 703, + [2225] = 821, + [2226] = 486, + [2227] = 825, + [2228] = 901, + [2229] = 814, + [2230] = 2230, + [2231] = 2231, + [2232] = 564, + [2233] = 696, + [2234] = 2234, + [2235] = 697, + [2236] = 907, + [2237] = 501, + [2238] = 509, + [2239] = 514, + [2240] = 528, + [2241] = 884, + [2242] = 878, + [2243] = 871, + [2244] = 870, + [2245] = 546, + [2246] = 797, + [2247] = 796, + [2248] = 785, + [2249] = 780, + [2250] = 778, [2251] = 777, - [2252] = 778, - [2253] = 674, - [2254] = 879, - [2255] = 623, - [2256] = 824, - [2257] = 943, - [2258] = 2258, - [2259] = 893, - [2260] = 934, - [2261] = 749, - [2262] = 470, - [2263] = 726, - [2264] = 2264, - [2265] = 540, - [2266] = 914, - [2267] = 915, - [2268] = 235, - [2269] = 473, - [2270] = 851, - [2271] = 298, - [2272] = 706, - [2273] = 527, - [2274] = 289, - [2275] = 718, - [2276] = 460, - [2277] = 852, - [2278] = 459, - [2279] = 241, - [2280] = 920, - [2281] = 946, - [2282] = 933, - [2283] = 294, - [2284] = 834, - [2285] = 448, - [2286] = 859, - [2287] = 456, - [2288] = 877, - [2289] = 872, - [2290] = 922, - [2291] = 2291, - [2292] = 295, - [2293] = 836, - [2294] = 297, - [2295] = 297, - [2296] = 2296, - [2297] = 294, - [2298] = 2298, - [2299] = 241, - [2300] = 298, - [2301] = 295, - [2302] = 296, - [2303] = 1147, - [2304] = 1149, - [2305] = 289, - [2306] = 668, - [2307] = 242, - [2308] = 235, - [2309] = 236, - [2310] = 240, - [2311] = 398, - [2312] = 396, - [2313] = 394, - [2314] = 379, - [2315] = 389, - [2316] = 2316, - [2317] = 668, - [2318] = 394, - [2319] = 977, - [2320] = 393, - [2321] = 236, - [2322] = 242, - [2323] = 404, - [2324] = 432, - [2325] = 296, - [2326] = 931, - [2327] = 600, - [2328] = 696, - [2329] = 601, - [2330] = 754, - [2331] = 750, - [2332] = 289, - [2333] = 240, - [2334] = 596, - [2335] = 769, - [2336] = 473, - [2337] = 235, - [2338] = 604, - [2339] = 915, - [2340] = 828, - [2341] = 589, - [2342] = 566, - [2343] = 686, - [2344] = 914, - [2345] = 711, - [2346] = 861, - [2347] = 620, - [2348] = 2348, - [2349] = 557, - [2350] = 556, - [2351] = 628, - [2352] = 235, - [2353] = 631, - [2354] = 460, - [2355] = 486, - [2356] = 824, - [2357] = 459, - [2358] = 298, - [2359] = 241, - [2360] = 240, - [2361] = 652, - [2362] = 294, - [2363] = 726, - [2364] = 656, - [2365] = 297, - [2366] = 661, - [2367] = 295, - [2368] = 2348, - [2369] = 456, - [2370] = 732, - [2371] = 922, - [2372] = 2348, - [2373] = 676, - [2374] = 677, - [2375] = 672, - [2376] = 678, - [2377] = 2348, - [2378] = 679, - [2379] = 680, - [2380] = 741, - [2381] = 758, - [2382] = 759, - [2383] = 761, - [2384] = 660, - [2385] = 453, - [2386] = 389, - [2387] = 379, - [2388] = 766, - [2389] = 527, - [2390] = 777, - [2391] = 2348, - [2392] = 778, - [2393] = 654, - [2394] = 2348, - [2395] = 653, - [2396] = 295, - [2397] = 883, - [2398] = 2348, - [2399] = 2348, - [2400] = 297, - [2401] = 851, - [2402] = 852, - [2403] = 289, - [2404] = 294, - [2405] = 2348, - [2406] = 879, - [2407] = 859, - [2408] = 840, - [2409] = 468, - [2410] = 865, - [2411] = 565, - [2412] = 298, - [2413] = 878, - [2414] = 467, - [2415] = 466, - [2416] = 465, - [2417] = 2348, - [2418] = 398, - [2419] = 984, - [2420] = 658, - [2421] = 991, - [2422] = 905, - [2423] = 945, - [2424] = 674, - [2425] = 934, - [2426] = 454, - [2427] = 241, - [2428] = 749, - [2429] = 396, - [2430] = 2348, - [2431] = 452, - [2432] = 834, - [2433] = 836, - [2434] = 451, - [2435] = 872, - [2436] = 877, - [2437] = 927, - [2438] = 813, - [2439] = 933, - [2440] = 946, - [2441] = 602, - [2442] = 920, - [2443] = 623, - [2444] = 943, - [2445] = 718, - [2446] = 853, - [2447] = 893, - [2448] = 706, - [2449] = 540, - [2450] = 941, - [2451] = 282, - [2452] = 2348, - [2453] = 2348, - [2454] = 812, - [2455] = 810, - [2456] = 809, - [2457] = 941, - [2458] = 941, - [2459] = 996, - [2460] = 998, - [2461] = 1002, - [2462] = 242, - [2463] = 999, - [2464] = 297, - [2465] = 295, - [2466] = 941, - [2467] = 295, - [2468] = 297, - [2469] = 289, - [2470] = 294, - [2471] = 241, - [2472] = 235, - [2473] = 240, - [2474] = 294, - [2475] = 971, - [2476] = 241, - [2477] = 71, - [2478] = 235, - [2479] = 240, - [2480] = 298, - [2481] = 70, - [2482] = 68, - [2483] = 236, - [2484] = 298, - [2485] = 668, - [2486] = 394, - [2487] = 393, - [2488] = 289, - [2489] = 404, - [2490] = 394, - [2491] = 432, - [2492] = 668, - [2493] = 296, - [2494] = 851, - [2495] = 726, - [2496] = 828, - [2497] = 473, - [2498] = 556, - [2499] = 557, - [2500] = 941, - [2501] = 565, - [2502] = 566, - [2503] = 678, - [2504] = 677, - [2505] = 460, - [2506] = 589, - [2507] = 459, - [2508] = 668, - [2509] = 861, - [2510] = 977, - [2511] = 840, - [2512] = 596, - [2513] = 672, - [2514] = 883, - [2515] = 396, - [2516] = 601, - [2517] = 398, - [2518] = 604, - [2519] = 620, - [2520] = 628, - [2521] = 456, - [2522] = 652, - [2523] = 600, - [2524] = 922, - [2525] = 661, - [2526] = 679, - [2527] = 658, - [2528] = 680, - [2529] = 453, - [2530] = 905, - [2531] = 741, - [2532] = 758, - [2533] = 759, - [2534] = 945, - [2535] = 813, - [2536] = 761, - [2537] = 812, - [2538] = 810, - [2539] = 766, - [2540] = 777, - [2541] = 778, - [2542] = 931, - [2543] = 852, - [2544] = 809, - [2545] = 674, - [2546] = 934, - [2547] = 859, - [2548] = 943, - [2549] = 893, - [2550] = 865, - [2551] = 298, - [2552] = 623, - [2553] = 241, - [2554] = 294, - [2555] = 289, - [2556] = 297, - [2557] = 295, - [2558] = 749, - [2559] = 486, - [2560] = 915, - [2561] = 914, - [2562] = 468, - [2563] = 834, - [2564] = 653, - [2565] = 836, - [2566] = 298, - [2567] = 872, - [2568] = 654, - [2569] = 235, - [2570] = 240, - [2571] = 660, - [2572] = 878, - [2573] = 241, - [2574] = 879, - [2575] = 294, - [2576] = 289, - [2577] = 297, - [2578] = 295, - [2579] = 769, - [2580] = 676, - [2581] = 2581, - [2582] = 656, - [2583] = 754, - [2584] = 467, - [2585] = 298, - [2586] = 466, - [2587] = 241, - [2588] = 294, - [2589] = 289, - [2590] = 750, - [2591] = 297, - [2592] = 295, - [2593] = 877, - [2594] = 240, - [2595] = 933, - [2596] = 946, - [2597] = 853, - [2598] = 394, - [2599] = 631, - [2600] = 235, - [2601] = 240, - [2602] = 920, - [2603] = 977, - [2604] = 465, - [2605] = 454, - [2606] = 984, - [2607] = 718, - [2608] = 452, - [2609] = 527, - [2610] = 706, - [2611] = 732, - [2612] = 451, - [2613] = 696, - [2614] = 678, - [2615] = 927, - [2616] = 824, - [2617] = 677, - [2618] = 540, - [2619] = 711, - [2620] = 389, - [2621] = 379, - [2622] = 686, - [2623] = 602, - [2624] = 235, - [2625] = 2625, - [2626] = 2625, - [2627] = 2625, - [2628] = 984, - [2629] = 2629, - [2630] = 2629, - [2631] = 2631, - [2632] = 2632, - [2633] = 2629, - [2634] = 2625, - [2635] = 2635, - [2636] = 2629, - [2637] = 2625, - [2638] = 2625, - [2639] = 678, - [2640] = 2625, - [2641] = 2641, - [2642] = 2625, - [2643] = 282, - [2644] = 2625, - [2645] = 282, - [2646] = 282, - [2647] = 941, - [2648] = 2648, - [2649] = 2629, - [2650] = 2629, - [2651] = 2629, - [2652] = 404, - [2653] = 393, - [2654] = 394, - [2655] = 2629, - [2656] = 2629, - [2657] = 432, - [2658] = 677, - [2659] = 2629, - [2660] = 2629, - [2661] = 668, - [2662] = 2625, - [2663] = 2625, - [2664] = 2625, - [2665] = 2629, - [2666] = 2629, + [2252] = 760, + [2253] = 533, + [2254] = 699, + [2255] = 698, + [2256] = 680, + [2257] = 936, + [2258] = 788, + [2259] = 675, + [2260] = 671, + [2261] = 646, + [2262] = 638, + [2263] = 621, + [2264] = 569, + [2265] = 250, + [2266] = 888, + [2267] = 591, + [2268] = 593, + [2269] = 616, + [2270] = 644, + [2271] = 647, + [2272] = 251, + [2273] = 652, + [2274] = 252, + [2275] = 681, + [2276] = 253, + [2277] = 618, + [2278] = 256, + [2279] = 617, + [2280] = 613, + [2281] = 606, + [2282] = 583, + [2283] = 582, + [2284] = 574, + [2285] = 257, + [2286] = 573, + [2287] = 502, + [2288] = 488, + [2289] = 484, + [2290] = 481, + [2291] = 483, + [2292] = 480, + [2293] = 479, + [2294] = 461, + [2295] = 482, + [2296] = 478, + [2297] = 458, + [2298] = 457, + [2299] = 450, + [2300] = 449, + [2301] = 513, + [2302] = 517, + [2303] = 920, + [2304] = 911, + [2305] = 531, + [2306] = 700, + [2307] = 581, + [2308] = 707, + [2309] = 498, + [2310] = 468, + [2311] = 922, + [2312] = 801, + [2313] = 832, + [2314] = 750, + [2315] = 771, + [2316] = 826, + [2317] = 253, + [2318] = 252, + [2319] = 1155, + [2320] = 280, + [2321] = 269, + [2322] = 275, + [2323] = 283, + [2324] = 670, + [2325] = 1156, + [2326] = 2326, + [2327] = 402, + [2328] = 250, + [2329] = 425, + [2330] = 251, + [2331] = 406, + [2332] = 256, + [2333] = 2333, + [2334] = 260, + [2335] = 257, + [2336] = 2336, + [2337] = 359, + [2338] = 361, + [2339] = 408, + [2340] = 269, + [2341] = 670, + [2342] = 275, + [2343] = 406, + [2344] = 979, + [2345] = 260, + [2346] = 401, + [2347] = 419, + [2348] = 680, + [2349] = 546, + [2350] = 509, + [2351] = 251, + [2352] = 252, + [2353] = 253, + [2354] = 513, + [2355] = 449, + [2356] = 450, + [2357] = 277, + [2358] = 256, + [2359] = 2359, + [2360] = 257, + [2361] = 591, + [2362] = 457, + [2363] = 479, + [2364] = 911, + [2365] = 480, + [2366] = 481, + [2367] = 2359, + [2368] = 517, + [2369] = 788, + [2370] = 888, + [2371] = 988, + [2372] = 920, + [2373] = 531, + [2374] = 458, + [2375] = 2359, + [2376] = 484, + [2377] = 878, + [2378] = 2359, + [2379] = 502, + [2380] = 461, + [2381] = 514, + [2382] = 528, + [2383] = 871, + [2384] = 870, + [2385] = 573, + [2386] = 574, + [2387] = 707, + [2388] = 250, + [2389] = 922, + [2390] = 582, + [2391] = 832, + [2392] = 583, + [2393] = 801, + [2394] = 501, + [2395] = 797, + [2396] = 280, + [2397] = 2359, + [2398] = 361, + [2399] = 359, + [2400] = 796, + [2401] = 613, + [2402] = 750, + [2403] = 616, + [2404] = 826, + [2405] = 700, + [2406] = 606, + [2407] = 785, + [2408] = 780, + [2409] = 283, + [2410] = 280, + [2411] = 764, + [2412] = 468, + [2413] = 569, + [2414] = 646, + [2415] = 617, + [2416] = 283, + [2417] = 2359, + [2418] = 2359, + [2419] = 2359, + [2420] = 257, + [2421] = 478, + [2422] = 901, + [2423] = 482, + [2424] = 618, + [2425] = 483, + [2426] = 621, + [2427] = 256, + [2428] = 488, + [2429] = 253, + [2430] = 252, + [2431] = 251, + [2432] = 533, + [2433] = 778, + [2434] = 564, + [2435] = 638, + [2436] = 681, + [2437] = 684, + [2438] = 685, + [2439] = 884, + [2440] = 649, + [2441] = 671, + [2442] = 675, + [2443] = 746, + [2444] = 250, + [2445] = 777, + [2446] = 466, + [2447] = 760, + [2448] = 886, + [2449] = 425, + [2450] = 2359, + [2451] = 954, + [2452] = 907, + [2453] = 696, + [2454] = 697, + [2455] = 955, + [2456] = 958, + [2457] = 964, + [2458] = 2359, + [2459] = 402, + [2460] = 985, + [2461] = 656, + [2462] = 465, + [2463] = 793, + [2464] = 714, + [2465] = 698, + [2466] = 498, + [2467] = 936, + [2468] = 486, + [2469] = 699, + [2470] = 460, + [2471] = 2359, + [2472] = 2359, + [2473] = 2359, + [2474] = 581, + [2475] = 652, + [2476] = 647, + [2477] = 593, + [2478] = 814, + [2479] = 771, + [2480] = 644, + [2481] = 581, + [2482] = 260, + [2483] = 994, + [2484] = 973, + [2485] = 1003, + [2486] = 1006, + [2487] = 70, + [2488] = 68, + [2489] = 581, + [2490] = 71, + [2491] = 406, + [2492] = 280, + [2493] = 283, + [2494] = 406, + [2495] = 1001, + [2496] = 581, + [2497] = 419, + [2498] = 401, + [2499] = 670, + [2500] = 250, + [2501] = 251, + [2502] = 252, + [2503] = 408, + [2504] = 256, + [2505] = 257, + [2506] = 253, + [2507] = 250, + [2508] = 275, + [2509] = 251, + [2510] = 256, + [2511] = 283, + [2512] = 280, + [2513] = 253, + [2514] = 252, + [2515] = 269, + [2516] = 257, + [2517] = 670, + [2518] = 256, + [2519] = 533, + [2520] = 251, + [2521] = 460, + [2522] = 675, + [2523] = 2523, + [2524] = 250, + [2525] = 361, + [2526] = 252, + [2527] = 253, + [2528] = 283, + [2529] = 884, + [2530] = 878, + [2531] = 871, + [2532] = 801, + [2533] = 425, + [2534] = 251, + [2535] = 979, + [2536] = 870, + [2537] = 252, + [2538] = 685, + [2539] = 684, + [2540] = 681, + [2541] = 501, + [2542] = 793, + [2543] = 901, + [2544] = 569, + [2545] = 922, + [2546] = 509, + [2547] = 514, + [2548] = 797, + [2549] = 796, + [2550] = 250, + [2551] = 283, + [2552] = 785, + [2553] = 780, + [2554] = 253, + [2555] = 778, + [2556] = 280, + [2557] = 746, + [2558] = 777, + [2559] = 760, + [2560] = 814, + [2561] = 699, + [2562] = 698, + [2563] = 988, + [2564] = 680, + [2565] = 714, + [2566] = 907, + [2567] = 832, + [2568] = 591, + [2569] = 671, + [2570] = 788, + [2571] = 646, + [2572] = 280, + [2573] = 638, + [2574] = 256, + [2575] = 621, + [2576] = 564, + [2577] = 546, + [2578] = 593, + [2579] = 616, + [2580] = 257, + [2581] = 644, + [2582] = 697, + [2583] = 696, + [2584] = 647, + [2585] = 528, + [2586] = 280, + [2587] = 402, + [2588] = 670, + [2589] = 652, + [2590] = 283, + [2591] = 886, + [2592] = 465, + [2593] = 656, + [2594] = 649, + [2595] = 618, + [2596] = 617, + [2597] = 613, + [2598] = 257, + [2599] = 256, + [2600] = 707, + [2601] = 359, + [2602] = 771, + [2603] = 606, + [2604] = 764, + [2605] = 486, + [2606] = 583, + [2607] = 750, + [2608] = 582, + [2609] = 574, + [2610] = 573, + [2611] = 466, + [2612] = 700, + [2613] = 502, + [2614] = 257, + [2615] = 911, + [2616] = 964, + [2617] = 488, + [2618] = 920, + [2619] = 483, + [2620] = 531, + [2621] = 826, + [2622] = 484, + [2623] = 958, + [2624] = 979, + [2625] = 253, + [2626] = 252, + [2627] = 482, + [2628] = 481, + [2629] = 480, + [2630] = 479, + [2631] = 696, + [2632] = 954, + [2633] = 936, + [2634] = 697, + [2635] = 478, + [2636] = 461, + [2637] = 458, + [2638] = 888, + [2639] = 251, + [2640] = 250, + [2641] = 457, + [2642] = 955, + [2643] = 468, + [2644] = 498, + [2645] = 450, + [2646] = 449, + [2647] = 513, + [2648] = 517, + [2649] = 406, + [2650] = 581, + [2651] = 277, + [2652] = 2652, + [2653] = 2652, + [2654] = 2654, + [2655] = 2654, + [2656] = 2654, + [2657] = 2652, + [2658] = 2654, + [2659] = 2654, + [2660] = 2652, + [2661] = 697, + [2662] = 2654, + [2663] = 696, + [2664] = 2654, + [2665] = 2652, + [2666] = 277, [2667] = 2667, - [2668] = 945, - [2669] = 2669, - [2670] = 2669, - [2671] = 298, - [2672] = 389, - [2673] = 741, - [2674] = 241, - [2675] = 2675, - [2676] = 486, - [2677] = 2677, - [2678] = 2675, - [2679] = 565, - [2680] = 566, - [2681] = 294, - [2682] = 600, - [2683] = 601, - [2684] = 604, - [2685] = 620, - [2686] = 628, + [2668] = 2668, + [2669] = 2652, + [2670] = 2654, + [2671] = 419, + [2672] = 2672, + [2673] = 2652, + [2674] = 2652, + [2675] = 408, + [2676] = 581, + [2677] = 2652, + [2678] = 2654, + [2679] = 670, + [2680] = 2652, + [2681] = 2654, + [2682] = 2652, + [2683] = 2654, + [2684] = 2654, + [2685] = 277, + [2686] = 401, [2687] = 2687, - [2688] = 289, - [2689] = 2669, - [2690] = 996, - [2691] = 2691, - [2692] = 679, - [2693] = 680, - [2694] = 2675, - [2695] = 2677, - [2696] = 758, - [2697] = 759, - [2698] = 761, - [2699] = 766, - [2700] = 777, - [2701] = 778, - [2702] = 2669, - [2703] = 852, - [2704] = 859, - [2705] = 2675, + [2688] = 2688, + [2689] = 988, + [2690] = 2652, + [2691] = 2652, + [2692] = 406, + [2693] = 457, + [2694] = 2694, + [2695] = 2695, + [2696] = 750, + [2697] = 832, + [2698] = 2694, + [2699] = 2672, + [2700] = 280, + [2701] = 670, + [2702] = 531, + [2703] = 517, + [2704] = 479, + [2705] = 283, [2706] = 2706, - [2707] = 879, - [2708] = 878, - [2709] = 824, - [2710] = 661, - [2711] = 656, - [2712] = 861, - [2713] = 2713, - [2714] = 652, - [2715] = 297, - [2716] = 2677, - [2717] = 840, - [2718] = 2675, - [2719] = 295, - [2720] = 813, - [2721] = 812, - [2722] = 810, - [2723] = 809, - [2724] = 853, - [2725] = 2691, - [2726] = 2677, - [2727] = 732, - [2728] = 711, - [2729] = 686, - [2730] = 676, - [2731] = 672, - [2732] = 660, - [2733] = 2675, - [2734] = 654, - [2735] = 2675, - [2736] = 653, - [2737] = 379, - [2738] = 596, - [2739] = 2669, - [2740] = 851, - [2741] = 914, - [2742] = 915, - [2743] = 473, - [2744] = 589, - [2745] = 893, - [2746] = 460, - [2747] = 459, - [2748] = 631, - [2749] = 456, - [2750] = 922, - [2751] = 557, - [2752] = 2691, - [2753] = 453, - [2754] = 556, + [2707] = 2694, + [2708] = 502, + [2709] = 681, + [2710] = 684, + [2711] = 685, + [2712] = 582, + [2713] = 583, + [2714] = 2695, + [2715] = 2695, + [2716] = 617, + [2717] = 618, + [2718] = 2695, + [2719] = 621, + [2720] = 638, + [2721] = 646, + [2722] = 2695, + [2723] = 955, + [2724] = 964, + [2725] = 884, + [2726] = 870, + [2727] = 698, + [2728] = 699, + [2729] = 760, + [2730] = 2694, + [2731] = 2731, + [2732] = 777, + [2733] = 778, + [2734] = 780, + [2735] = 785, + [2736] = 796, + [2737] = 797, + [2738] = 680, + [2739] = 871, + [2740] = 878, + [2741] = 2741, + [2742] = 2731, + [2743] = 2706, + [2744] = 2694, + [2745] = 2706, + [2746] = 466, + [2747] = 465, + [2748] = 888, + [2749] = 250, + [2750] = 2706, + [2751] = 675, + [2752] = 460, + [2753] = 671, + [2754] = 613, [2755] = 2755, - [2756] = 931, - [2757] = 668, - [2758] = 394, - [2759] = 468, - [2760] = 943, - [2761] = 2677, - [2762] = 467, - [2763] = 905, - [2764] = 2677, - [2765] = 466, - [2766] = 465, - [2767] = 2691, - [2768] = 394, - [2769] = 235, - [2770] = 454, - [2771] = 452, - [2772] = 451, - [2773] = 2773, - [2774] = 2774, - [2775] = 927, - [2776] = 602, - [2777] = 623, - [2778] = 396, - [2779] = 668, - [2780] = 295, - [2781] = 297, - [2782] = 2691, - [2783] = 2675, - [2784] = 726, - [2785] = 2677, - [2786] = 289, - [2787] = 294, - [2788] = 658, - [2789] = 2669, - [2790] = 241, - [2791] = 2675, - [2792] = 540, - [2793] = 298, - [2794] = 2677, - [2795] = 706, - [2796] = 235, - [2797] = 240, - [2798] = 2675, - [2799] = 2648, - [2800] = 398, - [2801] = 946, - [2802] = 933, - [2803] = 941, - [2804] = 668, - [2805] = 877, - [2806] = 872, - [2807] = 836, - [2808] = 834, - [2809] = 2677, - [2810] = 394, - [2811] = 2691, - [2812] = 2812, - [2813] = 865, - [2814] = 749, - [2815] = 934, - [2816] = 754, - [2817] = 941, - [2818] = 941, - [2819] = 2691, - [2820] = 674, - [2821] = 2691, - [2822] = 240, - [2823] = 2823, - [2824] = 2669, - [2825] = 668, - [2826] = 750, - [2827] = 2691, - [2828] = 2669, - [2829] = 527, - [2830] = 2675, - [2831] = 2675, - [2832] = 718, - [2833] = 883, - [2834] = 2691, - [2835] = 2677, - [2836] = 2675, - [2837] = 2677, - [2838] = 2677, - [2839] = 2669, - [2840] = 2669, + [2756] = 2694, + [2757] = 486, + [2758] = 251, + [2759] = 606, + [2760] = 501, + [2761] = 509, + [2762] = 514, + [2763] = 528, + [2764] = 936, + [2765] = 574, + [2766] = 573, + [2767] = 569, + [2768] = 484, + [2769] = 591, + [2770] = 593, + [2771] = 616, + [2772] = 644, + [2773] = 647, + [2774] = 481, + [2775] = 652, + [2776] = 480, + [2777] = 656, + [2778] = 954, + [2779] = 461, + [2780] = 252, + [2781] = 458, + [2782] = 920, + [2783] = 911, + [2784] = 700, + [2785] = 253, + [2786] = 450, + [2787] = 764, + [2788] = 771, + [2789] = 649, + [2790] = 788, + [2791] = 907, + [2792] = 449, + [2793] = 513, + [2794] = 814, + [2795] = 2694, + [2796] = 402, + [2797] = 901, + [2798] = 670, + [2799] = 406, + [2800] = 707, + [2801] = 922, + [2802] = 2731, + [2803] = 256, + [2804] = 2694, + [2805] = 801, + [2806] = 277, + [2807] = 257, + [2808] = 2694, + [2809] = 406, + [2810] = 468, + [2811] = 498, + [2812] = 478, + [2813] = 482, + [2814] = 483, + [2815] = 359, + [2816] = 488, + [2817] = 361, + [2818] = 533, + [2819] = 546, + [2820] = 564, + [2821] = 2695, + [2822] = 2731, + [2823] = 2694, + [2824] = 425, + [2825] = 2694, + [2826] = 826, + [2827] = 746, + [2828] = 2706, + [2829] = 406, + [2830] = 886, + [2831] = 2831, + [2832] = 2695, + [2833] = 2731, + [2834] = 958, + [2835] = 2835, + [2836] = 2731, + [2837] = 793, + [2838] = 714, + [2839] = 2731, + [2840] = 2706, [2841] = 2841, - [2842] = 2691, - [2843] = 920, - [2844] = 394, - [2845] = 828, - [2846] = 696, - [2847] = 282, - [2848] = 2669, - [2849] = 769, - [2850] = 2669, - [2851] = 2691, - [2852] = 2691, - [2853] = 2675, - [2854] = 2854, - [2855] = 2855, - [2856] = 2854, - [2857] = 2857, - [2858] = 2858, - [2859] = 2854, - [2860] = 1420, - [2861] = 2861, - [2862] = 2854, - [2863] = 1945, - [2864] = 677, - [2865] = 2861, - [2866] = 2854, - [2867] = 2861, - [2868] = 2854, + [2842] = 670, + [2843] = 2706, + [2844] = 2706, + [2845] = 581, + [2846] = 670, + [2847] = 2706, + [2848] = 2731, + [2849] = 2849, + [2850] = 2695, + [2851] = 2731, + [2852] = 2695, + [2853] = 2853, + [2854] = 2731, + [2855] = 406, + [2856] = 283, + [2857] = 2706, + [2858] = 2731, + [2859] = 2695, + [2860] = 2860, + [2861] = 280, + [2862] = 581, + [2863] = 581, + [2864] = 2694, + [2865] = 2706, + [2866] = 2694, + [2867] = 2867, + [2868] = 2695, [2869] = 2869, - [2870] = 393, - [2871] = 2854, - [2872] = 2854, - [2873] = 2854, - [2874] = 2854, - [2875] = 2875, - [2876] = 432, - [2877] = 2854, - [2878] = 2861, - [2879] = 678, - [2880] = 2854, - [2881] = 2854, - [2882] = 604, - [2883] = 718, - [2884] = 777, - [2885] = 766, - [2886] = 761, - [2887] = 486, - [2888] = 758, - [2889] = 680, - [2890] = 679, - [2891] = 628, - [2892] = 620, - [2893] = 2893, - [2894] = 2893, - [2895] = 601, - [2896] = 2893, - [2897] = 600, - [2898] = 566, - [2899] = 778, - [2900] = 565, - [2901] = 943, - [2902] = 852, - [2903] = 71, - [2904] = 893, - [2905] = 2905, - [2906] = 527, - [2907] = 2893, - [2908] = 920, - [2909] = 859, - [2910] = 2893, - [2911] = 759, - [2912] = 945, - [2913] = 905, - [2914] = 2893, - [2915] = 631, - [2916] = 2893, - [2917] = 68, - [2918] = 2893, - [2919] = 658, - [2920] = 70, - [2921] = 754, - [2922] = 2893, - [2923] = 750, - [2924] = 71, - [2925] = 2893, - [2926] = 2893, - [2927] = 2893, - [2928] = 2160, - [2929] = 2893, - [2930] = 70, - [2931] = 68, - [2932] = 2932, - [2933] = 1419, - [2934] = 2934, - [2935] = 1429, - [2936] = 1429, - [2937] = 1419, - [2938] = 1424, - [2939] = 1424, - [2940] = 1419, - [2941] = 1419, - [2942] = 1424, - [2943] = 1419, - [2944] = 1429, - [2945] = 1419, - [2946] = 1424, - [2947] = 2934, - [2948] = 2932, - [2949] = 1429, - [2950] = 2932, - [2951] = 2934, - [2952] = 2934, - [2953] = 1424, - [2954] = 1419, - [2955] = 1424, - [2956] = 1429, - [2957] = 1419, - [2958] = 2932, - [2959] = 2932, - [2960] = 2934, - [2961] = 2932, - [2962] = 2932, - [2963] = 2932, - [2964] = 2934, - [2965] = 2934, - [2966] = 2934, - [2967] = 1419, - [2968] = 1424, - [2969] = 2932, - [2970] = 1419, - [2971] = 1424, - [2972] = 2934, - [2973] = 2932, - [2974] = 1429, - [2975] = 1424, - [2976] = 2976, - [2977] = 1429, - [2978] = 1429, - [2979] = 1429, - [2980] = 1424, - [2981] = 1429, - [2982] = 2934, - [2983] = 1429, - [2984] = 1424, - [2985] = 1419, - [2986] = 1419, - [2987] = 1424, - [2988] = 1429, - [2989] = 1429, - [2990] = 1419, - [2991] = 1424, - [2992] = 1429, - [2993] = 2993, - [2994] = 2994, - [2995] = 1419, - [2996] = 1419, - [2997] = 1424, - [2998] = 1429, - [2999] = 2934, - [3000] = 2932, - [3001] = 2932, - [3002] = 2934, - [3003] = 1429, - [3004] = 1424, - [3005] = 1419, - [3006] = 1424, - [3007] = 3007, - [3008] = 3007, - [3009] = 3009, - [3010] = 3010, - [3011] = 3011, - [3012] = 3010, - [3013] = 3010, - [3014] = 3009, - [3015] = 3015, - [3016] = 3016, - [3017] = 3017, - [3018] = 3010, - [3019] = 3019, - [3020] = 3009, - [3021] = 3009, - [3022] = 3009, - [3023] = 3009, - [3024] = 3024, - [3025] = 3010, - [3026] = 3009, - [3027] = 1611, - [3028] = 3009, - [3029] = 3010, - [3030] = 3010, - [3031] = 3010, - [3032] = 3010, - [3033] = 3010, - [3034] = 3009, - [3035] = 3009, - [3036] = 3010, - [3037] = 3010, - [3038] = 3009, + [2870] = 2706, + [2871] = 2695, + [2872] = 257, + [2873] = 250, + [2874] = 2731, + [2875] = 251, + [2876] = 2706, + [2877] = 2706, + [2878] = 252, + [2879] = 256, + [2880] = 253, + [2881] = 1001, + [2882] = 408, + [2883] = 2883, + [2884] = 2884, + [2885] = 2883, + [2886] = 1957, + [2887] = 2887, + [2888] = 2883, + [2889] = 2883, + [2890] = 2883, + [2891] = 2891, + [2892] = 2883, + [2893] = 2884, + [2894] = 2884, + [2895] = 2883, + [2896] = 697, + [2897] = 2883, + [2898] = 696, + [2899] = 2883, + [2900] = 1428, + [2901] = 2901, + [2902] = 2884, + [2903] = 2903, + [2904] = 2883, + [2905] = 419, + [2906] = 2906, + [2907] = 2883, + [2908] = 2883, + [2909] = 2883, + [2910] = 2910, + [2911] = 2910, + [2912] = 70, + [2913] = 685, + [2914] = 684, + [2915] = 681, + [2916] = 826, + [2917] = 750, + [2918] = 832, + [2919] = 2910, + [2920] = 531, + [2921] = 517, + [2922] = 502, + [2923] = 582, + [2924] = 583, + [2925] = 617, + [2926] = 618, + [2927] = 71, + [2928] = 621, + [2929] = 638, + [2930] = 2910, + [2931] = 955, + [2932] = 777, + [2933] = 964, + [2934] = 2178, + [2935] = 2910, + [2936] = 70, + [2937] = 2910, + [2938] = 68, + [2939] = 646, + [2940] = 2910, + [2941] = 2910, + [2942] = 698, + [2943] = 878, + [2944] = 871, + [2945] = 2945, + [2946] = 2910, + [2947] = 649, + [2948] = 2910, + [2949] = 71, + [2950] = 2910, + [2951] = 778, + [2952] = 2910, + [2953] = 699, + [2954] = 797, + [2955] = 2910, + [2956] = 796, + [2957] = 68, + [2958] = 785, + [2959] = 780, + [2960] = 1427, + [2961] = 2961, + [2962] = 1427, + [2963] = 1434, + [2964] = 1432, + [2965] = 2961, + [2966] = 2966, + [2967] = 1434, + [2968] = 1427, + [2969] = 2966, + [2970] = 2961, + [2971] = 1432, + [2972] = 1432, + [2973] = 1434, + [2974] = 1434, + [2975] = 1427, + [2976] = 1427, + [2977] = 1432, + [2978] = 1427, + [2979] = 1432, + [2980] = 1434, + [2981] = 1434, + [2982] = 1434, + [2983] = 2966, + [2984] = 2961, + [2985] = 1434, + [2986] = 1427, + [2987] = 1427, + [2988] = 1427, + [2989] = 1434, + [2990] = 2966, + [2991] = 2966, + [2992] = 2961, + [2993] = 2961, + [2994] = 2966, + [2995] = 1432, + [2996] = 2966, + [2997] = 2961, + [2998] = 1432, + [2999] = 1432, + [3000] = 1434, + [3001] = 1427, + [3002] = 1432, + [3003] = 1432, + [3004] = 1434, + [3005] = 1432, + [3006] = 1434, + [3007] = 2966, + [3008] = 2961, + [3009] = 1427, + [3010] = 1427, + [3011] = 1427, + [3012] = 3012, + [3013] = 3013, + [3014] = 1434, + [3015] = 1432, + [3016] = 1432, + [3017] = 1432, + [3018] = 1434, + [3019] = 2966, + [3020] = 2961, + [3021] = 1427, + [3022] = 1434, + [3023] = 1432, + [3024] = 2961, + [3025] = 2966, + [3026] = 2966, + [3027] = 2961, + [3028] = 3028, + [3029] = 2961, + [3030] = 2966, + [3031] = 1432, + [3032] = 1427, + [3033] = 1427, + [3034] = 1434, + [3035] = 3035, + [3036] = 3035, + [3037] = 3037, + [3038] = 3037, [3039] = 3039, - [3040] = 3009, + [3040] = 3040, [3041] = 3041, - [3042] = 3009, - [3043] = 3010, - [3044] = 3010, - [3045] = 3045, - [3046] = 3009, - [3047] = 3047, - [3048] = 3048, - [3049] = 3049, + [3042] = 3042, + [3043] = 3042, + [3044] = 3037, + [3045] = 3042, + [3046] = 3046, + [3047] = 3037, + [3048] = 3037, + [3049] = 3042, [3050] = 3050, - [3051] = 3048, - [3052] = 3052, - [3053] = 3052, + [3051] = 3051, + [3052] = 3037, + [3053] = 3042, [3054] = 3054, - [3055] = 3055, - [3056] = 3047, - [3057] = 3049, - [3058] = 3058, - [3059] = 3059, - [3060] = 3052, - [3061] = 3050, - [3062] = 3062, - [3063] = 3048, - [3064] = 3064, - [3065] = 3049, + [3055] = 3037, + [3056] = 1620, + [3057] = 3037, + [3058] = 3042, + [3059] = 3037, + [3060] = 3042, + [3061] = 3037, + [3062] = 3042, + [3063] = 3042, + [3064] = 3037, + [3065] = 3042, [3066] = 3066, - [3067] = 3067, - [3068] = 3052, - [3069] = 3069, - [3070] = 3058, - [3071] = 3062, - [3072] = 3072, - [3073] = 3064, - [3074] = 3074, - [3075] = 3050, - [3076] = 3059, - [3077] = 3072, - [3078] = 3054, - [3079] = 3058, - [3080] = 3059, - [3081] = 3058, - [3082] = 3048, - [3083] = 3064, - [3084] = 3074, - [3085] = 3055, - [3086] = 3066, - [3087] = 3066, - [3088] = 3047, - [3089] = 3066, - [3090] = 3052, + [3067] = 3042, + [3068] = 3037, + [3069] = 3037, + [3070] = 3037, + [3071] = 3071, + [3072] = 3042, + [3073] = 3042, + [3074] = 3042, + [3075] = 3075, + [3076] = 3076, + [3077] = 3077, + [3078] = 3078, + [3079] = 3076, + [3080] = 3080, + [3081] = 3081, + [3082] = 3082, + [3083] = 3080, + [3084] = 3084, + [3085] = 3085, + [3086] = 3086, + [3087] = 3087, + [3088] = 3080, + [3089] = 3077, + [3090] = 3090, [3091] = 3091, - [3092] = 3054, - [3093] = 3091, - [3094] = 3067, - [3095] = 3047, - [3096] = 3049, - [3097] = 3074, - [3098] = 3059, - [3099] = 3062, - [3100] = 3055, - [3101] = 3072, - [3102] = 3047, - [3103] = 3074, - [3104] = 3049, - [3105] = 3050, - [3106] = 3048, + [3092] = 3092, + [3093] = 3080, + [3094] = 3094, + [3095] = 3095, + [3096] = 3094, + [3097] = 3095, + [3098] = 3087, + [3099] = 3080, + [3100] = 3075, + [3101] = 3091, + [3102] = 3094, + [3103] = 3084, + [3104] = 3080, + [3105] = 3075, + [3106] = 3078, [3107] = 3107, - [3108] = 3064, - [3109] = 3109, - [3110] = 3064, - [3111] = 3062, - [3112] = 3112, - [3113] = 3047, - [3114] = 3072, - [3115] = 3050, - [3116] = 3055, - [3117] = 3048, - [3118] = 3050, - [3119] = 3058, - [3120] = 3048, - [3121] = 3072, - [3122] = 3062, - [3123] = 3059, - [3124] = 3074, - [3125] = 3064, - [3126] = 3069, - [3127] = 3067, - [3128] = 3048, - [3129] = 3049, - [3130] = 3130, - [3131] = 3054, - [3132] = 3049, - [3133] = 3047, - [3134] = 3066, - [3135] = 3055, - [3136] = 3054, - [3137] = 3054, - [3138] = 3074, - [3139] = 3052, - [3140] = 3052, - [3141] = 3066, - [3142] = 3052, - [3143] = 3074, - [3144] = 3054, - [3145] = 3054, - [3146] = 3066, - [3147] = 3064, - [3148] = 3064, - [3149] = 3058, - [3150] = 3049, - [3151] = 3055, - [3152] = 3055, - [3153] = 3064, - [3154] = 3074, - [3155] = 3049, - [3156] = 3058, - [3157] = 3059, - [3158] = 3047, - [3159] = 3048, - [3160] = 3160, - [3161] = 3050, - [3162] = 3067, - [3163] = 3049, - [3164] = 3074, - [3165] = 3047, - [3166] = 3066, - [3167] = 3072, - [3168] = 3055, - [3169] = 3059, - [3170] = 3062, - [3171] = 3064, - [3172] = 3048, - [3173] = 3050, - [3174] = 3059, - [3175] = 3050, - [3176] = 3067, - [3177] = 3067, - [3178] = 3047, - [3179] = 3179, - [3180] = 3062, - [3181] = 3072, - [3182] = 3069, - [3183] = 3048, - [3184] = 3074, - [3185] = 3059, - [3186] = 3054, - [3187] = 3066, - [3188] = 3052, - [3189] = 3069, - [3190] = 3052, - [3191] = 3066, - [3192] = 3052, - [3193] = 3055, - [3194] = 3059, - [3195] = 3050, - [3196] = 3054, - [3197] = 3054, - [3198] = 3066, - [3199] = 3052, - [3200] = 3066, - [3201] = 3064, - [3202] = 3064, - [3203] = 3059, - [3204] = 3058, - [3205] = 3074, - [3206] = 3054, - [3207] = 3050, - [3208] = 3074, - [3209] = 3048, - [3210] = 3049, - [3211] = 3047, - [3212] = 3074, - [3213] = 3059, - [3214] = 3069, - [3215] = 3055, - [3216] = 3050, - [3217] = 3055, - [3218] = 3050, - [3219] = 3054, - [3220] = 3049, - [3221] = 3069, - [3222] = 3052, - [3223] = 3066, - [3224] = 3064, - [3225] = 3069, - [3226] = 3064, - [3227] = 3072, - [3228] = 3062, - [3229] = 3067, - [3230] = 3069, - [3231] = 3067, - [3232] = 3048, - [3233] = 3067, - [3234] = 3055, - [3235] = 3059, - [3236] = 3074, - [3237] = 3072, - [3238] = 3050, - [3239] = 3050, - [3240] = 3074, - [3241] = 3047, - [3242] = 3048, - [3243] = 3064, - [3244] = 3059, - [3245] = 3058, - [3246] = 3049, + [3108] = 3090, + [3109] = 3077, + [3110] = 3092, + [3111] = 3091, + [3112] = 3086, + [3113] = 3085, + [3114] = 3095, + [3115] = 3084, + [3116] = 3082, + [3117] = 3081, + [3118] = 3076, + [3119] = 3078, + [3120] = 3080, + [3121] = 3080, + [3122] = 3094, + [3123] = 3094, + [3124] = 3124, + [3125] = 3075, + [3126] = 3095, + [3127] = 3127, + [3128] = 3077, + [3129] = 3082, + [3130] = 3092, + [3131] = 3081, + [3132] = 3091, + [3133] = 3084, + [3134] = 3075, + [3135] = 3091, + [3136] = 3075, + [3137] = 3080, + [3138] = 3076, + [3139] = 3078, + [3140] = 3092, + [3141] = 3078, + [3142] = 3092, + [3143] = 3076, + [3144] = 3077, + [3145] = 3095, + [3146] = 3087, + [3147] = 3091, + [3148] = 3090, + [3149] = 3086, + [3150] = 3081, + [3151] = 3082, + [3152] = 3085, + [3153] = 3085, + [3154] = 3107, + [3155] = 3086, + [3156] = 3090, + [3157] = 3082, + [3158] = 3084, + [3159] = 3081, + [3160] = 3094, + [3161] = 3075, + [3162] = 3162, + [3163] = 3077, + [3164] = 3080, + [3165] = 3076, + [3166] = 3078, + [3167] = 3095, + [3168] = 3077, + [3169] = 3092, + [3170] = 3091, + [3171] = 3084, + [3172] = 3094, + [3173] = 3091, + [3174] = 3095, + [3175] = 3175, + [3176] = 3087, + [3177] = 3076, + [3178] = 3082, + [3179] = 3095, + [3180] = 3077, + [3181] = 3095, + [3182] = 3077, + [3183] = 3081, + [3184] = 3095, + [3185] = 3077, + [3186] = 3075, + [3187] = 3081, + [3188] = 3082, + [3189] = 3095, + [3190] = 3076, + [3191] = 3077, + [3192] = 3095, + [3193] = 3078, + [3194] = 3092, + [3195] = 3077, + [3196] = 3094, + [3197] = 3087, + [3198] = 3095, + [3199] = 3077, + [3200] = 3081, + [3201] = 3082, + [3202] = 3084, + [3203] = 3095, + [3204] = 3094, + [3205] = 3077, + [3206] = 3075, + [3207] = 3084, + [3208] = 3208, + [3209] = 3094, + [3210] = 3087, + [3211] = 3075, + [3212] = 3095, + [3213] = 3077, + [3214] = 3081, + [3215] = 3082, + [3216] = 3084, + [3217] = 3217, + [3218] = 3090, + [3219] = 3082, + [3220] = 3081, + [3221] = 3086, + [3222] = 3085, + [3223] = 3095, + [3224] = 3077, + [3225] = 3091, + [3226] = 3076, + [3227] = 3078, + [3228] = 3092, + [3229] = 3084, + [3230] = 3078, + [3231] = 3076, + [3232] = 3087, + [3233] = 3092, + [3234] = 3087, + [3235] = 3090, + [3236] = 3078, + [3237] = 3086, + [3238] = 3085, + [3239] = 3091, + [3240] = 3095, + [3241] = 3084, + [3242] = 3094, + [3243] = 3075, + [3244] = 3077, + [3245] = 3092, + [3246] = 3091, [3247] = 3091, - [3248] = 3049, - [3249] = 3047, - [3250] = 3058, - [3251] = 3048, - [3252] = 3050, - [3253] = 3052, - [3254] = 3059, - [3255] = 3059, - [3256] = 3074, - [3257] = 3054, - [3258] = 3055, - [3259] = 3054, - [3260] = 3047, - [3261] = 3074, - [3262] = 3058, - [3263] = 3059, - [3264] = 3047, - [3265] = 3265, - [3266] = 3055, - [3267] = 3066, - [3268] = 3052, - [3269] = 3069, - [3270] = 3069, - [3271] = 3067, - [3272] = 3062, - [3273] = 3074, - [3274] = 3074, - [3275] = 3059, - [3276] = 3066, - [3277] = 3058, - [3278] = 3049, - [3279] = 3062, - [3280] = 3072, - [3281] = 3055, - [3282] = 3055, - [3283] = 3067, - [3284] = 3284, - [3285] = 3072, - [3286] = 3062, - [3287] = 3072, - [3288] = 3062, - [3289] = 3058, - [3290] = 3054, - [3291] = 3059, - [3292] = 3074, - [3293] = 3047, - [3294] = 3067, - [3295] = 3052, - [3296] = 3069, - [3297] = 3069, - [3298] = 3066, - [3299] = 3059, - [3300] = 3059, - [3301] = 3074, - [3302] = 3069, - [3303] = 3058, - [3304] = 3064, - [3305] = 3049, - [3306] = 3048, - [3307] = 3074, - [3308] = 3059, - [3309] = 3069, - [3310] = 3069, - [3311] = 3059, - [3312] = 3069, - [3313] = 3074, - [3314] = 3314, - [3315] = 3315, - [3316] = 3314, - [3317] = 3317, - [3318] = 3314, - [3319] = 3314, - [3320] = 3314, - [3321] = 3321, - [3322] = 3314, - [3323] = 3314, - [3324] = 3314, - [3325] = 3314, - [3326] = 3314, - [3327] = 3314, - [3328] = 3314, - [3329] = 3329, - [3330] = 3330, - [3331] = 716, - [3332] = 450, - [3333] = 470, - [3334] = 448, - [3335] = 472, - [3336] = 1131, - [3337] = 3337, - [3338] = 3338, - [3339] = 3339, - [3340] = 472, - [3341] = 716, - [3342] = 470, - [3343] = 450, - [3344] = 448, - [3345] = 3345, - [3346] = 1131, + [3248] = 3092, + [3249] = 3086, + [3250] = 3082, + [3251] = 3078, + [3252] = 3084, + [3253] = 3077, + [3254] = 3095, + [3255] = 3076, + [3256] = 3081, + [3257] = 3082, + [3258] = 3087, + [3259] = 3077, + [3260] = 3087, + [3261] = 3095, + [3262] = 3090, + [3263] = 3084, + [3264] = 3094, + [3265] = 3095, + [3266] = 3081, + [3267] = 3077, + [3268] = 3076, + [3269] = 3075, + [3270] = 3085, + [3271] = 3080, + [3272] = 3094, + [3273] = 3075, + [3274] = 3107, + [3275] = 3092, + [3276] = 3078, + [3277] = 3092, + [3278] = 3091, + [3279] = 3084, + [3280] = 3094, + [3281] = 3075, + [3282] = 3085, + [3283] = 3087, + [3284] = 3080, + [3285] = 3085, + [3286] = 3086, + [3287] = 3082, + [3288] = 3090, + [3289] = 3087, + [3290] = 3290, + [3291] = 3086, + [3292] = 3090, + [3293] = 3081, + [3294] = 3082, + [3295] = 3095, + [3296] = 3081, + [3297] = 3297, + [3298] = 3076, + [3299] = 3078, + [3300] = 3092, + [3301] = 3082, + [3302] = 3081, + [3303] = 3087, + [3304] = 3095, + [3305] = 3077, + [3306] = 3076, + [3307] = 3077, + [3308] = 3084, + [3309] = 3086, + [3310] = 3094, + [3311] = 3085, + [3312] = 3075, + [3313] = 3076, + [3314] = 3085, + [3315] = 3078, + [3316] = 3086, + [3317] = 3092, + [3318] = 3090, + [3319] = 3087, + [3320] = 3075, + [3321] = 3076, + [3322] = 3091, + [3323] = 3084, + [3324] = 3090, + [3325] = 3080, + [3326] = 3080, + [3327] = 3086, + [3328] = 3085, + [3329] = 3091, + [3330] = 3080, + [3331] = 3082, + [3332] = 3081, + [3333] = 3080, + [3334] = 3091, + [3335] = 3090, + [3336] = 3095, + [3337] = 3077, + [3338] = 3078, + [3339] = 3092, + [3340] = 3078, + [3341] = 3094, + [3342] = 3342, + [3343] = 3342, + [3344] = 3342, + [3345] = 3342, + [3346] = 3342, [3347] = 3347, - [3348] = 3348, - [3349] = 1450, - [3350] = 1131, - [3351] = 2167, - [3352] = 2264, - [3353] = 3353, - [3354] = 3354, - [3355] = 3353, - [3356] = 3353, - [3357] = 3357, - [3358] = 3353, - [3359] = 1441, - [3360] = 1438, - [3361] = 2296, - [3362] = 2298, - [3363] = 3363, - [3364] = 3364, + [3348] = 3342, + [3349] = 3342, + [3350] = 3350, + [3351] = 3351, + [3352] = 3342, + [3353] = 3342, + [3354] = 3342, + [3355] = 3355, + [3356] = 3342, + [3357] = 3342, + [3358] = 3358, + [3359] = 702, + [3360] = 821, + [3361] = 703, + [3362] = 577, + [3363] = 825, + [3364] = 1135, [3365] = 3365, - [3366] = 3366, + [3366] = 821, [3367] = 3367, - [3368] = 3367, - [3369] = 3367, - [3370] = 3370, - [3371] = 3367, + [3368] = 702, + [3369] = 577, + [3370] = 703, + [3371] = 3371, [3372] = 3372, - [3373] = 3372, - [3374] = 3367, - [3375] = 915, - [3376] = 3367, - [3377] = 3372, - [3378] = 3367, - [3379] = 3379, - [3380] = 404, - [3381] = 3379, + [3373] = 825, + [3374] = 3374, + [3375] = 1135, + [3376] = 2199, + [3377] = 3377, + [3378] = 1135, + [3379] = 1479, + [3380] = 3380, + [3381] = 3381, [3382] = 3382, - [3383] = 3367, - [3384] = 914, - [3385] = 3385, - [3386] = 3372, - [3387] = 3372, - [3388] = 3388, - [3389] = 3367, - [3390] = 941, + [3383] = 1451, + [3384] = 3380, + [3385] = 3380, + [3386] = 3380, + [3387] = 1452, + [3388] = 2231, + [3389] = 3389, + [3390] = 2333, [3391] = 3391, - [3392] = 3372, - [3393] = 3367, - [3394] = 3372, + [3392] = 3392, + [3393] = 3393, + [3394] = 2326, [3395] = 3395, - [3396] = 3367, - [3397] = 3397, - [3398] = 3398, - [3399] = 3372, - [3400] = 3379, - [3401] = 3372, - [3402] = 3379, - [3403] = 3372, - [3404] = 3367, - [3405] = 3372, - [3406] = 3406, - [3407] = 3367, - [3408] = 3408, - [3409] = 3367, - [3410] = 3372, - [3411] = 3372, - [3412] = 3372, + [3396] = 3396, + [3397] = 3396, + [3398] = 3395, + [3399] = 3396, + [3400] = 3395, + [3401] = 3395, + [3402] = 3396, + [3403] = 3395, + [3404] = 3396, + [3405] = 3395, + [3406] = 401, + [3407] = 3396, + [3408] = 3396, + [3409] = 3409, + [3410] = 3396, + [3411] = 3411, + [3412] = 581, [3413] = 3413, - [3414] = 853, - [3415] = 931, - [3416] = 922, + [3414] = 3414, + [3415] = 3396, + [3416] = 3395, [3417] = 3417, - [3418] = 3418, + [3418] = 3395, [3419] = 3419, - [3420] = 3420, - [3421] = 861, - [3422] = 660, - [3423] = 711, - [3424] = 809, - [3425] = 453, - [3426] = 3426, - [3427] = 732, + [3420] = 3396, + [3421] = 3395, + [3422] = 3422, + [3423] = 3419, + [3424] = 3396, + [3425] = 3395, + [3426] = 3396, + [3427] = 3396, [3428] = 3428, - [3429] = 456, - [3430] = 653, - [3431] = 810, - [3432] = 686, - [3433] = 460, - [3434] = 813, - [3435] = 840, - [3436] = 3436, - [3437] = 879, - [3438] = 473, - [3439] = 654, - [3440] = 676, - [3441] = 459, + [3429] = 3419, + [3430] = 3430, + [3431] = 3419, + [3432] = 3432, + [3433] = 3395, + [3434] = 3395, + [3435] = 3396, + [3436] = 3395, + [3437] = 3437, + [3438] = 920, + [3439] = 3395, + [3440] = 911, + [3441] = 907, [3442] = 3442, - [3443] = 672, - [3444] = 878, - [3445] = 812, + [3443] = 936, + [3444] = 901, + [3445] = 3445, [3446] = 3446, [3447] = 3447, [3448] = 3448, - [3449] = 3449, - [3450] = 824, - [3451] = 3451, - [3452] = 3449, - [3453] = 3449, - [3454] = 3454, - [3455] = 3449, - [3456] = 3456, - [3457] = 3449, + [3449] = 814, + [3450] = 593, + [3451] = 466, + [3452] = 465, + [3453] = 656, + [3454] = 460, + [3455] = 3455, + [3456] = 486, + [3457] = 3457, [3458] = 3458, - [3459] = 3449, - [3460] = 3449, - [3461] = 3449, - [3462] = 3449, - [3463] = 3463, - [3464] = 3449, - [3465] = 3449, - [3466] = 3449, - [3467] = 3467, - [3468] = 3468, - [3469] = 3469, - [3470] = 3470, - [3471] = 3471, - [3472] = 3472, - [3473] = 3473, + [3459] = 501, + [3460] = 652, + [3461] = 509, + [3462] = 3462, + [3463] = 514, + [3464] = 528, + [3465] = 764, + [3466] = 569, + [3467] = 591, + [3468] = 700, + [3469] = 616, + [3470] = 644, + [3471] = 788, + [3472] = 647, + [3473] = 771, [3474] = 3474, [3475] = 3475, [3476] = 3476, [3477] = 3477, [3478] = 3478, - [3479] = 3479, - [3480] = 3480, - [3481] = 3481, - [3482] = 3482, - [3483] = 3483, - [3484] = 3484, - [3485] = 3485, + [3479] = 3478, + [3480] = 3478, + [3481] = 888, + [3482] = 3478, + [3483] = 3478, + [3484] = 3478, + [3485] = 3478, [3486] = 3486, - [3487] = 3487, - [3488] = 3484, - [3489] = 3484, + [3487] = 3478, + [3488] = 3478, + [3489] = 3489, [3490] = 3490, - [3491] = 3484, + [3491] = 3478, [3492] = 3492, - [3493] = 3493, - [3494] = 3494, + [3493] = 3478, + [3494] = 3478, [3495] = 3495, - [3496] = 3484, + [3496] = 3496, [3497] = 3497, [3498] = 3498, [3499] = 3499, @@ -6867,162 +6909,162 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3501] = 3501, [3502] = 3502, [3503] = 3503, - [3504] = 3484, - [3505] = 3484, + [3504] = 3504, + [3505] = 3505, [3506] = 3506, - [3507] = 3484, + [3507] = 3507, [3508] = 3508, - [3509] = 3484, + [3509] = 3509, [3510] = 3510, - [3511] = 3484, + [3511] = 3511, [3512] = 3512, - [3513] = 3484, + [3513] = 3513, [3514] = 3514, [3515] = 3515, - [3516] = 3484, - [3517] = 1436, - [3518] = 1441, - [3519] = 3519, + [3516] = 3515, + [3517] = 3517, + [3518] = 3518, + [3519] = 3515, [3520] = 3520, - [3521] = 3521, - [3522] = 3519, + [3521] = 3515, + [3522] = 3522, [3523] = 3523, [3524] = 3524, - [3525] = 3525, - [3526] = 3519, - [3527] = 3521, + [3525] = 3515, + [3526] = 3515, + [3527] = 3515, [3528] = 3528, - [3529] = 3529, - [3530] = 3530, - [3531] = 3524, - [3532] = 3521, - [3533] = 3520, - [3534] = 3530, + [3529] = 3515, + [3530] = 3515, + [3531] = 3531, + [3532] = 3515, + [3533] = 3515, + [3534] = 3534, [3535] = 3535, - [3536] = 3521, - [3537] = 3520, - [3538] = 941, - [3539] = 3539, - [3540] = 3524, - [3541] = 3530, - [3542] = 3524, - [3543] = 3535, - [3544] = 3530, - [3545] = 3519, - [3546] = 3530, - [3547] = 3528, - [3548] = 3529, - [3549] = 3529, - [3550] = 3524, - [3551] = 3519, - [3552] = 3530, - [3553] = 3524, - [3554] = 3529, - [3555] = 3535, - [3556] = 3520, - [3557] = 3521, - [3558] = 3519, - [3559] = 3528, - [3560] = 3528, - [3561] = 3519, - [3562] = 3521, - [3563] = 3520, - [3564] = 3535, - [3565] = 3529, - [3566] = 3528, - [3567] = 3528, - [3568] = 3520, - [3569] = 3535, - [3570] = 1468, - [3571] = 1467, - [3572] = 3520, - [3573] = 3535, - [3574] = 3574, - [3575] = 3521, - [3576] = 3519, - [3577] = 3519, - [3578] = 3521, - [3579] = 3530, - [3580] = 3520, - [3581] = 3535, - [3582] = 3529, - [3583] = 3528, - [3584] = 3528, - [3585] = 3529, - [3586] = 3524, - [3587] = 3530, - [3588] = 3524, - [3589] = 3589, - [3590] = 3529, - [3591] = 3535, - [3592] = 3529, - [3593] = 3593, - [3594] = 3535, - [3595] = 3524, - [3596] = 3520, - [3597] = 3529, - [3598] = 3521, - [3599] = 3528, - [3600] = 3524, - [3601] = 3524, - [3602] = 1438, - [3603] = 3530, - [3604] = 3521, - [3605] = 404, - [3606] = 3530, - [3607] = 3529, - [3608] = 3530, - [3609] = 3524, - [3610] = 3519, - [3611] = 3529, - [3612] = 3535, - [3613] = 3528, - [3614] = 3520, - [3615] = 3521, - [3616] = 3616, - [3617] = 3528, - [3618] = 3519, - [3619] = 3619, - [3620] = 3528, - [3621] = 3519, - [3622] = 1444, - [3623] = 3521, - [3624] = 3520, - [3625] = 3520, - [3626] = 3535, - [3627] = 3627, - [3628] = 3535, - [3629] = 3530, - [3630] = 3630, - [3631] = 3631, - [3632] = 3632, - [3633] = 3633, - [3634] = 3634, - [3635] = 824, - [3636] = 3636, - [3637] = 3637, + [3536] = 3536, + [3537] = 3537, + [3538] = 3538, + [3539] = 3515, + [3540] = 3540, + [3541] = 3541, + [3542] = 3542, + [3543] = 3543, + [3544] = 3544, + [3545] = 3545, + [3546] = 3546, + [3547] = 3547, + [3548] = 3548, + [3549] = 3549, + [3550] = 3546, + [3551] = 1463, + [3552] = 3552, + [3553] = 3548, + [3554] = 3554, + [3555] = 1464, + [3556] = 3548, + [3557] = 401, + [3558] = 3552, + [3559] = 3559, + [3560] = 3546, + [3561] = 3549, + [3562] = 3562, + [3563] = 3547, + [3564] = 3547, + [3565] = 1445, + [3566] = 3566, + [3567] = 3549, + [3568] = 3547, + [3569] = 3569, + [3570] = 1451, + [3571] = 3559, + [3572] = 3546, + [3573] = 3562, + [3574] = 3552, + [3575] = 3549, + [3576] = 3548, + [3577] = 3547, + [3578] = 1444, + [3579] = 3548, + [3580] = 3569, + [3581] = 3552, + [3582] = 3549, + [3583] = 3562, + [3584] = 3547, + [3585] = 3547, + [3586] = 3549, + [3587] = 3546, + [3588] = 3559, + [3589] = 3562, + [3590] = 3569, + [3591] = 3559, + [3592] = 3546, + [3593] = 3569, + [3594] = 3562, + [3595] = 3562, + [3596] = 3559, + [3597] = 3547, + [3598] = 3546, + [3599] = 3547, + [3600] = 3549, + [3601] = 3552, + [3602] = 3548, + [3603] = 3549, + [3604] = 3562, + [3605] = 3605, + [3606] = 3549, + [3607] = 3552, + [3608] = 3548, + [3609] = 3552, + [3610] = 3548, + [3611] = 3546, + [3612] = 3569, + [3613] = 3613, + [3614] = 3569, + [3615] = 3562, + [3616] = 3559, + [3617] = 3552, + [3618] = 3552, + [3619] = 3559, + [3620] = 3569, + [3621] = 3569, + [3622] = 3622, + [3623] = 3559, + [3624] = 3559, + [3625] = 3548, + [3626] = 3562, + [3627] = 3562, + [3628] = 3546, + [3629] = 3559, + [3630] = 3569, + [3631] = 3569, + [3632] = 3548, + [3633] = 3552, + [3634] = 3549, + [3635] = 3547, + [3636] = 3548, + [3637] = 3547, [3638] = 3638, - [3639] = 3639, - [3640] = 3640, + [3639] = 1452, + [3640] = 3548, [3641] = 3641, - [3642] = 3642, - [3643] = 3643, + [3642] = 3552, + [3643] = 3562, [3644] = 3644, - [3645] = 3645, - [3646] = 3646, - [3647] = 3647, - [3648] = 3648, - [3649] = 3649, - [3650] = 3639, - [3651] = 1450, - [3652] = 3652, - [3653] = 3653, - [3654] = 3654, - [3655] = 3655, - [3656] = 3656, - [3657] = 3657, - [3658] = 3656, - [3659] = 3659, + [3645] = 581, + [3646] = 3569, + [3647] = 3559, + [3648] = 3546, + [3649] = 3546, + [3650] = 3549, + [3651] = 3546, + [3652] = 3569, + [3653] = 3562, + [3654] = 3559, + [3655] = 3552, + [3656] = 3549, + [3657] = 3547, + [3658] = 3658, + [3659] = 888, [3660] = 3660, [3661] = 3661, [3662] = 3662, @@ -7030,1056 +7072,1097 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3664] = 3664, [3665] = 3665, [3666] = 3666, - [3667] = 3667, + [3667] = 1479, [3668] = 3668, [3669] = 3669, - [3670] = 3663, - [3671] = 3664, + [3670] = 3670, + [3671] = 3671, [3672] = 3672, [3673] = 3673, [3674] = 3674, - [3675] = 3669, + [3675] = 3675, [3676] = 3676, - [3677] = 3663, + [3677] = 3677, [3678] = 3678, [3679] = 3679, - [3680] = 3672, - [3681] = 3681, - [3682] = 3682, + [3680] = 3680, + [3681] = 3668, + [3682] = 3663, [3683] = 3683, [3684] = 3684, - [3685] = 3664, + [3685] = 3685, [3686] = 3686, [3687] = 3687, [3688] = 3688, - [3689] = 3672, - [3690] = 3669, + [3689] = 3689, + [3690] = 3690, [3691] = 3691, - [3692] = 3663, + [3692] = 3690, [3693] = 3693, [3694] = 3694, - [3695] = 3663, - [3696] = 3669, - [3697] = 3672, + [3695] = 3694, + [3696] = 3690, + [3697] = 3697, [3698] = 3698, - [3699] = 3673, - [3700] = 3664, + [3699] = 3690, + [3700] = 3694, [3701] = 3701, - [3702] = 3673, - [3703] = 3693, - [3704] = 3668, - [3705] = 3705, - [3706] = 3706, - [3707] = 3664, + [3702] = 3702, + [3703] = 3701, + [3704] = 3704, + [3705] = 3702, + [3706] = 3701, + [3707] = 3702, [3708] = 3708, - [3709] = 3693, - [3710] = 3710, - [3711] = 3664, - [3712] = 3712, - [3713] = 1585, - [3714] = 3714, + [3709] = 3709, + [3710] = 3698, + [3711] = 3694, + [3712] = 3698, + [3713] = 3694, + [3714] = 1583, [3715] = 3715, - [3716] = 1590, + [3716] = 3694, [3717] = 3717, - [3718] = 3718, - [3719] = 3664, + [3718] = 3691, + [3719] = 3719, [3720] = 3720, - [3721] = 3664, - [3722] = 3669, - [3723] = 3668, - [3724] = 3663, - [3725] = 3673, - [3726] = 3672, - [3727] = 3672, + [3721] = 3697, + [3722] = 3701, + [3723] = 3709, + [3724] = 3693, + [3725] = 3694, + [3726] = 3693, + [3727] = 3698, [3728] = 3728, - [3729] = 3729, - [3730] = 3669, - [3731] = 3663, - [3732] = 3663, - [3733] = 1521, - [3734] = 1522, - [3735] = 3669, - [3736] = 3673, - [3737] = 3673, - [3738] = 3672, - [3739] = 1523, + [3729] = 3709, + [3730] = 3709, + [3731] = 3693, + [3732] = 3709, + [3733] = 1582, + [3734] = 3734, + [3735] = 3735, + [3736] = 3736, + [3737] = 3702, + [3738] = 3738, + [3739] = 1598, [3740] = 3740, - [3741] = 3669, - [3742] = 3673, - [3743] = 1524, + [3741] = 3741, + [3742] = 3709, + [3743] = 3743, [3744] = 3693, - [3745] = 3663, - [3746] = 3746, + [3745] = 3745, + [3746] = 3701, [3747] = 3747, - [3748] = 3672, - [3749] = 3668, - [3750] = 1572, - [3751] = 3693, - [3752] = 3663, - [3753] = 3669, - [3754] = 1516, - [3755] = 3746, - [3756] = 3756, - [3757] = 3664, - [3758] = 3663, - [3759] = 3669, - [3760] = 3664, + [3748] = 3698, + [3749] = 3749, + [3750] = 3750, + [3751] = 3702, + [3752] = 3752, + [3753] = 3753, + [3754] = 3754, + [3755] = 1592, + [3756] = 1519, + [3757] = 3694, + [3758] = 3758, + [3759] = 1597, + [3760] = 3760, [3761] = 3761, - [3762] = 1514, - [3763] = 1513, - [3764] = 3693, - [3765] = 3673, - [3766] = 3766, - [3767] = 3668, - [3768] = 1517, - [3769] = 3673, - [3770] = 3756, - [3771] = 3664, - [3772] = 3693, - [3773] = 3761, - [3774] = 3664, - [3775] = 3775, - [3776] = 1563, - [3777] = 3766, - [3778] = 1537, - [3779] = 3672, - [3780] = 3780, - [3781] = 1536, - [3782] = 3664, - [3783] = 3783, - [3784] = 3784, + [3762] = 3698, + [3763] = 3763, + [3764] = 3690, + [3765] = 3701, + [3766] = 3753, + [3767] = 3767, + [3768] = 3768, + [3769] = 3769, + [3770] = 3752, + [3771] = 3693, + [3772] = 3709, + [3773] = 3773, + [3774] = 3709, + [3775] = 3698, + [3776] = 3690, + [3777] = 3701, + [3778] = 3698, + [3779] = 3702, + [3780] = 3694, + [3781] = 3702, + [3782] = 3782, + [3783] = 3690, + [3784] = 3698, [3785] = 3785, [3786] = 3786, - [3787] = 3668, - [3788] = 3788, - [3789] = 3789, - [3790] = 3790, - [3791] = 3791, - [3792] = 3672, - [3793] = 3793, - [3794] = 3664, + [3787] = 3702, + [3788] = 1613, + [3789] = 1612, + [3790] = 3698, + [3791] = 3701, + [3792] = 3792, + [3793] = 3690, + [3794] = 1586, [3795] = 3693, [3796] = 3796, - [3797] = 3673, - [3798] = 3798, - [3799] = 3799, - [3800] = 3672, - [3801] = 1540, - [3802] = 1543, - [3803] = 1568, - [3804] = 3668, - [3805] = 3664, - [3806] = 3669, - [3807] = 3807, - [3808] = 3668, - [3809] = 3663, - [3810] = 3669, - [3811] = 3672, - [3812] = 3812, - [3813] = 3673, - [3814] = 3693, + [3797] = 3709, + [3798] = 3690, + [3799] = 3701, + [3800] = 3702, + [3801] = 3801, + [3802] = 3698, + [3803] = 3803, + [3804] = 1585, + [3805] = 3805, + [3806] = 1584, + [3807] = 1581, + [3808] = 1578, + [3809] = 3809, + [3810] = 3810, + [3811] = 3709, + [3812] = 3698, + [3813] = 3694, + [3814] = 1573, [3815] = 3693, - [3816] = 3668, - [3817] = 3693, - [3818] = 3818, + [3816] = 1570, + [3817] = 3698, + [3818] = 1568, [3819] = 3819, - [3820] = 3820, - [3821] = 3664, + [3820] = 3693, + [3821] = 3821, [3822] = 3822, - [3823] = 3668, + [3823] = 3823, [3824] = 3824, - [3825] = 3673, - [3826] = 3668, - [3827] = 3668, - [3828] = 3672, - [3829] = 3693, - [3830] = 3669, - [3831] = 3663, - [3832] = 1520, - [3833] = 3833, + [3825] = 3709, + [3826] = 3693, + [3827] = 3827, + [3828] = 3828, + [3829] = 3829, + [3830] = 3690, + [3831] = 3701, + [3832] = 3702, + [3833] = 3701, [3834] = 3834, - [3835] = 3834, + [3835] = 3835, [3836] = 3836, [3837] = 3837, - [3838] = 3838, - [3839] = 3839, - [3840] = 3833, - [3841] = 3841, - [3842] = 3842, + [3838] = 3690, + [3839] = 3694, + [3840] = 3702, + [3841] = 3709, + [3842] = 3698, [3843] = 3843, - [3844] = 3844, + [3844] = 3693, [3845] = 3845, [3846] = 3846, - [3847] = 3847, - [3848] = 3848, - [3849] = 3841, - [3850] = 3841, - [3851] = 3851, - [3852] = 3852, - [3853] = 3853, - [3854] = 3854, - [3855] = 3854, - [3856] = 3842, - [3857] = 3843, - [3858] = 3845, - [3859] = 3848, - [3860] = 3852, - [3861] = 3851, - [3862] = 3845, - [3863] = 3839, + [3847] = 3701, + [3848] = 3690, + [3849] = 3849, + [3850] = 3850, + [3851] = 1541, + [3852] = 3693, + [3853] = 1534, + [3854] = 3702, + [3855] = 3709, + [3856] = 3856, + [3857] = 3698, + [3858] = 3698, + [3859] = 3694, + [3860] = 3860, + [3861] = 3702, + [3862] = 3693, + [3863] = 3863, [3864] = 3864, - [3865] = 3854, - [3866] = 3838, - [3867] = 3836, - [3868] = 3852, - [3869] = 1441, - [3870] = 3836, + [3865] = 3865, + [3866] = 1451, + [3867] = 3865, + [3868] = 3868, + [3869] = 3869, + [3870] = 3870, [3871] = 3871, - [3872] = 3838, - [3873] = 3843, - [3874] = 3842, - [3875] = 3839, - [3876] = 3841, - [3877] = 3848, - [3878] = 3851, - [3879] = 3879, - [3880] = 3854, - [3881] = 3852, - [3882] = 3833, - [3883] = 3834, - [3884] = 1438, - [3885] = 3848, - [3886] = 3851, - [3887] = 1436, - [3888] = 3834, - [3889] = 3834, - [3890] = 3833, - [3891] = 3843, - [3892] = 3842, + [3872] = 3872, + [3873] = 3873, + [3874] = 3874, + [3875] = 3875, + [3876] = 3863, + [3877] = 3877, + [3878] = 3875, + [3879] = 3871, + [3880] = 3868, + [3881] = 3863, + [3882] = 3863, + [3883] = 3872, + [3884] = 3875, + [3885] = 3865, + [3886] = 3870, + [3887] = 3869, + [3888] = 3871, + [3889] = 3868, + [3890] = 3890, + [3891] = 3869, + [3892] = 3872, [3893] = 3893, - [3894] = 3841, - [3895] = 3833, - [3896] = 1441, + [3894] = 3894, + [3895] = 3895, + [3896] = 3895, [3897] = 3897, - [3898] = 3836, - [3899] = 3845, - [3900] = 3833, - [3901] = 3841, - [3902] = 3842, - [3903] = 3843, - [3904] = 3834, + [3898] = 3897, + [3899] = 3899, + [3900] = 3877, + [3901] = 3893, + [3902] = 3890, + [3903] = 3903, + [3904] = 3904, [3905] = 3905, - [3906] = 3906, - [3907] = 3839, + [3906] = 3870, + [3907] = 3877, [3908] = 3908, - [3909] = 3838, - [3910] = 3834, - [3911] = 3833, - [3912] = 1438, - [3913] = 3913, + [3909] = 3869, + [3910] = 3868, + [3911] = 3897, + [3912] = 3912, + [3913] = 3871, [3914] = 3914, - [3915] = 3851, - [3916] = 3852, - [3917] = 3917, + [3915] = 3915, + [3916] = 3916, + [3917] = 3871, [3918] = 3918, - [3919] = 3851, - [3920] = 3852, - [3921] = 3848, - [3922] = 3842, + [3919] = 3868, + [3920] = 3890, + [3921] = 3893, + [3922] = 3922, [3923] = 3923, - [3924] = 3841, - [3925] = 3843, - [3926] = 3926, - [3927] = 3839, - [3928] = 3838, - [3929] = 3854, - [3930] = 3842, - [3931] = 3843, - [3932] = 2167, - [3933] = 3933, - [3934] = 3851, - [3935] = 3852, - [3936] = 3836, - [3937] = 3854, + [3924] = 3869, + [3925] = 3895, + [3926] = 3865, + [3927] = 3875, + [3928] = 3863, + [3929] = 3893, + [3930] = 3870, + [3931] = 3872, + [3932] = 3932, + [3933] = 3895, + [3934] = 3872, + [3935] = 3935, + [3936] = 3870, + [3937] = 3895, [3938] = 3938, [3939] = 3939, - [3940] = 3357, - [3941] = 3848, - [3942] = 3942, - [3943] = 3943, - [3944] = 3836, - [3945] = 3839, - [3946] = 3354, - [3947] = 3845, - [3948] = 3838, - [3949] = 3836, - [3950] = 3836, - [3951] = 3838, - [3952] = 3839, - [3953] = 1444, - [3954] = 3854, - [3955] = 3836, - [3956] = 3956, - [3957] = 3957, - [3958] = 3845, - [3959] = 3852, - [3960] = 3851, + [3940] = 3940, + [3941] = 1452, + [3942] = 3863, + [3943] = 3875, + [3944] = 3865, + [3945] = 3897, + [3946] = 3946, + [3947] = 1451, + [3948] = 2199, + [3949] = 3949, + [3950] = 3877, + [3951] = 1445, + [3952] = 3893, + [3953] = 3890, + [3954] = 3890, + [3955] = 3893, + [3956] = 3895, + [3957] = 3897, + [3958] = 3958, + [3959] = 3897, + [3960] = 3960, [3961] = 3961, - [3962] = 3838, - [3963] = 3848, - [3964] = 3839, - [3965] = 3848, - [3966] = 3854, - [3967] = 3644, - [3968] = 3634, - [3969] = 3969, + [3962] = 3871, + [3963] = 3963, + [3964] = 3877, + [3965] = 3895, + [3966] = 3897, + [3967] = 3897, + [3968] = 3868, + [3969] = 3869, [3970] = 3970, - [3971] = 3971, - [3972] = 3845, - [3973] = 3661, - [3974] = 3974, - [3975] = 3654, - [3976] = 3845, - [3977] = 3977, - [3978] = 1438, - [3979] = 3979, - [3980] = 3843, - [3981] = 3842, - [3982] = 3841, - [3983] = 3836, - [3984] = 3984, - [3985] = 3854, + [3971] = 3877, + [3972] = 3865, + [3973] = 3865, + [3974] = 3869, + [3975] = 3868, + [3976] = 3893, + [3977] = 3877, + [3978] = 3875, + [3979] = 3871, + [3980] = 3980, + [3981] = 3897, + [3982] = 3870, + [3983] = 1444, + [3984] = 3872, + [3985] = 3895, [3986] = 3986, - [3987] = 3987, - [3988] = 3834, - [3989] = 3833, - [3990] = 3845, - [3991] = 3833, - [3992] = 3838, - [3993] = 3834, - [3994] = 3838, - [3995] = 3839, - [3996] = 3839, - [3997] = 3852, - [3998] = 3851, - [3999] = 3845, - [4000] = 3841, - [4001] = 3842, - [4002] = 3843, - [4003] = 3843, - [4004] = 3848, - [4005] = 4005, - [4006] = 3843, - [4007] = 3845, - [4008] = 4008, - [4009] = 3842, - [4010] = 3843, - [4011] = 3851, - [4012] = 3841, - [4013] = 3852, - [4014] = 3854, - [4015] = 3842, - [4016] = 3841, - [4017] = 1441, - [4018] = 3845, + [3987] = 3875, + [3988] = 3988, + [3989] = 3863, + [3990] = 3870, + [3991] = 3872, + [3992] = 3890, + [3993] = 3993, + [3994] = 3863, + [3995] = 3895, + [3996] = 3875, + [3997] = 3997, + [3998] = 3865, + [3999] = 3863, + [4000] = 3893, + [4001] = 3890, + [4002] = 3872, + [4003] = 3893, + [4004] = 3870, + [4005] = 3875, + [4006] = 3865, + [4007] = 3872, + [4008] = 3671, + [4009] = 3672, + [4010] = 3870, + [4011] = 1444, + [4012] = 4012, + [4013] = 4013, + [4014] = 3685, + [4015] = 4015, + [4016] = 3678, + [4017] = 1445, + [4018] = 4018, [4019] = 4019, - [4020] = 3848, - [4021] = 4021, - [4022] = 3854, - [4023] = 3834, - [4024] = 3833, - [4025] = 4025, - [4026] = 3839, - [4027] = 3838, - [4028] = 3845, - [4029] = 3841, - [4030] = 3842, - [4031] = 3836, - [4032] = 3843, - [4033] = 4033, - [4034] = 4034, - [4035] = 3836, - [4036] = 3833, - [4037] = 3834, - [4038] = 4038, - [4039] = 3838, - [4040] = 3839, - [4041] = 4041, - [4042] = 4042, - [4043] = 3852, - [4044] = 3848, - [4045] = 3851, - [4046] = 3851, - [4047] = 3852, - [4048] = 3854, - [4049] = 4049, - [4050] = 3836, - [4051] = 3854, - [4052] = 4052, - [4053] = 4053, - [4054] = 3838, - [4055] = 3839, - [4056] = 3845, - [4057] = 3843, - [4058] = 3836, - [4059] = 3842, - [4060] = 3841, - [4061] = 1436, - [4062] = 3838, - [4063] = 3839, - [4064] = 3848, - [4065] = 3848, - [4066] = 1444, - [4067] = 3848, - [4068] = 1436, - [4069] = 3833, - [4070] = 3834, - [4071] = 4071, + [4020] = 3381, + [4021] = 3890, + [4022] = 3890, + [4023] = 3893, + [4024] = 3895, + [4025] = 3871, + [4026] = 3877, + [4027] = 3868, + [4028] = 3869, + [4029] = 3870, + [4030] = 3872, + [4031] = 3897, + [4032] = 1452, + [4033] = 3897, + [4034] = 3895, + [4035] = 4035, + [4036] = 4036, + [4037] = 3870, + [4038] = 3877, + [4039] = 3877, + [4040] = 3872, + [4041] = 3863, + [4042] = 3875, + [4043] = 3865, + [4044] = 4044, + [4045] = 3890, + [4046] = 4046, + [4047] = 3877, + [4048] = 3869, + [4049] = 3897, + [4050] = 3868, + [4051] = 4051, + [4052] = 3869, + [4053] = 3863, + [4054] = 3868, + [4055] = 3382, + [4056] = 3871, + [4057] = 3875, + [4058] = 3865, + [4059] = 3875, + [4060] = 3863, + [4061] = 3871, + [4062] = 3897, + [4063] = 3877, + [4064] = 3865, + [4065] = 4065, + [4066] = 3871, + [4067] = 3868, + [4068] = 3869, + [4069] = 3869, + [4070] = 1451, + [4071] = 3868, [4072] = 4072, - [4073] = 3841, - [4074] = 3842, - [4075] = 3644, - [4076] = 4076, + [4073] = 3890, + [4074] = 3893, + [4075] = 4075, + [4076] = 3877, [4077] = 4077, - [4078] = 4078, - [4079] = 1514, - [4080] = 4080, - [4081] = 4081, - [4082] = 4082, - [4083] = 4083, - [4084] = 4084, - [4085] = 4083, - [4086] = 4081, - [4087] = 4077, - [4088] = 4080, - [4089] = 4089, - [4090] = 4090, - [4091] = 4076, - [4092] = 4092, - [4093] = 4090, - [4094] = 4094, - [4095] = 4077, - [4096] = 4090, - [4097] = 4097, - [4098] = 4090, - [4099] = 3654, - [4100] = 4100, - [4101] = 4078, - [4102] = 4100, - [4103] = 1513, - [4104] = 4090, - [4105] = 4090, + [4078] = 3865, + [4079] = 3875, + [4080] = 3863, + [4081] = 3897, + [4082] = 3871, + [4083] = 1452, + [4084] = 3890, + [4085] = 3895, + [4086] = 3893, + [4087] = 3877, + [4088] = 4088, + [4089] = 3872, + [4090] = 3870, + [4091] = 3869, + [4092] = 3895, + [4093] = 3868, + [4094] = 3871, + [4095] = 1445, + [4096] = 4096, + [4097] = 3871, + [4098] = 3869, + [4099] = 4099, + [4100] = 3865, + [4101] = 3875, + [4102] = 3868, + [4103] = 3863, + [4104] = 4104, + [4105] = 4105, [4106] = 4106, - [4107] = 4090, - [4108] = 4090, - [4109] = 4090, + [4107] = 4107, + [4108] = 4108, + [4109] = 4109, [4110] = 4110, - [4111] = 4111, - [4112] = 4090, - [4113] = 4110, - [4114] = 4090, - [4115] = 4092, - [4116] = 4116, - [4117] = 4078, - [4118] = 4094, + [4111] = 4106, + [4112] = 4112, + [4113] = 4107, + [4114] = 4114, + [4115] = 4114, + [4116] = 4109, + [4117] = 4106, + [4118] = 4114, [4119] = 4119, - [4120] = 4083, - [4121] = 4081, - [4122] = 4094, - [4123] = 4119, - [4124] = 4078, - [4125] = 4097, - [4126] = 4100, - [4127] = 4076, - [4128] = 4089, - [4129] = 4076, - [4130] = 4089, - [4131] = 4131, - [4132] = 4083, - [4133] = 4084, - [4134] = 4082, - [4135] = 3644, - [4136] = 4081, - [4137] = 4077, - [4138] = 3634, - [4139] = 2264, + [4120] = 4120, + [4121] = 4119, + [4122] = 4122, + [4123] = 4123, + [4124] = 4119, + [4125] = 4112, + [4126] = 4119, + [4127] = 4127, + [4128] = 4119, + [4129] = 4107, + [4130] = 4130, + [4131] = 4119, + [4132] = 4132, + [4133] = 4133, + [4134] = 4134, + [4135] = 4123, + [4136] = 4134, + [4137] = 4119, + [4138] = 4119, + [4139] = 4119, [4140] = 4140, - [4141] = 4080, - [4142] = 4092, - [4143] = 1585, + [4141] = 4141, + [4142] = 4119, + [4143] = 4122, [4144] = 4144, - [4145] = 4092, - [4146] = 3661, - [4147] = 4100, - [4148] = 4094, - [4149] = 4149, - [4150] = 4119, - [4151] = 4094, - [4152] = 3661, - [4153] = 3654, - [4154] = 4154, - [4155] = 4155, - [4156] = 4080, - [4157] = 4077, - [4158] = 4110, - [4159] = 4081, - [4160] = 4082, - [4161] = 4080, - [4162] = 4162, - [4163] = 4083, - [4164] = 4164, - [4165] = 4165, - [4166] = 4166, - [4167] = 4089, - [4168] = 4076, - [4169] = 4169, - [4170] = 4170, - [4171] = 4171, - [4172] = 4097, - [4173] = 4097, - [4174] = 4092, - [4175] = 4110, - [4176] = 4110, - [4177] = 4076, - [4178] = 4089, - [4179] = 4083, - [4180] = 4084, - [4181] = 4094, - [4182] = 4082, - [4183] = 4183, - [4184] = 4081, - [4185] = 4077, - [4186] = 4186, - [4187] = 4080, - [4188] = 3654, - [4189] = 3661, - [4190] = 4190, - [4191] = 4191, - [4192] = 4092, - [4193] = 3634, - [4194] = 3644, - [4195] = 4195, + [4145] = 4145, + [4146] = 4119, + [4147] = 4132, + [4148] = 4141, + [4149] = 3671, + [4150] = 4134, + [4151] = 4151, + [4152] = 4152, + [4153] = 3672, + [4154] = 4140, + [4155] = 4144, + [4156] = 4120, + [4157] = 4120, + [4158] = 4119, + [4159] = 4144, + [4160] = 3685, + [4161] = 4107, + [4162] = 4144, + [4163] = 4163, + [4164] = 3671, + [4165] = 3672, + [4166] = 4112, + [4167] = 4144, + [4168] = 4122, + [4169] = 4120, + [4170] = 4123, + [4171] = 4107, + [4172] = 4127, + [4173] = 4134, + [4174] = 4132, + [4175] = 4112, + [4176] = 3685, + [4177] = 4177, + [4178] = 4178, + [4179] = 4179, + [4180] = 4180, + [4181] = 4141, + [4182] = 4140, + [4183] = 4122, + [4184] = 4184, + [4185] = 4185, + [4186] = 4107, + [4187] = 4127, + [4188] = 4123, + [4189] = 3678, + [4190] = 3671, + [4191] = 4108, + [4192] = 4109, + [4193] = 4193, + [4194] = 4106, + [4195] = 4106, [4196] = 4196, - [4197] = 4090, - [4198] = 3634, - [4199] = 4119, - [4200] = 4200, - [4201] = 4201, - [4202] = 4100, - [4203] = 4078, - [4204] = 4119, - [4205] = 4084, + [4197] = 4106, + [4198] = 4198, + [4199] = 3678, + [4200] = 4109, + [4201] = 4132, + [4202] = 4202, + [4203] = 4108, + [4204] = 4204, + [4205] = 4205, [4206] = 4206, - [4207] = 4207, - [4208] = 4208, - [4209] = 3644, - [4210] = 4100, - [4211] = 3644, - [4212] = 4110, - [4213] = 3634, - [4214] = 4092, - [4215] = 4084, - [4216] = 3661, - [4217] = 3654, + [4207] = 4109, + [4208] = 4108, + [4209] = 4120, + [4210] = 4210, + [4211] = 3678, + [4212] = 4134, + [4213] = 4213, + [4214] = 4132, + [4215] = 4123, + [4216] = 3685, + [4217] = 4120, [4218] = 4218, - [4219] = 4110, + [4219] = 4219, [4220] = 4220, - [4221] = 4080, - [4222] = 4097, - [4223] = 4077, - [4224] = 4081, - [4225] = 4106, - [4226] = 4082, - [4227] = 4076, - [4228] = 4089, - [4229] = 4083, - [4230] = 4084, - [4231] = 4084, - [4232] = 4082, - [4233] = 4083, - [4234] = 4081, - [4235] = 4089, - [4236] = 4077, - [4237] = 4237, - [4238] = 4238, - [4239] = 4080, + [4221] = 4221, + [4222] = 4120, + [4223] = 4122, + [4224] = 4224, + [4225] = 3672, + [4226] = 3671, + [4227] = 4134, + [4228] = 4228, + [4229] = 4229, + [4230] = 4230, + [4231] = 3685, + [4232] = 4232, + [4233] = 4112, + [4234] = 3671, + [4235] = 3678, + [4236] = 3672, + [4237] = 4108, + [4238] = 4134, + [4239] = 1582, [4240] = 4240, - [4241] = 3654, - [4242] = 3661, - [4243] = 4092, - [4244] = 3634, - [4245] = 3644, - [4246] = 4097, - [4247] = 4100, - [4248] = 4078, - [4249] = 4119, - [4250] = 4094, - [4251] = 4090, - [4252] = 4078, - [4253] = 4253, - [4254] = 4254, - [4255] = 4110, + [4241] = 4241, + [4242] = 4242, + [4243] = 1583, + [4244] = 4134, + [4245] = 4245, + [4246] = 4109, + [4247] = 4141, + [4248] = 4144, + [4249] = 4106, + [4250] = 4141, + [4251] = 4123, + [4252] = 4122, + [4253] = 4112, + [4254] = 4120, + [4255] = 3685, [4256] = 4256, - [4257] = 4119, - [4258] = 4110, + [4257] = 4257, + [4258] = 4140, [4259] = 4259, - [4260] = 4078, - [4261] = 4261, - [4262] = 4097, - [4263] = 4094, - [4264] = 4097, - [4265] = 4076, - [4266] = 4089, - [4267] = 4083, - [4268] = 4076, - [4269] = 4119, - [4270] = 4270, - [4271] = 4082, - [4272] = 4089, - [4273] = 4078, - [4274] = 4081, - [4275] = 4100, - [4276] = 4276, - [4277] = 4083, - [4278] = 4077, - [4279] = 4080, - [4280] = 3654, - [4281] = 4082, - [4282] = 3661, - [4283] = 4092, - [4284] = 3634, - [4285] = 4084, - [4286] = 3644, - [4287] = 4287, - [4288] = 4288, - [4289] = 3644, + [4260] = 4260, + [4261] = 4127, + [4262] = 4140, + [4263] = 4107, + [4264] = 4114, + [4265] = 4127, + [4266] = 4107, + [4267] = 4107, + [4268] = 4268, + [4269] = 4108, + [4270] = 4127, + [4271] = 4114, + [4272] = 4119, + [4273] = 4107, + [4274] = 4127, + [4275] = 4132, + [4276] = 3672, + [4277] = 4277, + [4278] = 4278, + [4279] = 4141, + [4280] = 3678, + [4281] = 4108, + [4282] = 4282, + [4283] = 4114, + [4284] = 4132, + [4285] = 4210, + [4286] = 4141, + [4287] = 4140, + [4288] = 4109, + [4289] = 4289, [4290] = 4290, - [4291] = 3634, + [4291] = 4206, [4292] = 4292, - [4293] = 4092, - [4294] = 4294, - [4295] = 4100, + [4293] = 4107, + [4294] = 4127, + [4295] = 4106, [4296] = 4296, - [4297] = 4297, - [4298] = 4078, - [4299] = 4084, - [4300] = 4119, - [4301] = 4082, - [4302] = 4094, - [4303] = 4303, - [4304] = 3661, - [4305] = 3654, - [4306] = 4306, - [4307] = 4110, - [4308] = 4082, - [4309] = 4080, - [4310] = 4077, - [4311] = 4081, - [4312] = 4312, - [4313] = 4082, - [4314] = 4314, - [4315] = 4084, - [4316] = 4316, - [4317] = 4317, - [4318] = 4083, - [4319] = 4083, - [4320] = 4320, - [4321] = 4097, - [4322] = 4322, - [4323] = 4089, + [4297] = 4106, + [4298] = 4257, + [4299] = 4299, + [4300] = 4300, + [4301] = 4114, + [4302] = 4144, + [4303] = 4144, + [4304] = 4106, + [4305] = 4109, + [4306] = 4106, + [4307] = 4109, + [4308] = 4108, + [4309] = 3678, + [4310] = 4108, + [4311] = 4311, + [4312] = 4109, + [4313] = 3678, + [4314] = 3685, + [4315] = 4108, + [4316] = 4112, + [4317] = 3678, + [4318] = 4144, + [4319] = 4120, + [4320] = 3672, + [4321] = 4321, + [4322] = 3671, + [4323] = 4323, [4324] = 4324, - [4325] = 4076, - [4326] = 4076, - [4327] = 4089, - [4328] = 4083, - [4329] = 4329, - [4330] = 4330, - [4331] = 4084, - [4332] = 4097, - [4333] = 3644, - [4334] = 4081, - [4335] = 4077, - [4336] = 3654, - [4337] = 4195, - [4338] = 4080, - [4339] = 3654, - [4340] = 4191, - [4341] = 4170, - [4342] = 4342, - [4343] = 3661, - [4344] = 4081, - [4345] = 4092, - [4346] = 3634, - [4347] = 4094, - [4348] = 4110, - [4349] = 4100, - [4350] = 4094, - [4351] = 4078, - [4352] = 4077, - [4353] = 4119, - [4354] = 4119, - [4355] = 4078, - [4356] = 4303, - [4357] = 4306, - [4358] = 4094, - [4359] = 4097, - [4360] = 4080, - [4361] = 3661, - [4362] = 4092, - [4363] = 4119, - [4364] = 4364, - [4365] = 3634, - [4366] = 4366, - [4367] = 4078, - [4368] = 3644, - [4369] = 4110, - [4370] = 4100, - [4371] = 4371, - [4372] = 4372, - [4373] = 4092, - [4374] = 3634, - [4375] = 4092, - [4376] = 4376, - [4377] = 3661, - [4378] = 3654, - [4379] = 4080, - [4380] = 4380, - [4381] = 4381, - [4382] = 4100, - [4383] = 4077, - [4384] = 4081, - [4385] = 4082, - [4386] = 4084, - [4387] = 4083, - [4388] = 4100, - [4389] = 4097, - [4390] = 4089, - [4391] = 4076, - [4392] = 4392, - [4393] = 4393, - [4394] = 4394, - [4395] = 4395, - [4396] = 4396, - [4397] = 4397, - [4398] = 4398, - [4399] = 4399, + [4325] = 3685, + [4326] = 4123, + [4327] = 4327, + [4328] = 4328, + [4329] = 4132, + [4330] = 3685, + [4331] = 4120, + [4332] = 4122, + [4333] = 4122, + [4334] = 3672, + [4335] = 4335, + [4336] = 4336, + [4337] = 4141, + [4338] = 4338, + [4339] = 4140, + [4340] = 4340, + [4341] = 4341, + [4342] = 4120, + [4343] = 4114, + [4344] = 4127, + [4345] = 4112, + [4346] = 4107, + [4347] = 4107, + [4348] = 2231, + [4349] = 4140, + [4350] = 4141, + [4351] = 4127, + [4352] = 4123, + [4353] = 4353, + [4354] = 4134, + [4355] = 3672, + [4356] = 4356, + [4357] = 3671, + [4358] = 4144, + [4359] = 4114, + [4360] = 4114, + [4361] = 1534, + [4362] = 3671, + [4363] = 4140, + [4364] = 4141, + [4365] = 4134, + [4366] = 4112, + [4367] = 3671, + [4368] = 4140, + [4369] = 4134, + [4370] = 4120, + [4371] = 3685, + [4372] = 4144, + [4373] = 4373, + [4374] = 4132, + [4375] = 4132, + [4376] = 3678, + [4377] = 4108, + [4378] = 4127, + [4379] = 4114, + [4380] = 4141, + [4381] = 4109, + [4382] = 4123, + [4383] = 4122, + [4384] = 4140, + [4385] = 4112, + [4386] = 4132, + [4387] = 4106, + [4388] = 4132, + [4389] = 4389, + [4390] = 4106, + [4391] = 4107, + [4392] = 4127, + [4393] = 4141, + [4394] = 3672, + [4395] = 4109, + [4396] = 4108, + [4397] = 4122, + [4398] = 4114, + [4399] = 4134, [4400] = 4400, [4401] = 4401, - [4402] = 4402, - [4403] = 4403, - [4404] = 4404, - [4405] = 4405, - [4406] = 4400, - [4407] = 4399, - [4408] = 4398, - [4409] = 4403, - [4410] = 4410, - [4411] = 4411, - [4412] = 4412, - [4413] = 4413, - [4414] = 4414, - [4415] = 4415, + [4402] = 4120, + [4403] = 4123, + [4404] = 4112, + [4405] = 4140, + [4406] = 4123, + [4407] = 4109, + [4408] = 4144, + [4409] = 4108, + [4410] = 3678, + [4411] = 3685, + [4412] = 4122, + [4413] = 4120, + [4414] = 3672, + [4415] = 3671, [4416] = 4416, - [4417] = 4417, - [4418] = 4418, - [4419] = 4419, - [4420] = 4413, - [4421] = 4421, - [4422] = 4422, - [4423] = 4423, - [4424] = 4403, - [4425] = 4425, - [4426] = 4398, - [4427] = 4400, - [4428] = 4399, - [4429] = 4398, - [4430] = 4399, + [4417] = 4134, + [4418] = 4123, + [4419] = 4112, + [4420] = 4130, + [4421] = 4122, + [4422] = 4133, + [4423] = 4256, + [4424] = 4424, + [4425] = 4123, + [4426] = 4426, + [4427] = 4427, + [4428] = 4428, + [4429] = 4429, + [4430] = 4430, [4431] = 4431, - [4432] = 4400, + [4432] = 4432, [4433] = 4433, - [4434] = 4392, - [4435] = 4410, - [4436] = 4403, + [4434] = 4434, + [4435] = 4435, + [4436] = 4436, [4437] = 4437, - [4438] = 4392, - [4439] = 4439, - [4440] = 4440, - [4441] = 4433, - [4442] = 4425, - [4443] = 4423, - [4444] = 4413, - [4445] = 4403, + [4438] = 4438, + [4439] = 4438, + [4440] = 4437, + [4441] = 4432, + [4442] = 4442, + [4443] = 4429, + [4444] = 4430, + [4445] = 4431, [4446] = 4446, - [4447] = 4421, - [4448] = 4400, - [4449] = 4399, - [4450] = 4398, - [4451] = 4451, - [4452] = 4419, - [4453] = 4398, - [4454] = 4418, - [4455] = 4401, - [4456] = 4399, - [4457] = 4416, - [4458] = 4414, - [4459] = 4400, - [4460] = 4403, - [4461] = 4416, - [4462] = 4462, - [4463] = 4463, - [4464] = 4396, - [4465] = 4465, - [4466] = 4403, - [4467] = 4395, - [4468] = 4395, - [4469] = 4400, - [4470] = 4399, - [4471] = 4398, - [4472] = 4437, - [4473] = 4396, - [4474] = 4410, - [4475] = 4414, - [4476] = 4416, - [4477] = 4418, - [4478] = 4398, - [4479] = 4399, - [4480] = 4401, - [4481] = 4400, - [4482] = 4419, - [4483] = 4421, - [4484] = 4403, - [4485] = 4413, - [4486] = 4423, - [4487] = 4403, - [4488] = 4425, - [4489] = 4433, - [4490] = 4400, - [4491] = 4399, - [4492] = 4398, - [4493] = 4392, - [4494] = 4494, - [4495] = 4495, - [4496] = 4496, + [4447] = 4447, + [4448] = 4448, + [4449] = 4435, + [4450] = 4442, + [4451] = 4447, + [4452] = 4452, + [4453] = 4429, + [4454] = 4430, + [4455] = 4431, + [4456] = 4434, + [4457] = 4457, + [4458] = 4458, + [4459] = 4459, + [4460] = 4459, + [4461] = 4457, + [4462] = 4452, + [4463] = 4448, + [4464] = 4437, + [4465] = 4438, + [4466] = 4442, + [4467] = 4429, + [4468] = 4430, + [4469] = 4431, + [4470] = 4435, + [4471] = 4434, + [4472] = 4433, + [4473] = 4433, + [4474] = 4474, + [4475] = 4426, + [4476] = 4426, + [4477] = 4477, + [4478] = 4478, + [4479] = 4428, + [4480] = 4442, + [4481] = 4429, + [4482] = 4430, + [4483] = 4431, + [4484] = 4426, + [4485] = 4432, + [4486] = 4478, + [4487] = 4442, + [4488] = 4488, + [4489] = 4429, + [4490] = 4430, + [4491] = 4431, + [4492] = 4492, + [4493] = 4478, + [4494] = 4428, + [4495] = 4478, + [4496] = 4459, [4497] = 4497, [4498] = 4498, - [4499] = 4413, - [4500] = 4500, - [4501] = 4413, - [4502] = 4502, - [4503] = 4503, - [4504] = 4504, - [4505] = 4401, - [4506] = 4506, - [4507] = 4401, - [4508] = 4403, - [4509] = 4395, - [4510] = 4510, - [4511] = 4400, - [4512] = 4399, - [4513] = 4398, - [4514] = 4396, - [4515] = 4515, - [4516] = 4423, - [4517] = 4395, - [4518] = 4396, - [4519] = 4410, - [4520] = 4410, - [4521] = 4392, - [4522] = 4414, - [4523] = 4416, - [4524] = 4433, - [4525] = 4403, - [4526] = 4425, - [4527] = 4400, - [4528] = 4399, - [4529] = 4398, - [4530] = 4423, - [4531] = 4418, - [4532] = 4414, - [4533] = 4403, - [4534] = 4398, + [4499] = 4435, + [4500] = 4433, + [4501] = 4434, + [4502] = 4447, + [4503] = 4447, + [4504] = 4447, + [4505] = 4438, + [4506] = 4437, + [4507] = 4442, + [4508] = 4447, + [4509] = 4428, + [4510] = 4429, + [4511] = 4430, + [4512] = 4431, + [4513] = 4513, + [4514] = 4448, + [4515] = 4447, + [4516] = 4431, + [4517] = 4430, + [4518] = 4518, + [4519] = 4429, + [4520] = 4452, + [4521] = 4442, + [4522] = 4457, + [4523] = 4459, + [4524] = 2326, + [4525] = 4525, + [4526] = 4526, + [4527] = 4428, + [4528] = 4442, + [4529] = 4478, + [4530] = 4530, + [4531] = 4429, + [4532] = 4430, + [4533] = 4431, + [4534] = 4426, [4535] = 4535, - [4536] = 4421, - [4537] = 4419, - [4538] = 4418, - [4539] = 4419, - [4540] = 4421, - [4541] = 4423, - [4542] = 4425, - [4543] = 4433, - [4544] = 4544, - [4545] = 4545, - [4546] = 4414, - [4547] = 4418, - [4548] = 4392, - [4549] = 4410, - [4550] = 4413, - [4551] = 4551, - [4552] = 4396, - [4553] = 4414, - [4554] = 4398, - [4555] = 4399, - [4556] = 4395, - [4557] = 4395, - [4558] = 4400, + [4536] = 4447, + [4537] = 4426, + [4538] = 4538, + [4539] = 4539, + [4540] = 4540, + [4541] = 4459, + [4542] = 4433, + [4543] = 4434, + [4544] = 4435, + [4545] = 4438, + [4546] = 4457, + [4547] = 4452, + [4548] = 4437, + [4549] = 4442, + [4550] = 4550, + [4551] = 4448, + [4552] = 4429, + [4553] = 4430, + [4554] = 4431, + [4555] = 4555, + [4556] = 4432, + [4557] = 4432, + [4558] = 4432, [4559] = 4559, - [4560] = 4419, - [4561] = 4561, - [4562] = 4401, - [4563] = 4403, - [4564] = 4496, - [4565] = 4421, - [4566] = 4401, - [4567] = 4395, - [4568] = 4396, - [4569] = 4465, - [4570] = 4570, - [4571] = 4571, - [4572] = 4572, - [4573] = 4410, - [4574] = 4574, - [4575] = 4433, - [4576] = 4414, - [4577] = 4425, - [4578] = 4578, - [4579] = 4416, - [4580] = 4418, - [4581] = 4581, - [4582] = 4421, - [4583] = 4583, - [4584] = 4423, - [4585] = 4413, - [4586] = 4425, - [4587] = 4423, - [4588] = 4433, - [4589] = 4589, - [4590] = 4392, - [4591] = 4419, - [4592] = 4425, - [4593] = 4433, - [4594] = 4594, - [4595] = 4413, - [4596] = 4413, - [4597] = 4413, + [4560] = 4448, + [4561] = 4437, + [4562] = 4438, + [4563] = 4432, + [4564] = 4448, + [4565] = 4435, + [4566] = 4442, + [4567] = 2333, + [4568] = 4429, + [4569] = 4430, + [4570] = 4431, + [4571] = 4434, + [4572] = 4433, + [4573] = 4426, + [4574] = 4442, + [4575] = 4431, + [4576] = 4428, + [4577] = 4577, + [4578] = 4452, + [4579] = 4478, + [4580] = 4428, + [4581] = 4478, + [4582] = 4431, + [4583] = 4430, + [4584] = 4584, + [4585] = 4457, + [4586] = 4429, + [4587] = 4587, + [4588] = 4588, + [4589] = 4452, + [4590] = 4590, + [4591] = 4442, + [4592] = 4458, + [4593] = 4593, + [4594] = 4442, + [4595] = 4457, + [4596] = 4596, + [4597] = 4597, [4598] = 4598, - [4599] = 4392, - [4600] = 4401, - [4601] = 4413, - [4602] = 4392, - [4603] = 4433, - [4604] = 4425, - [4605] = 4423, - [4606] = 4395, - [4607] = 4421, - [4608] = 4419, - [4609] = 4418, - [4610] = 4416, - [4611] = 4414, - [4612] = 4612, - [4613] = 4410, + [4599] = 4599, + [4600] = 4600, + [4601] = 4601, + [4602] = 4459, + [4603] = 4603, + [4604] = 4604, + [4605] = 4433, + [4606] = 4434, + [4607] = 4432, + [4608] = 4608, + [4609] = 4609, + [4610] = 4435, + [4611] = 4438, + [4612] = 4437, + [4613] = 4448, [4614] = 4614, - [4615] = 4615, - [4616] = 4396, - [4617] = 4413, - [4618] = 4396, - [4619] = 4410, - [4620] = 4395, - [4621] = 4621, - [4622] = 4414, - [4623] = 4416, - [4624] = 4416, - [4625] = 4401, - [4626] = 4403, - [4627] = 4418, - [4628] = 4419, - [4629] = 4413, - [4630] = 4401, - [4631] = 4421, - [4632] = 4423, - [4633] = 4425, + [4615] = 4452, + [4616] = 4616, + [4617] = 4459, + [4618] = 4618, + [4619] = 4428, + [4620] = 4447, + [4621] = 4447, + [4622] = 4478, + [4623] = 4447, + [4624] = 4437, + [4625] = 4447, + [4626] = 4626, + [4627] = 4627, + [4628] = 4447, + [4629] = 4629, + [4630] = 4432, + [4631] = 4447, + [4632] = 4632, + [4633] = 4633, [4634] = 4634, - [4635] = 4433, - [4636] = 4392, - [4637] = 4401, - [4638] = 4413, - [4639] = 4413, - [4640] = 4640, - [4641] = 2298, - [4642] = 4401, - [4643] = 4401, - [4644] = 4395, - [4645] = 4645, - [4646] = 4414, - [4647] = 4413, - [4648] = 4396, - [4649] = 4410, - [4650] = 4414, - [4651] = 4416, - [4652] = 4652, - [4653] = 4653, - [4654] = 4654, - [4655] = 4401, - [4656] = 4656, - [4657] = 4418, - [4658] = 4410, - [4659] = 4392, - [4660] = 4660, - [4661] = 4419, - [4662] = 4421, - [4663] = 4433, - [4664] = 4551, - [4665] = 4425, - [4666] = 4423, - [4667] = 4413, + [4635] = 4432, + [4636] = 4636, + [4637] = 4431, + [4638] = 4432, + [4639] = 4430, + [4640] = 4429, + [4641] = 4432, + [4642] = 4642, + [4643] = 4457, + [4644] = 4432, + [4645] = 4426, + [4646] = 4646, + [4647] = 4447, + [4648] = 4433, + [4649] = 4447, + [4650] = 4434, + [4651] = 4428, + [4652] = 4442, + [4653] = 4478, + [4654] = 4426, + [4655] = 4433, + [4656] = 4478, + [4657] = 4438, + [4658] = 4457, + [4659] = 4437, + [4660] = 4434, + [4661] = 4433, + [4662] = 4662, + [4663] = 4459, + [4664] = 4664, + [4665] = 4448, + [4666] = 4452, + [4667] = 4435, [4668] = 4668, - [4669] = 4551, - [4670] = 2296, - [4671] = 4423, - [4672] = 4421, - [4673] = 4551, - [4674] = 4421, - [4675] = 4425, - [4676] = 4419, - [4677] = 4551, - [4678] = 4419, - [4679] = 4433, - [4680] = 4418, - [4681] = 4551, + [4669] = 4459, + [4670] = 4457, + [4671] = 4671, + [4672] = 4457, + [4673] = 4452, + [4674] = 4438, + [4675] = 4452, + [4676] = 4448, + [4677] = 4437, + [4678] = 4435, + [4679] = 4437, + [4680] = 4600, + [4681] = 4438, [4682] = 4682, - [4683] = 4398, - [4684] = 4416, - [4685] = 4551, - [4686] = 4414, - [4687] = 4392, - [4688] = 4392, - [4689] = 4551, - [4690] = 4410, - [4691] = 4433, - [4692] = 4425, - [4693] = 4551, - [4694] = 4413, - [4695] = 4423, - [4696] = 4396, - [4697] = 4551, - [4698] = 4413, - [4699] = 4399, - [4700] = 4395, - [4701] = 4551, - [4702] = 4400, - [4703] = 4421, - [4704] = 4704, - [4705] = 4419, - [4706] = 4395, - [4707] = 4396, - [4708] = 4414, - [4709] = 4401, - [4710] = 4410, - [4711] = 4418, - [4712] = 4401, - [4713] = 4416, - [4714] = 4714, - [4715] = 4551, - [4716] = 4396, + [4683] = 4457, + [4684] = 4447, + [4685] = 4432, + [4686] = 4448, + [4687] = 4435, + [4688] = 4448, + [4689] = 4434, + [4690] = 4433, + [4691] = 4691, + [4692] = 4692, + [4693] = 4428, + [4694] = 4452, + [4695] = 4457, + [4696] = 4447, + [4697] = 4426, + [4698] = 4459, + [4699] = 4437, + [4700] = 4459, + [4701] = 4452, + [4702] = 4702, + [4703] = 4428, + [4704] = 4448, + [4705] = 4458, + [4706] = 4478, + [4707] = 4428, + [4708] = 4459, + [4709] = 4709, + [4710] = 4458, + [4711] = 4711, + [4712] = 4478, + [4713] = 4447, + [4714] = 4458, + [4715] = 4438, + [4716] = 4457, + [4717] = 4604, + [4718] = 4458, + [4719] = 4488, + [4720] = 4452, + [4721] = 4448, + [4722] = 4458, + [4723] = 4723, + [4724] = 4724, + [4725] = 4437, + [4726] = 4458, + [4727] = 4438, + [4728] = 4426, + [4729] = 4433, + [4730] = 4458, + [4731] = 4435, + [4732] = 4447, + [4733] = 4434, + [4734] = 4458, + [4735] = 4433, + [4736] = 4459, + [4737] = 4737, + [4738] = 4458, + [4739] = 4426, + [4740] = 4434, + [4741] = 4741, + [4742] = 4458, + [4743] = 4743, + [4744] = 4435, + [4745] = 4438, + [4746] = 4432, + [4747] = 4747, + [4748] = 4478, + [4749] = 4433, + [4750] = 4750, + [4751] = 4426, + [4752] = 4428, + [4753] = 4753, + [4754] = 4432, + [4755] = 4755, + [4756] = 4756, + [4757] = 4757, }; static inline bool sym_rune_literal_character_set_1(int32_t c) { @@ -8179,303 +8262,303 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(262); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(358); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(308); - if (lookahead == '0') ADVANCE(681); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (eof) ADVANCE(252); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(461); + if (lookahead == '$') ADVANCE(368); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(288); + if (lookahead == '0') ADVANCE(427); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(337); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '\\') ADVANCE(240); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '\\') ADVANCE(230); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(259) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + lookahead == ' ') SKIP(249) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(407); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(362); + if (lookahead == '\n') ADVANCE(372); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(330); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(293); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(340); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(330); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(293); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(340); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(167); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(293); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(167); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(293); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(331); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(8) END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(331); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8483,76 +8566,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(9) END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(331); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(8) END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(331); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8560,76 +8643,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(9) END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(12) END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8637,76 +8720,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(13) END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(12) END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8714,76 +8797,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(13) END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(292); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(16) END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(292); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8791,77 +8874,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(17) END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(292); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(16) END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(292); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8869,41 +8952,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(17) END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(331); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8911,40 +8994,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(19) END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(331); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8952,40 +9035,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(19) END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8993,40 +9076,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(21) END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9034,40 +9117,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(21) END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(292); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9075,40 +9158,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(23) END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(292); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9116,709 +9199,703 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(23) END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(25) END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(25) END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(27) END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(27) END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(29) END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(29) END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(336); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(297); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(281); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(309); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(313); + if (lookahead == '.') ADVANCE(293); if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(152); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(144); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(336); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '.') ADVANCE(278); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '.') ADVANCE(290); if (lookahead == '/') ADVANCE(97); - if (lookahead == '<') ADVANCE(326); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '<') ADVANCE(336); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); 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(708); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(32) END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(336); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '.') ADVANCE(278); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '.') ADVANCE(290); if (lookahead == '/') ADVANCE(97); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); 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(708); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(32) END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(336); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); if (lookahead == '/') ADVANCE(97); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '=') ADVANCE(292); - if (lookahead == '?') ADVANCE(334); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '=') ADVANCE(304); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); 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(708); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(33) END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '$') ADVANCE(181); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '.') ADVANCE(155); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '$') ADVANCE(171); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '.') ADVANCE(147); if (lookahead == '/') ADVANCE(97); - if (lookahead == ':') ADVANCE(330); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '=') ADVANCE(292); + if (lookahead == ':') ADVANCE(340); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '=') ADVANCE(304); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(34) END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '.') ADVANCE(278); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '.') ADVANCE(290); if (lookahead == '/') ADVANCE(97); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '=') ADVANCE(292); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '=') ADVANCE(304); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(36) END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '.') ADVANCE(278); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '.') ADVANCE(290); if (lookahead == '/') ADVANCE(97); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '=') ADVANCE(292); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '=') ADVANCE(304); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(36) END_STATE(); case 37: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(330); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(340); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 38: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(330); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(340); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 39: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(167); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 40: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(167); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 41: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == '0') ADVANCE(400); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(407); END_STATE(); case 42: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == '0') ADVANCE(400); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(407); END_STATE(); case 43: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); - 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(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) + lookahead == ' ') SKIP(45) END_STATE(); case 44: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9826,73 +9903,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) + lookahead == ' ') SKIP(46) END_STATE(); case 45: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47) + lookahead == ' ') SKIP(45) END_STATE(); case 46: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9900,73 +9975,79 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48) + lookahead == ' ') SKIP(46) END_STATE(); case 47: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); + 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(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47) + lookahead == ' ') SKIP(48) END_STATE(); case 48: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9974,77 +10055,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(48) END_STATE(); case 49: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(282); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(294); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51) END_STATE(); case 50: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(282); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(294); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10052,77 +10133,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52) END_STATE(); case 51: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(282); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(294); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51) END_STATE(); case 52: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(282); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(294); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10130,103 +10211,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52) END_STATE(); case 53: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(54) END_STATE(); case 54: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(54) END_STATE(); case 55: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10234,37 +10315,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(56) END_STATE(); case 56: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10272,37 +10353,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(56) END_STATE(); case 57: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10310,36 +10391,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(296); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58) END_STATE(); case 58: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10347,37 +10428,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(296); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58) END_STATE(); case 59: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10385,38 +10466,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(60) END_STATE(); case 60: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10424,39 +10505,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(60) END_STATE(); case 61: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10464,39 +10545,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(62) END_STATE(); case 62: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10504,41 +10585,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(62) END_STATE(); case 63: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(282); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(294); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10546,42 +10627,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(64) END_STATE(); case 64: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(282); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(294); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10589,38 +10670,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(64) END_STATE(); case 65: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10628,37 +10709,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(66) END_STATE(); case 66: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10666,37 +10747,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(66) END_STATE(); case 67: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10704,36 +10785,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(296); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68) END_STATE(); case 68: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10741,568 +10822,568 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == '|') ADVANCE(296); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68) END_STATE(); case 69: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(195); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(185); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70) END_STATE(); case 70: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(195); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(185); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70) END_STATE(); case 71: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(331); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(72) END_STATE(); case 72: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(331); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(288); + if (lookahead == ':') ADVANCE(341); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(72) END_STATE(); case 73: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(282); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(325); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(294); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(335); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(74) END_STATE(); case 74: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(282); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(339); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(294); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(349); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(74) END_STATE(); case 75: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(325); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(335); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(76) END_STATE(); case 76: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(314); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(339); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(158); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(349); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(76) END_STATE(); case 77: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(78) END_STATE(); case 78: - if (lookahead == '!') ADVANCE(337); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(307); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (lookahead == 'a') ADVANCE(203); - if (lookahead == 'i') ADVANCE(200); - if (lookahead == 'o') ADVANCE(202); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '#') ADVANCE(173); + if (lookahead == '$') ADVANCE(184); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(290); + if (lookahead == '/') ADVANCE(287); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(78) END_STATE(); case 79: - if (lookahead == '!') ADVANCE(336); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(297); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(281); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(309); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(313); + if (lookahead == '.') ADVANCE(293); if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(330); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(152); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(340); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(144); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(306); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(79) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 80: - if (lookahead == '!') ADVANCE(336); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(297); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(283); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(309); + if (lookahead == '-') ADVANCE(313); + if (lookahead == '.') ADVANCE(295); if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(393); - if (lookahead == '<') ADVANCE(152); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '0') ADVANCE(403); + if (lookahead == '<') ADVANCE(144); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(80) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 81: - if (lookahead == '!') ADVANCE(336); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '.') ADVANCE(280); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '.') ADVANCE(292); if (lookahead == '/') ADVANCE(97); - if (lookahead == '<') ADVANCE(326); - if (lookahead == '=') ADVANCE(292); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '<') ADVANCE(336); + if (lookahead == '=') ADVANCE(304); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); 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(708); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == '{') ADVANCE(287); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == '{') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(82) END_STATE(); case 82: - if (lookahead == '!') ADVANCE(336); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '.') ADVANCE(280); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '.') ADVANCE(292); if (lookahead == '/') ADVANCE(97); - if (lookahead == '=') ADVANCE(292); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '=') ADVANCE(304); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); 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(708); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == '{') ADVANCE(287); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == '{') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(82) END_STATE(); case 83: - if (lookahead == '!') ADVANCE(336); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '.') ADVANCE(155); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '.') ADVANCE(147); if (lookahead == '/') ADVANCE(97); - if (lookahead == '=') ADVANCE(292); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '=') ADVANCE(304); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == ']') ADVANCE(329); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == ']') ADVANCE(339); 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(708); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == '{') ADVANCE(287); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == '{') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(83) END_STATE(); case 84: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(297); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '<') ADVANCE(315); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(317); + if (lookahead == '!') ADVANCE(156); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(309); + if (lookahead == '-') ADVANCE(313); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '<') ADVANCE(325); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(327); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(84) END_STATE(); case 85: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '$') ADVANCE(359); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(297); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(400); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(328); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(317); + if (lookahead == '!') ADVANCE(156); + if (lookahead == '$') ADVANCE(369); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(309); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(313); + if (lookahead == '.') ADVANCE(292); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(338); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(327); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == ']') ADVANCE(329); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == ']') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(306); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(86) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(407); END_STATE(); case 86: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '$') ADVANCE(359); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(297); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(400); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(315); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(317); + if (lookahead == '!') ADVANCE(156); + if (lookahead == '$') ADVANCE(369); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(309); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(313); + if (lookahead == '.') ADVANCE(292); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(410); + if (lookahead == ':') ADVANCE(340); + if (lookahead == '<') ADVANCE(325); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(327); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == ']') ADVANCE(329); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == ']') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(306); + if (lookahead == '}') ADVANCE(301); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(86) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(407); END_STATE(); case 87: - if (lookahead == '"') ADVANCE(857); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '.') ADVANCE(217); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '.') ADVANCE(207); if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(393); + if (lookahead == '0') ADVANCE(403); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || lookahead == 'a' || @@ -11311,493 +11392,451 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('s' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'r') ADVANCE(685); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'r') ADVANCE(431); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(87) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 88: - if (lookahead == '"') ADVANCE(857); - if (lookahead == '$') ADVANCE(205); - if (lookahead == '/') ADVANCE(483); - if (lookahead == '\\') ADVANCE(240); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '$') ADVANCE(195); + if (lookahead == '/') ADVANCE(417); + if (lookahead == '\\') ADVANCE(230); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(536); - if (lookahead != 0) ADVANCE(541); + lookahead == ' ') ADVANCE(418); + if (lookahead != 0) ADVANCE(419); END_STATE(); case 89: - if (lookahead == '"') ADVANCE(857); - if (lookahead == '/') ADVANCE(621); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '/') ADVANCE(423); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(674); - if (lookahead != 0) ADVANCE(679); + lookahead == ' ') ADVANCE(424); + if (lookahead != 0) ADVANCE(425); END_STATE(); case 90: - if (lookahead == '$') ADVANCE(181); - if (lookahead == '.') ADVANCE(278); + if (lookahead == '$') ADVANCE(171); + if (lookahead == '.') ADVANCE(290); if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(681); - if (lookahead == '>') ADVANCE(316); + if (lookahead == '0') ADVANCE(427); + if (lookahead == '>') ADVANCE(326); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == ']') ADVANCE(329); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == ']') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == '}') ADVANCE(289); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == '}') ADVANCE(301); if (lookahead == '+' || - lookahead == '-') ADVANCE(680); + lookahead == '-') ADVANCE(426); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(90) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(407); END_STATE(); case 91: - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(855); + if (lookahead == '$') ADVANCE(171); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(469); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); case 92: - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); + if (lookahead == '$') ADVANCE(171); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); case 93: - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(686); - if (lookahead == 'J') ADVANCE(690); - if (lookahead == '[') ADVANCE(855); + if (lookahead == '$') ADVANCE(171); + if (lookahead == 'C') ADVANCE(432); + if (lookahead == 'J') ADVANCE(436); + if (lookahead == '[') ADVANCE(469); if (lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(693); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(439); END_STATE(); case 94: - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(686); - if (lookahead == 'J') ADVANCE(690); + if (lookahead == '$') ADVANCE(171); + if (lookahead == 'C') ADVANCE(432); + if (lookahead == 'J') ADVANCE(436); if (lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(693); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(439); END_STATE(); case 95: - if (lookahead == '$') ADVANCE(205); - if (lookahead == '\'') ADVANCE(858); + if (lookahead == '$') ADVANCE(195); + if (lookahead == '\'') ADVANCE(472); if (lookahead == '/') ADVANCE(414); - if (lookahead == '\\') ADVANCE(240); + if (lookahead == '\\') ADVANCE(230); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(467); - if (lookahead != 0) ADVANCE(472); + lookahead == ' ') ADVANCE(415); + if (lookahead != 0) ADVANCE(416); END_STATE(); case 96: - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '/') ADVANCE(552); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '/') ADVANCE(420); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(605); - if (lookahead != 0) ADVANCE(610); + lookahead == ' ') ADVANCE(421); + if (lookahead != 0) ADVANCE(422); END_STATE(); case 97: - if (lookahead == '*') ADVANCE(99); - if (lookahead == '/') ADVANCE(275); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '/') ADVANCE(259); END_STATE(); case 98: - if (lookahead == '*') ADVANCE(99); - if (lookahead == '/') ADVANCE(275); - if (lookahead == '=') ADVANCE(380); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '/') ADVANCE(259); + if (lookahead == '=') ADVANCE(390); END_STATE(); case 99: - if (lookahead == '*') ADVANCE(158); - if (lookahead == '/') ADVANCE(101); - if (lookahead != 0) ADVANCE(102); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '/') ADVANCE(260); + if (lookahead != 0) ADVANCE(105); END_STATE(); case 100: - if (lookahead == '*') ADVANCE(159); - if (lookahead == '/') ADVANCE(107); - if (lookahead != 0) ADVANCE(100); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '/') ADVANCE(261); + if (lookahead != 0) ADVANCE(104); END_STATE(); case 101: - if (lookahead == '*') ADVANCE(159); - if (lookahead != 0) ADVANCE(101); + if (lookahead == '*') ADVANCE(286); + if (lookahead == '/') ADVANCE(99); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(102); + if (lookahead != 0) ADVANCE(106); END_STATE(); case 102: - if (lookahead == '*') ADVANCE(159); - if (lookahead != 0) ADVANCE(100); + if (lookahead == '*') ADVANCE(286); + if (lookahead == '/') ADVANCE(100); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(103); + if (lookahead != 0) ADVANCE(104); END_STATE(); case 103: - if (lookahead == '*') ADVANCE(111); - if (lookahead == '/') ADVANCE(103); - if (lookahead != 0) ADVANCE(163); + if (lookahead == '*') ADVANCE(286); + if (lookahead == '/') ADVANCE(109); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(103); + if (lookahead != 0) ADVANCE(104); END_STATE(); case 104: - if (lookahead == '*') ADVANCE(243); - if (lookahead == '/') ADVANCE(112); - if (lookahead != 0) ADVANCE(114); + if (lookahead == '*') ADVANCE(268); + if (lookahead == '/') ADVANCE(108); + if (lookahead != 0) ADVANCE(104); END_STATE(); case 105: - if (lookahead == '*') ADVANCE(243); - if (lookahead == '/') ADVANCE(125); - if (lookahead != 0) ADVANCE(113); + if (lookahead == '*') ADVANCE(268); + if (lookahead != 0) ADVANCE(105); END_STATE(); case 106: - if (lookahead == '*') ADVANCE(243); - if (lookahead == '/') ADVANCE(141); - if (lookahead != 0) ADVANCE(142); + if (lookahead == '*') ADVANCE(268); + if (lookahead != 0) ADVANCE(104); END_STATE(); case 107: - if (lookahead == '*') ADVANCE(108); + if (lookahead == '*') ADVANCE(122); if (lookahead == '/') ADVANCE(107); - if (lookahead != 0) ADVANCE(100); + if (lookahead != 0) ADVANCE(153); END_STATE(); case 108: - if (lookahead == '*') ADVANCE(110); - if (lookahead == '/') ADVANCE(266); - if (lookahead != 0) ADVANCE(244); + if (lookahead == '*') ADVANCE(278); + if (lookahead == '/') ADVANCE(108); + if (lookahead != 0) ADVANCE(104); END_STATE(); case 109: - if (lookahead == '*') ADVANCE(110); - if (lookahead == '/') ADVANCE(163); - if (lookahead != 0) ADVANCE(165); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '/') ADVANCE(261); + if (lookahead != 0) ADVANCE(104); END_STATE(); case 110: - if (lookahead == '*') ADVANCE(110); - if (lookahead == '/') ADVANCE(104); - if (lookahead != 0) ADVANCE(104); + if (lookahead == '*') ADVANCE(269); + if (lookahead == '/') ADVANCE(107); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 111: - if (lookahead == '*') ADVANCE(110); - if (lookahead != 0 && - lookahead != '/') ADVANCE(244); + if (lookahead == '*') ADVANCE(132); + if (lookahead == '/') ADVANCE(234); + if (lookahead != 0) ADVANCE(119); END_STATE(); case 112: - if (lookahead == '*') ADVANCE(115); - if (lookahead == '/') ADVANCE(112); - if (lookahead != 0) ADVANCE(124); + if (lookahead == '*') ADVANCE(132); + if (lookahead == '/') ADVANCE(107); + if (lookahead != 0) ADVANCE(129); END_STATE(); case 113: - if (lookahead == '*') ADVANCE(115); - if (lookahead == '/') ADVANCE(125); - if (lookahead != 0) ADVANCE(123); + if (lookahead == '*') ADVANCE(132); + if (lookahead == '/') ADVANCE(138); + if (lookahead != 0) ADVANCE(118); END_STATE(); case 114: - if (lookahead == '*') ADVANCE(115); - if (lookahead == '/') ADVANCE(113); - if (lookahead != 0) ADVANCE(123); + if (lookahead == '*') ADVANCE(231); + if (lookahead == '/') ADVANCE(139); + if (lookahead != 0) ADVANCE(140); END_STATE(); case 115: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(163); - if (lookahead != 0) ADVANCE(116); + if (lookahead == '*') ADVANCE(231); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(125); END_STATE(); case 116: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(103); - if (lookahead != 0) ADVANCE(116); + if (lookahead == '*') ADVANCE(231); + if (lookahead == '/') ADVANCE(136); + if (lookahead != 0) ADVANCE(124); END_STATE(); case 117: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(164); - if (lookahead != 0) ADVANCE(116); + if (lookahead == '*') ADVANCE(143); + if (lookahead == '/') ADVANCE(107); + if (lookahead != 0) ADVANCE(129); END_STATE(); case 118: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(242); - if (lookahead != 0) ADVANCE(121); + if (lookahead == '*') ADVANCE(276); + if (lookahead == '/') ADVANCE(107); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 119: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(104); - if (lookahead != 0) ADVANCE(122); + if (lookahead == '*') ADVANCE(276); + if (lookahead != 0 && + lookahead != '/') ADVANCE(273); END_STATE(); case 120: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(131); - if (lookahead != 0) ADVANCE(123); + if (lookahead == '*') ADVANCE(121); + if (lookahead == '/') ADVANCE(153); + if (lookahead != 0) ADVANCE(155); END_STATE(); case 121: - if (lookahead == '*') ADVANCE(118); - if (lookahead != 0 && - lookahead != '/') ADVANCE(121); + if (lookahead == '*') ADVANCE(121); + if (lookahead == '/') ADVANCE(115); + if (lookahead != 0) ADVANCE(115); END_STATE(); case 122: - if (lookahead == '*') ADVANCE(117); - if (lookahead == '/') ADVANCE(112); - if (lookahead != 0) ADVANCE(124); + if (lookahead == '*') ADVANCE(121); + if (lookahead != 0 && + lookahead != '/') ADVANCE(233); END_STATE(); case 123: - if (lookahead == '*') ADVANCE(117); - if (lookahead == '/') ADVANCE(125); - if (lookahead != 0) ADVANCE(123); + if (lookahead == '*') ADVANCE(126); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(135); END_STATE(); case 124: - if (lookahead == '*') ADVANCE(117); - if (lookahead == '/') ADVANCE(113); - if (lookahead != 0) ADVANCE(123); + if (lookahead == '*') ADVANCE(126); + if (lookahead == '/') ADVANCE(136); + if (lookahead != 0) ADVANCE(134); END_STATE(); case 125: - if (lookahead == '*') ADVANCE(149); - if (lookahead == '/') ADVANCE(125); - if (lookahead != 0) ADVANCE(123); + if (lookahead == '*') ADVANCE(126); + if (lookahead == '/') ADVANCE(124); + if (lookahead != 0) ADVANCE(134); END_STATE(); case 126: - if (lookahead == '*') ADVANCE(126); - if (lookahead == '/') ADVANCE(276); - if (lookahead != 0) ADVANCE(143); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '/') ADVANCE(153); + if (lookahead != 0) ADVANCE(129); END_STATE(); case 127: - if (lookahead == '*') ADVANCE(126); - if (lookahead == '/') ADVANCE(270); - if (lookahead != 0) ADVANCE(144); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '/') ADVANCE(154); + if (lookahead != 0) ADVANCE(129); END_STATE(); case 128: - if (lookahead == '*') ADVANCE(126); - if (lookahead == '/') ADVANCE(103); - if (lookahead != 0) ADVANCE(127); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '/') ADVANCE(232); + if (lookahead != 0) ADVANCE(132); END_STATE(); case 129: - if (lookahead == '*') ADVANCE(130); - if (lookahead == '/') ADVANCE(276); - if (lookahead != 0) ADVANCE(145); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '/') ADVANCE(107); + if (lookahead != 0) ADVANCE(129); END_STATE(); case 130: - if (lookahead == '*') ADVANCE(130); - if (lookahead == '/') ADVANCE(271); - if (lookahead != 0) ADVANCE(140); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '/') ADVANCE(115); + if (lookahead != 0) ADVANCE(133); END_STATE(); case 131: - if (lookahead == '*') ADVANCE(109); - if (lookahead == '/') ADVANCE(125); - if (lookahead != 0) ADVANCE(113); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '/') ADVANCE(137); + if (lookahead != 0) ADVANCE(134); END_STATE(); case 132: - if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(276); - if (lookahead != 0) ADVANCE(132); + if (lookahead == '*') ADVANCE(128); + if (lookahead != 0 && + lookahead != '/') ADVANCE(132); END_STATE(); case 133: - if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(270); - if (lookahead != 0) ADVANCE(133); + if (lookahead == '*') ADVANCE(127); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(135); END_STATE(); case 134: - if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(103); - if (lookahead != 0) ADVANCE(133); + if (lookahead == '*') ADVANCE(127); + if (lookahead == '/') ADVANCE(136); + if (lookahead != 0) ADVANCE(134); END_STATE(); case 135: - if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(267); - if (lookahead != 0) ADVANCE(132); + if (lookahead == '*') ADVANCE(127); + if (lookahead == '/') ADVANCE(124); + if (lookahead != 0) ADVANCE(134); END_STATE(); case 136: - if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(268); - if (lookahead != 0) ADVANCE(133); + if (lookahead == '*') ADVANCE(141); + if (lookahead == '/') ADVANCE(136); + if (lookahead != 0) ADVANCE(134); END_STATE(); case 137: - if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(269); - if (lookahead != 0) ADVANCE(133); + if (lookahead == '*') ADVANCE(120); + if (lookahead == '/') ADVANCE(136); + if (lookahead != 0) ADVANCE(124); END_STATE(); case 138: - if (lookahead == '*') ADVANCE(135); - if (lookahead != 0 && - lookahead != '/') ADVANCE(132); + if (lookahead == '*') ADVANCE(271); + if (lookahead == '/') ADVANCE(107); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 139: - if (lookahead == '*') ADVANCE(129); - if (lookahead == '/') ADVANCE(103); - if (lookahead != 0) ADVANCE(127); + if (lookahead == '*') ADVANCE(275); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(285); END_STATE(); case 140: - if (lookahead == '*') ADVANCE(136); - if (lookahead == '/') ADVANCE(271); - if (lookahead != 0) ADVANCE(148); + if (lookahead == '*') ADVANCE(275); + if (lookahead == '/') ADVANCE(124); + if (lookahead != 0) ADVANCE(284); END_STATE(); case 141: - if (lookahead == '*') ADVANCE(136); - if (lookahead == '/') ADVANCE(112); - if (lookahead != 0) ADVANCE(148); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '/') ADVANCE(153); + if (lookahead != 0) ADVANCE(131); END_STATE(); case 142: - if (lookahead == '*') ADVANCE(136); - if (lookahead == '/') ADVANCE(113); - if (lookahead != 0) ADVANCE(147); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '/') ADVANCE(114); + if (lookahead != 0) ADVANCE(133); END_STATE(); case 143: - if (lookahead == '*') ADVANCE(132); - if (lookahead == '/') ADVANCE(276); - if (lookahead != 0) ADVANCE(132); + if (lookahead == '*') ADVANCE(142); + if (lookahead != 0 && + lookahead != '/') ADVANCE(130); END_STATE(); case 144: - if (lookahead == '*') ADVANCE(132); - if (lookahead == '/') ADVANCE(270); - if (lookahead != 0) ADVANCE(133); + if (lookahead == '-') ADVANCE(357); END_STATE(); case 145: - if (lookahead == '*') ADVANCE(132); - if (lookahead == '/') ADVANCE(271); - if (lookahead != 0) ADVANCE(146); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '<') ADVANCE(162); END_STATE(); case 146: - if (lookahead == '*') ADVANCE(137); - if (lookahead == '/') ADVANCE(271); - if (lookahead != 0) ADVANCE(148); + if (lookahead == '.') ADVANCE(334); END_STATE(); case 147: - if (lookahead == '*') ADVANCE(137); - if (lookahead == '/') ADVANCE(273); - if (lookahead != 0) ADVANCE(147); + if (lookahead == '.') ADVANCE(146); END_STATE(); case 148: - if (lookahead == '*') ADVANCE(137); - if (lookahead == '/') ADVANCE(272); - if (lookahead != 0) ADVANCE(147); + if (lookahead == '.') ADVANCE(207); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(196); + if (lookahead == '_') ADVANCE(208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(148); END_STATE(); case 149: - if (lookahead == '*') ADVANCE(150); - if (lookahead == '/') ADVANCE(163); - if (lookahead != 0) ADVANCE(120); + if (lookahead == '.') ADVANCE(215); + if (lookahead == '_') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); case 150: - if (lookahead == '*') ADVANCE(150); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(122); + if (lookahead == '/') ADVANCE(97); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(150) END_STATE(); case 151: - if (lookahead == '*') ADVANCE(150); + if (lookahead == '/') ADVANCE(466); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(467); if (lookahead != 0 && - lookahead != '/') ADVANCE(119); + lookahead != '{' && + lookahead != '}') ADVANCE(468); END_STATE(); case 152: - if (lookahead == '-') ADVANCE(347); + if (lookahead == '/') ADVANCE(463); + if (lookahead == '\n' || + lookahead == '\r') SKIP(150) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(464); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(465); END_STATE(); case 153: - if (lookahead == '-') ADVANCE(347); - if (lookahead == '<') ADVANCE(172); + if (lookahead == '/') ADVANCE(107); + if (lookahead != 0 && + lookahead != '*') ADVANCE(153); END_STATE(); case 154: - if (lookahead == '.') ADVANCE(324); + if (lookahead == '/') ADVANCE(138); + if (lookahead != 0 && + lookahead != '*') ADVANCE(110); END_STATE(); case 155: - if (lookahead == '.') ADVANCE(154); + if (lookahead == '/') ADVANCE(137); + if (lookahead != 0 && + lookahead != '*') ADVANCE(116); END_STATE(); case 156: - if (lookahead == '.') ADVANCE(217); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(206); - if (lookahead == '_') ADVANCE(218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (lookahead == '=') ADVANCE(331); END_STATE(); case 157: - if (lookahead == '.') ADVANCE(225); - if (lookahead == '_') ADVANCE(224); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(392); + if (lookahead == '=') ADVANCE(391); END_STATE(); case 158: - if (lookahead == '/') ADVANCE(274); - if (lookahead != 0 && - lookahead != '*') ADVANCE(163); + if (lookahead == '=') ADVANCE(401); END_STATE(); case 159: - if (lookahead == '/') ADVANCE(266); + if (lookahead == '=') ADVANCE(330); END_STATE(); case 160: - if (lookahead == '/') ADVANCE(97); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(160) + if (lookahead == '=') ADVANCE(399); END_STATE(); case 161: - if (lookahead == '/') ADVANCE(796); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(849); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(854); + if (lookahead == '=') ADVANCE(396); END_STATE(); case 162: - if (lookahead == '/') ADVANCE(724); - if (lookahead == '\n' || - lookahead == '\r') SKIP(160) - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(780); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(785); + if (lookahead == '=') ADVANCE(392); END_STATE(); case 163: - if (lookahead == '/') ADVANCE(103); - if (lookahead != 0 && - lookahead != '*') ADVANCE(163); + if (lookahead == '=') ADVANCE(393); + if (lookahead == '>') ADVANCE(164); END_STATE(); case 164: - if (lookahead == '/') ADVANCE(139); - if (lookahead != 0 && - lookahead != '*') ADVANCE(128); + if (lookahead == '=') ADVANCE(394); END_STATE(); case 165: - if (lookahead == '/') ADVANCE(131); - if (lookahead != 0 && - lookahead != '*') ADVANCE(105); + if (lookahead == '>') ADVANCE(163); END_STATE(); case 166: - if (lookahead == '=') ADVANCE(321); - END_STATE(); - case 167: - if (lookahead == '=') ADVANCE(381); - END_STATE(); - case 168: - if (lookahead == '=') ADVANCE(391); - END_STATE(); - case 169: - if (lookahead == '=') ADVANCE(320); - END_STATE(); - case 170: - if (lookahead == '=') ADVANCE(389); - END_STATE(); - case 171: - if (lookahead == '=') ADVANCE(386); - END_STATE(); - case 172: - if (lookahead == '=') ADVANCE(382); - END_STATE(); - case 173: - if (lookahead == '=') ADVANCE(383); - if (lookahead == '>') ADVANCE(174); - END_STATE(); - case 174: - if (lookahead == '=') ADVANCE(384); - END_STATE(); - case 175: - if (lookahead == '>') ADVANCE(173); - END_STATE(); - case 176: - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || @@ -11806,14 +11845,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'e') ADVANCE(697); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'i') ADVANCE(696); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'e') ADVANCE(443); + if (lookahead == 'f') ADVANCE(446); + if (lookahead == 'i') ADVANCE(442); END_STATE(); - case 177: - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); + case 167: + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || @@ -11821,13 +11860,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'e') ADVANCE(697); - if (lookahead == 'i') ADVANCE(696); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'e') ADVANCE(443); + if (lookahead == 'i') ADVANCE(442); END_STATE(); - case 178: - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); + case 168: + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'e') || @@ -11836,295 +11875,295 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'i') ADVANCE(696); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'f') ADVANCE(446); + if (lookahead == 'i') ADVANCE(442); END_STATE(); - case 179: - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); + case 169: + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); 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(708); - if (lookahead == 'e') ADVANCE(697); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'e') ADVANCE(443); END_STATE(); - case 180: - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); + case 170: + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); 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(708); - if (lookahead == 'i') ADVANCE(696); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'i') ADVANCE(442); END_STATE(); - case 181: - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); + case 171: + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); - case 182: - if (lookahead == 'J') ADVANCE(691); + case 172: + if (lookahead == 'J') ADVANCE(437); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + END_STATE(); + case 173: + if (lookahead == '[') ADVANCE(378); + END_STATE(); + case 174: + if (lookahead == '_') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(406); + END_STATE(); + case 175: + if (lookahead == '_') ADVANCE(199); + if (lookahead == '0' || + lookahead == '1') ADVANCE(408); + END_STATE(); + case 176: + if (lookahead == '_') ADVANCE(213); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(409); + END_STATE(); + case 177: + if (lookahead == '`') ADVANCE(413); + END_STATE(); + case 178: + if (lookahead == '`') ADVANCE(413); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(202); + END_STATE(); + case 179: + if (lookahead == 'c') ADVANCE(191); + END_STATE(); + case 180: + if (lookahead == 'd') ADVANCE(182); + END_STATE(); + case 181: + if (lookahead == 'd') ADVANCE(183); + END_STATE(); + case 182: + if (lookahead == 'e') ADVANCE(179); END_STATE(); case 183: - if (lookahead == '[') ADVANCE(368); + if (lookahead == 'e') ADVANCE(348); END_STATE(); case 184: - if (lookahead == '_') ADVANCE(211); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(396); + if (lookahead == 'e') ADVANCE(188); END_STATE(); case 185: - if (lookahead == '_') ADVANCE(209); - if (lookahead == '0' || - lookahead == '1') ADVANCE(398); + if (lookahead == 'e') ADVANCE(188); + if (lookahead == 'i') ADVANCE(187); END_STATE(); case 186: - if (lookahead == '_') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(399); + if (lookahead == 'e') ADVANCE(381); END_STATE(); case 187: - if (lookahead == '`') ADVANCE(403); + if (lookahead == 'f') ADVANCE(379); END_STATE(); case 188: - if (lookahead == '`') ADVANCE(403); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(212); + if (lookahead == 'l') ADVANCE(194); END_STATE(); case 189: - if (lookahead == 'c') ADVANCE(201); + if (lookahead == 'n') ADVANCE(388); + if (lookahead == 's') ADVANCE(385); END_STATE(); case 190: - if (lookahead == 'd') ADVANCE(192); + if (lookahead == 'n') ADVANCE(386); + if (lookahead == 's') ADVANCE(383); END_STATE(); case 191: - if (lookahead == 'd') ADVANCE(193); + if (lookahead == 'o') ADVANCE(181); END_STATE(); case 192: - if (lookahead == 'e') ADVANCE(189); + if (lookahead == 'r') ADVANCE(370); END_STATE(); case 193: - if (lookahead == 'e') ADVANCE(338); + if (lookahead == 's') ADVANCE(297); END_STATE(); case 194: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 's') ADVANCE(186); END_STATE(); case 195: - if (lookahead == 'e') ADVANCE(198); - if (lookahead == 'i') ADVANCE(197); + if (lookahead == '{') ADVANCE(470); END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(371); + if (lookahead == '+' || + lookahead == '-') ADVANCE(209); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); END_STATE(); case 197: - if (lookahead == 'f') ADVANCE(369); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(196); + if (lookahead == '_') ADVANCE(215); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(197); END_STATE(); case 198: - if (lookahead == 'l') ADVANCE(204); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(196); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(197); END_STATE(); case 199: - if (lookahead == 'n') ADVANCE(378); - if (lookahead == 's') ADVANCE(375); + if (lookahead == '0' || + lookahead == '1') ADVANCE(408); END_STATE(); case 200: - if (lookahead == 'n') ADVANCE(376); - if (lookahead == 's') ADVANCE(373); + if (lookahead == '8' || + lookahead == '9') ADVANCE(148); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(404); END_STATE(); case 201: - if (lookahead == 'o') ADVANCE(191); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(406); END_STATE(); case 202: - if (lookahead == 'r') ADVANCE(360); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(177); END_STATE(); case 203: - if (lookahead == 's') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(202); END_STATE(); case 204: - if (lookahead == 's') ADVANCE(196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(407); END_STATE(); case 205: - if (lookahead == '{') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(372); END_STATE(); case 206: - if (lookahead == '+' || - lookahead == '-') ADVANCE(219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(401); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 207: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(206); - if (lookahead == '_') ADVANCE(225); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(207); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(412); END_STATE(); case 208: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(206); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(207); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(148); END_STATE(); case 209: - if (lookahead == '0' || - lookahead == '1') ADVANCE(398); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); END_STATE(); case 210: - if (lookahead == '8' || - lookahead == '9') ADVANCE(156); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); + if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(177); + if (lookahead == '0') ADVANCE(178); + if (lookahead == 'U') ADVANCE(228); + if (lookahead == 'u') ADVANCE(221); + if (lookahead == 'x') ADVANCE(217); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(203); END_STATE(); case 211: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(396); - END_STATE(); - case 212: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(187); - END_STATE(); - case 213: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(212); - END_STATE(); - case 214: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(397); - END_STATE(); - case 215: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(362); - END_STATE(); - case 216: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); - END_STATE(); - case 217: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(402); - END_STATE(); - case 218: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(156); - END_STATE(); - case 219: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(401); - END_STATE(); - case 220: - if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(187); - if (lookahead == '0') ADVANCE(188); - if (lookahead == 'U') ADVANCE(238); - if (lookahead == 'u') ADVANCE(231); - if (lookahead == 'x') ADVANCE(227); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(213); - END_STATE(); - case 221: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(362); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(372); END_STATE(); - case 222: + case 212: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(177); END_STATE(); - case 223: + case 213: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(409); END_STATE(); - case 224: + case 214: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(392); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); - case 225: + case 215: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(207); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(197); END_STATE(); - case 226: + case 216: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(221); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(211); END_STATE(); - case 227: + case 217: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(222); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(212); END_STATE(); - case 228: + case 218: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(217); END_STATE(); - case 229: + case 219: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(226); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(216); END_STATE(); - case 230: + case 220: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(229); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(219); END_STATE(); - case 231: + case 221: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(228); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(218); END_STATE(); - case 232: + case 222: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(221); END_STATE(); - case 233: + case 223: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(230); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(220); END_STATE(); - case 234: + case 224: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(233); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(223); END_STATE(); - case 235: + case 225: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(222); END_STATE(); - case 236: + case 226: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(234); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(224); END_STATE(); - case 237: + case 227: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(235); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(225); END_STATE(); - case 238: + case 228: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(237); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); END_STATE(); - case 239: + case 229: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); - case 240: + case 230: if (lookahead != 0 && lookahead != '\t' && (lookahead < 11 || '\r' < lookahead) && @@ -12132,1079 +12171,1189 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '0' || '9' < lookahead) && lookahead != 'U' && lookahead != 'u' && - lookahead != 'x') ADVANCE(362); + lookahead != 'x') ADVANCE(372); if (lookahead == '\r') ADVANCE(1); - if (lookahead == 'U') ADVANCE(364); - if (lookahead == 'u') ADVANCE(366); - if (lookahead == 'x') ADVANCE(365); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(363); + if (lookahead == 'U') ADVANCE(374); + if (lookahead == 'u') ADVANCE(376); + if (lookahead == 'x') ADVANCE(375); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(373); END_STATE(); - case 241: + case 231: if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(265); + lookahead != '*') ADVANCE(153); END_STATE(); - case 242: + case 232: if (lookahead != 0 && - lookahead != '*') ADVANCE(245); + lookahead != '*') ADVANCE(234); END_STATE(); - case 243: + case 233: if (lookahead != 0 && - lookahead != '*') ADVANCE(163); + lookahead != '*') ADVANCE(115); END_STATE(); - case 244: + case 234: if (lookahead != 0 && - lookahead != '*') ADVANCE(104); + lookahead != '/') ADVANCE(269); END_STATE(); - case 245: + case 235: if (lookahead != 0 && - lookahead != '/') ADVANCE(126); + lookahead != '/') ADVANCE(132); END_STATE(); - case 246: + case 236: if (lookahead != 0 && - lookahead != '\\') ADVANCE(187); - if (lookahead == '\\') ADVANCE(220); + lookahead != '\\') ADVANCE(177); + if (lookahead == '\\') ADVANCE(210); END_STATE(); - case 247: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(308); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + case 237: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(462); + if (lookahead == '$') ADVANCE(168); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(288); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(238) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 248: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(308); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + case 238: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(462); + if (lookahead == '$') ADVANCE(168); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(288); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(238) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 249: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + case 239: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(462); + if (lookahead == '$') ADVANCE(168); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(250) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(240) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 250: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + case 240: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(462); + if (lookahead == '$') ADVANCE(168); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(250) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(240) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 251: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(308); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + case 241: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(462); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(288); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(242) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 252: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(308); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + case 242: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(462); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(288); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(242) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 253: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + case 243: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(462); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(254) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(244) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 254: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(309); - if (lookahead == '&') ADVANCE(345); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(298); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(302); - if (lookahead == '.') ADVANCE(284); - if (lookahead == '/') ADVANCE(307); - if (lookahead == '0') ADVANCE(393); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(319); - if (lookahead == '?') ADVANCE(335); + case 244: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(462); + if (lookahead == '$') ADVANCE(166); + if (lookahead == '%') ADVANCE(319); + if (lookahead == '&') ADVANCE(355); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(310); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(314); + if (lookahead == '.') ADVANCE(296); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '0') ADVANCE(403); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(159); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(296); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(308); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(254) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(244) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 255: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(336); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(713); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(167); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(300); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '.') ADVANCE(284); + case 245: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(459); + if (lookahead == '$') ADVANCE(168); + if (lookahead == '%') ADVANCE(157); + if (lookahead == '&') ADVANCE(356); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(316); + if (lookahead == '.') ADVANCE(296); if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(153); - if (lookahead == '=') ADVANCE(292); - if (lookahead == '>') ADVANCE(175); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(145); + if (lookahead == '=') ADVANCE(304); + if (lookahead == '>') ADVANCE(165); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(170); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(160); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(255) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(245) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 256: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(336); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(713); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(297); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(284); + case 246: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(459); + if (lookahead == '$') ADVANCE(168); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(309); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(313); + if (lookahead == '.') ADVANCE(296); if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(152); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(144); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(306); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(256) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(246) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 257: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(336); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(713); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(297); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(284); + case 247: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(459); + if (lookahead == '$') ADVANCE(168); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(309); + if (lookahead == '-') ADVANCE(313); + if (lookahead == '.') ADVANCE(296); if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(393); - if (lookahead == '<') ADVANCE(152); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '0') ADVANCE(403); + if (lookahead == '<') ADVANCE(144); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(335); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(306); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(258) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(248) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 258: - if (eof) ADVANCE(262); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); - if (lookahead == '!') ADVANCE(336); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(713); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(297); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(284); + case 248: + if (eof) ADVANCE(252); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(459); + if (lookahead == '$') ADVANCE(168); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(309); + if (lookahead == '-') ADVANCE(313); + if (lookahead == '.') ADVANCE(296); if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(393); - if (lookahead == '<') ADVANCE(152); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '0') ADVANCE(403); + if (lookahead == '<') ADVANCE(144); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(306); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(258) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(248) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 259: - if (eof) ADVANCE(262); - if (lookahead == '!') ADVANCE(337); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(358); - if (lookahead == '%') ADVANCE(310); - if (lookahead == '&') ADVANCE(344); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '*') ADVANCE(306); - if (lookahead == '+') ADVANCE(299); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(303); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(308); - if (lookahead == '0') ADVANCE(681); - if (lookahead == ':') ADVANCE(331); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(335); + case 249: + if (eof) ADVANCE(252); + if (lookahead == '!') ADVANCE(347); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(461); + if (lookahead == '$') ADVANCE(368); + if (lookahead == '%') ADVANCE(320); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == ')') ADVANCE(303); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '+') ADVANCE(311); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(315); + if (lookahead == '.') ADVANCE(291); + if (lookahead == '/') ADVANCE(288); + if (lookahead == '0') ADVANCE(427); + if (lookahead == ':') ADVANCE(341); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '>') ADVANCE(328); + if (lookahead == '?') ADVANCE(345); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '\\') ADVANCE(240); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '\\') ADVANCE(230); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(352); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'i') ADVANCE(440); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(307); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(259) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(397); + lookahead == ' ') SKIP(249) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(407); END_STATE(); - case 260: - if (eof) ADVANCE(262); - if (lookahead == '!') ADVANCE(336); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(714); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(297); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(284); + case 250: + if (eof) ADVANCE(252); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(460); + if (lookahead == '$') ADVANCE(168); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(309); + if (lookahead == ',') ADVANCE(300); + if (lookahead == '-') ADVANCE(313); + if (lookahead == '.') ADVANCE(296); if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(393); - if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(152); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '0') ADVANCE(403); + if (lookahead == ';') ADVANCE(289); + if (lookahead == '<') ADVANCE(144); + if (lookahead == '>') ADVANCE(326); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '|') ADVANCE(294); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == ']') ADVANCE(339); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '|') ADVANCE(306); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(260) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(250) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 261: - if (eof) ADVANCE(262); - if (lookahead == '!') ADVANCE(336); - if (lookahead == '"') ADVANCE(857); - if (lookahead == '#') ADVANCE(713); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '\'') ADVANCE(858); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '*') ADVANCE(305); - if (lookahead == '+') ADVANCE(297); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(284); + case 251: + if (eof) ADVANCE(252); + if (lookahead == '!') ADVANCE(346); + if (lookahead == '"') ADVANCE(471); + if (lookahead == '#') ADVANCE(459); + if (lookahead == '$') ADVANCE(168); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '\'') ADVANCE(472); + if (lookahead == '(') ADVANCE(302); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '+') ADVANCE(309); + if (lookahead == '-') ADVANCE(313); + if (lookahead == '.') ADVANCE(296); if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(393); - if (lookahead == '<') ADVANCE(152); - if (lookahead == '?') ADVANCE(334); + if (lookahead == '0') ADVANCE(403); + if (lookahead == '<') ADVANCE(144); + if (lookahead == '?') ADVANCE(344); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); - if (lookahead == '^') ADVANCE(341); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(708); - if (lookahead == '`') ADVANCE(246); - if (lookahead == 'c') ADVANCE(684); - if (lookahead == 'j') ADVANCE(706); - if (lookahead == 'm') ADVANCE(707); - if (lookahead == 'r') ADVANCE(685); - if (lookahead == '{') ADVANCE(287); - if (lookahead == '}') ADVANCE(289); - if (lookahead == '~') ADVANCE(340); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); + if (lookahead == '[') ADVANCE(349); + if (lookahead == '^') ADVANCE(351); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(454); + if (lookahead == '`') ADVANCE(236); + if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'j') ADVANCE(452); + if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'r') ADVANCE(431); + if (lookahead == '{') ADVANCE(299); + if (lookahead == '}') ADVANCE(301); + if (lookahead == '~') ADVANCE(350); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(261) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == ' ') SKIP(251) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 262: + case 252: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 263: + case 253: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); END_STATE(); - case 264: + case 254: ACCEPT_TOKEN(anon_sym_CR); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\r') ADVANCE(264); + if (lookahead == '\n') ADVANCE(253); + if (lookahead == '\r') ADVANCE(254); END_STATE(); - case 265: - ACCEPT_TOKEN(sym_shebang); + case 255: + ACCEPT_TOKEN(anon_sym_POUND_BANG); + END_STATE(); + case 256: + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '*') ADVANCE(267); + if (lookahead == '/') ADVANCE(263); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(258); + END_STATE(); + case 257: + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '/') ADVANCE(256); + if (lookahead == '\t' || + (11 <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(257); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(258); + END_STATE(); + case 258: + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(258); + END_STATE(); + case 259: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '*') ADVANCE(268); + if (lookahead != 0) ADVANCE(105); + END_STATE(); + case 261: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '*') ADVANCE(278); + if (lookahead == '/') ADVANCE(108); + if (lookahead != 0) ADVANCE(104); + END_STATE(); + case 262: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(265); + lookahead != '\\') ADVANCE(465); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(258); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + END_STATE(); + case 265: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '*') ADVANCE(121); + if (lookahead != 0 && + lookahead != '/') ADVANCE(233); END_STATE(); case 266: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(465); END_STATE(); case 267: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(245); - if (lookahead != 0) ADVANCE(138); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(258); END_STATE(); case 268: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(103); - if (lookahead != 0) ADVANCE(116); + ACCEPT_TOKEN(aux_sym_block_comment_token1); END_STATE(); case 269: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(139); - if (lookahead != 0) ADVANCE(134); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(269); + if (lookahead == '/') ADVANCE(235); + if (lookahead != 0) ADVANCE(279); END_STATE(); case 270: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(151); - if (lookahead == '/') ADVANCE(103); - if (lookahead != 0) ADVANCE(116); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(269); + if (lookahead == '/') ADVANCE(117); + if (lookahead != 0) ADVANCE(280); END_STATE(); case 271: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(115); - if (lookahead == '/') ADVANCE(112); - if (lookahead != 0) ADVANCE(124); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(272); + if (lookahead == '/') ADVANCE(235); + if (lookahead != 0) ADVANCE(281); END_STATE(); case 272: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(115); - if (lookahead == '/') ADVANCE(125); - if (lookahead != 0) ADVANCE(123); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(272); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(282); END_STATE(); case 273: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '/') ADVANCE(125); - if (lookahead != 0) ADVANCE(123); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(276); + if (lookahead == '/') ADVANCE(235); + if (lookahead != 0) ADVANCE(273); END_STATE(); case 274: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(103); - if (lookahead != 0 && - lookahead != '*') ADVANCE(163); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(276); + if (lookahead == '/') ADVANCE(117); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 275: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(275); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(276); + if (lookahead == '/') ADVANCE(112); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 276: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '/') ADVANCE(121); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(276); + if (lookahead == '/') ADVANCE(111); + if (lookahead != 0) ADVANCE(273); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(276); + if (lookahead == '/') ADVANCE(113); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(121); + if (lookahead != 0 && + lookahead != '/') ADVANCE(233); END_STATE(); case 279: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(712); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(273); + if (lookahead == '/') ADVANCE(235); + if (lookahead != 0) ADVANCE(273); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(154); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(273); + if (lookahead == '/') ADVANCE(117); + if (lookahead != 0) ADVANCE(274); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(402); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(273); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(283); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(711); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(275); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(285); END_STATE(); case 283: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(711); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(402); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(277); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(285); END_STATE(); case 284: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(402); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(277); + if (lookahead == '/') ADVANCE(136); + if (lookahead != 0) ADVANCE(284); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(277); + if (lookahead == '/') ADVANCE(124); + if (lookahead != 0) ADVANCE(284); END_STATE(); case 286: - 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(708); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead != 0 && + lookahead != '*') ADVANCE(153); END_STATE(); case 287: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '/') ADVANCE(259); END_STATE(); case 288: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '/') ADVANCE(259); + if (lookahead == '=') ADVANCE(390); END_STATE(); case 289: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(458); END_STATE(); case 292: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(146); END_STATE(); case 293: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(320); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(412); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(457); END_STATE(); case 295: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(389); - if (lookahead == '|') ADVANCE(357); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(457); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(412); END_STATE(); case 296: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(357); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(412); END_STATE(); case 297: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 298: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(332); + 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(454); END_STATE(); case 299: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(332); - if (lookahead == '=') ADVANCE(387); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 300: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(387); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 301: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 303: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(333); - if (lookahead == '=') ADVANCE(388); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 304: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(388); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 305: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(330); END_STATE(); case 306: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(379); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 307: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(99); - if (lookahead == '/') ADVANCE(275); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(399); + if (lookahead == '|') ADVANCE(367); END_STATE(); case 308: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(99); - if (lookahead == '/') ADVANCE(275); - if (lookahead == '=') ADVANCE(380); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(367); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 310: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(381); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(342); END_STATE(); case 311: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(347); - if (lookahead == '<') ADVANCE(349); - if (lookahead == '=') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '=') ADVANCE(397); END_STATE(); case 312: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(347); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(397); END_STATE(); case 313: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(349); - if (lookahead == '=') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 314: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(343); END_STATE(); case 315: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(343); + if (lookahead == '=') ADVANCE(398); END_STATE(); case 316: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(398); END_STATE(); case 317: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(323); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 318: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '>') ADVANCE(350); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(389); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '>') ADVANCE(351); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 320: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(391); END_STATE(); case 321: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '<') ADVANCE(359); + if (lookahead == '=') ADVANCE(332); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '<') ADVANCE(358); + if (lookahead == '=') ADVANCE(332); END_STATE(); case 323: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(359); + if (lookahead == '=') ADVANCE(332); END_STATE(); case 324: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(358); + if (lookahead == '=') ADVANCE(332); END_STATE(); case 325: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(332); END_STATE(); case 326: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 327: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '-') ADVANCE(347); - if (lookahead == '<') ADVANCE(349); - if (lookahead == '=') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(333); END_STATE(); case 328: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(333); + if (lookahead == '>') ADVANCE(360); END_STATE(); case 329: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(333); + if (lookahead == '>') ADVANCE(361); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(391); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 332: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 333: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 334: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(367); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(321); - if (lookahead == 'i') ADVANCE(199); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '<') ADVANCE(359); + if (lookahead == '=') ADVANCE(332); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_json_DOTdecode); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(332); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_LBRACK2); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(401); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(390); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(356); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '^') ADVANCE(355); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(356); - if (lookahead == '^') ADVANCE(354); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(377); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '^') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_LT_DASH); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(331); + if (lookahead == 'i') ADVANCE(189); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_json_DOTdecode); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(382); + ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(383); - if (lookahead == '>') ADVANCE(353); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(352); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(400); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(384); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_AMP_CARET); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(366); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '^') ADVANCE(365); END_STATE(); case 355: - ACCEPT_TOKEN(anon_sym_AMP_CARET); - if (lookahead == '=') ADVANCE(386); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(366); + if (lookahead == '^') ADVANCE(364); END_STATE(); case 356: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '^') ADVANCE(161); END_STATE(); case 357: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); case 358: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 359: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(392); + END_STATE(); + case 360: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(393); + if (lookahead == '>') ADVANCE(363); + END_STATE(); + case 361: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(362); + END_STATE(); + case 362: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + END_STATE(); + case 363: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(394); + END_STATE(); + case 364: + ACCEPT_TOKEN(anon_sym_AMP_CARET); + END_STATE(); + case 365: + ACCEPT_TOKEN(anon_sym_AMP_CARET); + if (lookahead == '=') ADVANCE(396); + END_STATE(); + case 366: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 367: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 368: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || @@ -13213,27 +13362,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - if (lookahead == 'e') ADVANCE(697); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == '{') ADVANCE(856); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); + if (lookahead == 'e') ADVANCE(443); + if (lookahead == 'f') ADVANCE(446); + if (lookahead == 'i') ADVANCE(442); + if (lookahead == '{') ADVANCE(470); END_STATE(); - case 359: + case 369: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'C') ADVANCE(687); - if (lookahead == 'J') ADVANCE(691); + if (lookahead == 'C') ADVANCE(433); + if (lookahead == 'J') ADVANCE(437); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); - case 360: + case 370: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 361: + case 371: ACCEPT_TOKEN(anon_sym_or); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13241,43 +13390,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); - case 362: + case 372: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 363: + case 373: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(205); END_STATE(); - case 364: + case 374: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(236); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(226); END_STATE(); - case 365: + case 375: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(221); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(211); END_STATE(); - case 366: + case 376: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(229); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(219); END_STATE(); - case 367: + case 377: ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 368: + case 378: ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); - case 369: + case 379: ACCEPT_TOKEN(anon_sym_DOLLARif); END_STATE(); - case 370: + case 380: ACCEPT_TOKEN(anon_sym_DOLLARif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13285,12 +13434,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); - case 371: + case 381: ACCEPT_TOKEN(anon_sym_DOLLARelse); END_STATE(); - case 372: + case 382: ACCEPT_TOKEN(anon_sym_DOLLARelse); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13298,12 +13447,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); - case 373: + case 383: ACCEPT_TOKEN(anon_sym_is); END_STATE(); - case 374: + case 384: ACCEPT_TOKEN(anon_sym_is); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13311,15 +13460,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); - case 375: + case 385: ACCEPT_TOKEN(anon_sym_BANGis); END_STATE(); - case 376: + case 386: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 377: + case 387: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13327,4415 +13476,1231 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); - case 378: + case 388: ACCEPT_TOKEN(anon_sym_BANGin); END_STATE(); - case 379: + case 389: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 380: + case 390: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 381: + case 391: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 382: + case 392: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 383: + case 393: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 384: + case 394: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 385: + case 395: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 386: + case 396: ACCEPT_TOKEN(anon_sym_AMP_CARET_EQ); END_STATE(); - case 387: + case 397: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 388: + case 398: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 389: + case 399: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 390: + case 400: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 391: + case 401: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 392: + case 402: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(208); + if (lookahead == '.') ADVANCE(198); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(206); - if (lookahead == '_') ADVANCE(224); + lookahead == 'p') ADVANCE(196); + if (lookahead == '_') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(392); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); - case 393: + case 403: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(217); + if (lookahead == '.') ADVANCE(207); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(185); + lookahead == 'b') ADVANCE(175); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(206); + lookahead == 'e') ADVANCE(196); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(184); + lookahead == 'o') ADVANCE(174); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(157); - if (lookahead == '_') ADVANCE(210); + lookahead == 'x') ADVANCE(149); + if (lookahead == '_') ADVANCE(200); if (lookahead == '8' || - lookahead == '9') ADVANCE(156); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); + lookahead == '9') ADVANCE(148); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(404); END_STATE(); - case 394: + case 404: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(217); + if (lookahead == '.') ADVANCE(207); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(206); - if (lookahead == '_') ADVANCE(210); + lookahead == 'e') ADVANCE(196); + if (lookahead == '_') ADVANCE(200); if (lookahead == '8' || - lookahead == '9') ADVANCE(156); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); + lookahead == '9') ADVANCE(148); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(404); END_STATE(); - case 395: + case 405: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(217); + if (lookahead == '.') ADVANCE(207); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(206); - if (lookahead == '_') ADVANCE(216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); + lookahead == 'e') ADVANCE(196); + if (lookahead == '_') ADVANCE(206); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 396: + case 406: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(211); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(396); + if (lookahead == '_') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(406); END_STATE(); - case 397: + case 407: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(214); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (lookahead == '_') ADVANCE(204); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(407); END_STATE(); - case 398: + case 408: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(209); + if (lookahead == '_') ADVANCE(199); if (lookahead == '0' || - lookahead == '1') ADVANCE(398); + lookahead == '1') ADVANCE(408); END_STATE(); - case 399: + case 409: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(223); + if (lookahead == '_') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(409); END_STATE(); - case 400: + case 410: ACCEPT_TOKEN(sym_int_literal); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(185); + lookahead == 'b') ADVANCE(175); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(184); + lookahead == 'o') ADVANCE(174); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(186); - if (lookahead == '_') ADVANCE(211); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(396); + lookahead == 'x') ADVANCE(176); + if (lookahead == '_') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(406); END_STATE(); - case 401: + case 411: ACCEPT_TOKEN(sym_float_literal); - if (lookahead == '_') ADVANCE(219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(401); + if (lookahead == '_') ADVANCE(209); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); END_STATE(); - case 402: + case 412: ACCEPT_TOKEN(sym_float_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(206); - if (lookahead == '_') ADVANCE(217); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(402); - END_STATE(); - case 403: - ACCEPT_TOKEN(sym_rune_literal); - END_STATE(); - case 404: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(404); - END_STATE(); - case 405: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '/') ADVANCE(441); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(438); - END_STATE(); - case 406: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '/') ADVANCE(404); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(404); - END_STATE(); - case 407: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '/') ADVANCE(442); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(417); - END_STATE(); - case 408: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(472); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(470); - END_STATE(); - case 409: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(472); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(416); - END_STATE(); - case 410: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(472); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(404); - END_STATE(); - case 411: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(468); - if (lookahead == '/') ADVANCE(420); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(411); - END_STATE(); - case 412: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(468); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(412); + lookahead == 'e') ADVANCE(196); + if (lookahead == '_') ADVANCE(207); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(412); END_STATE(); case 413: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(468); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(411); + ACCEPT_TOKEN(sym_rune_literal); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(415); - if (lookahead == '/') ADVANCE(471); + if (lookahead == '*') ADVANCE(416); + if (lookahead == '/') ADVANCE(416); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(472); + lookahead != '\\') ADVANCE(416); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(406); - if (lookahead == '/') ADVANCE(412); + if (lookahead == '/') ADVANCE(414); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(415); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(413); + lookahead != '\\') ADVANCE(416); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(410); - if (lookahead == '/') ADVANCE(424); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(426); + lookahead != '\\') ADVANCE(416); END_STATE(); case 417: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(410); - if (lookahead == '/') ADVANCE(437); + ACCEPT_TOKEN(aux_sym_c_string_literal_token2); + if (lookahead == '*') ADVANCE(419); + if (lookahead == '/') ADVANCE(419); if (lookahead != 0 && + lookahead != '"' && lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(425); + lookahead != '\\') ADVANCE(419); END_STATE(); case 418: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(410); - if (lookahead == '/') ADVANCE(452); + ACCEPT_TOKEN(aux_sym_c_string_literal_token2); + if (lookahead == '/') ADVANCE(417); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(418); if (lookahead != 0 && + lookahead != '"' && lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(453); + lookahead != '\\') ADVANCE(419); END_STATE(); case 419: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(421); - if (lookahead == '/') ADVANCE(419); + ACCEPT_TOKEN(aux_sym_c_string_literal_token2); if (lookahead != 0 && + lookahead != '"' && lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(404); + lookahead != '\\') ADVANCE(419); END_STATE(); case 420: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(421); - if (lookahead == '/') ADVANCE(420); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + if (lookahead == '*') ADVANCE(422); + if (lookahead == '/') ADVANCE(422); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(411); + lookahead != '\'') ADVANCE(422); END_STATE(); case 421: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(422); - if (lookahead == '/') ADVANCE(472); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + if (lookahead == '/') ADVANCE(420); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(421); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(409); + lookahead != '\'') ADVANCE(422); END_STATE(); case 422: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(422); - if (lookahead == '/') ADVANCE(416); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(416); + lookahead != '\'') ADVANCE(422); END_STATE(); case 423: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(422); - if (lookahead == '/') ADVANCE(404); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); + if (lookahead == '*') ADVANCE(425); + if (lookahead == '/') ADVANCE(425); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(407); + lookahead != '"') ADVANCE(425); END_STATE(); case 424: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(431); - if (lookahead == '/') ADVANCE(424); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); + if (lookahead == '/') ADVANCE(423); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(424); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(466); + lookahead != '"') ADVANCE(425); END_STATE(); case 425: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(431); - if (lookahead == '/') ADVANCE(437); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(465); + lookahead != '"') ADVANCE(425); END_STATE(); case 426: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(431); - if (lookahead == '/') ADVANCE(425); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(465); + ACCEPT_TOKEN(aux_sym_format_specifier_token2); END_STATE(); case 427: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(472); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(427); + ACCEPT_TOKEN(anon_sym_0); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(175); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(174); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(176); + if (lookahead == '_') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(406); END_STATE(); case 428: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(428); + ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); + if (lookahead == '.') ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(429); + if (('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); case 429: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(408); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(427); + ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(429); + if (('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); case 430: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(416); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(464); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(473); + if (lookahead == '\'') ADVANCE(474); + 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(454); END_STATE(); case 431: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(404); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(428); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(475); + if (lookahead == '\'') ADVANCE(476); + 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(454); END_STATE(); case 432: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(405); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(428); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '.') ADVANCE(172); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(429); + if (('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); case 433: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(442); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(465); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '.') ADVANCE(172); + 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(454); END_STATE(); case 434: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(427); - if (lookahead == '/') ADVANCE(470); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(454); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '.') ADVANCE(229); + 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(454); END_STATE(); case 435: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(427); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(428); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '.') ADVANCE(180); + 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(454); END_STATE(); case 436: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(427); - if (lookahead == '/') ADVANCE(441); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(455); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(428); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(429); + if (('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); case 437: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(448); - if (lookahead == '/') ADVANCE(437); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(465); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(434); + 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(454); END_STATE(); case 438: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(440); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(439); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '[') ADVANCE(455); + 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(454); END_STATE(); case 439: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(440); - if (lookahead == '/') ADVANCE(446); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(443); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(429); + if (('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(454); END_STATE(); case 440: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(440); - if (lookahead == '/') ADVANCE(469); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(444); + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(454); + if (lookahead == 'n') ADVANCE(387); + if (lookahead == 's') ADVANCE(384); END_STATE(); case 441: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(450); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(439); + 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(454); + if (lookahead == 'e') ADVANCE(382); END_STATE(); case 442: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(423); - if (lookahead == '/') ADVANCE(437); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(425); - END_STATE(); - case 443: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(459); - if (lookahead == '/') ADVANCE(446); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(456); + 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(454); + if (lookahead == 'f') ADVANCE(380); + END_STATE(); + case 443: + 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(454); + if (lookahead == 'l') ADVANCE(451); END_STATE(); case 444: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(459); - if (lookahead == '/') ADVANCE(469); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(459); + 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(454); + if (lookahead == 'n') ADVANCE(435); END_STATE(); case 445: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(459); - if (lookahead == '/') ADVANCE(424); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(461); + 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(454); + if (lookahead == 'o') ADVANCE(444); END_STATE(); case 446: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(447); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(428); + 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(454); + if (lookahead == 'o') ADVANCE(449); END_STATE(); case 447: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(449); - if (lookahead == '/') ADVANCE(472); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(430); + 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(454); + if (lookahead == 'p') ADVANCE(438); END_STATE(); case 448: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(449); - if (lookahead == '/') ADVANCE(404); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(433); + 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(454); + if (lookahead == 'r') ADVANCE(371); END_STATE(); case 449: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(449); - if (lookahead == '/') ADVANCE(418); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(464); + 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(454); + if (lookahead == 'r') ADVANCE(456); END_STATE(); case 450: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(451); - if (lookahead == '/') ADVANCE(469); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(445); + 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(454); + if (lookahead == 's') ADVANCE(298); END_STATE(); case 451: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(451); - if (lookahead == '/') ADVANCE(424); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(452); + 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(454); + if (lookahead == 's') ADVANCE(441); END_STATE(); case 452: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(457); - if (lookahead == '/') ADVANCE(424); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(463); + 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(454); + if (lookahead == 's') ADVANCE(445); END_STATE(); case 453: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(457); - if (lookahead == '/') ADVANCE(425); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(462); + 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(454); + if (lookahead == 'a') ADVANCE(447); END_STATE(); case 454: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(472); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(459); + 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(454); END_STATE(); case 455: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(456); + ACCEPT_TOKEN(anon_sym_map_LBRACK); END_STATE(); case 456: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(446); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(456); + 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(454); END_STATE(); case 457: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(435); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(456); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 458: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(434); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(459); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(334); END_STATE(); case 459: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(469); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(459); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 460: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(436); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(456); + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '!') ADVANCE(255); END_STATE(); case 461: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(460); - if (lookahead == '/') ADVANCE(424); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(463); + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '!') ADVANCE(255); + if (lookahead == '[') ADVANCE(378); END_STATE(); case 462: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(460); - if (lookahead == '/') ADVANCE(437); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(462); + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '[') ADVANCE(378); END_STATE(); case 463: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(460); - if (lookahead == '/') ADVANCE(425); + ACCEPT_TOKEN(aux_sym_hash_statement_token1); + if (lookahead == '*') ADVANCE(266); + if (lookahead == '/') ADVANCE(262); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(462); + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(465); END_STATE(); case 464: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(432); - if (lookahead == '/') ADVANCE(424); + ACCEPT_TOKEN(aux_sym_hash_statement_token1); + if (lookahead == '/') ADVANCE(463); + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') ADVANCE(464); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(466); + (lookahead < '\n' || '\r' < lookahead) && + lookahead != '\\') ADVANCE(465); END_STATE(); case 465: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(432); - if (lookahead == '/') ADVANCE(437); + ACCEPT_TOKEN(aux_sym_hash_statement_token1); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && + lookahead != '\n' && + lookahead != '\r' && lookahead != '\\') ADVANCE(465); END_STATE(); case 466: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(432); - if (lookahead == '/') ADVANCE(425); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '/') ADVANCE(468); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(465); + lookahead != '{' && + lookahead != '}') ADVANCE(468); END_STATE(); case 467: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(414); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead == '/') ADVANCE(466); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(467); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(472); + lookahead != '{' && + lookahead != '}') ADVANCE(468); END_STATE(); case 468: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(472); + ACCEPT_TOKEN(aux_sym__content_block_token1); if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(472); + lookahead != '{' && + lookahead != '}') ADVANCE(468); END_STATE(); case 469: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(472); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(427); + ACCEPT_TOKEN(anon_sym_AT_LBRACK); END_STATE(); case 470: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(472); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(440); + ACCEPT_TOKEN(sym___dolcbr); END_STATE(); case 471: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(472); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(471); + ACCEPT_TOKEN(sym___double_quote); END_STATE(); case 472: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(472); + ACCEPT_TOKEN(sym___single_quote); END_STATE(); case 473: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(541); - if (lookahead == '/') ADVANCE(488); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(473); + ACCEPT_TOKEN(sym___c_double_quote); END_STATE(); case 474: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(541); - if (lookahead == '/') ADVANCE(510); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(507); + ACCEPT_TOKEN(sym___c_single_quote); END_STATE(); case 475: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(541); - if (lookahead == '/') ADVANCE(473); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(473); + ACCEPT_TOKEN(sym___r_double_quote); END_STATE(); case 476: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(541); - if (lookahead == '/') ADVANCE(511); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(486); + ACCEPT_TOKEN(sym___r_single_quote); END_STATE(); - case 477: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(539); + 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 478: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(485); + case 1: + if (lookahead == '_') ADVANCE(20); END_STATE(); - case 479: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(473); + case 2: + if (lookahead == 's') ADVANCE(21); + if (lookahead == 't') ADVANCE(22); END_STATE(); - case 480: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(537); - if (lookahead == '/') ADVANCE(489); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(480); + case 3: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'r') ADVANCE(23); END_STATE(); - case 481: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(537); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(481); + case 4: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'h') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); END_STATE(); - case 482: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(537); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(480); + case 5: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'e') ADVANCE(26); END_STATE(); - case 483: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(484); - if (lookahead == '/') ADVANCE(540); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(541); + case 6: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'l') ADVANCE(27); + if (lookahead == 'n') ADVANCE(28); END_STATE(); - case 484: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(475); - if (lookahead == '/') ADVANCE(481); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(482); + 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 485: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(479); - if (lookahead == '/') ADVANCE(493); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(495); + case 8: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'o') ADVANCE(32); END_STATE(); - case 486: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(479); - if (lookahead == '/') ADVANCE(506); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(494); + case 9: + if (lookahead == 'f') ADVANCE(33); + if (lookahead == 'm') ADVANCE(34); + if (lookahead == 'n') ADVANCE(35); END_STATE(); - case 487: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(479); - if (lookahead == '/') ADVANCE(521); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(522); + case 10: + if (lookahead == 'o') ADVANCE(36); END_STATE(); - case 488: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(490); - if (lookahead == '/') ADVANCE(488); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(473); + case 11: + if (lookahead == 'a') ADVANCE(37); + if (lookahead == 'o') ADVANCE(38); + if (lookahead == 'u') ADVANCE(39); END_STATE(); - case 489: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(490); - if (lookahead == '/') ADVANCE(489); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(480); + case 12: + if (lookahead == 'i') ADVANCE(40); + if (lookahead == 'o') ADVANCE(41); END_STATE(); - case 490: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(491); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(478); + case 13: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'u') ADVANCE(42); END_STATE(); - case 491: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(491); - if (lookahead == '/') ADVANCE(485); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(485); + case 14: + if (lookahead == 'e') ADVANCE(43); + if (lookahead == 'l') ADVANCE(44); END_STATE(); - case 492: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(491); - if (lookahead == '/') ADVANCE(473); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(476); + 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 493: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(493); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(535); + case 16: + if (lookahead == 'h') ADVANCE(50); + if (lookahead == 'r') ADVANCE(51); + if (lookahead == 'y') ADVANCE(52); END_STATE(); - case 494: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(506); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(534); + case 17: + if (lookahead == 'n') ADVANCE(53); END_STATE(); - case 495: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(494); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(534); + case 18: + if (lookahead == 'o') ADVANCE(54); END_STATE(); - case 496: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(496); + case 19: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); END_STATE(); - case 497: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(488); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(497); + case 20: + if (lookahead == 'g') ADVANCE(55); END_STATE(); - case 498: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(477); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(496); + case 21: + if (lookahead == 'm') ADVANCE(56); + if (lookahead == 's') ADVANCE(57); END_STATE(); - case 499: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(485); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(533); + case 22: + if (lookahead == 'o') ADVANCE(58); END_STATE(); - case 500: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(473); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(497); + case 23: + if (lookahead == 'e') ADVANCE(59); END_STATE(); - case 501: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(474); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(497); + case 24: + if (lookahead == 'a') ADVANCE(60); END_STATE(); - case 502: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(511); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(534); + case 25: + if (lookahead == 'n') ADVANCE(61); END_STATE(); - case 503: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(496); - if (lookahead == '/') ADVANCE(539); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(523); + case 26: + if (lookahead == 'f') ADVANCE(62); END_STATE(); - case 504: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(496); - if (lookahead == '/') ADVANCE(488); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(497); + case 27: + if (lookahead == 's') ADVANCE(63); END_STATE(); - case 505: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(496); - if (lookahead == '/') ADVANCE(510); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(524); + case 28: + if (lookahead == 'u') ADVANCE(64); END_STATE(); - case 506: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(517); - if (lookahead == '/') ADVANCE(506); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(534); + case 29: + if (lookahead == 'l') ADVANCE(65); END_STATE(); - case 507: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(509); - if (lookahead == '/') ADVANCE(488); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(508); + case 30: + ACCEPT_TOKEN(anon_sym_fn); END_STATE(); - case 508: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(509); - if (lookahead == '/') ADVANCE(515); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(512); + case 31: + if (lookahead == 'r') ADVANCE(66); END_STATE(); - case 509: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(509); - if (lookahead == '/') ADVANCE(538); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(513); + case 32: + ACCEPT_TOKEN(anon_sym_go); + if (lookahead == 't') ADVANCE(67); END_STATE(); - case 510: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(519); - if (lookahead == '/') ADVANCE(488); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(508); + case 33: + ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 511: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(492); - if (lookahead == '/') ADVANCE(506); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(494); + case 34: + if (lookahead == 'p') ADVANCE(68); END_STATE(); - case 512: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(528); - if (lookahead == '/') ADVANCE(515); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(525); + case 35: + if (lookahead == 't') ADVANCE(69); END_STATE(); - case 513: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(528); - if (lookahead == '/') ADVANCE(538); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(528); + case 36: + if (lookahead == 'c') ADVANCE(70); END_STATE(); - case 514: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(528); - if (lookahead == '/') ADVANCE(493); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(530); + case 37: + if (lookahead == 't') ADVANCE(71); END_STATE(); - case 515: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(516); - if (lookahead == '/') ADVANCE(488); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(497); + case 38: + if (lookahead == 'd') ADVANCE(72); END_STATE(); - case 516: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(518); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(499); + case 39: + if (lookahead == 't') ADVANCE(73); END_STATE(); - case 517: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(518); - if (lookahead == '/') ADVANCE(473); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(502); + case 40: + if (lookahead == 'l') ADVANCE(74); END_STATE(); - case 518: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(518); - if (lookahead == '/') ADVANCE(487); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(533); + case 41: + if (lookahead == 'n') ADVANCE(75); END_STATE(); - case 519: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(520); - if (lookahead == '/') ADVANCE(538); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(514); + case 42: + if (lookahead == 'b') ADVANCE(76); END_STATE(); - case 520: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(520); - if (lookahead == '/') ADVANCE(493); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(521); + case 43: + if (lookahead == 't') ADVANCE(77); END_STATE(); - case 521: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(526); - if (lookahead == '/') ADVANCE(493); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(532); + case 44: + if (lookahead == 'o') ADVANCE(78); END_STATE(); - case 522: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(526); - if (lookahead == '/') ADVANCE(494); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(531); + case 45: + if (lookahead == 'l') ADVANCE(79); END_STATE(); - case 523: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(528); + case 46: + if (lookahead == 'a') ADVANCE(80); END_STATE(); - case 524: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '/') ADVANCE(488); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(525); + case 47: + if (lookahead == 'a') ADVANCE(81); END_STATE(); - case 525: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '/') ADVANCE(515); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(525); + case 48: + if (lookahead == 'l') ADVANCE(82); END_STATE(); - case 526: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '/') ADVANCE(504); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(525); + case 49: + if (lookahead == 'a') ADVANCE(83); + if (lookahead == 'r') ADVANCE(84); END_STATE(); - case 527: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '/') ADVANCE(503); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(528); + case 50: + if (lookahead == 'r') ADVANCE(85); END_STATE(); - case 528: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '/') ADVANCE(538); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(528); + case 51: + if (lookahead == 'u') ADVANCE(86); END_STATE(); - case 529: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '/') ADVANCE(505); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(525); + case 52: + if (lookahead == 'p') ADVANCE(87); END_STATE(); - case 530: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(493); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(532); + case 53: + if (lookahead == 'i') ADVANCE(88); + if (lookahead == 's') ADVANCE(89); END_STATE(); - case 531: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(506); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(531); + case 54: + if (lookahead == 'l') ADVANCE(90); END_STATE(); - case 532: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(494); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(531); + case 55: + if (lookahead == 'l') ADVANCE(91); END_STATE(); - case 533: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(501); - if (lookahead == '/') ADVANCE(493); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(535); + case 56: + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); - case 534: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(501); - if (lookahead == '/') ADVANCE(506); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(534); + case 57: + if (lookahead == 'e') ADVANCE(92); END_STATE(); - case 535: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(501); - if (lookahead == '/') ADVANCE(494); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(534); + case 58: + if (lookahead == 'm') ADVANCE(93); END_STATE(); - case 536: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(483); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(536); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(541); + case 59: + if (lookahead == 'a') ADVANCE(94); END_STATE(); - case 537: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(541); + case 60: + if (lookahead == 'n') ADVANCE(95); END_STATE(); - case 538: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(496); + case 61: + if (lookahead == 's') ADVANCE(96); + if (lookahead == 't') ADVANCE(97); END_STATE(); - case 539: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(509); + case 62: + if (lookahead == 'e') ADVANCE(98); END_STATE(); - case 540: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(540); + case 63: + if (lookahead == 'e') ADVANCE(99); END_STATE(); - case 541: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(541); + case 64: + if (lookahead == 'm') ADVANCE(100); END_STATE(); - case 542: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(610); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(542); + case 65: + if (lookahead == 's') ADVANCE(101); END_STATE(); - case 543: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(610); - if (lookahead == '/') ADVANCE(579); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(576); + case 66: + ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 544: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(610); - if (lookahead == '/') ADVANCE(542); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(542); + case 67: + if (lookahead == 'o') ADVANCE(102); END_STATE(); - case 545: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(610); - if (lookahead == '/') ADVANCE(580); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(555); + case 68: + if (lookahead == 'o') ADVANCE(103); END_STATE(); - case 546: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(608); + case 69: + if (lookahead == 'e') ADVANCE(104); END_STATE(); - case 547: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(554); + case 70: + if (lookahead == 'k') ADVANCE(105); END_STATE(); - case 548: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(542); + case 71: + if (lookahead == 'c') ADVANCE(106); END_STATE(); - case 549: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(606); - if (lookahead == '/') ADVANCE(558); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(549); + case 72: + if (lookahead == 'u') ADVANCE(107); END_STATE(); - case 550: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(606); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(550); + case 73: + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); - case 551: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(606); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(549); + case 74: + ACCEPT_TOKEN(sym_nil); END_STATE(); - case 552: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(553); - if (lookahead == '/') ADVANCE(609); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(610); + case 75: + if (lookahead == 'e') ADVANCE(108); END_STATE(); - case 553: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(544); - if (lookahead == '/') ADVANCE(550); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(551); + case 76: + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); - case 554: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(548); - if (lookahead == '/') ADVANCE(562); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(564); + case 77: + if (lookahead == 'u') ADVANCE(109); END_STATE(); - case 555: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(548); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(563); + case 78: + if (lookahead == 'c') ADVANCE(110); END_STATE(); - case 556: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(548); - if (lookahead == '/') ADVANCE(590); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(591); + case 79: + if (lookahead == 'e') ADVANCE(111); END_STATE(); - case 557: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(559); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(542); + case 80: + if (lookahead == 'r') ADVANCE(112); END_STATE(); - case 558: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(559); - if (lookahead == '/') ADVANCE(558); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(549); + case 81: + if (lookahead == 'w') ADVANCE(113); END_STATE(); - case 559: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(560); - if (lookahead == '/') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(547); + case 82: + ACCEPT_TOKEN(anon_sym_sql); END_STATE(); - case 560: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(560); - if (lookahead == '/') ADVANCE(554); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(554); + case 83: + if (lookahead == 't') ADVANCE(114); END_STATE(); - case 561: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(560); - if (lookahead == '/') ADVANCE(542); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(545); + case 84: + if (lookahead == 'u') ADVANCE(115); END_STATE(); - case 562: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(569); - if (lookahead == '/') ADVANCE(562); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(604); + case 85: + if (lookahead == 'e') ADVANCE(116); END_STATE(); - case 563: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(569); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(603); + case 86: + if (lookahead == 'e') ADVANCE(117); END_STATE(); - case 564: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(569); - if (lookahead == '/') ADVANCE(563); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(603); + case 87: + if (lookahead == 'e') ADVANCE(118); END_STATE(); - case 565: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(567); - if (lookahead == '/') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(565); + case 88: + if (lookahead == 'o') ADVANCE(119); END_STATE(); - case 566: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(567); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(566); + case 89: + if (lookahead == 'a') ADVANCE(120); END_STATE(); - case 567: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(567); - if (lookahead == '/') ADVANCE(546); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(565); + case 90: + if (lookahead == 'a') ADVANCE(121); END_STATE(); - case 568: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(567); - if (lookahead == '/') ADVANCE(554); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(602); + case 91: + if (lookahead == 'o') ADVANCE(122); END_STATE(); - case 569: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(567); - if (lookahead == '/') ADVANCE(542); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(566); + case 92: + if (lookahead == 'r') ADVANCE(123); END_STATE(); - case 570: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(567); - if (lookahead == '/') ADVANCE(543); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(566); + case 93: + if (lookahead == 'i') ADVANCE(124); END_STATE(); - case 571: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(567); - if (lookahead == '/') ADVANCE(580); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(603); + case 94: + if (lookahead == 'k') ADVANCE(125); END_STATE(); - case 572: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(565); - if (lookahead == '/') ADVANCE(608); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(592); + case 95: + ACCEPT_TOKEN(anon_sym_chan); END_STATE(); - case 573: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(565); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(566); + case 96: + if (lookahead == 't') ADVANCE(126); END_STATE(); - case 574: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(565); - if (lookahead == '/') ADVANCE(579); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(593); + case 97: + if (lookahead == 'i') ADVANCE(127); END_STATE(); - case 575: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(586); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(603); + case 98: + if (lookahead == 'r') ADVANCE(128); END_STATE(); - case 576: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(578); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(577); + case 99: + ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 577: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(578); - if (lookahead == '/') ADVANCE(584); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(581); + case 100: + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); - case 578: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(578); - if (lookahead == '/') ADVANCE(607); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(582); + case 101: + if (lookahead == 'e') ADVANCE(129); END_STATE(); - case 579: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(588); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(577); + case 102: + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); - case 580: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(561); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(563); + case 103: + if (lookahead == 'r') ADVANCE(130); END_STATE(); - case 581: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(597); - if (lookahead == '/') ADVANCE(584); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(594); + case 104: + if (lookahead == 'r') ADVANCE(131); END_STATE(); - case 582: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(597); - if (lookahead == '/') ADVANCE(607); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(597); + case 105: + ACCEPT_TOKEN(anon_sym_lock); END_STATE(); - case 583: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(597); - if (lookahead == '/') ADVANCE(562); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(599); + case 106: + if (lookahead == 'h') ADVANCE(132); END_STATE(); - case 584: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(585); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(566); + case 107: + if (lookahead == 'l') ADVANCE(133); END_STATE(); - case 585: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(587); - if (lookahead == '/') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(568); + case 108: + ACCEPT_TOKEN(sym_none); END_STATE(); - case 586: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(587); - if (lookahead == '/') ADVANCE(542); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(571); + case 109: + if (lookahead == 'r') ADVANCE(134); END_STATE(); - case 587: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(587); - if (lookahead == '/') ADVANCE(556); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(602); + case 110: + if (lookahead == 'k') ADVANCE(135); END_STATE(); - case 588: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(589); - if (lookahead == '/') ADVANCE(607); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(583); + case 111: + if (lookahead == 'c') ADVANCE(136); END_STATE(); - case 589: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(589); - if (lookahead == '/') ADVANCE(562); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(590); + case 112: + if (lookahead == 'e') ADVANCE(137); END_STATE(); - case 590: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(595); - if (lookahead == '/') ADVANCE(562); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(601); + case 113: + if (lookahead == 'n') ADVANCE(138); END_STATE(); - case 591: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(595); - if (lookahead == '/') ADVANCE(563); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(600); + case 114: + if (lookahead == 'i') ADVANCE(139); END_STATE(); - case 592: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(596); - if (lookahead == '/') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(597); + case 115: + if (lookahead == 'c') ADVANCE(140); END_STATE(); - case 593: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(596); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(594); + case 116: + if (lookahead == 'a') ADVANCE(141); END_STATE(); - case 594: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(596); - if (lookahead == '/') ADVANCE(584); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(594); + case 117: + ACCEPT_TOKEN(sym_true); END_STATE(); - case 595: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(596); - if (lookahead == '/') ADVANCE(573); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(594); + case 118: + ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 596: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(596); - if (lookahead == '/') ADVANCE(572); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(597); + case 119: + if (lookahead == 'n') ADVANCE(142); END_STATE(); - case 597: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(596); - if (lookahead == '/') ADVANCE(607); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(597); + case 120: + if (lookahead == 'f') ADVANCE(143); END_STATE(); - case 598: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(596); - if (lookahead == '/') ADVANCE(574); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(594); + case 121: + if (lookahead == 't') ADVANCE(144); END_STATE(); - case 599: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(598); - if (lookahead == '/') ADVANCE(562); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(601); + case 122: + if (lookahead == 'b') ADVANCE(145); END_STATE(); - case 600: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(598); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(600); + case 123: + if (lookahead == 't') ADVANCE(146); END_STATE(); - case 601: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(598); - if (lookahead == '/') ADVANCE(563); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(600); + case 124: + if (lookahead == 'c') ADVANCE(147); END_STATE(); - case 602: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(570); - if (lookahead == '/') ADVANCE(562); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(604); + case 125: + ACCEPT_TOKEN(anon_sym_break); END_STATE(); - case 603: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(570); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(603); + case 126: + ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 604: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(570); - if (lookahead == '/') ADVANCE(563); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(603); + case 127: + if (lookahead == 'n') ADVANCE(148); END_STATE(); - case 605: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(605); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(610); + case 128: + ACCEPT_TOKEN(anon_sym_defer); END_STATE(); - case 606: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(610); + case 129: + ACCEPT_TOKEN(sym_false); END_STATE(); - case 607: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(565); + case 130: + if (lookahead == 't') ADVANCE(149); END_STATE(); - case 608: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(578); + case 131: + if (lookahead == 'f') ADVANCE(150); END_STATE(); - case 609: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(609); + case 132: + ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 610: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(610); + case 133: + if (lookahead == 'e') ADVANCE(151); END_STATE(); - case 611: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(679); - if (lookahead == '/') ADVANCE(626); - if (lookahead != 0 && - lookahead != '"') ADVANCE(611); + case 134: + if (lookahead == 'n') ADVANCE(152); END_STATE(); - case 612: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(679); - if (lookahead == '/') ADVANCE(648); - if (lookahead != 0 && - lookahead != '"') ADVANCE(645); + case 135: + ACCEPT_TOKEN(anon_sym_rlock); END_STATE(); - case 613: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(679); - if (lookahead == '/') ADVANCE(611); - if (lookahead != 0 && - lookahead != '"') ADVANCE(611); - END_STATE(); - case 614: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(679); - if (lookahead == '/') ADVANCE(649); - if (lookahead != 0 && - lookahead != '"') ADVANCE(624); - END_STATE(); - case 615: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"') ADVANCE(677); - END_STATE(); - case 616: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"') ADVANCE(623); - END_STATE(); - case 617: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"') ADVANCE(611); - END_STATE(); - case 618: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(675); - if (lookahead == '/') ADVANCE(627); - if (lookahead != 0 && - lookahead != '"') ADVANCE(618); - END_STATE(); - case 619: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(675); - if (lookahead != 0 && - lookahead != '"') ADVANCE(619); - END_STATE(); - case 620: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(675); - if (lookahead != 0 && - lookahead != '"') ADVANCE(618); - END_STATE(); - case 621: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(622); - if (lookahead == '/') ADVANCE(678); - if (lookahead != 0 && - lookahead != '"') ADVANCE(679); - END_STATE(); - case 622: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(613); - if (lookahead == '/') ADVANCE(619); - if (lookahead != 0 && - lookahead != '"') ADVANCE(620); - END_STATE(); - case 623: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(617); - if (lookahead == '/') ADVANCE(631); - if (lookahead != 0 && - lookahead != '"') ADVANCE(633); - END_STATE(); - case 624: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(617); - if (lookahead == '/') ADVANCE(644); - if (lookahead != 0 && - lookahead != '"') ADVANCE(632); - END_STATE(); - case 625: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(617); - if (lookahead == '/') ADVANCE(659); - if (lookahead != 0 && - lookahead != '"') ADVANCE(660); - END_STATE(); - case 626: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(628); - if (lookahead == '/') ADVANCE(626); - if (lookahead != 0 && - lookahead != '"') ADVANCE(611); - END_STATE(); - case 627: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(628); - if (lookahead == '/') ADVANCE(627); - if (lookahead != 0 && - lookahead != '"') ADVANCE(618); - END_STATE(); - case 628: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(629); - if (lookahead == '/') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"') ADVANCE(616); - END_STATE(); - case 629: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(629); - if (lookahead == '/') ADVANCE(623); - if (lookahead != 0 && - lookahead != '"') ADVANCE(623); - END_STATE(); - case 630: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(629); - if (lookahead == '/') ADVANCE(611); - if (lookahead != 0 && - lookahead != '"') ADVANCE(614); - END_STATE(); - case 631: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '/') ADVANCE(631); - if (lookahead != 0 && - lookahead != '"') ADVANCE(673); - END_STATE(); - case 632: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '/') ADVANCE(644); - if (lookahead != 0 && - lookahead != '"') ADVANCE(672); - END_STATE(); - case 633: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"') ADVANCE(672); - END_STATE(); - case 634: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(636); - if (lookahead == '/') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"') ADVANCE(634); - END_STATE(); - case 635: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(636); - if (lookahead == '/') ADVANCE(626); - if (lookahead != 0 && - lookahead != '"') ADVANCE(635); - END_STATE(); - case 636: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(636); - if (lookahead == '/') ADVANCE(615); - if (lookahead != 0 && - lookahead != '"') ADVANCE(634); - END_STATE(); - case 637: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(636); - if (lookahead == '/') ADVANCE(623); - if (lookahead != 0 && - lookahead != '"') ADVANCE(671); - END_STATE(); - case 638: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(636); - if (lookahead == '/') ADVANCE(611); - if (lookahead != 0 && - lookahead != '"') ADVANCE(635); - END_STATE(); - case 639: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(636); - if (lookahead == '/') ADVANCE(612); - if (lookahead != 0 && - lookahead != '"') ADVANCE(635); - END_STATE(); - case 640: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(636); - if (lookahead == '/') ADVANCE(649); - if (lookahead != 0 && - lookahead != '"') ADVANCE(672); - END_STATE(); - case 641: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(634); - if (lookahead == '/') ADVANCE(677); - if (lookahead != 0 && - lookahead != '"') ADVANCE(661); - END_STATE(); - case 642: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(634); - if (lookahead == '/') ADVANCE(626); - if (lookahead != 0 && - lookahead != '"') ADVANCE(635); - END_STATE(); - case 643: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(634); - if (lookahead == '/') ADVANCE(648); - if (lookahead != 0 && - lookahead != '"') ADVANCE(662); - END_STATE(); - case 644: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(655); - if (lookahead == '/') ADVANCE(644); - if (lookahead != 0 && - lookahead != '"') ADVANCE(672); - END_STATE(); - case 645: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(647); - if (lookahead == '/') ADVANCE(626); - if (lookahead != 0 && - lookahead != '"') ADVANCE(646); - END_STATE(); - case 646: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(647); - if (lookahead == '/') ADVANCE(653); - if (lookahead != 0 && - lookahead != '"') ADVANCE(650); - END_STATE(); - case 647: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(647); - if (lookahead == '/') ADVANCE(676); - if (lookahead != 0 && - lookahead != '"') ADVANCE(651); - END_STATE(); - case 648: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(657); - if (lookahead == '/') ADVANCE(626); - if (lookahead != 0 && - lookahead != '"') ADVANCE(646); - END_STATE(); - case 649: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(630); - if (lookahead == '/') ADVANCE(644); - if (lookahead != 0 && - lookahead != '"') ADVANCE(632); - END_STATE(); - case 650: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(666); - if (lookahead == '/') ADVANCE(653); - if (lookahead != 0 && - lookahead != '"') ADVANCE(663); - END_STATE(); - case 651: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(666); - if (lookahead == '/') ADVANCE(676); - if (lookahead != 0 && - lookahead != '"') ADVANCE(666); - END_STATE(); - case 652: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(666); - if (lookahead == '/') ADVANCE(631); - if (lookahead != 0 && - lookahead != '"') ADVANCE(668); - END_STATE(); - case 653: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(654); - if (lookahead == '/') ADVANCE(626); - if (lookahead != 0 && - lookahead != '"') ADVANCE(635); - END_STATE(); - case 654: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(656); - if (lookahead == '/') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"') ADVANCE(637); - END_STATE(); - case 655: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(656); - if (lookahead == '/') ADVANCE(611); - if (lookahead != 0 && - lookahead != '"') ADVANCE(640); - END_STATE(); - case 656: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(656); - if (lookahead == '/') ADVANCE(625); - if (lookahead != 0 && - lookahead != '"') ADVANCE(671); - END_STATE(); - case 657: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(658); - if (lookahead == '/') ADVANCE(676); - if (lookahead != 0 && - lookahead != '"') ADVANCE(652); - END_STATE(); - case 658: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(658); - if (lookahead == '/') ADVANCE(631); - if (lookahead != 0 && - lookahead != '"') ADVANCE(659); - END_STATE(); - case 659: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(664); - if (lookahead == '/') ADVANCE(631); - if (lookahead != 0 && - lookahead != '"') ADVANCE(670); - END_STATE(); - case 660: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(664); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"') ADVANCE(669); - END_STATE(); - case 661: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(665); - if (lookahead == '/') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"') ADVANCE(666); - END_STATE(); - case 662: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(665); - if (lookahead == '/') ADVANCE(626); - if (lookahead != 0 && - lookahead != '"') ADVANCE(663); - END_STATE(); - case 663: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(665); - if (lookahead == '/') ADVANCE(653); - if (lookahead != 0 && - lookahead != '"') ADVANCE(663); - END_STATE(); - case 664: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(665); - if (lookahead == '/') ADVANCE(642); - if (lookahead != 0 && - lookahead != '"') ADVANCE(663); - END_STATE(); - case 665: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(665); - if (lookahead == '/') ADVANCE(641); - if (lookahead != 0 && - lookahead != '"') ADVANCE(666); - END_STATE(); - case 666: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(665); - if (lookahead == '/') ADVANCE(676); - if (lookahead != 0 && - lookahead != '"') ADVANCE(666); - END_STATE(); - case 667: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(665); - if (lookahead == '/') ADVANCE(643); - if (lookahead != 0 && - lookahead != '"') ADVANCE(663); - END_STATE(); - case 668: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(667); - if (lookahead == '/') ADVANCE(631); - if (lookahead != 0 && - lookahead != '"') ADVANCE(670); - END_STATE(); - case 669: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(667); - if (lookahead == '/') ADVANCE(644); - if (lookahead != 0 && - lookahead != '"') ADVANCE(669); - END_STATE(); - case 670: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(667); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"') ADVANCE(669); - END_STATE(); - case 671: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '/') ADVANCE(631); - if (lookahead != 0 && - lookahead != '"') ADVANCE(673); - END_STATE(); - case 672: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '/') ADVANCE(644); - if (lookahead != 0 && - lookahead != '"') ADVANCE(672); - END_STATE(); - case 673: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"') ADVANCE(672); - END_STATE(); - case 674: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(621); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(674); - if (lookahead != 0 && - lookahead != '"') ADVANCE(679); - END_STATE(); - case 675: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"') ADVANCE(679); - END_STATE(); - case 676: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"') ADVANCE(634); - END_STATE(); - case 677: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"') ADVANCE(647); - END_STATE(); - case 678: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"') ADVANCE(678); - END_STATE(); - case 679: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead != 0 && - lookahead != '"') ADVANCE(679); - END_STATE(); - case 680: - ACCEPT_TOKEN(aux_sym_format_specifier_token2); - END_STATE(); - case 681: - ACCEPT_TOKEN(anon_sym_0); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(185); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(184); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(186); - if (lookahead == '_') ADVANCE(211); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(396); - END_STATE(); - case 682: - ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); - if (lookahead == '.') ADVANCE(239); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(683); - if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - END_STATE(); - case 683: - ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(683); - if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - END_STATE(); - case 684: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(859); - if (lookahead == '\'') ADVANCE(860); - 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(708); - END_STATE(); - case 685: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '\'') ADVANCE(862); - 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(708); - END_STATE(); - case 686: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(182); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(683); - if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - END_STATE(); - case 687: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(182); - 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(708); - END_STATE(); - case 688: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(239); - 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(708); - END_STATE(); - case 689: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(190); - 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(708); - END_STATE(); - case 690: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(682); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(683); - if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); - END_STATE(); - case 691: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(688); - 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(708); - END_STATE(); - case 692: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '[') ADVANCE(709); - 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(708); - END_STATE(); - case 693: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(683); - if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + case 136: + if (lookahead == 't') ADVANCE(153); END_STATE(); - case 694: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(708); - if (lookahead == 'n') ADVANCE(377); - if (lookahead == 's') ADVANCE(374); + case 137: + if (lookahead == 'd') ADVANCE(154); END_STATE(); - case 695: - 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(708); - if (lookahead == 'e') ADVANCE(372); + case 138: + ACCEPT_TOKEN(anon_sym_spawn); END_STATE(); - case 696: - 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(708); - if (lookahead == 'f') ADVANCE(370); + case 139: + if (lookahead == 'c') ADVANCE(155); END_STATE(); - case 697: - 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(708); - if (lookahead == 'l') ADVANCE(705); + case 140: + if (lookahead == 't') ADVANCE(156); END_STATE(); - case 698: - 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(708); - if (lookahead == 'n') ADVANCE(689); + case 141: + if (lookahead == 'd') ADVANCE(157); END_STATE(); - case 699: - 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(708); - if (lookahead == 'o') ADVANCE(698); + case 142: + ACCEPT_TOKEN(anon_sym_union); END_STATE(); - case 700: - 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(708); - if (lookahead == 'o') ADVANCE(703); + case 143: + if (lookahead == 'e') ADVANCE(158); END_STATE(); - case 701: - 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(708); - if (lookahead == 'p') ADVANCE(692); + case 144: + if (lookahead == 'i') ADVANCE(159); END_STATE(); - case 702: - 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(708); - if (lookahead == 'r') ADVANCE(361); + case 145: + if (lookahead == 'a') ADVANCE(160); END_STATE(); - case 703: - 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(708); - if (lookahead == 'r') ADVANCE(710); + case 146: + ACCEPT_TOKEN(anon_sym_assert); END_STATE(); - case 704: - 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(708); - if (lookahead == 's') ADVANCE(286); + case 147: + ACCEPT_TOKEN(anon_sym_atomic); END_STATE(); - case 705: - 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(708); - if (lookahead == 's') ADVANCE(695); + case 148: + if (lookahead == 'u') ADVANCE(161); END_STATE(); - case 706: - 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(708); - if (lookahead == 's') ADVANCE(699); + case 149: + ACCEPT_TOKEN(anon_sym_import); END_STATE(); - case 707: - 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(708); - if (lookahead == 'a') ADVANCE(701); + case 150: + if (lookahead == 'a') ADVANCE(162); END_STATE(); - case 708: - 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(708); + case 151: + ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 709: - ACCEPT_TOKEN(anon_sym_map_LBRACK); + case 152: + ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 710: - 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(708); + case 153: + ACCEPT_TOKEN(anon_sym_select); END_STATE(); - case 711: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + case 154: + ACCEPT_TOKEN(anon_sym_shared); END_STATE(); - case 712: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(324); + case 155: + ACCEPT_TOKEN(anon_sym_static); END_STATE(); - case 713: - ACCEPT_TOKEN(anon_sym_POUND); + case 156: + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); - case 714: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(241); + case 157: + ACCEPT_TOKEN(anon_sym_thread); END_STATE(); - case 715: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(241); - if (lookahead == '[') ADVANCE(368); + case 158: + ACCEPT_TOKEN(anon_sym_unsafe); END_STATE(); - case 716: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '[') ADVANCE(368); + case 159: + if (lookahead == 'l') ADVANCE(163); END_STATE(); - case 717: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(785); - if (lookahead == '/') ADVANCE(732); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(717); + case 160: + if (lookahead == 'l') ADVANCE(164); END_STATE(); - case 718: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(785); - if (lookahead == '/') ADVANCE(760); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(128); - if (lookahead != 0) ADVANCE(758); + case 161: + if (lookahead == 'e') ADVANCE(165); END_STATE(); - case 719: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(785); - if (lookahead == '/') ADVANCE(717); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(717); + case 162: + if (lookahead == 'c') ADVANCE(166); END_STATE(); - case 720: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(785); - if (lookahead == '/') ADVANCE(763); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(105); - if (lookahead != 0) ADVANCE(731); + case 163: + if (lookahead == 'e') ADVANCE(167); END_STATE(); - case 721: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(785); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(245); - if (lookahead != 0) ADVANCE(782); + case 164: + ACCEPT_TOKEN(anon_sym___global); END_STATE(); - case 722: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(785); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(717); + case 165: + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); - case 723: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(785); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(104); - if (lookahead != 0) ADVANCE(729); + case 166: + if (lookahead == 'e') ADVANCE(168); END_STATE(); - case 724: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(728); - if (lookahead == '/') ADVANCE(784); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(785); + case 167: + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); - case 725: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(783); - if (lookahead == '/') ADVANCE(733); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(100); - if (lookahead != 0) ADVANCE(725); - END_STATE(); - case 726: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(783); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(101); - if (lookahead != 0) ADVANCE(726); - END_STATE(); - case 727: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(783); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(100); - if (lookahead != 0) ADVANCE(725); - END_STATE(); - case 728: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(719); - if (lookahead == '/') ADVANCE(726); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(102); - if (lookahead != 0) ADVANCE(727); - END_STATE(); - case 729: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(722); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(114); - if (lookahead != 0) ADVANCE(739); - END_STATE(); - case 730: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(722); - if (lookahead == '/') ADVANCE(765); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(142); - if (lookahead != 0) ADVANCE(766); - END_STATE(); - case 731: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(722); - if (lookahead == '/') ADVANCE(753); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(113); - if (lookahead != 0) ADVANCE(738); - END_STATE(); - case 732: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(734); - if (lookahead == '/') ADVANCE(732); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(717); - END_STATE(); - case 733: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(734); - if (lookahead == '/') ADVANCE(733); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(100); - if (lookahead != 0) ADVANCE(725); - END_STATE(); - case 734: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(735); - if (lookahead == '/') ADVANCE(785); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(244); - if (lookahead != 0) ADVANCE(723); - END_STATE(); - case 735: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(735); - if (lookahead == '/') ADVANCE(729); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(104); - if (lookahead != 0) ADVANCE(729); - END_STATE(); - case 736: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(735); - if (lookahead == '/') ADVANCE(717); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(165); - if (lookahead != 0) ADVANCE(720); - END_STATE(); - case 737: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(745); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(124); - if (lookahead != 0) ADVANCE(749); - END_STATE(); - case 738: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(745); - if (lookahead == '/') ADVANCE(753); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(123); - if (lookahead != 0) ADVANCE(748); - END_STATE(); - case 739: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(745); - if (lookahead == '/') ADVANCE(738); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(123); - if (lookahead != 0) ADVANCE(748); - END_STATE(); - case 740: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(785); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(121); - if (lookahead != 0) ADVANCE(740); - END_STATE(); - case 741: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(732); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(116); - if (lookahead != 0) ADVANCE(741); - END_STATE(); - case 742: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(721); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(121); - if (lookahead != 0) ADVANCE(740); - END_STATE(); - case 743: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(729); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(122); - if (lookahead != 0) ADVANCE(747); - END_STATE(); - case 744: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(718); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(116); - if (lookahead != 0) ADVANCE(741); - END_STATE(); - case 745: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(717); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(116); - if (lookahead != 0) ADVANCE(741); - END_STATE(); - case 746: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(763); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(123); - if (lookahead != 0) ADVANCE(748); - END_STATE(); - case 747: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(124); - if (lookahead != 0) ADVANCE(749); - END_STATE(); - case 748: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(753); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(123); - if (lookahead != 0) ADVANCE(748); - END_STATE(); - case 749: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(738); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(123); - if (lookahead != 0) ADVANCE(748); - END_STATE(); - case 750: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(740); - if (lookahead == '/') ADVANCE(782); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(138); - if (lookahead != 0) ADVANCE(767); - END_STATE(); - case 751: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(740); - if (lookahead == '/') ADVANCE(732); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(116); - if (lookahead != 0) ADVANCE(741); - END_STATE(); - case 752: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(740); - if (lookahead == '/') ADVANCE(760); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(134); - if (lookahead != 0) ADVANCE(769); - END_STATE(); - case 753: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(755); - if (lookahead == '/') ADVANCE(753); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(123); - if (lookahead != 0) ADVANCE(748); - END_STATE(); - case 754: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(756); - if (lookahead == '/') ADVANCE(785); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(119); - if (lookahead != 0) ADVANCE(743); - END_STATE(); - case 755: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(756); - if (lookahead == '/') ADVANCE(717); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(120); - if (lookahead != 0) ADVANCE(746); - END_STATE(); - case 756: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(756); - if (lookahead == '/') ADVANCE(730); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(122); - if (lookahead != 0) ADVANCE(747); - END_STATE(); - case 757: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(757); - if (lookahead == '/') ADVANCE(781); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(143); - if (lookahead != 0) ADVANCE(777); - END_STATE(); - case 758: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(757); - if (lookahead == '/') ADVANCE(732); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(127); - if (lookahead != 0) ADVANCE(759); - END_STATE(); - case 759: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(757); - if (lookahead == '/') ADVANCE(764); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(144); - if (lookahead != 0) ADVANCE(779); - END_STATE(); - case 760: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(761); - if (lookahead == '/') ADVANCE(732); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(127); - if (lookahead != 0) ADVANCE(759); - END_STATE(); - case 761: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(762); - if (lookahead == '/') ADVANCE(781); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(145); - if (lookahead != 0) ADVANCE(778); - END_STATE(); - case 762: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(762); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(140); - if (lookahead != 0) ADVANCE(765); - END_STATE(); - case 763: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(736); - if (lookahead == '/') ADVANCE(753); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(113); - if (lookahead != 0) ADVANCE(738); - END_STATE(); - case 764: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(754); - if (lookahead == '/') ADVANCE(732); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(116); - if (lookahead != 0) ADVANCE(741); - END_STATE(); - case 765: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(771); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(148); - if (lookahead != 0) ADVANCE(776); - END_STATE(); - case 766: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(771); - if (lookahead == '/') ADVANCE(738); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(147); - if (lookahead != 0) ADVANCE(775); - END_STATE(); - case 767: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(772); - if (lookahead == '/') ADVANCE(785); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(132); - if (lookahead != 0) ADVANCE(768); - END_STATE(); - case 768: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(772); - if (lookahead == '/') ADVANCE(781); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(132); - if (lookahead != 0) ADVANCE(768); - END_STATE(); - case 769: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(772); - if (lookahead == '/') ADVANCE(732); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(133); - if (lookahead != 0) ADVANCE(770); - END_STATE(); - case 770: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(772); - if (lookahead == '/') ADVANCE(764); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(133); - if (lookahead != 0) ADVANCE(770); - END_STATE(); - case 771: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(772); - if (lookahead == '/') ADVANCE(751); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(133); - if (lookahead != 0) ADVANCE(770); - END_STATE(); - case 772: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(772); - if (lookahead == '/') ADVANCE(750); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(132); - if (lookahead != 0) ADVANCE(768); - END_STATE(); - case 773: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(772); - if (lookahead == '/') ADVANCE(752); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(133); - if (lookahead != 0) ADVANCE(770); - END_STATE(); - case 774: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(773); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(148); - if (lookahead != 0) ADVANCE(776); - END_STATE(); - case 775: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(773); - if (lookahead == '/') ADVANCE(753); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(147); - if (lookahead != 0) ADVANCE(775); - END_STATE(); - case 776: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(773); - if (lookahead == '/') ADVANCE(738); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(147); - if (lookahead != 0) ADVANCE(775); - END_STATE(); - case 777: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(768); - if (lookahead == '/') ADVANCE(781); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(132); - if (lookahead != 0) ADVANCE(768); - END_STATE(); - case 778: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(768); - if (lookahead == '/') ADVANCE(737); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(146); - if (lookahead != 0) ADVANCE(774); - END_STATE(); - case 779: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(768); - if (lookahead == '/') ADVANCE(764); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(133); - if (lookahead != 0) ADVANCE(770); - END_STATE(); - case 780: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(724); - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') ADVANCE(780); - if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && - lookahead != '\\') ADVANCE(785); - END_STATE(); - case 781: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(785); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(121); - if (lookahead != 0) ADVANCE(740); - END_STATE(); - case 782: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(785); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(757); - END_STATE(); - case 783: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(785); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(785); - END_STATE(); - case 784: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\\') ADVANCE(275); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(784); - END_STATE(); - case 785: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(785); - END_STATE(); - case 786: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); - if (lookahead == '/') ADVANCE(801); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(786); - END_STATE(); - case 787: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); - if (lookahead == '/') ADVANCE(823); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(820); - END_STATE(); - case 788: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); - if (lookahead == '/') ADVANCE(786); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(786); - END_STATE(); - case 789: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); - if (lookahead == '/') ADVANCE(824); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(799); - END_STATE(); - case 790: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(852); - END_STATE(); - case 791: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(798); - END_STATE(); - case 792: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(786); - END_STATE(); - case 793: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(850); - if (lookahead == '/') ADVANCE(802); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(793); - END_STATE(); - case 794: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(850); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(794); - END_STATE(); - case 795: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(850); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(793); - END_STATE(); - case 796: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(797); - if (lookahead == '/') ADVANCE(853); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(854); - END_STATE(); - case 797: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(788); - if (lookahead == '/') ADVANCE(794); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(795); - END_STATE(); - case 798: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(792); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(808); - END_STATE(); - case 799: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(792); - if (lookahead == '/') ADVANCE(819); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(807); - END_STATE(); - case 800: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(792); - if (lookahead == '/') ADVANCE(834); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(835); - END_STATE(); - case 801: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(803); - if (lookahead == '/') ADVANCE(801); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(786); - END_STATE(); - case 802: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(803); - if (lookahead == '/') ADVANCE(802); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(793); - END_STATE(); - case 803: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(804); - if (lookahead == '/') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(791); - END_STATE(); - case 804: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(804); - if (lookahead == '/') ADVANCE(798); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(798); - END_STATE(); - case 805: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(804); - if (lookahead == '/') ADVANCE(786); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(789); - END_STATE(); - case 806: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(813); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(848); - END_STATE(); - case 807: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(813); - if (lookahead == '/') ADVANCE(819); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(847); - END_STATE(); - case 808: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(813); - if (lookahead == '/') ADVANCE(807); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(847); - END_STATE(); - case 809: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(811); - if (lookahead == '/') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(809); - END_STATE(); - case 810: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(811); - if (lookahead == '/') ADVANCE(801); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(810); - END_STATE(); - case 811: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(811); - if (lookahead == '/') ADVANCE(790); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(809); - END_STATE(); - case 812: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(811); - if (lookahead == '/') ADVANCE(798); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(846); - END_STATE(); - case 813: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(811); - if (lookahead == '/') ADVANCE(786); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(810); - END_STATE(); - case 814: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(811); - if (lookahead == '/') ADVANCE(787); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(810); - END_STATE(); - case 815: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(811); - if (lookahead == '/') ADVANCE(824); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(847); - END_STATE(); - case 816: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(809); - if (lookahead == '/') ADVANCE(852); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(836); - END_STATE(); - case 817: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(809); - if (lookahead == '/') ADVANCE(801); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(810); - END_STATE(); - case 818: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(809); - if (lookahead == '/') ADVANCE(823); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(837); - END_STATE(); - case 819: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(830); - if (lookahead == '/') ADVANCE(819); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(847); - END_STATE(); - case 820: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(822); - if (lookahead == '/') ADVANCE(801); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(821); - END_STATE(); - case 821: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(822); - if (lookahead == '/') ADVANCE(828); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(825); - END_STATE(); - case 822: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(822); - if (lookahead == '/') ADVANCE(851); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(826); - END_STATE(); - case 823: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '/') ADVANCE(801); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(821); - END_STATE(); - case 824: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(805); - if (lookahead == '/') ADVANCE(819); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(807); - END_STATE(); - case 825: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(841); - if (lookahead == '/') ADVANCE(828); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(838); - END_STATE(); - case 826: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(841); - if (lookahead == '/') ADVANCE(851); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(841); - END_STATE(); - case 827: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(841); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(843); - END_STATE(); - case 828: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(829); - if (lookahead == '/') ADVANCE(801); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(810); - END_STATE(); - case 829: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(831); - if (lookahead == '/') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(812); - END_STATE(); - case 830: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(831); - if (lookahead == '/') ADVANCE(786); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(815); - END_STATE(); - case 831: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(831); - if (lookahead == '/') ADVANCE(800); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(846); - END_STATE(); - case 832: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(833); - if (lookahead == '/') ADVANCE(851); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(827); - END_STATE(); - case 833: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(833); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(834); - END_STATE(); - case 834: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(839); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(845); - END_STATE(); - case 835: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(839); - if (lookahead == '/') ADVANCE(807); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(844); - END_STATE(); - case 836: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(840); - if (lookahead == '/') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(841); - END_STATE(); - case 837: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(840); - if (lookahead == '/') ADVANCE(801); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(838); - END_STATE(); - case 838: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(840); - if (lookahead == '/') ADVANCE(828); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(838); - END_STATE(); - case 839: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(840); - if (lookahead == '/') ADVANCE(817); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(838); - END_STATE(); - case 840: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(840); - if (lookahead == '/') ADVANCE(816); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(841); - END_STATE(); - case 841: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(840); - if (lookahead == '/') ADVANCE(851); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(841); - END_STATE(); - case 842: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(840); - if (lookahead == '/') ADVANCE(818); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(838); - END_STATE(); - case 843: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(842); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(845); - END_STATE(); - case 844: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(842); - if (lookahead == '/') ADVANCE(819); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(844); - END_STATE(); - case 845: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(842); - if (lookahead == '/') ADVANCE(807); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(844); - END_STATE(); - case 846: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(814); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(848); - END_STATE(); - case 847: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(814); - if (lookahead == '/') ADVANCE(819); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(847); - END_STATE(); - case 848: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(814); - if (lookahead == '/') ADVANCE(807); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(847); - END_STATE(); - case 849: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(796); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(849); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(854); - END_STATE(); - case 850: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(854); - END_STATE(); - case 851: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(809); - END_STATE(); - case 852: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(822); - END_STATE(); - case 853: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(853); - END_STATE(); - case 854: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(854); - END_STATE(); - case 855: - ACCEPT_TOKEN(anon_sym_AT_LBRACK); - END_STATE(); - case 856: - ACCEPT_TOKEN(sym___dolcbr); - END_STATE(); - case 857: - ACCEPT_TOKEN(sym___double_quote); - END_STATE(); - case 858: - ACCEPT_TOKEN(sym___single_quote); - END_STATE(); - case 859: - ACCEPT_TOKEN(sym___c_double_quote); - END_STATE(); - case 860: - ACCEPT_TOKEN(sym___c_single_quote); - END_STATE(); - case 861: - ACCEPT_TOKEN(sym___r_double_quote); - END_STATE(); - case 862: - 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); - END_STATE(); - case 114: - if (lookahead == 'i') ADVANCE(139); - END_STATE(); - case 115: - if (lookahead == 'c') ADVANCE(140); - END_STATE(); - case 116: - if (lookahead == 'a') ADVANCE(141); - END_STATE(); - case 117: - ACCEPT_TOKEN(sym_true); - END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_type); - END_STATE(); - case 119: - if (lookahead == 'n') ADVANCE(142); - END_STATE(); - case 120: - if (lookahead == 'f') ADVANCE(143); - END_STATE(); - case 121: - if (lookahead == 't') ADVANCE(144); - END_STATE(); - case 122: - if (lookahead == 'b') ADVANCE(145); - END_STATE(); - case 123: - if (lookahead == 't') ADVANCE(146); - END_STATE(); - case 124: - if (lookahead == 'c') ADVANCE(147); - END_STATE(); - case 125: - ACCEPT_TOKEN(anon_sym_break); - END_STATE(); - case 126: - ACCEPT_TOKEN(anon_sym_const); - END_STATE(); - case 127: - if (lookahead == 'n') ADVANCE(148); - END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_defer); - END_STATE(); - case 129: - ACCEPT_TOKEN(sym_false); - END_STATE(); - case 130: - if (lookahead == 't') ADVANCE(149); - END_STATE(); - case 131: - if (lookahead == 'f') ADVANCE(150); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_match); - END_STATE(); - case 133: - if (lookahead == 'e') ADVANCE(151); - END_STATE(); - case 134: - if (lookahead == 'n') ADVANCE(152); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_rlock); - END_STATE(); - case 136: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 137: - if (lookahead == 'd') ADVANCE(154); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_spawn); - END_STATE(); - case 139: - if (lookahead == 'c') ADVANCE(155); - END_STATE(); - case 140: - if (lookahead == 't') ADVANCE(156); - END_STATE(); - case 141: - if (lookahead == 'd') ADVANCE(157); - END_STATE(); - case 142: - ACCEPT_TOKEN(anon_sym_union); - END_STATE(); - case 143: - if (lookahead == 'e') ADVANCE(158); - END_STATE(); - case 144: - if (lookahead == 'i') ADVANCE(159); - END_STATE(); - case 145: - if (lookahead == 'a') ADVANCE(160); - END_STATE(); - case 146: - ACCEPT_TOKEN(anon_sym_assert); - END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_atomic); - END_STATE(); - case 148: - if (lookahead == 'u') ADVANCE(161); - END_STATE(); - case 149: - ACCEPT_TOKEN(anon_sym_import); - END_STATE(); - case 150: - if (lookahead == 'a') ADVANCE(162); - END_STATE(); - case 151: - ACCEPT_TOKEN(anon_sym_module); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 153: - ACCEPT_TOKEN(anon_sym_select); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_shared); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym_static); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_thread); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_unsafe); - END_STATE(); - case 159: - if (lookahead == 'l') ADVANCE(163); - END_STATE(); - case 160: - if (lookahead == 'l') ADVANCE(164); - END_STATE(); - case 161: - if (lookahead == 'e') ADVANCE(165); - END_STATE(); - case 162: - if (lookahead == 'c') ADVANCE(166); - END_STATE(); - case 163: - if (lookahead == 'e') ADVANCE(167); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym___global); - END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 166: - if (lookahead == 'e') ADVANCE(168); - END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_volatile); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_interface); + case 168: + ACCEPT_TOKEN(anon_sym_interface); END_STATE(); default: return false; @@ -17744,77 +14709,77 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 260}, - [2] = {.lex_state = 261}, - [3] = {.lex_state = 261}, - [4] = {.lex_state = 261}, - [5] = {.lex_state = 261}, - [6] = {.lex_state = 261}, - [7] = {.lex_state = 261}, - [8] = {.lex_state = 261}, - [9] = {.lex_state = 261}, - [10] = {.lex_state = 261}, - [11] = {.lex_state = 261}, - [12] = {.lex_state = 261}, - [13] = {.lex_state = 261}, - [14] = {.lex_state = 261}, - [15] = {.lex_state = 261}, - [16] = {.lex_state = 261}, - [17] = {.lex_state = 261}, - [18] = {.lex_state = 261}, - [19] = {.lex_state = 261}, - [20] = {.lex_state = 261}, - [21] = {.lex_state = 261}, - [22] = {.lex_state = 261}, - [23] = {.lex_state = 261}, - [24] = {.lex_state = 261}, - [25] = {.lex_state = 261}, - [26] = {.lex_state = 261}, - [27] = {.lex_state = 261}, - [28] = {.lex_state = 261}, - [29] = {.lex_state = 261}, - [30] = {.lex_state = 261}, - [31] = {.lex_state = 261}, - [32] = {.lex_state = 261}, - [33] = {.lex_state = 261}, - [34] = {.lex_state = 261}, - [35] = {.lex_state = 261}, - [36] = {.lex_state = 261}, - [37] = {.lex_state = 261}, - [38] = {.lex_state = 261}, - [39] = {.lex_state = 261}, - [40] = {.lex_state = 261}, - [41] = {.lex_state = 261}, - [42] = {.lex_state = 261}, - [43] = {.lex_state = 261}, - [44] = {.lex_state = 261}, - [45] = {.lex_state = 261}, - [46] = {.lex_state = 261}, - [47] = {.lex_state = 261}, - [48] = {.lex_state = 261}, - [49] = {.lex_state = 261}, - [50] = {.lex_state = 261}, - [51] = {.lex_state = 261}, - [52] = {.lex_state = 261}, - [53] = {.lex_state = 261}, - [54] = {.lex_state = 261}, - [55] = {.lex_state = 261}, - [56] = {.lex_state = 261}, - [57] = {.lex_state = 261}, - [58] = {.lex_state = 261}, - [59] = {.lex_state = 261}, - [60] = {.lex_state = 261}, - [61] = {.lex_state = 261}, - [62] = {.lex_state = 261}, - [63] = {.lex_state = 261}, - [64] = {.lex_state = 261}, - [65] = {.lex_state = 261}, - [66] = {.lex_state = 256}, - [67] = {.lex_state = 247}, - [68] = {.lex_state = 247}, - [69] = {.lex_state = 247}, - [70] = {.lex_state = 247}, - [71] = {.lex_state = 247}, + [1] = {.lex_state = 250}, + [2] = {.lex_state = 251}, + [3] = {.lex_state = 251}, + [4] = {.lex_state = 251}, + [5] = {.lex_state = 251}, + [6] = {.lex_state = 251}, + [7] = {.lex_state = 251}, + [8] = {.lex_state = 251}, + [9] = {.lex_state = 251}, + [10] = {.lex_state = 251}, + [11] = {.lex_state = 251}, + [12] = {.lex_state = 251}, + [13] = {.lex_state = 251}, + [14] = {.lex_state = 251}, + [15] = {.lex_state = 251}, + [16] = {.lex_state = 251}, + [17] = {.lex_state = 251}, + [18] = {.lex_state = 251}, + [19] = {.lex_state = 251}, + [20] = {.lex_state = 251}, + [21] = {.lex_state = 251}, + [22] = {.lex_state = 251}, + [23] = {.lex_state = 251}, + [24] = {.lex_state = 251}, + [25] = {.lex_state = 251}, + [26] = {.lex_state = 251}, + [27] = {.lex_state = 251}, + [28] = {.lex_state = 251}, + [29] = {.lex_state = 251}, + [30] = {.lex_state = 251}, + [31] = {.lex_state = 251}, + [32] = {.lex_state = 251}, + [33] = {.lex_state = 251}, + [34] = {.lex_state = 251}, + [35] = {.lex_state = 251}, + [36] = {.lex_state = 251}, + [37] = {.lex_state = 251}, + [38] = {.lex_state = 251}, + [39] = {.lex_state = 251}, + [40] = {.lex_state = 251}, + [41] = {.lex_state = 251}, + [42] = {.lex_state = 251}, + [43] = {.lex_state = 251}, + [44] = {.lex_state = 251}, + [45] = {.lex_state = 251}, + [46] = {.lex_state = 251}, + [47] = {.lex_state = 251}, + [48] = {.lex_state = 251}, + [49] = {.lex_state = 251}, + [50] = {.lex_state = 251}, + [51] = {.lex_state = 251}, + [52] = {.lex_state = 251}, + [53] = {.lex_state = 251}, + [54] = {.lex_state = 251}, + [55] = {.lex_state = 251}, + [56] = {.lex_state = 251}, + [57] = {.lex_state = 251}, + [58] = {.lex_state = 251}, + [59] = {.lex_state = 251}, + [60] = {.lex_state = 251}, + [61] = {.lex_state = 251}, + [62] = {.lex_state = 251}, + [63] = {.lex_state = 251}, + [64] = {.lex_state = 251}, + [65] = {.lex_state = 251}, + [66] = {.lex_state = 246}, + [67] = {.lex_state = 237}, + [68] = {.lex_state = 237}, + [69] = {.lex_state = 237}, + [70] = {.lex_state = 237}, + [71] = {.lex_state = 237}, [72] = {.lex_state = 79}, [73] = {.lex_state = 79}, [74] = {.lex_state = 79}, @@ -17918,8 +14883,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [172] = {.lex_state = 79}, [173] = {.lex_state = 79}, [174] = {.lex_state = 79}, - [175] = {.lex_state = 80}, - [176] = {.lex_state = 79}, + [175] = {.lex_state = 79}, + [176] = {.lex_state = 80}, [177] = {.lex_state = 79}, [178] = {.lex_state = 79}, [179] = {.lex_state = 79}, @@ -17948,18 +14913,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [202] = {.lex_state = 79}, [203] = {.lex_state = 79}, [204] = {.lex_state = 79}, - [205] = {.lex_state = 249}, - [206] = {.lex_state = 249}, - [207] = {.lex_state = 30}, - [208] = {.lex_state = 249}, - [209] = {.lex_state = 79}, + [205] = {.lex_state = 79}, + [206] = {.lex_state = 30}, + [207] = {.lex_state = 79}, + [208] = {.lex_state = 239}, + [209] = {.lex_state = 239}, [210] = {.lex_state = 79}, - [211] = {.lex_state = 249}, - [212] = {.lex_state = 79}, - [213] = {.lex_state = 249}, - [214] = {.lex_state = 79}, - [215] = {.lex_state = 247}, - [216] = {.lex_state = 247}, + [211] = {.lex_state = 239}, + [212] = {.lex_state = 239}, + [213] = {.lex_state = 79}, + [214] = {.lex_state = 239}, + [215] = {.lex_state = 237}, + [216] = {.lex_state = 237}, [217] = {.lex_state = 79}, [218] = {.lex_state = 79}, [219] = {.lex_state = 79}, @@ -17978,32 +14943,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [232] = {.lex_state = 79}, [233] = {.lex_state = 79}, [234] = {.lex_state = 79}, - [235] = {.lex_state = 247}, - [236] = {.lex_state = 247}, + [235] = {.lex_state = 79}, + [236] = {.lex_state = 79}, [237] = {.lex_state = 79}, [238] = {.lex_state = 79}, [239] = {.lex_state = 79}, - [240] = {.lex_state = 247}, - [241] = {.lex_state = 247}, - [242] = {.lex_state = 247}, + [240] = {.lex_state = 79}, + [241] = {.lex_state = 79}, + [242] = {.lex_state = 79}, [243] = {.lex_state = 79}, [244] = {.lex_state = 79}, [245] = {.lex_state = 79}, [246] = {.lex_state = 79}, [247] = {.lex_state = 79}, - [248] = {.lex_state = 247}, + [248] = {.lex_state = 79}, [249] = {.lex_state = 79}, - [250] = {.lex_state = 79}, - [251] = {.lex_state = 79}, - [252] = {.lex_state = 79}, - [253] = {.lex_state = 79}, - [254] = {.lex_state = 79}, + [250] = {.lex_state = 237}, + [251] = {.lex_state = 237}, + [252] = {.lex_state = 237}, + [253] = {.lex_state = 237}, + [254] = {.lex_state = 237}, [255] = {.lex_state = 79}, - [256] = {.lex_state = 79}, - [257] = {.lex_state = 79}, + [256] = {.lex_state = 237}, + [257] = {.lex_state = 237}, [258] = {.lex_state = 79}, [259] = {.lex_state = 79}, - [260] = {.lex_state = 79}, + [260] = {.lex_state = 237}, [261] = {.lex_state = 79}, [262] = {.lex_state = 79}, [263] = {.lex_state = 79}, @@ -18012,49 +14977,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [266] = {.lex_state = 79}, [267] = {.lex_state = 79}, [268] = {.lex_state = 79}, - [269] = {.lex_state = 79}, + [269] = {.lex_state = 237}, [270] = {.lex_state = 79}, [271] = {.lex_state = 79}, [272] = {.lex_state = 79}, [273] = {.lex_state = 79}, [274] = {.lex_state = 79}, - [275] = {.lex_state = 79}, + [275] = {.lex_state = 237}, [276] = {.lex_state = 79}, - [277] = {.lex_state = 79}, + [277] = {.lex_state = 237}, [278] = {.lex_state = 79}, [279] = {.lex_state = 79}, - [280] = {.lex_state = 79}, + [280] = {.lex_state = 237}, [281] = {.lex_state = 79}, - [282] = {.lex_state = 247}, - [283] = {.lex_state = 79}, + [282] = {.lex_state = 79}, + [283] = {.lex_state = 237}, [284] = {.lex_state = 79}, [285] = {.lex_state = 79}, [286] = {.lex_state = 79}, [287] = {.lex_state = 79}, [288] = {.lex_state = 79}, - [289] = {.lex_state = 247}, + [289] = {.lex_state = 79}, [290] = {.lex_state = 79}, [291] = {.lex_state = 79}, [292] = {.lex_state = 79}, [293] = {.lex_state = 79}, - [294] = {.lex_state = 247}, - [295] = {.lex_state = 247}, - [296] = {.lex_state = 247}, - [297] = {.lex_state = 247}, - [298] = {.lex_state = 247}, - [299] = {.lex_state = 80}, + [294] = {.lex_state = 79}, + [295] = {.lex_state = 79}, + [296] = {.lex_state = 79}, + [297] = {.lex_state = 79}, + [298] = {.lex_state = 79}, + [299] = {.lex_state = 79}, [300] = {.lex_state = 79}, [301] = {.lex_state = 79}, [302] = {.lex_state = 79}, [303] = {.lex_state = 79}, - [304] = {.lex_state = 79}, + [304] = {.lex_state = 80}, [305] = {.lex_state = 79}, - [306] = {.lex_state = 79}, - [307] = {.lex_state = 79}, + [306] = {.lex_state = 80}, + [307] = {.lex_state = 80}, [308] = {.lex_state = 79}, - [309] = {.lex_state = 79}, + [309] = {.lex_state = 80}, [310] = {.lex_state = 79}, - [311] = {.lex_state = 80}, + [311] = {.lex_state = 79}, [312] = {.lex_state = 79}, [313] = {.lex_state = 79}, [314] = {.lex_state = 79}, @@ -18063,97 +15028,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [317] = {.lex_state = 79}, [318] = {.lex_state = 79}, [319] = {.lex_state = 79}, - [320] = {.lex_state = 80}, - [321] = {.lex_state = 79}, + [320] = {.lex_state = 79}, + [321] = {.lex_state = 80}, [322] = {.lex_state = 79}, - [323] = {.lex_state = 79}, + [323] = {.lex_state = 80}, [324] = {.lex_state = 79}, [325] = {.lex_state = 79}, [326] = {.lex_state = 79}, - [327] = {.lex_state = 79}, - [328] = {.lex_state = 79}, + [327] = {.lex_state = 80}, + [328] = {.lex_state = 80}, [329] = {.lex_state = 79}, - [330] = {.lex_state = 79}, + [330] = {.lex_state = 80}, [331] = {.lex_state = 79}, [332] = {.lex_state = 79}, - [333] = {.lex_state = 79}, - [334] = {.lex_state = 79}, - [335] = {.lex_state = 79}, + [333] = {.lex_state = 80}, + [334] = {.lex_state = 80}, + [335] = {.lex_state = 80}, [336] = {.lex_state = 79}, [337] = {.lex_state = 79}, [338] = {.lex_state = 79}, - [339] = {.lex_state = 79}, - [340] = {.lex_state = 79}, - [341] = {.lex_state = 80}, - [342] = {.lex_state = 79}, + [339] = {.lex_state = 80}, + [340] = {.lex_state = 80}, + [341] = {.lex_state = 79}, + [342] = {.lex_state = 80}, [343] = {.lex_state = 80}, - [344] = {.lex_state = 79}, + [344] = {.lex_state = 80}, [345] = {.lex_state = 79}, [346] = {.lex_state = 79}, - [347] = {.lex_state = 80}, - [348] = {.lex_state = 80}, + [347] = {.lex_state = 79}, + [348] = {.lex_state = 79}, [349] = {.lex_state = 79}, [350] = {.lex_state = 79}, - [351] = {.lex_state = 79}, + [351] = {.lex_state = 80}, [352] = {.lex_state = 80}, [353] = {.lex_state = 79}, [354] = {.lex_state = 79}, - [355] = {.lex_state = 80}, - [356] = {.lex_state = 80}, + [355] = {.lex_state = 79}, + [356] = {.lex_state = 79}, [357] = {.lex_state = 79}, [358] = {.lex_state = 79}, - [359] = {.lex_state = 79}, - [360] = {.lex_state = 80}, - [361] = {.lex_state = 79}, + [359] = {.lex_state = 237}, + [360] = {.lex_state = 79}, + [361] = {.lex_state = 237}, [362] = {.lex_state = 79}, [363] = {.lex_state = 79}, - [364] = {.lex_state = 80}, - [365] = {.lex_state = 80}, - [366] = {.lex_state = 79}, + [364] = {.lex_state = 79}, + [365] = {.lex_state = 79}, + [366] = {.lex_state = 80}, [367] = {.lex_state = 80}, - [368] = {.lex_state = 80}, - [369] = {.lex_state = 80}, + [368] = {.lex_state = 79}, + [369] = {.lex_state = 79}, [370] = {.lex_state = 79}, [371] = {.lex_state = 79}, [372] = {.lex_state = 79}, - [373] = {.lex_state = 80}, - [374] = {.lex_state = 80}, + [373] = {.lex_state = 79}, + [374] = {.lex_state = 79}, [375] = {.lex_state = 79}, [376] = {.lex_state = 80}, [377] = {.lex_state = 79}, [378] = {.lex_state = 80}, - [379] = {.lex_state = 247}, + [379] = {.lex_state = 79}, [380] = {.lex_state = 79}, - [381] = {.lex_state = 80}, + [381] = {.lex_state = 79}, [382] = {.lex_state = 79}, - [383] = {.lex_state = 80}, + [383] = {.lex_state = 79}, [384] = {.lex_state = 79}, - [385] = {.lex_state = 80}, - [386] = {.lex_state = 80}, + [385] = {.lex_state = 79}, + [386] = {.lex_state = 79}, [387] = {.lex_state = 79}, [388] = {.lex_state = 79}, - [389] = {.lex_state = 247}, + [389] = {.lex_state = 80}, [390] = {.lex_state = 79}, [391] = {.lex_state = 79}, [392] = {.lex_state = 79}, - [393] = {.lex_state = 251}, - [394] = {.lex_state = 247}, + [393] = {.lex_state = 79}, + [394] = {.lex_state = 79}, [395] = {.lex_state = 79}, - [396] = {.lex_state = 251}, + [396] = {.lex_state = 79}, [397] = {.lex_state = 79}, - [398] = {.lex_state = 251}, + [398] = {.lex_state = 79}, [399] = {.lex_state = 79}, [400] = {.lex_state = 79}, - [401] = {.lex_state = 247}, - [402] = {.lex_state = 79}, + [401] = {.lex_state = 237}, + [402] = {.lex_state = 241}, [403] = {.lex_state = 79}, - [404] = {.lex_state = 247}, + [404] = {.lex_state = 79}, [405] = {.lex_state = 79}, - [406] = {.lex_state = 79}, - [407] = {.lex_state = 247}, - [408] = {.lex_state = 79}, + [406] = {.lex_state = 237}, + [407] = {.lex_state = 79}, + [408] = {.lex_state = 241}, [409] = {.lex_state = 79}, - [410] = {.lex_state = 247}, + [410] = {.lex_state = 79}, [411] = {.lex_state = 79}, [412] = {.lex_state = 79}, [413] = {.lex_state = 79}, @@ -18162,20 +15127,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [416] = {.lex_state = 79}, [417] = {.lex_state = 79}, [418] = {.lex_state = 79}, - [419] = {.lex_state = 79}, + [419] = {.lex_state = 241}, [420] = {.lex_state = 79}, [421] = {.lex_state = 79}, [422] = {.lex_state = 79}, [423] = {.lex_state = 79}, [424] = {.lex_state = 79}, - [425] = {.lex_state = 79}, - [426] = {.lex_state = 79}, + [425] = {.lex_state = 241}, + [426] = {.lex_state = 237}, [427] = {.lex_state = 79}, [428] = {.lex_state = 79}, [429] = {.lex_state = 79}, - [430] = {.lex_state = 79}, + [430] = {.lex_state = 237}, [431] = {.lex_state = 79}, - [432] = {.lex_state = 251}, + [432] = {.lex_state = 79}, [433] = {.lex_state = 79}, [434] = {.lex_state = 79}, [435] = {.lex_state = 79}, @@ -18186,52 +15151,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [440] = {.lex_state = 79}, [441] = {.lex_state = 79}, [442] = {.lex_state = 79}, - [443] = {.lex_state = 79}, + [443] = {.lex_state = 237}, [444] = {.lex_state = 79}, [445] = {.lex_state = 79}, [446] = {.lex_state = 79}, [447] = {.lex_state = 79}, - [448] = {.lex_state = 247}, - [449] = {.lex_state = 79}, - [450] = {.lex_state = 247}, - [451] = {.lex_state = 247}, - [452] = {.lex_state = 247}, - [453] = {.lex_state = 247}, - [454] = {.lex_state = 247}, + [448] = {.lex_state = 79}, + [449] = {.lex_state = 237}, + [450] = {.lex_state = 237}, + [451] = {.lex_state = 79}, + [452] = {.lex_state = 79}, + [453] = {.lex_state = 79}, + [454] = {.lex_state = 79}, [455] = {.lex_state = 79}, - [456] = {.lex_state = 247}, - [457] = {.lex_state = 79}, - [458] = {.lex_state = 79}, - [459] = {.lex_state = 247}, - [460] = {.lex_state = 247}, - [461] = {.lex_state = 79}, + [456] = {.lex_state = 79}, + [457] = {.lex_state = 237}, + [458] = {.lex_state = 237}, + [459] = {.lex_state = 79}, + [460] = {.lex_state = 237}, + [461] = {.lex_state = 237}, [462] = {.lex_state = 79}, [463] = {.lex_state = 79}, - [464] = {.lex_state = 79}, - [465] = {.lex_state = 247}, - [466] = {.lex_state = 247}, - [467] = {.lex_state = 247}, - [468] = {.lex_state = 247}, + [464] = {.lex_state = 237}, + [465] = {.lex_state = 237}, + [466] = {.lex_state = 237}, + [467] = {.lex_state = 79}, + [468] = {.lex_state = 237}, [469] = {.lex_state = 79}, - [470] = {.lex_state = 247}, + [470] = {.lex_state = 79}, [471] = {.lex_state = 79}, - [472] = {.lex_state = 247}, - [473] = {.lex_state = 247}, + [472] = {.lex_state = 79}, + [473] = {.lex_state = 79}, [474] = {.lex_state = 79}, [475] = {.lex_state = 79}, [476] = {.lex_state = 79}, [477] = {.lex_state = 79}, - [478] = {.lex_state = 79}, - [479] = {.lex_state = 79}, - [480] = {.lex_state = 79}, - [481] = {.lex_state = 79}, - [482] = {.lex_state = 79}, - [483] = {.lex_state = 79}, - [484] = {.lex_state = 79}, + [478] = {.lex_state = 237}, + [479] = {.lex_state = 237}, + [480] = {.lex_state = 237}, + [481] = {.lex_state = 237}, + [482] = {.lex_state = 237}, + [483] = {.lex_state = 237}, + [484] = {.lex_state = 237}, [485] = {.lex_state = 79}, - [486] = {.lex_state = 247}, + [486] = {.lex_state = 237}, [487] = {.lex_state = 79}, - [488] = {.lex_state = 79}, + [488] = {.lex_state = 237}, [489] = {.lex_state = 79}, [490] = {.lex_state = 79}, [491] = {.lex_state = 79}, @@ -18241,26 +15206,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [495] = {.lex_state = 79}, [496] = {.lex_state = 79}, [497] = {.lex_state = 79}, - [498] = {.lex_state = 79}, + [498] = {.lex_state = 237}, [499] = {.lex_state = 79}, [500] = {.lex_state = 79}, - [501] = {.lex_state = 79}, - [502] = {.lex_state = 79}, + [501] = {.lex_state = 237}, + [502] = {.lex_state = 237}, [503] = {.lex_state = 79}, [504] = {.lex_state = 79}, [505] = {.lex_state = 79}, [506] = {.lex_state = 79}, [507] = {.lex_state = 79}, [508] = {.lex_state = 79}, - [509] = {.lex_state = 79}, + [509] = {.lex_state = 237}, [510] = {.lex_state = 79}, [511] = {.lex_state = 79}, [512] = {.lex_state = 79}, - [513] = {.lex_state = 79}, - [514] = {.lex_state = 79}, + [513] = {.lex_state = 237}, + [514] = {.lex_state = 237}, [515] = {.lex_state = 79}, [516] = {.lex_state = 79}, - [517] = {.lex_state = 79}, + [517] = {.lex_state = 237}, [518] = {.lex_state = 79}, [519] = {.lex_state = 79}, [520] = {.lex_state = 79}, @@ -18270,26 +15235,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [524] = {.lex_state = 79}, [525] = {.lex_state = 79}, [526] = {.lex_state = 79}, - [527] = {.lex_state = 247}, - [528] = {.lex_state = 79}, + [527] = {.lex_state = 79}, + [528] = {.lex_state = 237}, [529] = {.lex_state = 79}, [530] = {.lex_state = 79}, - [531] = {.lex_state = 79}, + [531] = {.lex_state = 237}, [532] = {.lex_state = 79}, - [533] = {.lex_state = 79}, + [533] = {.lex_state = 237}, [534] = {.lex_state = 79}, [535] = {.lex_state = 79}, [536] = {.lex_state = 79}, [537] = {.lex_state = 79}, [538] = {.lex_state = 79}, [539] = {.lex_state = 79}, - [540] = {.lex_state = 247}, + [540] = {.lex_state = 79}, [541] = {.lex_state = 79}, [542] = {.lex_state = 79}, [543] = {.lex_state = 79}, [544] = {.lex_state = 79}, [545] = {.lex_state = 79}, - [546] = {.lex_state = 79}, + [546] = {.lex_state = 237}, [547] = {.lex_state = 79}, [548] = {.lex_state = 79}, [549] = {.lex_state = 79}, @@ -18299,137 +15264,137 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [553] = {.lex_state = 79}, [554] = {.lex_state = 79}, [555] = {.lex_state = 79}, - [556] = {.lex_state = 247}, - [557] = {.lex_state = 247}, + [556] = {.lex_state = 79}, + [557] = {.lex_state = 79}, [558] = {.lex_state = 79}, [559] = {.lex_state = 79}, [560] = {.lex_state = 79}, [561] = {.lex_state = 79}, [562] = {.lex_state = 79}, [563] = {.lex_state = 79}, - [564] = {.lex_state = 79}, - [565] = {.lex_state = 247}, - [566] = {.lex_state = 247}, + [564] = {.lex_state = 237}, + [565] = {.lex_state = 79}, + [566] = {.lex_state = 79}, [567] = {.lex_state = 79}, [568] = {.lex_state = 79}, - [569] = {.lex_state = 79}, + [569] = {.lex_state = 237}, [570] = {.lex_state = 79}, [571] = {.lex_state = 79}, [572] = {.lex_state = 79}, - [573] = {.lex_state = 79}, - [574] = {.lex_state = 79}, + [573] = {.lex_state = 237}, + [574] = {.lex_state = 237}, [575] = {.lex_state = 79}, [576] = {.lex_state = 79}, - [577] = {.lex_state = 79}, + [577] = {.lex_state = 237}, [578] = {.lex_state = 79}, [579] = {.lex_state = 79}, [580] = {.lex_state = 79}, - [581] = {.lex_state = 79}, - [582] = {.lex_state = 79}, - [583] = {.lex_state = 79}, + [581] = {.lex_state = 237}, + [582] = {.lex_state = 237}, + [583] = {.lex_state = 237}, [584] = {.lex_state = 79}, [585] = {.lex_state = 79}, [586] = {.lex_state = 79}, [587] = {.lex_state = 79}, [588] = {.lex_state = 79}, - [589] = {.lex_state = 247}, + [589] = {.lex_state = 79}, [590] = {.lex_state = 79}, - [591] = {.lex_state = 79}, + [591] = {.lex_state = 237}, [592] = {.lex_state = 79}, - [593] = {.lex_state = 79}, + [593] = {.lex_state = 237}, [594] = {.lex_state = 79}, [595] = {.lex_state = 79}, - [596] = {.lex_state = 247}, + [596] = {.lex_state = 79}, [597] = {.lex_state = 79}, [598] = {.lex_state = 79}, [599] = {.lex_state = 79}, - [600] = {.lex_state = 247}, - [601] = {.lex_state = 247}, - [602] = {.lex_state = 247}, + [600] = {.lex_state = 79}, + [601] = {.lex_state = 79}, + [602] = {.lex_state = 79}, [603] = {.lex_state = 79}, - [604] = {.lex_state = 247}, + [604] = {.lex_state = 79}, [605] = {.lex_state = 79}, - [606] = {.lex_state = 79}, + [606] = {.lex_state = 237}, [607] = {.lex_state = 79}, [608] = {.lex_state = 79}, [609] = {.lex_state = 79}, [610] = {.lex_state = 79}, [611] = {.lex_state = 79}, [612] = {.lex_state = 79}, - [613] = {.lex_state = 79}, + [613] = {.lex_state = 237}, [614] = {.lex_state = 79}, [615] = {.lex_state = 79}, - [616] = {.lex_state = 79}, - [617] = {.lex_state = 79}, - [618] = {.lex_state = 79}, + [616] = {.lex_state = 237}, + [617] = {.lex_state = 237}, + [618] = {.lex_state = 237}, [619] = {.lex_state = 79}, - [620] = {.lex_state = 247}, - [621] = {.lex_state = 79}, + [620] = {.lex_state = 79}, + [621] = {.lex_state = 237}, [622] = {.lex_state = 79}, - [623] = {.lex_state = 247}, + [623] = {.lex_state = 79}, [624] = {.lex_state = 79}, [625] = {.lex_state = 79}, [626] = {.lex_state = 79}, [627] = {.lex_state = 79}, - [628] = {.lex_state = 247}, + [628] = {.lex_state = 79}, [629] = {.lex_state = 79}, [630] = {.lex_state = 79}, - [631] = {.lex_state = 247}, + [631] = {.lex_state = 79}, [632] = {.lex_state = 79}, [633] = {.lex_state = 79}, [634] = {.lex_state = 79}, [635] = {.lex_state = 79}, [636] = {.lex_state = 79}, [637] = {.lex_state = 79}, - [638] = {.lex_state = 79}, + [638] = {.lex_state = 237}, [639] = {.lex_state = 79}, [640] = {.lex_state = 79}, [641] = {.lex_state = 79}, [642] = {.lex_state = 79}, [643] = {.lex_state = 79}, - [644] = {.lex_state = 79}, + [644] = {.lex_state = 237}, [645] = {.lex_state = 79}, - [646] = {.lex_state = 79}, - [647] = {.lex_state = 79}, + [646] = {.lex_state = 237}, + [647] = {.lex_state = 237}, [648] = {.lex_state = 79}, - [649] = {.lex_state = 79}, + [649] = {.lex_state = 237}, [650] = {.lex_state = 79}, [651] = {.lex_state = 79}, - [652] = {.lex_state = 247}, - [653] = {.lex_state = 247}, - [654] = {.lex_state = 247}, + [652] = {.lex_state = 237}, + [653] = {.lex_state = 79}, + [654] = {.lex_state = 79}, [655] = {.lex_state = 79}, - [656] = {.lex_state = 247}, + [656] = {.lex_state = 237}, [657] = {.lex_state = 79}, - [658] = {.lex_state = 247}, + [658] = {.lex_state = 79}, [659] = {.lex_state = 79}, - [660] = {.lex_state = 247}, - [661] = {.lex_state = 247}, + [660] = {.lex_state = 79}, + [661] = {.lex_state = 79}, [662] = {.lex_state = 79}, [663] = {.lex_state = 79}, [664] = {.lex_state = 79}, [665] = {.lex_state = 79}, [666] = {.lex_state = 79}, [667] = {.lex_state = 79}, - [668] = {.lex_state = 247}, + [668] = {.lex_state = 79}, [669] = {.lex_state = 79}, - [670] = {.lex_state = 79}, - [671] = {.lex_state = 79}, - [672] = {.lex_state = 247}, + [670] = {.lex_state = 237}, + [671] = {.lex_state = 237}, + [672] = {.lex_state = 79}, [673] = {.lex_state = 79}, - [674] = {.lex_state = 247}, - [675] = {.lex_state = 79}, - [676] = {.lex_state = 247}, - [677] = {.lex_state = 247}, - [678] = {.lex_state = 247}, - [679] = {.lex_state = 247}, - [680] = {.lex_state = 247}, - [681] = {.lex_state = 79}, + [674] = {.lex_state = 79}, + [675] = {.lex_state = 237}, + [676] = {.lex_state = 79}, + [677] = {.lex_state = 79}, + [678] = {.lex_state = 79}, + [679] = {.lex_state = 79}, + [680] = {.lex_state = 237}, + [681] = {.lex_state = 237}, [682] = {.lex_state = 79}, [683] = {.lex_state = 79}, - [684] = {.lex_state = 79}, - [685] = {.lex_state = 79}, - [686] = {.lex_state = 247}, + [684] = {.lex_state = 237}, + [685] = {.lex_state = 237}, + [686] = {.lex_state = 79}, [687] = {.lex_state = 79}, [688] = {.lex_state = 79}, [689] = {.lex_state = 79}, @@ -18439,29 +15404,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [693] = {.lex_state = 79}, [694] = {.lex_state = 79}, [695] = {.lex_state = 79}, - [696] = {.lex_state = 247}, - [697] = {.lex_state = 79}, - [698] = {.lex_state = 79}, - [699] = {.lex_state = 79}, - [700] = {.lex_state = 79}, + [696] = {.lex_state = 237}, + [697] = {.lex_state = 237}, + [698] = {.lex_state = 237}, + [699] = {.lex_state = 237}, + [700] = {.lex_state = 237}, [701] = {.lex_state = 79}, - [702] = {.lex_state = 79}, - [703] = {.lex_state = 79}, + [702] = {.lex_state = 237}, + [703] = {.lex_state = 237}, [704] = {.lex_state = 79}, [705] = {.lex_state = 79}, - [706] = {.lex_state = 247}, - [707] = {.lex_state = 79}, + [706] = {.lex_state = 79}, + [707] = {.lex_state = 237}, [708] = {.lex_state = 79}, [709] = {.lex_state = 79}, [710] = {.lex_state = 79}, - [711] = {.lex_state = 247}, + [711] = {.lex_state = 79}, [712] = {.lex_state = 79}, [713] = {.lex_state = 79}, - [714] = {.lex_state = 79}, + [714] = {.lex_state = 237}, [715] = {.lex_state = 79}, - [716] = {.lex_state = 247}, + [716] = {.lex_state = 79}, [717] = {.lex_state = 79}, - [718] = {.lex_state = 247}, + [718] = {.lex_state = 79}, [719] = {.lex_state = 79}, [720] = {.lex_state = 79}, [721] = {.lex_state = 79}, @@ -18469,13 +15434,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [723] = {.lex_state = 79}, [724] = {.lex_state = 79}, [725] = {.lex_state = 79}, - [726] = {.lex_state = 247}, + [726] = {.lex_state = 79}, [727] = {.lex_state = 79}, [728] = {.lex_state = 79}, [729] = {.lex_state = 79}, [730] = {.lex_state = 79}, [731] = {.lex_state = 79}, - [732] = {.lex_state = 247}, + [732] = {.lex_state = 79}, [733] = {.lex_state = 79}, [734] = {.lex_state = 79}, [735] = {.lex_state = 79}, @@ -18484,67 +15449,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [738] = {.lex_state = 79}, [739] = {.lex_state = 79}, [740] = {.lex_state = 79}, - [741] = {.lex_state = 247}, + [741] = {.lex_state = 79}, [742] = {.lex_state = 79}, [743] = {.lex_state = 79}, [744] = {.lex_state = 79}, [745] = {.lex_state = 79}, - [746] = {.lex_state = 79}, + [746] = {.lex_state = 237}, [747] = {.lex_state = 79}, [748] = {.lex_state = 79}, - [749] = {.lex_state = 247}, - [750] = {.lex_state = 247}, + [749] = {.lex_state = 79}, + [750] = {.lex_state = 237}, [751] = {.lex_state = 79}, [752] = {.lex_state = 79}, [753] = {.lex_state = 79}, - [754] = {.lex_state = 247}, + [754] = {.lex_state = 79}, [755] = {.lex_state = 79}, [756] = {.lex_state = 79}, [757] = {.lex_state = 79}, - [758] = {.lex_state = 247}, - [759] = {.lex_state = 247}, - [760] = {.lex_state = 79}, - [761] = {.lex_state = 247}, + [758] = {.lex_state = 79}, + [759] = {.lex_state = 79}, + [760] = {.lex_state = 237}, + [761] = {.lex_state = 79}, [762] = {.lex_state = 79}, [763] = {.lex_state = 79}, - [764] = {.lex_state = 79}, + [764] = {.lex_state = 237}, [765] = {.lex_state = 79}, - [766] = {.lex_state = 247}, + [766] = {.lex_state = 79}, [767] = {.lex_state = 79}, [768] = {.lex_state = 79}, - [769] = {.lex_state = 247}, + [769] = {.lex_state = 79}, [770] = {.lex_state = 79}, - [771] = {.lex_state = 79}, + [771] = {.lex_state = 237}, [772] = {.lex_state = 79}, [773] = {.lex_state = 79}, [774] = {.lex_state = 79}, [775] = {.lex_state = 79}, [776] = {.lex_state = 79}, - [777] = {.lex_state = 247}, - [778] = {.lex_state = 247}, + [777] = {.lex_state = 237}, + [778] = {.lex_state = 237}, [779] = {.lex_state = 79}, - [780] = {.lex_state = 79}, + [780] = {.lex_state = 237}, [781] = {.lex_state = 79}, [782] = {.lex_state = 79}, [783] = {.lex_state = 79}, [784] = {.lex_state = 79}, - [785] = {.lex_state = 79}, + [785] = {.lex_state = 237}, [786] = {.lex_state = 79}, [787] = {.lex_state = 79}, - [788] = {.lex_state = 79}, + [788] = {.lex_state = 237}, [789] = {.lex_state = 79}, [790] = {.lex_state = 79}, [791] = {.lex_state = 79}, [792] = {.lex_state = 79}, - [793] = {.lex_state = 79}, + [793] = {.lex_state = 237}, [794] = {.lex_state = 79}, [795] = {.lex_state = 79}, - [796] = {.lex_state = 79}, - [797] = {.lex_state = 79}, + [796] = {.lex_state = 237}, + [797] = {.lex_state = 237}, [798] = {.lex_state = 79}, [799] = {.lex_state = 79}, [800] = {.lex_state = 79}, - [801] = {.lex_state = 79}, + [801] = {.lex_state = 237}, [802] = {.lex_state = 79}, [803] = {.lex_state = 79}, [804] = {.lex_state = 79}, @@ -18552,91 +15517,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [806] = {.lex_state = 79}, [807] = {.lex_state = 79}, [808] = {.lex_state = 79}, - [809] = {.lex_state = 247}, - [810] = {.lex_state = 247}, + [809] = {.lex_state = 79}, + [810] = {.lex_state = 79}, [811] = {.lex_state = 79}, - [812] = {.lex_state = 247}, - [813] = {.lex_state = 247}, - [814] = {.lex_state = 79}, + [812] = {.lex_state = 79}, + [813] = {.lex_state = 79}, + [814] = {.lex_state = 237}, [815] = {.lex_state = 79}, [816] = {.lex_state = 79}, [817] = {.lex_state = 79}, [818] = {.lex_state = 79}, [819] = {.lex_state = 79}, [820] = {.lex_state = 79}, - [821] = {.lex_state = 79}, + [821] = {.lex_state = 237}, [822] = {.lex_state = 79}, [823] = {.lex_state = 79}, - [824] = {.lex_state = 247}, - [825] = {.lex_state = 79}, - [826] = {.lex_state = 79}, + [824] = {.lex_state = 79}, + [825] = {.lex_state = 237}, + [826] = {.lex_state = 237}, [827] = {.lex_state = 79}, - [828] = {.lex_state = 247}, + [828] = {.lex_state = 79}, [829] = {.lex_state = 79}, [830] = {.lex_state = 79}, [831] = {.lex_state = 79}, - [832] = {.lex_state = 79}, + [832] = {.lex_state = 237}, [833] = {.lex_state = 79}, - [834] = {.lex_state = 247}, + [834] = {.lex_state = 79}, [835] = {.lex_state = 79}, - [836] = {.lex_state = 247}, + [836] = {.lex_state = 79}, [837] = {.lex_state = 79}, [838] = {.lex_state = 79}, [839] = {.lex_state = 79}, - [840] = {.lex_state = 247}, + [840] = {.lex_state = 79}, [841] = {.lex_state = 79}, [842] = {.lex_state = 79}, [843] = {.lex_state = 79}, [844] = {.lex_state = 79}, - [845] = {.lex_state = 79}, + [845] = {.lex_state = 237}, [846] = {.lex_state = 79}, [847] = {.lex_state = 79}, [848] = {.lex_state = 79}, [849] = {.lex_state = 79}, [850] = {.lex_state = 79}, - [851] = {.lex_state = 247}, - [852] = {.lex_state = 247}, - [853] = {.lex_state = 247}, - [854] = {.lex_state = 247}, + [851] = {.lex_state = 79}, + [852] = {.lex_state = 237}, + [853] = {.lex_state = 79}, + [854] = {.lex_state = 79}, [855] = {.lex_state = 79}, [856] = {.lex_state = 79}, [857] = {.lex_state = 79}, [858] = {.lex_state = 79}, - [859] = {.lex_state = 247}, + [859] = {.lex_state = 79}, [860] = {.lex_state = 79}, - [861] = {.lex_state = 247}, + [861] = {.lex_state = 79}, [862] = {.lex_state = 79}, [863] = {.lex_state = 79}, [864] = {.lex_state = 79}, - [865] = {.lex_state = 247}, + [865] = {.lex_state = 79}, [866] = {.lex_state = 79}, - [867] = {.lex_state = 247}, + [867] = {.lex_state = 79}, [868] = {.lex_state = 79}, [869] = {.lex_state = 79}, - [870] = {.lex_state = 79}, - [871] = {.lex_state = 79}, - [872] = {.lex_state = 247}, + [870] = {.lex_state = 237}, + [871] = {.lex_state = 237}, + [872] = {.lex_state = 79}, [873] = {.lex_state = 79}, [874] = {.lex_state = 79}, [875] = {.lex_state = 79}, - [876] = {.lex_state = 247}, - [877] = {.lex_state = 247}, - [878] = {.lex_state = 247}, - [879] = {.lex_state = 247}, + [876] = {.lex_state = 79}, + [877] = {.lex_state = 79}, + [878] = {.lex_state = 237}, + [879] = {.lex_state = 79}, [880] = {.lex_state = 79}, [881] = {.lex_state = 79}, [882] = {.lex_state = 79}, - [883] = {.lex_state = 247}, - [884] = {.lex_state = 79}, + [883] = {.lex_state = 79}, + [884] = {.lex_state = 237}, [885] = {.lex_state = 79}, - [886] = {.lex_state = 79}, + [886] = {.lex_state = 237}, [887] = {.lex_state = 79}, - [888] = {.lex_state = 79}, + [888] = {.lex_state = 237}, [889] = {.lex_state = 79}, [890] = {.lex_state = 79}, [891] = {.lex_state = 79}, [892] = {.lex_state = 79}, - [893] = {.lex_state = 247}, + [893] = {.lex_state = 79}, [894] = {.lex_state = 79}, [895] = {.lex_state = 79}, [896] = {.lex_state = 79}, @@ -18644,243 +15609,243 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [898] = {.lex_state = 79}, [899] = {.lex_state = 79}, [900] = {.lex_state = 79}, - [901] = {.lex_state = 79}, + [901] = {.lex_state = 237}, [902] = {.lex_state = 79}, [903] = {.lex_state = 79}, - [904] = {.lex_state = 79}, - [905] = {.lex_state = 247}, + [904] = {.lex_state = 237}, + [905] = {.lex_state = 237}, [906] = {.lex_state = 79}, - [907] = {.lex_state = 79}, + [907] = {.lex_state = 237}, [908] = {.lex_state = 79}, [909] = {.lex_state = 79}, [910] = {.lex_state = 79}, - [911] = {.lex_state = 79}, + [911] = {.lex_state = 237}, [912] = {.lex_state = 79}, [913] = {.lex_state = 79}, - [914] = {.lex_state = 247}, - [915] = {.lex_state = 247}, + [914] = {.lex_state = 79}, + [915] = {.lex_state = 79}, [916] = {.lex_state = 79}, [917] = {.lex_state = 79}, [918] = {.lex_state = 79}, [919] = {.lex_state = 79}, - [920] = {.lex_state = 247}, + [920] = {.lex_state = 237}, [921] = {.lex_state = 79}, - [922] = {.lex_state = 247}, - [923] = {.lex_state = 247}, + [922] = {.lex_state = 237}, + [923] = {.lex_state = 79}, [924] = {.lex_state = 79}, - [925] = {.lex_state = 247}, + [925] = {.lex_state = 79}, [926] = {.lex_state = 79}, - [927] = {.lex_state = 247}, + [927] = {.lex_state = 79}, [928] = {.lex_state = 79}, [929] = {.lex_state = 79}, [930] = {.lex_state = 79}, - [931] = {.lex_state = 247}, + [931] = {.lex_state = 79}, [932] = {.lex_state = 79}, - [933] = {.lex_state = 247}, - [934] = {.lex_state = 247}, + [933] = {.lex_state = 79}, + [934] = {.lex_state = 79}, [935] = {.lex_state = 79}, - [936] = {.lex_state = 79}, + [936] = {.lex_state = 237}, [937] = {.lex_state = 79}, [938] = {.lex_state = 79}, [939] = {.lex_state = 79}, [940] = {.lex_state = 79}, - [941] = {.lex_state = 247}, + [941] = {.lex_state = 79}, [942] = {.lex_state = 79}, - [943] = {.lex_state = 247}, + [943] = {.lex_state = 79}, [944] = {.lex_state = 79}, - [945] = {.lex_state = 247}, - [946] = {.lex_state = 247}, - [947] = {.lex_state = 247}, + [945] = {.lex_state = 79}, + [946] = {.lex_state = 79}, + [947] = {.lex_state = 79}, [948] = {.lex_state = 79}, [949] = {.lex_state = 79}, [950] = {.lex_state = 79}, [951] = {.lex_state = 79}, [952] = {.lex_state = 79}, [953] = {.lex_state = 79}, - [954] = {.lex_state = 79}, - [955] = {.lex_state = 79}, + [954] = {.lex_state = 237}, + [955] = {.lex_state = 237}, [956] = {.lex_state = 79}, [957] = {.lex_state = 79}, - [958] = {.lex_state = 79}, + [958] = {.lex_state = 237}, [959] = {.lex_state = 79}, [960] = {.lex_state = 79}, [961] = {.lex_state = 79}, [962] = {.lex_state = 79}, [963] = {.lex_state = 79}, - [964] = {.lex_state = 79}, + [964] = {.lex_state = 237}, [965] = {.lex_state = 79}, [966] = {.lex_state = 79}, [967] = {.lex_state = 79}, - [968] = {.lex_state = 79}, + [968] = {.lex_state = 237}, [969] = {.lex_state = 79}, [970] = {.lex_state = 79}, - [971] = {.lex_state = 2}, - [972] = {.lex_state = 2}, + [971] = {.lex_state = 79}, + [972] = {.lex_state = 79}, [973] = {.lex_state = 2}, [974] = {.lex_state = 2}, [975] = {.lex_state = 2}, [976] = {.lex_state = 2}, - [977] = {.lex_state = 249}, - [978] = {.lex_state = 249}, - [979] = {.lex_state = 249}, - [980] = {.lex_state = 249}, - [981] = {.lex_state = 249}, - [982] = {.lex_state = 249}, - [983] = {.lex_state = 249}, - [984] = {.lex_state = 249}, - [985] = {.lex_state = 249}, - [986] = {.lex_state = 249}, - [987] = {.lex_state = 249}, - [988] = {.lex_state = 249}, - [989] = {.lex_state = 249}, - [990] = {.lex_state = 249}, - [991] = {.lex_state = 249}, - [992] = {.lex_state = 249}, - [993] = {.lex_state = 249}, - [994] = {.lex_state = 249}, - [995] = {.lex_state = 249}, - [996] = {.lex_state = 249}, - [997] = {.lex_state = 249}, - [998] = {.lex_state = 249}, - [999] = {.lex_state = 249}, - [1000] = {.lex_state = 249}, - [1001] = {.lex_state = 249}, - [1002] = {.lex_state = 249}, - [1003] = {.lex_state = 249}, - [1004] = {.lex_state = 249}, - [1005] = {.lex_state = 249}, - [1006] = {.lex_state = 253}, - [1007] = {.lex_state = 249}, - [1008] = {.lex_state = 253}, - [1009] = {.lex_state = 37}, - [1010] = {.lex_state = 37}, - [1011] = {.lex_state = 253}, - [1012] = {.lex_state = 249}, - [1013] = {.lex_state = 37}, - [1014] = {.lex_state = 249}, - [1015] = {.lex_state = 253}, + [977] = {.lex_state = 2}, + [978] = {.lex_state = 2}, + [979] = {.lex_state = 239}, + [980] = {.lex_state = 239}, + [981] = {.lex_state = 239}, + [982] = {.lex_state = 239}, + [983] = {.lex_state = 239}, + [984] = {.lex_state = 239}, + [985] = {.lex_state = 239}, + [986] = {.lex_state = 239}, + [987] = {.lex_state = 239}, + [988] = {.lex_state = 239}, + [989] = {.lex_state = 239}, + [990] = {.lex_state = 239}, + [991] = {.lex_state = 239}, + [992] = {.lex_state = 239}, + [993] = {.lex_state = 239}, + [994] = {.lex_state = 239}, + [995] = {.lex_state = 239}, + [996] = {.lex_state = 239}, + [997] = {.lex_state = 239}, + [998] = {.lex_state = 239}, + [999] = {.lex_state = 239}, + [1000] = {.lex_state = 239}, + [1001] = {.lex_state = 239}, + [1002] = {.lex_state = 239}, + [1003] = {.lex_state = 239}, + [1004] = {.lex_state = 239}, + [1005] = {.lex_state = 239}, + [1006] = {.lex_state = 239}, + [1007] = {.lex_state = 239}, + [1008] = {.lex_state = 37}, + [1009] = {.lex_state = 239}, + [1010] = {.lex_state = 239}, + [1011] = {.lex_state = 37}, + [1012] = {.lex_state = 37}, + [1013] = {.lex_state = 243}, + [1014] = {.lex_state = 37}, + [1015] = {.lex_state = 243}, [1016] = {.lex_state = 37}, - [1017] = {.lex_state = 37}, - [1018] = {.lex_state = 249}, - [1019] = {.lex_state = 249}, - [1020] = {.lex_state = 249}, - [1021] = {.lex_state = 249}, - [1022] = {.lex_state = 249}, - [1023] = {.lex_state = 249}, - [1024] = {.lex_state = 249}, - [1025] = {.lex_state = 249}, - [1026] = {.lex_state = 249}, - [1027] = {.lex_state = 249}, - [1028] = {.lex_state = 249}, - [1029] = {.lex_state = 249}, - [1030] = {.lex_state = 249}, - [1031] = {.lex_state = 249}, - [1032] = {.lex_state = 249}, - [1033] = {.lex_state = 249}, - [1034] = {.lex_state = 249}, - [1035] = {.lex_state = 249}, - [1036] = {.lex_state = 249}, - [1037] = {.lex_state = 249}, - [1038] = {.lex_state = 249}, - [1039] = {.lex_state = 249}, - [1040] = {.lex_state = 249}, - [1041] = {.lex_state = 249}, - [1042] = {.lex_state = 249}, - [1043] = {.lex_state = 249}, - [1044] = {.lex_state = 249}, - [1045] = {.lex_state = 249}, - [1046] = {.lex_state = 249}, - [1047] = {.lex_state = 249}, - [1048] = {.lex_state = 249}, - [1049] = {.lex_state = 249}, - [1050] = {.lex_state = 249}, - [1051] = {.lex_state = 249}, - [1052] = {.lex_state = 249}, - [1053] = {.lex_state = 249}, - [1054] = {.lex_state = 249}, - [1055] = {.lex_state = 249}, - [1056] = {.lex_state = 249}, - [1057] = {.lex_state = 249}, - [1058] = {.lex_state = 249}, - [1059] = {.lex_state = 249}, - [1060] = {.lex_state = 249}, - [1061] = {.lex_state = 249}, - [1062] = {.lex_state = 249}, - [1063] = {.lex_state = 249}, - [1064] = {.lex_state = 249}, - [1065] = {.lex_state = 249}, - [1066] = {.lex_state = 249}, - [1067] = {.lex_state = 249}, - [1068] = {.lex_state = 249}, - [1069] = {.lex_state = 249}, - [1070] = {.lex_state = 249}, - [1071] = {.lex_state = 249}, - [1072] = {.lex_state = 249}, - [1073] = {.lex_state = 249}, - [1074] = {.lex_state = 249}, - [1075] = {.lex_state = 249}, - [1076] = {.lex_state = 249}, - [1077] = {.lex_state = 249}, - [1078] = {.lex_state = 249}, - [1079] = {.lex_state = 249}, - [1080] = {.lex_state = 249}, - [1081] = {.lex_state = 249}, - [1082] = {.lex_state = 249}, - [1083] = {.lex_state = 249}, - [1084] = {.lex_state = 249}, - [1085] = {.lex_state = 249}, - [1086] = {.lex_state = 249}, - [1087] = {.lex_state = 249}, - [1088] = {.lex_state = 249}, - [1089] = {.lex_state = 249}, - [1090] = {.lex_state = 249}, - [1091] = {.lex_state = 249}, - [1092] = {.lex_state = 249}, - [1093] = {.lex_state = 249}, - [1094] = {.lex_state = 249}, - [1095] = {.lex_state = 249}, - [1096] = {.lex_state = 249}, - [1097] = {.lex_state = 249}, - [1098] = {.lex_state = 249}, - [1099] = {.lex_state = 249}, - [1100] = {.lex_state = 249}, - [1101] = {.lex_state = 249}, - [1102] = {.lex_state = 249}, - [1103] = {.lex_state = 249}, - [1104] = {.lex_state = 249}, - [1105] = {.lex_state = 249}, - [1106] = {.lex_state = 249}, - [1107] = {.lex_state = 249}, - [1108] = {.lex_state = 249}, - [1109] = {.lex_state = 249}, - [1110] = {.lex_state = 249}, - [1111] = {.lex_state = 249}, - [1112] = {.lex_state = 249}, - [1113] = {.lex_state = 249}, - [1114] = {.lex_state = 249}, - [1115] = {.lex_state = 249}, - [1116] = {.lex_state = 249}, - [1117] = {.lex_state = 249}, - [1118] = {.lex_state = 249}, - [1119] = {.lex_state = 249}, - [1120] = {.lex_state = 249}, - [1121] = {.lex_state = 249}, - [1122] = {.lex_state = 249}, - [1123] = {.lex_state = 249}, - [1124] = {.lex_state = 249}, - [1125] = {.lex_state = 256}, - [1126] = {.lex_state = 256}, - [1127] = {.lex_state = 256}, - [1128] = {.lex_state = 6}, - [1129] = {.lex_state = 6}, - [1130] = {.lex_state = 6}, - [1131] = {.lex_state = 255}, + [1017] = {.lex_state = 239}, + [1018] = {.lex_state = 243}, + [1019] = {.lex_state = 243}, + [1020] = {.lex_state = 239}, + [1021] = {.lex_state = 239}, + [1022] = {.lex_state = 239}, + [1023] = {.lex_state = 239}, + [1024] = {.lex_state = 239}, + [1025] = {.lex_state = 239}, + [1026] = {.lex_state = 239}, + [1027] = {.lex_state = 239}, + [1028] = {.lex_state = 239}, + [1029] = {.lex_state = 239}, + [1030] = {.lex_state = 239}, + [1031] = {.lex_state = 239}, + [1032] = {.lex_state = 239}, + [1033] = {.lex_state = 239}, + [1034] = {.lex_state = 239}, + [1035] = {.lex_state = 239}, + [1036] = {.lex_state = 239}, + [1037] = {.lex_state = 239}, + [1038] = {.lex_state = 239}, + [1039] = {.lex_state = 239}, + [1040] = {.lex_state = 239}, + [1041] = {.lex_state = 239}, + [1042] = {.lex_state = 239}, + [1043] = {.lex_state = 239}, + [1044] = {.lex_state = 239}, + [1045] = {.lex_state = 239}, + [1046] = {.lex_state = 239}, + [1047] = {.lex_state = 239}, + [1048] = {.lex_state = 239}, + [1049] = {.lex_state = 239}, + [1050] = {.lex_state = 239}, + [1051] = {.lex_state = 239}, + [1052] = {.lex_state = 239}, + [1053] = {.lex_state = 239}, + [1054] = {.lex_state = 239}, + [1055] = {.lex_state = 239}, + [1056] = {.lex_state = 239}, + [1057] = {.lex_state = 239}, + [1058] = {.lex_state = 239}, + [1059] = {.lex_state = 239}, + [1060] = {.lex_state = 239}, + [1061] = {.lex_state = 239}, + [1062] = {.lex_state = 239}, + [1063] = {.lex_state = 239}, + [1064] = {.lex_state = 239}, + [1065] = {.lex_state = 239}, + [1066] = {.lex_state = 239}, + [1067] = {.lex_state = 239}, + [1068] = {.lex_state = 239}, + [1069] = {.lex_state = 239}, + [1070] = {.lex_state = 239}, + [1071] = {.lex_state = 239}, + [1072] = {.lex_state = 239}, + [1073] = {.lex_state = 239}, + [1074] = {.lex_state = 239}, + [1075] = {.lex_state = 239}, + [1076] = {.lex_state = 239}, + [1077] = {.lex_state = 239}, + [1078] = {.lex_state = 239}, + [1079] = {.lex_state = 239}, + [1080] = {.lex_state = 239}, + [1081] = {.lex_state = 239}, + [1082] = {.lex_state = 239}, + [1083] = {.lex_state = 239}, + [1084] = {.lex_state = 239}, + [1085] = {.lex_state = 239}, + [1086] = {.lex_state = 239}, + [1087] = {.lex_state = 239}, + [1088] = {.lex_state = 239}, + [1089] = {.lex_state = 239}, + [1090] = {.lex_state = 239}, + [1091] = {.lex_state = 239}, + [1092] = {.lex_state = 239}, + [1093] = {.lex_state = 239}, + [1094] = {.lex_state = 239}, + [1095] = {.lex_state = 239}, + [1096] = {.lex_state = 239}, + [1097] = {.lex_state = 239}, + [1098] = {.lex_state = 239}, + [1099] = {.lex_state = 239}, + [1100] = {.lex_state = 239}, + [1101] = {.lex_state = 239}, + [1102] = {.lex_state = 239}, + [1103] = {.lex_state = 239}, + [1104] = {.lex_state = 239}, + [1105] = {.lex_state = 239}, + [1106] = {.lex_state = 239}, + [1107] = {.lex_state = 239}, + [1108] = {.lex_state = 239}, + [1109] = {.lex_state = 239}, + [1110] = {.lex_state = 239}, + [1111] = {.lex_state = 239}, + [1112] = {.lex_state = 239}, + [1113] = {.lex_state = 239}, + [1114] = {.lex_state = 239}, + [1115] = {.lex_state = 239}, + [1116] = {.lex_state = 239}, + [1117] = {.lex_state = 239}, + [1118] = {.lex_state = 239}, + [1119] = {.lex_state = 239}, + [1120] = {.lex_state = 239}, + [1121] = {.lex_state = 239}, + [1122] = {.lex_state = 239}, + [1123] = {.lex_state = 239}, + [1124] = {.lex_state = 239}, + [1125] = {.lex_state = 239}, + [1126] = {.lex_state = 239}, + [1127] = {.lex_state = 239}, + [1128] = {.lex_state = 239}, + [1129] = {.lex_state = 246}, + [1130] = {.lex_state = 246}, + [1131] = {.lex_state = 246}, [1132] = {.lex_state = 6}, [1133] = {.lex_state = 6}, - [1134] = {.lex_state = 2}, - [1135] = {.lex_state = 2}, - [1136] = {.lex_state = 2}, - [1137] = {.lex_state = 10}, + [1134] = {.lex_state = 6}, + [1135] = {.lex_state = 245}, + [1136] = {.lex_state = 6}, + [1137] = {.lex_state = 6}, [1138] = {.lex_state = 2}, [1139] = {.lex_state = 2}, [1140] = {.lex_state = 2}, @@ -18889,32 +15854,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1143] = {.lex_state = 2}, [1144] = {.lex_state = 2}, [1145] = {.lex_state = 2}, - [1146] = {.lex_state = 10}, - [1147] = {.lex_state = 2}, - [1148] = {.lex_state = 10}, + [1146] = {.lex_state = 2}, + [1147] = {.lex_state = 10}, + [1148] = {.lex_state = 2}, [1149] = {.lex_state = 2}, [1150] = {.lex_state = 2}, - [1151] = {.lex_state = 10}, - [1152] = {.lex_state = 2}, - [1153] = {.lex_state = 2}, + [1151] = {.lex_state = 2}, + [1152] = {.lex_state = 10}, + [1153] = {.lex_state = 10}, [1154] = {.lex_state = 2}, - [1155] = {.lex_state = 10}, + [1155] = {.lex_state = 2}, [1156] = {.lex_state = 2}, - [1157] = {.lex_state = 4}, - [1158] = {.lex_state = 4}, - [1159] = {.lex_state = 2}, + [1157] = {.lex_state = 10}, + [1158] = {.lex_state = 2}, + [1159] = {.lex_state = 10}, [1160] = {.lex_state = 4}, [1161] = {.lex_state = 4}, [1162] = {.lex_state = 2}, - [1163] = {.lex_state = 2}, + [1163] = {.lex_state = 4}, [1164] = {.lex_state = 2}, [1165] = {.lex_state = 2}, - [1166] = {.lex_state = 2}, + [1166] = {.lex_state = 4}, [1167] = {.lex_state = 2}, [1168] = {.lex_state = 2}, [1169] = {.lex_state = 2}, [1170] = {.lex_state = 2}, - [1171] = {.lex_state = 41}, + [1171] = {.lex_state = 2}, [1172] = {.lex_state = 2}, [1173] = {.lex_state = 2}, [1174] = {.lex_state = 2}, @@ -18933,7 +15898,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1187] = {.lex_state = 2}, [1188] = {.lex_state = 2}, [1189] = {.lex_state = 2}, - [1190] = {.lex_state = 45}, + [1190] = {.lex_state = 2}, [1191] = {.lex_state = 2}, [1192] = {.lex_state = 2}, [1193] = {.lex_state = 2}, @@ -18961,39 +15926,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1215] = {.lex_state = 2}, [1216] = {.lex_state = 2}, [1217] = {.lex_state = 2}, - [1218] = {.lex_state = 2}, + [1218] = {.lex_state = 41}, [1219] = {.lex_state = 2}, - [1220] = {.lex_state = 2}, + [1220] = {.lex_state = 41}, [1221] = {.lex_state = 2}, [1222] = {.lex_state = 2}, - [1223] = {.lex_state = 2}, + [1223] = {.lex_state = 41}, [1224] = {.lex_state = 2}, - [1225] = {.lex_state = 2}, + [1225] = {.lex_state = 41}, [1226] = {.lex_state = 2}, - [1227] = {.lex_state = 45}, + [1227] = {.lex_state = 43}, [1228] = {.lex_state = 2}, [1229] = {.lex_state = 2}, [1230] = {.lex_state = 2}, [1231] = {.lex_state = 2}, - [1232] = {.lex_state = 45}, + [1232] = {.lex_state = 2}, [1233] = {.lex_state = 2}, [1234] = {.lex_state = 2}, [1235] = {.lex_state = 2}, [1236] = {.lex_state = 2}, - [1237] = {.lex_state = 41}, + [1237] = {.lex_state = 2}, [1238] = {.lex_state = 2}, [1239] = {.lex_state = 2}, - [1240] = {.lex_state = 45}, + [1240] = {.lex_state = 2}, [1241] = {.lex_state = 2}, - [1242] = {.lex_state = 45}, + [1242] = {.lex_state = 2}, [1243] = {.lex_state = 2}, [1244] = {.lex_state = 2}, [1245] = {.lex_state = 2}, - [1246] = {.lex_state = 41}, - [1247] = {.lex_state = 41}, - [1248] = {.lex_state = 45}, + [1246] = {.lex_state = 2}, + [1247] = {.lex_state = 2}, + [1248] = {.lex_state = 2}, [1249] = {.lex_state = 2}, - [1250] = {.lex_state = 2}, + [1250] = {.lex_state = 41}, [1251] = {.lex_state = 2}, [1252] = {.lex_state = 2}, [1253] = {.lex_state = 2}, @@ -19002,19 +15967,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1256] = {.lex_state = 2}, [1257] = {.lex_state = 2}, [1258] = {.lex_state = 2}, - [1259] = {.lex_state = 2}, + [1259] = {.lex_state = 43}, [1260] = {.lex_state = 2}, [1261] = {.lex_state = 2}, [1262] = {.lex_state = 2}, [1263] = {.lex_state = 2}, [1264] = {.lex_state = 2}, - [1265] = {.lex_state = 41}, - [1266] = {.lex_state = 2}, - [1267] = {.lex_state = 2}, + [1265] = {.lex_state = 2}, + [1266] = {.lex_state = 43}, + [1267] = {.lex_state = 43}, [1268] = {.lex_state = 2}, [1269] = {.lex_state = 2}, [1270] = {.lex_state = 2}, - [1271] = {.lex_state = 2}, + [1271] = {.lex_state = 43}, [1272] = {.lex_state = 2}, [1273] = {.lex_state = 2}, [1274] = {.lex_state = 2}, @@ -19025,23 +15990,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1279] = {.lex_state = 2}, [1280] = {.lex_state = 2}, [1281] = {.lex_state = 2}, - [1282] = {.lex_state = 37}, - [1283] = {.lex_state = 45}, + [1282] = {.lex_state = 2}, + [1283] = {.lex_state = 2}, [1284] = {.lex_state = 2}, [1285] = {.lex_state = 2}, - [1286] = {.lex_state = 37}, - [1287] = {.lex_state = 37}, - [1288] = {.lex_state = 37}, + [1286] = {.lex_state = 41}, + [1287] = {.lex_state = 2}, + [1288] = {.lex_state = 2}, [1289] = {.lex_state = 37}, [1290] = {.lex_state = 37}, - [1291] = {.lex_state = 37}, - [1292] = {.lex_state = 37}, + [1291] = {.lex_state = 41}, + [1292] = {.lex_state = 2}, [1293] = {.lex_state = 37}, [1294] = {.lex_state = 37}, [1295] = {.lex_state = 37}, - [1296] = {.lex_state = 39}, + [1296] = {.lex_state = 37}, [1297] = {.lex_state = 37}, - [1298] = {.lex_state = 39}, + [1298] = {.lex_state = 37}, [1299] = {.lex_state = 39}, [1300] = {.lex_state = 37}, [1301] = {.lex_state = 37}, @@ -19052,9 +16017,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1306] = {.lex_state = 37}, [1307] = {.lex_state = 37}, [1308] = {.lex_state = 37}, - [1309] = {.lex_state = 37}, - [1310] = {.lex_state = 39}, - [1311] = {.lex_state = 37}, + [1309] = {.lex_state = 39}, + [1310] = {.lex_state = 37}, + [1311] = {.lex_state = 39}, [1312] = {.lex_state = 37}, [1313] = {.lex_state = 37}, [1314] = {.lex_state = 37}, @@ -19072,7 +16037,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1326] = {.lex_state = 37}, [1327] = {.lex_state = 37}, [1328] = {.lex_state = 37}, - [1329] = {.lex_state = 37}, + [1329] = {.lex_state = 39}, [1330] = {.lex_state = 37}, [1331] = {.lex_state = 37}, [1332] = {.lex_state = 37}, @@ -19165,296 +16130,296 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1419] = {.lex_state = 37}, [1420] = {.lex_state = 37}, [1421] = {.lex_state = 37}, - [1422] = {.lex_state = 14}, + [1422] = {.lex_state = 37}, [1423] = {.lex_state = 37}, [1424] = {.lex_state = 37}, - [1425] = {.lex_state = 14}, - [1426] = {.lex_state = 14}, - [1427] = {.lex_state = 14}, - [1428] = {.lex_state = 14}, + [1425] = {.lex_state = 37}, + [1426] = {.lex_state = 37}, + [1427] = {.lex_state = 37}, + [1428] = {.lex_state = 37}, [1429] = {.lex_state = 37}, - [1430] = {.lex_state = 37}, + [1430] = {.lex_state = 14}, [1431] = {.lex_state = 37}, - [1432] = {.lex_state = 49}, - [1433] = {.lex_state = 49}, - [1434] = {.lex_state = 49}, - [1435] = {.lex_state = 257}, - [1436] = {.lex_state = 256}, - [1437] = {.lex_state = 256}, - [1438] = {.lex_state = 256}, - [1439] = {.lex_state = 257}, - [1440] = {.lex_state = 256}, - [1441] = {.lex_state = 256}, - [1442] = {.lex_state = 14}, - [1443] = {.lex_state = 256}, - [1444] = {.lex_state = 256}, - [1445] = {.lex_state = 257}, - [1446] = {.lex_state = 257}, - [1447] = {.lex_state = 49}, - [1448] = {.lex_state = 256}, - [1449] = {.lex_state = 256}, - [1450] = {.lex_state = 256}, - [1451] = {.lex_state = 256}, - [1452] = {.lex_state = 256}, - [1453] = {.lex_state = 256}, - [1454] = {.lex_state = 256}, - [1455] = {.lex_state = 256}, - [1456] = {.lex_state = 256}, - [1457] = {.lex_state = 256}, - [1458] = {.lex_state = 256}, - [1459] = {.lex_state = 14}, - [1460] = {.lex_state = 14}, - [1461] = {.lex_state = 256}, - [1462] = {.lex_state = 14}, - [1463] = {.lex_state = 256}, - [1464] = {.lex_state = 14}, - [1465] = {.lex_state = 256}, - [1466] = {.lex_state = 256}, - [1467] = {.lex_state = 256}, - [1468] = {.lex_state = 256}, - [1469] = {.lex_state = 256}, - [1470] = {.lex_state = 256}, - [1471] = {.lex_state = 256}, - [1472] = {.lex_state = 256}, - [1473] = {.lex_state = 256}, - [1474] = {.lex_state = 256}, - [1475] = {.lex_state = 256}, - [1476] = {.lex_state = 256}, - [1477] = {.lex_state = 256}, - [1478] = {.lex_state = 256}, - [1479] = {.lex_state = 256}, - [1480] = {.lex_state = 256}, - [1481] = {.lex_state = 256}, - [1482] = {.lex_state = 256}, - [1483] = {.lex_state = 256}, - [1484] = {.lex_state = 256}, - [1485] = {.lex_state = 256}, - [1486] = {.lex_state = 256}, - [1487] = {.lex_state = 256}, - [1488] = {.lex_state = 256}, - [1489] = {.lex_state = 256}, - [1490] = {.lex_state = 256}, - [1491] = {.lex_state = 256}, - [1492] = {.lex_state = 256}, - [1493] = {.lex_state = 256}, - [1494] = {.lex_state = 256}, - [1495] = {.lex_state = 256}, - [1496] = {.lex_state = 256}, - [1497] = {.lex_state = 256}, - [1498] = {.lex_state = 256}, - [1499] = {.lex_state = 256}, - [1500] = {.lex_state = 256}, - [1501] = {.lex_state = 256}, - [1502] = {.lex_state = 256}, - [1503] = {.lex_state = 256}, - [1504] = {.lex_state = 256}, - [1505] = {.lex_state = 256}, - [1506] = {.lex_state = 256}, - [1507] = {.lex_state = 256}, - [1508] = {.lex_state = 256}, - [1509] = {.lex_state = 256}, - [1510] = {.lex_state = 256}, - [1511] = {.lex_state = 256}, - [1512] = {.lex_state = 256}, - [1513] = {.lex_state = 256}, - [1514] = {.lex_state = 256}, - [1515] = {.lex_state = 256}, - [1516] = {.lex_state = 256}, - [1517] = {.lex_state = 256}, - [1518] = {.lex_state = 256}, - [1519] = {.lex_state = 256}, - [1520] = {.lex_state = 256}, - [1521] = {.lex_state = 256}, - [1522] = {.lex_state = 256}, - [1523] = {.lex_state = 256}, - [1524] = {.lex_state = 256}, - [1525] = {.lex_state = 256}, - [1526] = {.lex_state = 53}, - [1527] = {.lex_state = 256}, - [1528] = {.lex_state = 256}, - [1529] = {.lex_state = 256}, - [1530] = {.lex_state = 256}, - [1531] = {.lex_state = 256}, - [1532] = {.lex_state = 256}, - [1533] = {.lex_state = 256}, - [1534] = {.lex_state = 256}, - [1535] = {.lex_state = 256}, - [1536] = {.lex_state = 256}, - [1537] = {.lex_state = 256}, - [1538] = {.lex_state = 256}, - [1539] = {.lex_state = 256}, - [1540] = {.lex_state = 256}, - [1541] = {.lex_state = 256}, - [1542] = {.lex_state = 256}, - [1543] = {.lex_state = 256}, - [1544] = {.lex_state = 256}, - [1545] = {.lex_state = 256}, - [1546] = {.lex_state = 256}, - [1547] = {.lex_state = 256}, - [1548] = {.lex_state = 256}, - [1549] = {.lex_state = 256}, - [1550] = {.lex_state = 256}, - [1551] = {.lex_state = 256}, - [1552] = {.lex_state = 256}, - [1553] = {.lex_state = 256}, - [1554] = {.lex_state = 256}, - [1555] = {.lex_state = 256}, - [1556] = {.lex_state = 256}, - [1557] = {.lex_state = 256}, - [1558] = {.lex_state = 256}, - [1559] = {.lex_state = 256}, - [1560] = {.lex_state = 256}, - [1561] = {.lex_state = 256}, - [1562] = {.lex_state = 256}, - [1563] = {.lex_state = 256}, - [1564] = {.lex_state = 256}, - [1565] = {.lex_state = 256}, - [1566] = {.lex_state = 256}, - [1567] = {.lex_state = 256}, - [1568] = {.lex_state = 256}, - [1569] = {.lex_state = 49}, - [1570] = {.lex_state = 256}, - [1571] = {.lex_state = 256}, - [1572] = {.lex_state = 256}, - [1573] = {.lex_state = 256}, - [1574] = {.lex_state = 256}, - [1575] = {.lex_state = 256}, - [1576] = {.lex_state = 256}, - [1577] = {.lex_state = 256}, - [1578] = {.lex_state = 256}, - [1579] = {.lex_state = 256}, - [1580] = {.lex_state = 256}, - [1581] = {.lex_state = 256}, - [1582] = {.lex_state = 256}, - [1583] = {.lex_state = 256}, - [1584] = {.lex_state = 256}, - [1585] = {.lex_state = 256}, - [1586] = {.lex_state = 256}, - [1587] = {.lex_state = 256}, - [1588] = {.lex_state = 256}, - [1589] = {.lex_state = 261}, - [1590] = {.lex_state = 256}, - [1591] = {.lex_state = 256}, - [1592] = {.lex_state = 256}, - [1593] = {.lex_state = 256}, - [1594] = {.lex_state = 256}, - [1595] = {.lex_state = 256}, - [1596] = {.lex_state = 261}, - [1597] = {.lex_state = 256}, - [1598] = {.lex_state = 256}, - [1599] = {.lex_state = 256}, - [1600] = {.lex_state = 256}, - [1601] = {.lex_state = 256}, - [1602] = {.lex_state = 256}, - [1603] = {.lex_state = 256}, - [1604] = {.lex_state = 256}, - [1605] = {.lex_state = 256}, - [1606] = {.lex_state = 53}, - [1607] = {.lex_state = 53}, - [1608] = {.lex_state = 49}, - [1609] = {.lex_state = 53}, - [1610] = {.lex_state = 53}, - [1611] = {.lex_state = 79}, - [1612] = {.lex_state = 261}, - [1613] = {.lex_state = 49}, - [1614] = {.lex_state = 261}, - [1615] = {.lex_state = 261}, - [1616] = {.lex_state = 49}, - [1617] = {.lex_state = 261}, - [1618] = {.lex_state = 6}, - [1619] = {.lex_state = 6}, - [1620] = {.lex_state = 6}, - [1621] = {.lex_state = 6}, - [1622] = {.lex_state = 6}, - [1623] = {.lex_state = 10}, - [1624] = {.lex_state = 10}, - [1625] = {.lex_state = 10}, - [1626] = {.lex_state = 10}, - [1627] = {.lex_state = 10}, - [1628] = {.lex_state = 45}, - [1629] = {.lex_state = 45}, - [1630] = {.lex_state = 41}, - [1631] = {.lex_state = 41}, - [1632] = {.lex_state = 41}, - [1633] = {.lex_state = 41}, - [1634] = {.lex_state = 45}, - [1635] = {.lex_state = 45}, - [1636] = {.lex_state = 45}, - [1637] = {.lex_state = 24}, + [1432] = {.lex_state = 37}, + [1433] = {.lex_state = 37}, + [1434] = {.lex_state = 37}, + [1435] = {.lex_state = 37}, + [1436] = {.lex_state = 14}, + [1437] = {.lex_state = 14}, + [1438] = {.lex_state = 14}, + [1439] = {.lex_state = 14}, + [1440] = {.lex_state = 49}, + [1441] = {.lex_state = 49}, + [1442] = {.lex_state = 49}, + [1443] = {.lex_state = 247}, + [1444] = {.lex_state = 246}, + [1445] = {.lex_state = 246}, + [1446] = {.lex_state = 14}, + [1447] = {.lex_state = 247}, + [1448] = {.lex_state = 49}, + [1449] = {.lex_state = 246}, + [1450] = {.lex_state = 247}, + [1451] = {.lex_state = 246}, + [1452] = {.lex_state = 246}, + [1453] = {.lex_state = 246}, + [1454] = {.lex_state = 246}, + [1455] = {.lex_state = 247}, + [1456] = {.lex_state = 246}, + [1457] = {.lex_state = 246}, + [1458] = {.lex_state = 246}, + [1459] = {.lex_state = 246}, + [1460] = {.lex_state = 246}, + [1461] = {.lex_state = 246}, + [1462] = {.lex_state = 246}, + [1463] = {.lex_state = 246}, + [1464] = {.lex_state = 246}, + [1465] = {.lex_state = 246}, + [1466] = {.lex_state = 246}, + [1467] = {.lex_state = 246}, + [1468] = {.lex_state = 246}, + [1469] = {.lex_state = 246}, + [1470] = {.lex_state = 246}, + [1471] = {.lex_state = 246}, + [1472] = {.lex_state = 246}, + [1473] = {.lex_state = 246}, + [1474] = {.lex_state = 246}, + [1475] = {.lex_state = 246}, + [1476] = {.lex_state = 246}, + [1477] = {.lex_state = 246}, + [1478] = {.lex_state = 246}, + [1479] = {.lex_state = 246}, + [1480] = {.lex_state = 246}, + [1481] = {.lex_state = 246}, + [1482] = {.lex_state = 246}, + [1483] = {.lex_state = 246}, + [1484] = {.lex_state = 246}, + [1485] = {.lex_state = 246}, + [1486] = {.lex_state = 246}, + [1487] = {.lex_state = 14}, + [1488] = {.lex_state = 246}, + [1489] = {.lex_state = 246}, + [1490] = {.lex_state = 246}, + [1491] = {.lex_state = 246}, + [1492] = {.lex_state = 246}, + [1493] = {.lex_state = 246}, + [1494] = {.lex_state = 246}, + [1495] = {.lex_state = 246}, + [1496] = {.lex_state = 246}, + [1497] = {.lex_state = 246}, + [1498] = {.lex_state = 246}, + [1499] = {.lex_state = 246}, + [1500] = {.lex_state = 246}, + [1501] = {.lex_state = 14}, + [1502] = {.lex_state = 14}, + [1503] = {.lex_state = 246}, + [1504] = {.lex_state = 14}, + [1505] = {.lex_state = 246}, + [1506] = {.lex_state = 246}, + [1507] = {.lex_state = 246}, + [1508] = {.lex_state = 246}, + [1509] = {.lex_state = 246}, + [1510] = {.lex_state = 246}, + [1511] = {.lex_state = 246}, + [1512] = {.lex_state = 246}, + [1513] = {.lex_state = 246}, + [1514] = {.lex_state = 246}, + [1515] = {.lex_state = 246}, + [1516] = {.lex_state = 246}, + [1517] = {.lex_state = 246}, + [1518] = {.lex_state = 246}, + [1519] = {.lex_state = 246}, + [1520] = {.lex_state = 246}, + [1521] = {.lex_state = 246}, + [1522] = {.lex_state = 246}, + [1523] = {.lex_state = 246}, + [1524] = {.lex_state = 246}, + [1525] = {.lex_state = 246}, + [1526] = {.lex_state = 246}, + [1527] = {.lex_state = 246}, + [1528] = {.lex_state = 246}, + [1529] = {.lex_state = 246}, + [1530] = {.lex_state = 246}, + [1531] = {.lex_state = 246}, + [1532] = {.lex_state = 246}, + [1533] = {.lex_state = 246}, + [1534] = {.lex_state = 246}, + [1535] = {.lex_state = 246}, + [1536] = {.lex_state = 246}, + [1537] = {.lex_state = 246}, + [1538] = {.lex_state = 246}, + [1539] = {.lex_state = 246}, + [1540] = {.lex_state = 246}, + [1541] = {.lex_state = 246}, + [1542] = {.lex_state = 251}, + [1543] = {.lex_state = 49}, + [1544] = {.lex_state = 53}, + [1545] = {.lex_state = 246}, + [1546] = {.lex_state = 246}, + [1547] = {.lex_state = 246}, + [1548] = {.lex_state = 246}, + [1549] = {.lex_state = 246}, + [1550] = {.lex_state = 246}, + [1551] = {.lex_state = 246}, + [1552] = {.lex_state = 246}, + [1553] = {.lex_state = 246}, + [1554] = {.lex_state = 246}, + [1555] = {.lex_state = 246}, + [1556] = {.lex_state = 246}, + [1557] = {.lex_state = 246}, + [1558] = {.lex_state = 246}, + [1559] = {.lex_state = 246}, + [1560] = {.lex_state = 246}, + [1561] = {.lex_state = 246}, + [1562] = {.lex_state = 246}, + [1563] = {.lex_state = 246}, + [1564] = {.lex_state = 246}, + [1565] = {.lex_state = 246}, + [1566] = {.lex_state = 246}, + [1567] = {.lex_state = 246}, + [1568] = {.lex_state = 246}, + [1569] = {.lex_state = 246}, + [1570] = {.lex_state = 246}, + [1571] = {.lex_state = 246}, + [1572] = {.lex_state = 246}, + [1573] = {.lex_state = 246}, + [1574] = {.lex_state = 246}, + [1575] = {.lex_state = 246}, + [1576] = {.lex_state = 246}, + [1577] = {.lex_state = 246}, + [1578] = {.lex_state = 246}, + [1579] = {.lex_state = 246}, + [1580] = {.lex_state = 246}, + [1581] = {.lex_state = 246}, + [1582] = {.lex_state = 246}, + [1583] = {.lex_state = 246}, + [1584] = {.lex_state = 246}, + [1585] = {.lex_state = 246}, + [1586] = {.lex_state = 246}, + [1587] = {.lex_state = 246}, + [1588] = {.lex_state = 246}, + [1589] = {.lex_state = 246}, + [1590] = {.lex_state = 246}, + [1591] = {.lex_state = 246}, + [1592] = {.lex_state = 246}, + [1593] = {.lex_state = 246}, + [1594] = {.lex_state = 246}, + [1595] = {.lex_state = 246}, + [1596] = {.lex_state = 246}, + [1597] = {.lex_state = 246}, + [1598] = {.lex_state = 246}, + [1599] = {.lex_state = 246}, + [1600] = {.lex_state = 251}, + [1601] = {.lex_state = 246}, + [1602] = {.lex_state = 246}, + [1603] = {.lex_state = 246}, + [1604] = {.lex_state = 246}, + [1605] = {.lex_state = 246}, + [1606] = {.lex_state = 246}, + [1607] = {.lex_state = 246}, + [1608] = {.lex_state = 246}, + [1609] = {.lex_state = 246}, + [1610] = {.lex_state = 246}, + [1611] = {.lex_state = 246}, + [1612] = {.lex_state = 246}, + [1613] = {.lex_state = 246}, + [1614] = {.lex_state = 53}, + [1615] = {.lex_state = 49}, + [1616] = {.lex_state = 53}, + [1617] = {.lex_state = 53}, + [1618] = {.lex_state = 53}, + [1619] = {.lex_state = 251}, + [1620] = {.lex_state = 79}, + [1621] = {.lex_state = 251}, + [1622] = {.lex_state = 251}, + [1623] = {.lex_state = 49}, + [1624] = {.lex_state = 251}, + [1625] = {.lex_state = 251}, + [1626] = {.lex_state = 49}, + [1627] = {.lex_state = 251}, + [1628] = {.lex_state = 6}, + [1629] = {.lex_state = 6}, + [1630] = {.lex_state = 6}, + [1631] = {.lex_state = 6}, + [1632] = {.lex_state = 6}, + [1633] = {.lex_state = 10}, + [1634] = {.lex_state = 10}, + [1635] = {.lex_state = 10}, + [1636] = {.lex_state = 10}, + [1637] = {.lex_state = 10}, [1638] = {.lex_state = 41}, [1639] = {.lex_state = 24}, - [1640] = {.lex_state = 24}, - [1641] = {.lex_state = 24}, - [1642] = {.lex_state = 24}, - [1643] = {.lex_state = 24}, - [1644] = {.lex_state = 24}, - [1645] = {.lex_state = 24}, - [1646] = {.lex_state = 24}, - [1647] = {.lex_state = 24}, - [1648] = {.lex_state = 24}, + [1640] = {.lex_state = 43}, + [1641] = {.lex_state = 41}, + [1642] = {.lex_state = 43}, + [1643] = {.lex_state = 43}, + [1644] = {.lex_state = 43}, + [1645] = {.lex_state = 41}, + [1646] = {.lex_state = 41}, + [1647] = {.lex_state = 41}, + [1648] = {.lex_state = 43}, [1649] = {.lex_state = 24}, [1650] = {.lex_state = 24}, [1651] = {.lex_state = 24}, - [1652] = {.lex_state = 18}, - [1653] = {.lex_state = 7}, - [1654] = {.lex_state = 7}, - [1655] = {.lex_state = 18}, - [1656] = {.lex_state = 26}, - [1657] = {.lex_state = 26}, - [1658] = {.lex_state = 26}, + [1652] = {.lex_state = 24}, + [1653] = {.lex_state = 24}, + [1654] = {.lex_state = 24}, + [1655] = {.lex_state = 24}, + [1656] = {.lex_state = 24}, + [1657] = {.lex_state = 24}, + [1658] = {.lex_state = 24}, [1659] = {.lex_state = 24}, [1660] = {.lex_state = 24}, [1661] = {.lex_state = 24}, - [1662] = {.lex_state = 24}, - [1663] = {.lex_state = 26}, - [1664] = {.lex_state = 69}, - [1665] = {.lex_state = 24}, - [1666] = {.lex_state = 26}, - [1667] = {.lex_state = 24}, - [1668] = {.lex_state = 69}, - [1669] = {.lex_state = 26}, - [1670] = {.lex_state = 26}, - [1671] = {.lex_state = 24}, + [1662] = {.lex_state = 26}, + [1663] = {.lex_state = 7}, + [1664] = {.lex_state = 7}, + [1665] = {.lex_state = 18}, + [1666] = {.lex_state = 18}, + [1667] = {.lex_state = 26}, + [1668] = {.lex_state = 251}, + [1669] = {.lex_state = 24}, + [1670] = {.lex_state = 24}, + [1671] = {.lex_state = 26}, [1672] = {.lex_state = 24}, [1673] = {.lex_state = 24}, - [1674] = {.lex_state = 26}, - [1675] = {.lex_state = 24}, + [1674] = {.lex_state = 24}, + [1675] = {.lex_state = 69}, [1676] = {.lex_state = 24}, - [1677] = {.lex_state = 261}, + [1677] = {.lex_state = 24}, [1678] = {.lex_state = 24}, [1679] = {.lex_state = 24}, - [1680] = {.lex_state = 24}, + [1680] = {.lex_state = 69}, [1681] = {.lex_state = 24}, [1682] = {.lex_state = 24}, - [1683] = {.lex_state = 26}, + [1683] = {.lex_state = 24}, [1684] = {.lex_state = 24}, - [1685] = {.lex_state = 26}, + [1685] = {.lex_state = 24}, [1686] = {.lex_state = 24}, [1687] = {.lex_state = 24}, [1688] = {.lex_state = 24}, - [1689] = {.lex_state = 24}, + [1689] = {.lex_state = 26}, [1690] = {.lex_state = 26}, [1691] = {.lex_state = 26}, [1692] = {.lex_state = 26}, - [1693] = {.lex_state = 24}, - [1694] = {.lex_state = 24}, - [1695] = {.lex_state = 24}, - [1696] = {.lex_state = 24}, + [1693] = {.lex_state = 26}, + [1694] = {.lex_state = 26}, + [1695] = {.lex_state = 26}, + [1696] = {.lex_state = 26}, [1697] = {.lex_state = 24}, [1698] = {.lex_state = 24}, [1699] = {.lex_state = 24}, [1700] = {.lex_state = 24}, [1701] = {.lex_state = 24}, - [1702] = {.lex_state = 24}, + [1702] = {.lex_state = 26}, [1703] = {.lex_state = 24}, [1704] = {.lex_state = 24}, - [1705] = {.lex_state = 24}, + [1705] = {.lex_state = 26}, [1706] = {.lex_state = 24}, [1707] = {.lex_state = 24}, [1708] = {.lex_state = 24}, [1709] = {.lex_state = 24}, [1710] = {.lex_state = 24}, - [1711] = {.lex_state = 26}, + [1711] = {.lex_state = 24}, [1712] = {.lex_state = 24}, [1713] = {.lex_state = 24}, [1714] = {.lex_state = 24}, @@ -19480,16 +16445,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1734] = {.lex_state = 24}, [1735] = {.lex_state = 24}, [1736] = {.lex_state = 24}, - [1737] = {.lex_state = 11}, + [1737] = {.lex_state = 24}, [1738] = {.lex_state = 24}, [1739] = {.lex_state = 24}, - [1740] = {.lex_state = 11}, + [1740] = {.lex_state = 24}, [1741] = {.lex_state = 24}, [1742] = {.lex_state = 24}, [1743] = {.lex_state = 24}, [1744] = {.lex_state = 24}, [1745] = {.lex_state = 24}, - [1746] = {.lex_state = 24}, + [1746] = {.lex_state = 26}, [1747] = {.lex_state = 24}, [1748] = {.lex_state = 24}, [1749] = {.lex_state = 24}, @@ -19511,8 +16476,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1765] = {.lex_state = 24}, [1766] = {.lex_state = 24}, [1767] = {.lex_state = 24}, - [1768] = {.lex_state = 20}, - [1769] = {.lex_state = 20}, + [1768] = {.lex_state = 24}, + [1769] = {.lex_state = 24}, [1770] = {.lex_state = 24}, [1771] = {.lex_state = 24}, [1772] = {.lex_state = 24}, @@ -19521,66 +16486,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1775] = {.lex_state = 24}, [1776] = {.lex_state = 24}, [1777] = {.lex_state = 24}, - [1778] = {.lex_state = 24}, + [1778] = {.lex_state = 11}, [1779] = {.lex_state = 24}, - [1780] = {.lex_state = 24}, + [1780] = {.lex_state = 11}, [1781] = {.lex_state = 24}, [1782] = {.lex_state = 24}, - [1783] = {.lex_state = 69}, - [1784] = {.lex_state = 69}, - [1785] = {.lex_state = 69}, - [1786] = {.lex_state = 69}, - [1787] = {.lex_state = 71}, - [1788] = {.lex_state = 69}, - [1789] = {.lex_state = 69}, - [1790] = {.lex_state = 71}, - [1791] = {.lex_state = 26}, - [1792] = {.lex_state = 71}, - [1793] = {.lex_state = 71}, - [1794] = {.lex_state = 26}, - [1795] = {.lex_state = 71}, - [1796] = {.lex_state = 26}, + [1783] = {.lex_state = 24}, + [1784] = {.lex_state = 20}, + [1785] = {.lex_state = 20}, + [1786] = {.lex_state = 24}, + [1787] = {.lex_state = 24}, + [1788] = {.lex_state = 24}, + [1789] = {.lex_state = 24}, + [1790] = {.lex_state = 24}, + [1791] = {.lex_state = 24}, + [1792] = {.lex_state = 24}, + [1793] = {.lex_state = 24}, + [1794] = {.lex_state = 24}, + [1795] = {.lex_state = 69}, + [1796] = {.lex_state = 71}, [1797] = {.lex_state = 26}, - [1798] = {.lex_state = 69}, - [1799] = {.lex_state = 69}, - [1800] = {.lex_state = 69}, - [1801] = {.lex_state = 26}, - [1802] = {.lex_state = 69}, - [1803] = {.lex_state = 69}, - [1804] = {.lex_state = 69}, - [1805] = {.lex_state = 69}, + [1798] = {.lex_state = 71}, + [1799] = {.lex_state = 71}, + [1800] = {.lex_state = 26}, + [1801] = {.lex_state = 71}, + [1802] = {.lex_state = 26}, + [1803] = {.lex_state = 71}, + [1804] = {.lex_state = 71}, + [1805] = {.lex_state = 71}, [1806] = {.lex_state = 71}, - [1807] = {.lex_state = 71}, - [1808] = {.lex_state = 69}, + [1807] = {.lex_state = 26}, + [1808] = {.lex_state = 71}, [1809] = {.lex_state = 26}, - [1810] = {.lex_state = 71}, + [1810] = {.lex_state = 69}, [1811] = {.lex_state = 71}, - [1812] = {.lex_state = 71}, - [1813] = {.lex_state = 71}, - [1814] = {.lex_state = 26}, - [1815] = {.lex_state = 26}, - [1816] = {.lex_state = 46}, - [1817] = {.lex_state = 26}, - [1818] = {.lex_state = 26}, - [1819] = {.lex_state = 26}, - [1820] = {.lex_state = 26}, - [1821] = {.lex_state = 26}, - [1822] = {.lex_state = 26}, - [1823] = {.lex_state = 61}, - [1824] = {.lex_state = 26}, - [1825] = {.lex_state = 26}, - [1826] = {.lex_state = 26}, + [1812] = {.lex_state = 69}, + [1813] = {.lex_state = 26}, + [1814] = {.lex_state = 71}, + [1815] = {.lex_state = 69}, + [1816] = {.lex_state = 69}, + [1817] = {.lex_state = 69}, + [1818] = {.lex_state = 69}, + [1819] = {.lex_state = 69}, + [1820] = {.lex_state = 69}, + [1821] = {.lex_state = 69}, + [1822] = {.lex_state = 69}, + [1823] = {.lex_state = 69}, + [1824] = {.lex_state = 69}, + [1825] = {.lex_state = 69}, + [1826] = {.lex_state = 14}, [1827] = {.lex_state = 26}, [1828] = {.lex_state = 26}, [1829] = {.lex_state = 26}, - [1830] = {.lex_state = 59}, - [1831] = {.lex_state = 26}, - [1832] = {.lex_state = 26}, - [1833] = {.lex_state = 14}, - [1834] = {.lex_state = 69}, + [1830] = {.lex_state = 26}, + [1831] = {.lex_state = 69}, + [1832] = {.lex_state = 59}, + [1833] = {.lex_state = 71}, + [1834] = {.lex_state = 26}, [1835] = {.lex_state = 26}, [1836] = {.lex_state = 69}, - [1837] = {.lex_state = 26}, + [1837] = {.lex_state = 61}, [1838] = {.lex_state = 26}, [1839] = {.lex_state = 26}, [1840] = {.lex_state = 26}, @@ -19593,19 +16558,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1847] = {.lex_state = 26}, [1848] = {.lex_state = 26}, [1849] = {.lex_state = 26}, - [1850] = {.lex_state = 26}, - [1851] = {.lex_state = 26}, + [1850] = {.lex_state = 69}, + [1851] = {.lex_state = 69}, [1852] = {.lex_state = 26}, - [1853] = {.lex_state = 26}, + [1853] = {.lex_state = 59}, [1854] = {.lex_state = 26}, [1855] = {.lex_state = 26}, - [1856] = {.lex_state = 14}, + [1856] = {.lex_state = 26}, [1857] = {.lex_state = 26}, [1858] = {.lex_state = 26}, - [1859] = {.lex_state = 59}, + [1859] = {.lex_state = 26}, [1860] = {.lex_state = 26}, [1861] = {.lex_state = 26}, - [1862] = {.lex_state = 14}, + [1862] = {.lex_state = 26}, [1863] = {.lex_state = 26}, [1864] = {.lex_state = 26}, [1865] = {.lex_state = 26}, @@ -19613,36 +16578,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1867] = {.lex_state = 26}, [1868] = {.lex_state = 26}, [1869] = {.lex_state = 26}, - [1870] = {.lex_state = 43}, - [1871] = {.lex_state = 43}, + [1870] = {.lex_state = 26}, + [1871] = {.lex_state = 26}, [1872] = {.lex_state = 26}, [1873] = {.lex_state = 26}, [1874] = {.lex_state = 26}, [1875] = {.lex_state = 26}, [1876] = {.lex_state = 26}, [1877] = {.lex_state = 26}, - [1878] = {.lex_state = 26}, - [1879] = {.lex_state = 26}, + [1878] = {.lex_state = 14}, + [1879] = {.lex_state = 14}, [1880] = {.lex_state = 26}, - [1881] = {.lex_state = 46}, + [1881] = {.lex_state = 26}, [1882] = {.lex_state = 26}, [1883] = {.lex_state = 26}, - [1884] = {.lex_state = 26}, + [1884] = {.lex_state = 44}, [1885] = {.lex_state = 26}, - [1886] = {.lex_state = 26}, + [1886] = {.lex_state = 44}, [1887] = {.lex_state = 26}, [1888] = {.lex_state = 26}, [1889] = {.lex_state = 26}, [1890] = {.lex_state = 26}, - [1891] = {.lex_state = 71}, + [1891] = {.lex_state = 26}, [1892] = {.lex_state = 26}, [1893] = {.lex_state = 26}, - [1894] = {.lex_state = 69}, + [1894] = {.lex_state = 26}, [1895] = {.lex_state = 26}, [1896] = {.lex_state = 26}, - [1897] = {.lex_state = 69}, + [1897] = {.lex_state = 26}, [1898] = {.lex_state = 26}, - [1899] = {.lex_state = 69}, + [1899] = {.lex_state = 26}, [1900] = {.lex_state = 26}, [1901] = {.lex_state = 26}, [1902] = {.lex_state = 26}, @@ -19652,142 +16617,142 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1906] = {.lex_state = 26}, [1907] = {.lex_state = 26}, [1908] = {.lex_state = 26}, - [1909] = {.lex_state = 26}, + [1909] = {.lex_state = 14}, [1910] = {.lex_state = 26}, - [1911] = {.lex_state = 14}, - [1912] = {.lex_state = 26}, - [1913] = {.lex_state = 26}, - [1914] = {.lex_state = 14}, + [1911] = {.lex_state = 26}, + [1912] = {.lex_state = 61}, + [1913] = {.lex_state = 14}, + [1914] = {.lex_state = 26}, [1915] = {.lex_state = 26}, [1916] = {.lex_state = 26}, [1917] = {.lex_state = 26}, [1918] = {.lex_state = 26}, [1919] = {.lex_state = 26}, [1920] = {.lex_state = 26}, - [1921] = {.lex_state = 69}, + [1921] = {.lex_state = 26}, [1922] = {.lex_state = 26}, [1923] = {.lex_state = 26}, - [1924] = {.lex_state = 26}, + [1924] = {.lex_state = 69}, [1925] = {.lex_state = 26}, - [1926] = {.lex_state = 26}, - [1927] = {.lex_state = 69}, - [1928] = {.lex_state = 26}, - [1929] = {.lex_state = 69}, + [1926] = {.lex_state = 69}, + [1927] = {.lex_state = 26}, + [1928] = {.lex_state = 69}, + [1929] = {.lex_state = 26}, [1930] = {.lex_state = 26}, - [1931] = {.lex_state = 61}, - [1932] = {.lex_state = 69}, + [1931] = {.lex_state = 69}, + [1932] = {.lex_state = 26}, [1933] = {.lex_state = 26}, - [1934] = {.lex_state = 69}, - [1935] = {.lex_state = 69}, + [1934] = {.lex_state = 26}, + [1935] = {.lex_state = 26}, [1936] = {.lex_state = 69}, - [1937] = {.lex_state = 69}, - [1938] = {.lex_state = 69}, - [1939] = {.lex_state = 71}, - [1940] = {.lex_state = 71}, - [1941] = {.lex_state = 69}, - [1942] = {.lex_state = 69}, - [1943] = {.lex_state = 30}, - [1944] = {.lex_state = 30}, - [1945] = {.lex_state = 71}, - [1946] = {.lex_state = 71}, - [1947] = {.lex_state = 69}, - [1948] = {.lex_state = 71}, + [1937] = {.lex_state = 26}, + [1938] = {.lex_state = 26}, + [1939] = {.lex_state = 26}, + [1940] = {.lex_state = 26}, + [1941] = {.lex_state = 26}, + [1942] = {.lex_state = 26}, + [1943] = {.lex_state = 26}, + [1944] = {.lex_state = 26}, + [1945] = {.lex_state = 26}, + [1946] = {.lex_state = 69}, + [1947] = {.lex_state = 47}, + [1948] = {.lex_state = 47}, [1949] = {.lex_state = 69}, - [1950] = {.lex_state = 71}, - [1951] = {.lex_state = 69}, + [1950] = {.lex_state = 69}, + [1951] = {.lex_state = 71}, [1952] = {.lex_state = 69}, - [1953] = {.lex_state = 71}, + [1953] = {.lex_state = 69}, [1954] = {.lex_state = 71}, [1955] = {.lex_state = 69}, [1956] = {.lex_state = 71}, - [1957] = {.lex_state = 69}, - [1958] = {.lex_state = 69}, - [1959] = {.lex_state = 71}, - [1960] = {.lex_state = 71}, + [1957] = {.lex_state = 71}, + [1958] = {.lex_state = 30}, + [1959] = {.lex_state = 30}, + [1960] = {.lex_state = 69}, [1961] = {.lex_state = 69}, [1962] = {.lex_state = 71}, - [1963] = {.lex_state = 69}, - [1964] = {.lex_state = 71}, - [1965] = {.lex_state = 71}, - [1966] = {.lex_state = 71}, - [1967] = {.lex_state = 71}, + [1963] = {.lex_state = 71}, + [1964] = {.lex_state = 69}, + [1965] = {.lex_state = 69}, + [1966] = {.lex_state = 69}, + [1967] = {.lex_state = 69}, [1968] = {.lex_state = 69}, [1969] = {.lex_state = 69}, - [1970] = {.lex_state = 71}, + [1970] = {.lex_state = 30}, [1971] = {.lex_state = 69}, [1972] = {.lex_state = 69}, [1973] = {.lex_state = 69}, - [1974] = {.lex_state = 71}, + [1974] = {.lex_state = 69}, [1975] = {.lex_state = 69}, [1976] = {.lex_state = 71}, [1977] = {.lex_state = 71}, [1978] = {.lex_state = 69}, - [1979] = {.lex_state = 69}, - [1980] = {.lex_state = 69}, - [1981] = {.lex_state = 71}, + [1979] = {.lex_state = 71}, + [1980] = {.lex_state = 71}, + [1981] = {.lex_state = 69}, [1982] = {.lex_state = 69}, - [1983] = {.lex_state = 71}, - [1984] = {.lex_state = 71}, - [1985] = {.lex_state = 71}, + [1983] = {.lex_state = 69}, + [1984] = {.lex_state = 69}, + [1985] = {.lex_state = 69}, [1986] = {.lex_state = 69}, - [1987] = {.lex_state = 69}, - [1988] = {.lex_state = 69}, + [1987] = {.lex_state = 71}, + [1988] = {.lex_state = 71}, [1989] = {.lex_state = 69}, - [1990] = {.lex_state = 69}, - [1991] = {.lex_state = 69}, - [1992] = {.lex_state = 69}, + [1990] = {.lex_state = 71}, + [1991] = {.lex_state = 71}, + [1992] = {.lex_state = 71}, [1993] = {.lex_state = 69}, [1994] = {.lex_state = 69}, [1995] = {.lex_state = 69}, [1996] = {.lex_state = 69}, - [1997] = {.lex_state = 69}, - [1998] = {.lex_state = 71}, - [1999] = {.lex_state = 69}, - [2000] = {.lex_state = 69}, - [2001] = {.lex_state = 69}, + [1997] = {.lex_state = 71}, + [1998] = {.lex_state = 69}, + [1999] = {.lex_state = 71}, + [2000] = {.lex_state = 71}, + [2001] = {.lex_state = 71}, [2002] = {.lex_state = 69}, [2003] = {.lex_state = 69}, [2004] = {.lex_state = 69}, [2005] = {.lex_state = 69}, - [2006] = {.lex_state = 71}, + [2006] = {.lex_state = 69}, [2007] = {.lex_state = 69}, [2008] = {.lex_state = 69}, [2009] = {.lex_state = 69}, [2010] = {.lex_state = 69}, - [2011] = {.lex_state = 69}, - [2012] = {.lex_state = 69}, + [2011] = {.lex_state = 71}, + [2012] = {.lex_state = 71}, [2013] = {.lex_state = 69}, - [2014] = {.lex_state = 71}, + [2014] = {.lex_state = 69}, [2015] = {.lex_state = 71}, [2016] = {.lex_state = 69}, [2017] = {.lex_state = 71}, [2018] = {.lex_state = 71}, [2019] = {.lex_state = 69}, - [2020] = {.lex_state = 71}, - [2021] = {.lex_state = 69}, - [2022] = {.lex_state = 69}, - [2023] = {.lex_state = 69}, + [2020] = {.lex_state = 69}, + [2021] = {.lex_state = 71}, + [2022] = {.lex_state = 71}, + [2023] = {.lex_state = 71}, [2024] = {.lex_state = 71}, - [2025] = {.lex_state = 69}, + [2025] = {.lex_state = 71}, [2026] = {.lex_state = 69}, - [2027] = {.lex_state = 71}, + [2027] = {.lex_state = 69}, [2028] = {.lex_state = 71}, [2029] = {.lex_state = 71}, [2030] = {.lex_state = 69}, - [2031] = {.lex_state = 69}, - [2032] = {.lex_state = 69}, - [2033] = {.lex_state = 69}, - [2034] = {.lex_state = 69}, + [2031] = {.lex_state = 71}, + [2032] = {.lex_state = 71}, + [2033] = {.lex_state = 71}, + [2034] = {.lex_state = 71}, [2035] = {.lex_state = 71}, - [2036] = {.lex_state = 69}, + [2036] = {.lex_state = 71}, [2037] = {.lex_state = 69}, - [2038] = {.lex_state = 71}, - [2039] = {.lex_state = 71}, - [2040] = {.lex_state = 69}, + [2038] = {.lex_state = 69}, + [2039] = {.lex_state = 69}, + [2040] = {.lex_state = 71}, [2041] = {.lex_state = 71}, - [2042] = {.lex_state = 69}, + [2042] = {.lex_state = 71}, [2043] = {.lex_state = 71}, - [2044] = {.lex_state = 69}, + [2044] = {.lex_state = 71}, [2045] = {.lex_state = 71}, [2046] = {.lex_state = 71}, [2047] = {.lex_state = 71}, @@ -19795,63 +16760,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2049] = {.lex_state = 71}, [2050] = {.lex_state = 71}, [2051] = {.lex_state = 71}, - [2052] = {.lex_state = 69}, - [2053] = {.lex_state = 69}, + [2052] = {.lex_state = 71}, + [2053] = {.lex_state = 71}, [2054] = {.lex_state = 71}, - [2055] = {.lex_state = 69}, - [2056] = {.lex_state = 69}, + [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 = 71}, - [2063] = {.lex_state = 69}, - [2064] = {.lex_state = 69}, - [2065] = {.lex_state = 71}, + [2062] = {.lex_state = 69}, + [2063] = {.lex_state = 71}, + [2064] = {.lex_state = 71}, + [2065] = {.lex_state = 69}, [2066] = {.lex_state = 71}, [2067] = {.lex_state = 71}, [2068] = {.lex_state = 71}, [2069] = {.lex_state = 71}, - [2070] = {.lex_state = 69}, + [2070] = {.lex_state = 71}, [2071] = {.lex_state = 71}, [2072] = {.lex_state = 71}, - [2073] = {.lex_state = 69}, + [2073] = {.lex_state = 71}, [2074] = {.lex_state = 71}, [2075] = {.lex_state = 71}, [2076] = {.lex_state = 69}, [2077] = {.lex_state = 69}, - [2078] = {.lex_state = 71}, + [2078] = {.lex_state = 69}, [2079] = {.lex_state = 69}, [2080] = {.lex_state = 71}, - [2081] = {.lex_state = 71}, + [2081] = {.lex_state = 69}, [2082] = {.lex_state = 71}, [2083] = {.lex_state = 71}, [2084] = {.lex_state = 71}, - [2085] = {.lex_state = 71}, + [2085] = {.lex_state = 69}, [2086] = {.lex_state = 69}, - [2087] = {.lex_state = 69}, + [2087] = {.lex_state = 71}, [2088] = {.lex_state = 69}, [2089] = {.lex_state = 69}, [2090] = {.lex_state = 69}, [2091] = {.lex_state = 69}, [2092] = {.lex_state = 69}, [2093] = {.lex_state = 69}, - [2094] = {.lex_state = 69}, - [2095] = {.lex_state = 69}, + [2094] = {.lex_state = 71}, + [2095] = {.lex_state = 71}, [2096] = {.lex_state = 71}, [2097] = {.lex_state = 71}, [2098] = {.lex_state = 71}, [2099] = {.lex_state = 69}, - [2100] = {.lex_state = 69}, - [2101] = {.lex_state = 69}, + [2100] = {.lex_state = 71}, + [2101] = {.lex_state = 71}, [2102] = {.lex_state = 71}, [2103] = {.lex_state = 71}, - [2104] = {.lex_state = 69}, - [2105] = {.lex_state = 71}, - [2106] = {.lex_state = 71}, - [2107] = {.lex_state = 71}, - [2108] = {.lex_state = 71}, + [2104] = {.lex_state = 71}, + [2105] = {.lex_state = 69}, + [2106] = {.lex_state = 69}, + [2107] = {.lex_state = 69}, + [2108] = {.lex_state = 69}, [2109] = {.lex_state = 71}, [2110] = {.lex_state = 71}, [2111] = {.lex_state = 69}, @@ -19859,125 +16824,125 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2113] = {.lex_state = 69}, [2114] = {.lex_state = 69}, [2115] = {.lex_state = 69}, - [2116] = {.lex_state = 71}, + [2116] = {.lex_state = 69}, [2117] = {.lex_state = 71}, - [2118] = {.lex_state = 71}, + [2118] = {.lex_state = 69}, [2119] = {.lex_state = 69}, - [2120] = {.lex_state = 69}, - [2121] = {.lex_state = 71}, + [2120] = {.lex_state = 71}, + [2121] = {.lex_state = 69}, [2122] = {.lex_state = 69}, [2123] = {.lex_state = 69}, - [2124] = {.lex_state = 71}, + [2124] = {.lex_state = 69}, [2125] = {.lex_state = 69}, - [2126] = {.lex_state = 71}, - [2127] = {.lex_state = 30}, - [2128] = {.lex_state = 71}, - [2129] = {.lex_state = 71}, + [2126] = {.lex_state = 69}, + [2127] = {.lex_state = 69}, + [2128] = {.lex_state = 69}, + [2129] = {.lex_state = 69}, [2130] = {.lex_state = 69}, [2131] = {.lex_state = 71}, [2132] = {.lex_state = 69}, - [2133] = {.lex_state = 71}, + [2133] = {.lex_state = 69}, [2134] = {.lex_state = 69}, - [2135] = {.lex_state = 71}, + [2135] = {.lex_state = 69}, [2136] = {.lex_state = 69}, [2137] = {.lex_state = 69}, [2138] = {.lex_state = 69}, - [2139] = {.lex_state = 71}, + [2139] = {.lex_state = 69}, [2140] = {.lex_state = 69}, [2141] = {.lex_state = 71}, [2142] = {.lex_state = 71}, - [2143] = {.lex_state = 71}, + [2143] = {.lex_state = 69}, [2144] = {.lex_state = 71}, [2145] = {.lex_state = 71}, [2146] = {.lex_state = 71}, - [2147] = {.lex_state = 71}, + [2147] = {.lex_state = 69}, [2148] = {.lex_state = 69}, [2149] = {.lex_state = 69}, - [2150] = {.lex_state = 71}, + [2150] = {.lex_state = 69}, [2151] = {.lex_state = 71}, - [2152] = {.lex_state = 69}, - [2153] = {.lex_state = 49}, - [2154] = {.lex_state = 49}, - [2155] = {.lex_state = 49}, - [2156] = {.lex_state = 49}, - [2157] = {.lex_state = 49}, - [2158] = {.lex_state = 15}, - [2159] = {.lex_state = 15}, + [2152] = {.lex_state = 71}, + [2153] = {.lex_state = 71}, + [2154] = {.lex_state = 69}, + [2155] = {.lex_state = 69}, + [2156] = {.lex_state = 71}, + [2157] = {.lex_state = 69}, + [2158] = {.lex_state = 69}, + [2159] = {.lex_state = 69}, [2160] = {.lex_state = 69}, - [2161] = {.lex_state = 15}, - [2162] = {.lex_state = 15}, - [2163] = {.lex_state = 79}, - [2164] = {.lex_state = 15}, - [2165] = {.lex_state = 79}, - [2166] = {.lex_state = 79}, - [2167] = {.lex_state = 79}, - [2168] = {.lex_state = 79}, - [2169] = {.lex_state = 15}, - [2170] = {.lex_state = 15}, - [2171] = {.lex_state = 22}, - [2172] = {.lex_state = 79}, - [2173] = {.lex_state = 79}, - [2174] = {.lex_state = 22}, - [2175] = {.lex_state = 15}, + [2161] = {.lex_state = 69}, + [2162] = {.lex_state = 69}, + [2163] = {.lex_state = 71}, + [2164] = {.lex_state = 71}, + [2165] = {.lex_state = 69}, + [2166] = {.lex_state = 69}, + [2167] = {.lex_state = 69}, + [2168] = {.lex_state = 71}, + [2169] = {.lex_state = 69}, + [2170] = {.lex_state = 71}, + [2171] = {.lex_state = 49}, + [2172] = {.lex_state = 49}, + [2173] = {.lex_state = 49}, + [2174] = {.lex_state = 49}, + [2175] = {.lex_state = 49}, [2176] = {.lex_state = 15}, - [2177] = {.lex_state = 79}, - [2178] = {.lex_state = 22}, - [2179] = {.lex_state = 79}, - [2180] = {.lex_state = 22}, + [2177] = {.lex_state = 15}, + [2178] = {.lex_state = 69}, + [2179] = {.lex_state = 15}, + [2180] = {.lex_state = 15}, [2181] = {.lex_state = 15}, - [2182] = {.lex_state = 15}, + [2182] = {.lex_state = 79}, [2183] = {.lex_state = 15}, - [2184] = {.lex_state = 15}, - [2185] = {.lex_state = 15}, - [2186] = {.lex_state = 15}, - [2187] = {.lex_state = 15}, - [2188] = {.lex_state = 15}, - [2189] = {.lex_state = 15}, - [2190] = {.lex_state = 15}, - [2191] = {.lex_state = 15}, - [2192] = {.lex_state = 15}, - [2193] = {.lex_state = 15}, + [2184] = {.lex_state = 79}, + [2185] = {.lex_state = 79}, + [2186] = {.lex_state = 79}, + [2187] = {.lex_state = 79}, + [2188] = {.lex_state = 79}, + [2189] = {.lex_state = 22}, + [2190] = {.lex_state = 79}, + [2191] = {.lex_state = 79}, + [2192] = {.lex_state = 79}, + [2193] = {.lex_state = 79}, [2194] = {.lex_state = 15}, [2195] = {.lex_state = 15}, [2196] = {.lex_state = 15}, [2197] = {.lex_state = 15}, - [2198] = {.lex_state = 15}, - [2199] = {.lex_state = 15}, - [2200] = {.lex_state = 15}, - [2201] = {.lex_state = 53}, + [2198] = {.lex_state = 22}, + [2199] = {.lex_state = 79}, + [2200] = {.lex_state = 22}, + [2201] = {.lex_state = 22}, [2202] = {.lex_state = 15}, [2203] = {.lex_state = 15}, [2204] = {.lex_state = 15}, [2205] = {.lex_state = 15}, - [2206] = {.lex_state = 15}, + [2206] = {.lex_state = 79}, [2207] = {.lex_state = 15}, [2208] = {.lex_state = 15}, [2209] = {.lex_state = 15}, - [2210] = {.lex_state = 53}, + [2210] = {.lex_state = 15}, [2211] = {.lex_state = 15}, - [2212] = {.lex_state = 15}, + [2212] = {.lex_state = 79}, [2213] = {.lex_state = 15}, [2214] = {.lex_state = 15}, [2215] = {.lex_state = 15}, [2216] = {.lex_state = 15}, - [2217] = {.lex_state = 15}, + [2217] = {.lex_state = 53}, [2218] = {.lex_state = 15}, [2219] = {.lex_state = 15}, [2220] = {.lex_state = 15}, [2221] = {.lex_state = 15}, [2222] = {.lex_state = 15}, - [2223] = {.lex_state = 15}, - [2224] = {.lex_state = 15}, - [2225] = {.lex_state = 15}, + [2223] = {.lex_state = 53}, + [2224] = {.lex_state = 53}, + [2225] = {.lex_state = 53}, [2226] = {.lex_state = 15}, - [2227] = {.lex_state = 15}, - [2228] = {.lex_state = 53}, + [2227] = {.lex_state = 53}, + [2228] = {.lex_state = 15}, [2229] = {.lex_state = 15}, - [2230] = {.lex_state = 15}, - [2231] = {.lex_state = 15}, + [2230] = {.lex_state = 79}, + [2231] = {.lex_state = 79}, [2232] = {.lex_state = 15}, [2233] = {.lex_state = 15}, - [2234] = {.lex_state = 15}, + [2234] = {.lex_state = 31}, [2235] = {.lex_state = 15}, [2236] = {.lex_state = 15}, [2237] = {.lex_state = 15}, @@ -19990,10 +16955,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2244] = {.lex_state = 15}, [2245] = {.lex_state = 15}, [2246] = {.lex_state = 15}, - [2247] = {.lex_state = 79}, + [2247] = {.lex_state = 15}, [2248] = {.lex_state = 15}, [2249] = {.lex_state = 15}, - [2250] = {.lex_state = 79}, + [2250] = {.lex_state = 15}, [2251] = {.lex_state = 15}, [2252] = {.lex_state = 15}, [2253] = {.lex_state = 15}, @@ -20001,13 +16966,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2255] = {.lex_state = 15}, [2256] = {.lex_state = 15}, [2257] = {.lex_state = 15}, - [2258] = {.lex_state = 79}, + [2258] = {.lex_state = 15}, [2259] = {.lex_state = 15}, [2260] = {.lex_state = 15}, [2261] = {.lex_state = 15}, - [2262] = {.lex_state = 53}, + [2262] = {.lex_state = 15}, [2263] = {.lex_state = 15}, - [2264] = {.lex_state = 79}, + [2264] = {.lex_state = 15}, [2265] = {.lex_state = 15}, [2266] = {.lex_state = 15}, [2267] = {.lex_state = 15}, @@ -20028,93 +16993,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2282] = {.lex_state = 15}, [2283] = {.lex_state = 15}, [2284] = {.lex_state = 15}, - [2285] = {.lex_state = 53}, + [2285] = {.lex_state = 15}, [2286] = {.lex_state = 15}, [2287] = {.lex_state = 15}, [2288] = {.lex_state = 15}, [2289] = {.lex_state = 15}, [2290] = {.lex_state = 15}, - [2291] = {.lex_state = 31}, + [2291] = {.lex_state = 15}, [2292] = {.lex_state = 15}, [2293] = {.lex_state = 15}, [2294] = {.lex_state = 15}, [2295] = {.lex_state = 15}, - [2296] = {.lex_state = 79}, + [2296] = {.lex_state = 15}, [2297] = {.lex_state = 15}, - [2298] = {.lex_state = 79}, + [2298] = {.lex_state = 15}, [2299] = {.lex_state = 15}, [2300] = {.lex_state = 15}, [2301] = {.lex_state = 15}, - [2302] = {.lex_state = 73}, + [2302] = {.lex_state = 15}, [2303] = {.lex_state = 15}, [2304] = {.lex_state = 15}, [2305] = {.lex_state = 15}, [2306] = {.lex_state = 15}, - [2307] = {.lex_state = 73}, + [2307] = {.lex_state = 15}, [2308] = {.lex_state = 15}, - [2309] = {.lex_state = 73}, + [2309] = {.lex_state = 15}, [2310] = {.lex_state = 15}, - [2311] = {.lex_state = 63}, - [2312] = {.lex_state = 63}, + [2311] = {.lex_state = 15}, + [2312] = {.lex_state = 15}, [2313] = {.lex_state = 15}, - [2314] = {.lex_state = 50}, - [2315] = {.lex_state = 50}, + [2314] = {.lex_state = 15}, + [2315] = {.lex_state = 15}, [2316] = {.lex_state = 15}, [2317] = {.lex_state = 15}, [2318] = {.lex_state = 15}, - [2319] = {.lex_state = 28}, - [2320] = {.lex_state = 73}, - [2321] = {.lex_state = 28}, - [2322] = {.lex_state = 28}, - [2323] = {.lex_state = 73}, - [2324] = {.lex_state = 73}, - [2325] = {.lex_state = 28}, - [2326] = {.lex_state = 73}, - [2327] = {.lex_state = 73}, - [2328] = {.lex_state = 73}, - [2329] = {.lex_state = 73}, - [2330] = {.lex_state = 73}, - [2331] = {.lex_state = 73}, - [2332] = {.lex_state = 28}, - [2333] = {.lex_state = 28}, + [2319] = {.lex_state = 15}, + [2320] = {.lex_state = 15}, + [2321] = {.lex_state = 73}, + [2322] = {.lex_state = 73}, + [2323] = {.lex_state = 15}, + [2324] = {.lex_state = 15}, + [2325] = {.lex_state = 15}, + [2326] = {.lex_state = 79}, + [2327] = {.lex_state = 63}, + [2328] = {.lex_state = 15}, + [2329] = {.lex_state = 63}, + [2330] = {.lex_state = 15}, + [2331] = {.lex_state = 15}, + [2332] = {.lex_state = 15}, + [2333] = {.lex_state = 79}, [2334] = {.lex_state = 73}, - [2335] = {.lex_state = 73}, - [2336] = {.lex_state = 73}, - [2337] = {.lex_state = 28}, - [2338] = {.lex_state = 73}, + [2335] = {.lex_state = 15}, + [2336] = {.lex_state = 15}, + [2337] = {.lex_state = 50}, + [2338] = {.lex_state = 50}, [2339] = {.lex_state = 73}, - [2340] = {.lex_state = 73}, - [2341] = {.lex_state = 73}, - [2342] = {.lex_state = 73}, - [2343] = {.lex_state = 73}, - [2344] = {.lex_state = 73}, - [2345] = {.lex_state = 73}, + [2340] = {.lex_state = 28}, + [2341] = {.lex_state = 15}, + [2342] = {.lex_state = 28}, + [2343] = {.lex_state = 15}, + [2344] = {.lex_state = 28}, + [2345] = {.lex_state = 28}, [2346] = {.lex_state = 73}, [2347] = {.lex_state = 73}, [2348] = {.lex_state = 73}, [2349] = {.lex_state = 73}, [2350] = {.lex_state = 73}, - [2351] = {.lex_state = 73}, + [2351] = {.lex_state = 28}, [2352] = {.lex_state = 28}, - [2353] = {.lex_state = 73}, + [2353] = {.lex_state = 28}, [2354] = {.lex_state = 73}, [2355] = {.lex_state = 73}, [2356] = {.lex_state = 73}, - [2357] = {.lex_state = 73}, + [2357] = {.lex_state = 28}, [2358] = {.lex_state = 28}, - [2359] = {.lex_state = 28}, + [2359] = {.lex_state = 73}, [2360] = {.lex_state = 28}, [2361] = {.lex_state = 73}, - [2362] = {.lex_state = 28}, + [2362] = {.lex_state = 73}, [2363] = {.lex_state = 73}, [2364] = {.lex_state = 73}, - [2365] = {.lex_state = 28}, + [2365] = {.lex_state = 73}, [2366] = {.lex_state = 73}, - [2367] = {.lex_state = 28}, + [2367] = {.lex_state = 73}, [2368] = {.lex_state = 73}, [2369] = {.lex_state = 73}, [2370] = {.lex_state = 73}, - [2371] = {.lex_state = 73}, + [2371] = {.lex_state = 28}, [2372] = {.lex_state = 73}, [2373] = {.lex_state = 73}, [2374] = {.lex_state = 73}, @@ -20129,9 +17094,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2383] = {.lex_state = 73}, [2384] = {.lex_state = 73}, [2385] = {.lex_state = 73}, - [2386] = {.lex_state = 15}, - [2387] = {.lex_state = 15}, - [2388] = {.lex_state = 73}, + [2386] = {.lex_state = 73}, + [2387] = {.lex_state = 73}, + [2388] = {.lex_state = 28}, [2389] = {.lex_state = 73}, [2390] = {.lex_state = 73}, [2391] = {.lex_state = 73}, @@ -20141,30 +17106,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2395] = {.lex_state = 73}, [2396] = {.lex_state = 28}, [2397] = {.lex_state = 73}, - [2398] = {.lex_state = 73}, - [2399] = {.lex_state = 73}, - [2400] = {.lex_state = 28}, + [2398] = {.lex_state = 15}, + [2399] = {.lex_state = 15}, + [2400] = {.lex_state = 73}, [2401] = {.lex_state = 73}, [2402] = {.lex_state = 73}, - [2403] = {.lex_state = 28}, - [2404] = {.lex_state = 28}, + [2403] = {.lex_state = 73}, + [2404] = {.lex_state = 73}, [2405] = {.lex_state = 73}, [2406] = {.lex_state = 73}, [2407] = {.lex_state = 73}, [2408] = {.lex_state = 73}, - [2409] = {.lex_state = 73}, - [2410] = {.lex_state = 73}, + [2409] = {.lex_state = 28}, + [2410] = {.lex_state = 28}, [2411] = {.lex_state = 73}, - [2412] = {.lex_state = 28}, + [2412] = {.lex_state = 73}, [2413] = {.lex_state = 73}, [2414] = {.lex_state = 73}, [2415] = {.lex_state = 73}, - [2416] = {.lex_state = 73}, + [2416] = {.lex_state = 28}, [2417] = {.lex_state = 73}, - [2418] = {.lex_state = 22}, - [2419] = {.lex_state = 28}, - [2420] = {.lex_state = 73}, - [2421] = {.lex_state = 28}, + [2418] = {.lex_state = 73}, + [2419] = {.lex_state = 73}, + [2420] = {.lex_state = 28}, + [2421] = {.lex_state = 73}, [2422] = {.lex_state = 73}, [2423] = {.lex_state = 73}, [2424] = {.lex_state = 73}, @@ -20172,9 +17137,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2426] = {.lex_state = 73}, [2427] = {.lex_state = 28}, [2428] = {.lex_state = 73}, - [2429] = {.lex_state = 22}, - [2430] = {.lex_state = 73}, - [2431] = {.lex_state = 73}, + [2429] = {.lex_state = 28}, + [2430] = {.lex_state = 28}, + [2431] = {.lex_state = 28}, [2432] = {.lex_state = 73}, [2433] = {.lex_state = 73}, [2434] = {.lex_state = 73}, @@ -20187,29 +17152,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2441] = {.lex_state = 73}, [2442] = {.lex_state = 73}, [2443] = {.lex_state = 73}, - [2444] = {.lex_state = 73}, + [2444] = {.lex_state = 28}, [2445] = {.lex_state = 73}, [2446] = {.lex_state = 73}, [2447] = {.lex_state = 73}, [2448] = {.lex_state = 73}, - [2449] = {.lex_state = 73}, + [2449] = {.lex_state = 22}, [2450] = {.lex_state = 73}, - [2451] = {.lex_state = 28}, + [2451] = {.lex_state = 73}, [2452] = {.lex_state = 73}, [2453] = {.lex_state = 73}, [2454] = {.lex_state = 73}, [2455] = {.lex_state = 73}, [2456] = {.lex_state = 73}, - [2457] = {.lex_state = 28}, + [2457] = {.lex_state = 73}, [2458] = {.lex_state = 73}, - [2459] = {.lex_state = 28}, + [2459] = {.lex_state = 22}, [2460] = {.lex_state = 28}, - [2461] = {.lex_state = 28}, - [2462] = {.lex_state = 75}, - [2463] = {.lex_state = 28}, - [2464] = {.lex_state = 75}, - [2465] = {.lex_state = 75}, - [2466] = {.lex_state = 75}, + [2461] = {.lex_state = 73}, + [2462] = {.lex_state = 73}, + [2463] = {.lex_state = 73}, + [2464] = {.lex_state = 73}, + [2465] = {.lex_state = 73}, + [2466] = {.lex_state = 73}, [2467] = {.lex_state = 73}, [2468] = {.lex_state = 73}, [2469] = {.lex_state = 73}, @@ -20217,70 +17182,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2471] = {.lex_state = 73}, [2472] = {.lex_state = 73}, [2473] = {.lex_state = 73}, - [2474] = {.lex_state = 75}, - [2475] = {.lex_state = 31}, - [2476] = {.lex_state = 75}, - [2477] = {.lex_state = 33}, - [2478] = {.lex_state = 75}, - [2479] = {.lex_state = 75}, - [2480] = {.lex_state = 75}, - [2481] = {.lex_state = 33}, - [2482] = {.lex_state = 33}, - [2483] = {.lex_state = 75}, - [2484] = {.lex_state = 73}, - [2485] = {.lex_state = 73}, - [2486] = {.lex_state = 73}, - [2487] = {.lex_state = 28}, - [2488] = {.lex_state = 75}, + [2474] = {.lex_state = 73}, + [2475] = {.lex_state = 73}, + [2476] = {.lex_state = 73}, + [2477] = {.lex_state = 73}, + [2478] = {.lex_state = 73}, + [2479] = {.lex_state = 73}, + [2480] = {.lex_state = 73}, + [2481] = {.lex_state = 73}, + [2482] = {.lex_state = 75}, + [2483] = {.lex_state = 28}, + [2484] = {.lex_state = 31}, + [2485] = {.lex_state = 28}, + [2486] = {.lex_state = 28}, + [2487] = {.lex_state = 33}, + [2488] = {.lex_state = 33}, [2489] = {.lex_state = 28}, - [2490] = {.lex_state = 28}, - [2491] = {.lex_state = 28}, - [2492] = {.lex_state = 28}, - [2493] = {.lex_state = 75}, + [2490] = {.lex_state = 33}, + [2491] = {.lex_state = 73}, + [2492] = {.lex_state = 73}, + [2493] = {.lex_state = 73}, [2494] = {.lex_state = 28}, [2495] = {.lex_state = 28}, - [2496] = {.lex_state = 28}, + [2496] = {.lex_state = 75}, [2497] = {.lex_state = 28}, [2498] = {.lex_state = 28}, [2499] = {.lex_state = 28}, - [2500] = {.lex_state = 28}, - [2501] = {.lex_state = 28}, - [2502] = {.lex_state = 28}, - [2503] = {.lex_state = 75}, - [2504] = {.lex_state = 75}, - [2505] = {.lex_state = 28}, - [2506] = {.lex_state = 28}, - [2507] = {.lex_state = 28}, - [2508] = {.lex_state = 28}, - [2509] = {.lex_state = 28}, - [2510] = {.lex_state = 73}, - [2511] = {.lex_state = 28}, - [2512] = {.lex_state = 28}, - [2513] = {.lex_state = 28}, - [2514] = {.lex_state = 28}, - [2515] = {.lex_state = 65}, - [2516] = {.lex_state = 28}, - [2517] = {.lex_state = 65}, - [2518] = {.lex_state = 28}, + [2500] = {.lex_state = 73}, + [2501] = {.lex_state = 73}, + [2502] = {.lex_state = 73}, + [2503] = {.lex_state = 28}, + [2504] = {.lex_state = 73}, + [2505] = {.lex_state = 73}, + [2506] = {.lex_state = 73}, + [2507] = {.lex_state = 75}, + [2508] = {.lex_state = 75}, + [2509] = {.lex_state = 75}, + [2510] = {.lex_state = 75}, + [2511] = {.lex_state = 75}, + [2512] = {.lex_state = 75}, + [2513] = {.lex_state = 75}, + [2514] = {.lex_state = 75}, + [2515] = {.lex_state = 75}, + [2516] = {.lex_state = 75}, + [2517] = {.lex_state = 73}, + [2518] = {.lex_state = 73}, [2519] = {.lex_state = 28}, - [2520] = {.lex_state = 28}, + [2520] = {.lex_state = 73}, [2521] = {.lex_state = 28}, [2522] = {.lex_state = 28}, - [2523] = {.lex_state = 28}, - [2524] = {.lex_state = 28}, - [2525] = {.lex_state = 28}, - [2526] = {.lex_state = 28}, - [2527] = {.lex_state = 28}, - [2528] = {.lex_state = 28}, + [2523] = {.lex_state = 75}, + [2524] = {.lex_state = 73}, + [2525] = {.lex_state = 55}, + [2526] = {.lex_state = 73}, + [2527] = {.lex_state = 73}, + [2528] = {.lex_state = 75}, [2529] = {.lex_state = 28}, [2530] = {.lex_state = 28}, [2531] = {.lex_state = 28}, [2532] = {.lex_state = 28}, - [2533] = {.lex_state = 28}, - [2534] = {.lex_state = 28}, - [2535] = {.lex_state = 28}, + [2533] = {.lex_state = 65}, + [2534] = {.lex_state = 75}, + [2535] = {.lex_state = 73}, [2536] = {.lex_state = 28}, - [2537] = {.lex_state = 28}, + [2537] = {.lex_state = 75}, [2538] = {.lex_state = 28}, [2539] = {.lex_state = 28}, [2540] = {.lex_state = 28}, @@ -20293,63 +17258,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2547] = {.lex_state = 28}, [2548] = {.lex_state = 28}, [2549] = {.lex_state = 28}, - [2550] = {.lex_state = 28}, - [2551] = {.lex_state = 75}, + [2550] = {.lex_state = 75}, + [2551] = {.lex_state = 73}, [2552] = {.lex_state = 28}, - [2553] = {.lex_state = 75}, + [2553] = {.lex_state = 28}, [2554] = {.lex_state = 75}, - [2555] = {.lex_state = 75}, - [2556] = {.lex_state = 75}, - [2557] = {.lex_state = 75}, + [2555] = {.lex_state = 28}, + [2556] = {.lex_state = 73}, + [2557] = {.lex_state = 28}, [2558] = {.lex_state = 28}, [2559] = {.lex_state = 28}, [2560] = {.lex_state = 28}, [2561] = {.lex_state = 28}, [2562] = {.lex_state = 28}, - [2563] = {.lex_state = 28}, + [2563] = {.lex_state = 73}, [2564] = {.lex_state = 28}, [2565] = {.lex_state = 28}, - [2566] = {.lex_state = 73}, + [2566] = {.lex_state = 28}, [2567] = {.lex_state = 28}, [2568] = {.lex_state = 28}, - [2569] = {.lex_state = 73}, - [2570] = {.lex_state = 73}, + [2569] = {.lex_state = 28}, + [2570] = {.lex_state = 28}, [2571] = {.lex_state = 28}, - [2572] = {.lex_state = 28}, - [2573] = {.lex_state = 73}, - [2574] = {.lex_state = 28}, - [2575] = {.lex_state = 73}, - [2576] = {.lex_state = 73}, - [2577] = {.lex_state = 73}, - [2578] = {.lex_state = 73}, + [2572] = {.lex_state = 75}, + [2573] = {.lex_state = 28}, + [2574] = {.lex_state = 75}, + [2575] = {.lex_state = 28}, + [2576] = {.lex_state = 28}, + [2577] = {.lex_state = 28}, + [2578] = {.lex_state = 28}, [2579] = {.lex_state = 28}, - [2580] = {.lex_state = 28}, - [2581] = {.lex_state = 75}, + [2580] = {.lex_state = 75}, + [2581] = {.lex_state = 28}, [2582] = {.lex_state = 28}, [2583] = {.lex_state = 28}, [2584] = {.lex_state = 28}, - [2585] = {.lex_state = 73}, - [2586] = {.lex_state = 28}, - [2587] = {.lex_state = 73}, - [2588] = {.lex_state = 73}, - [2589] = {.lex_state = 73}, - [2590] = {.lex_state = 28}, - [2591] = {.lex_state = 73}, - [2592] = {.lex_state = 73}, + [2585] = {.lex_state = 28}, + [2586] = {.lex_state = 73}, + [2587] = {.lex_state = 65}, + [2588] = {.lex_state = 28}, + [2589] = {.lex_state = 28}, + [2590] = {.lex_state = 73}, + [2591] = {.lex_state = 28}, + [2592] = {.lex_state = 28}, [2593] = {.lex_state = 28}, - [2594] = {.lex_state = 75}, + [2594] = {.lex_state = 28}, [2595] = {.lex_state = 28}, [2596] = {.lex_state = 28}, [2597] = {.lex_state = 28}, - [2598] = {.lex_state = 28}, - [2599] = {.lex_state = 28}, - [2600] = {.lex_state = 73}, - [2601] = {.lex_state = 73}, + [2598] = {.lex_state = 73}, + [2599] = {.lex_state = 73}, + [2600] = {.lex_state = 28}, + [2601] = {.lex_state = 55}, [2602] = {.lex_state = 28}, - [2603] = {.lex_state = 73}, + [2603] = {.lex_state = 28}, [2604] = {.lex_state = 28}, [2605] = {.lex_state = 28}, - [2606] = {.lex_state = 73}, + [2606] = {.lex_state = 28}, [2607] = {.lex_state = 28}, [2608] = {.lex_state = 28}, [2609] = {.lex_state = 28}, @@ -20357,352 +17322,352 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2611] = {.lex_state = 28}, [2612] = {.lex_state = 28}, [2613] = {.lex_state = 28}, - [2614] = {.lex_state = 28}, + [2614] = {.lex_state = 73}, [2615] = {.lex_state = 28}, [2616] = {.lex_state = 28}, [2617] = {.lex_state = 28}, [2618] = {.lex_state = 28}, [2619] = {.lex_state = 28}, - [2620] = {.lex_state = 55}, - [2621] = {.lex_state = 55}, + [2620] = {.lex_state = 28}, + [2621] = {.lex_state = 28}, [2622] = {.lex_state = 28}, [2623] = {.lex_state = 28}, - [2624] = {.lex_state = 75}, + [2624] = {.lex_state = 73}, [2625] = {.lex_state = 73}, [2626] = {.lex_state = 73}, - [2627] = {.lex_state = 73}, - [2628] = {.lex_state = 73}, - [2629] = {.lex_state = 73}, - [2630] = {.lex_state = 73}, - [2631] = {.lex_state = 73}, - [2632] = {.lex_state = 75}, - [2633] = {.lex_state = 73}, - [2634] = {.lex_state = 73}, - [2635] = {.lex_state = 75}, - [2636] = {.lex_state = 73}, - [2637] = {.lex_state = 73}, - [2638] = {.lex_state = 73}, - [2639] = {.lex_state = 28}, + [2627] = {.lex_state = 28}, + [2628] = {.lex_state = 28}, + [2629] = {.lex_state = 28}, + [2630] = {.lex_state = 28}, + [2631] = {.lex_state = 75}, + [2632] = {.lex_state = 28}, + [2633] = {.lex_state = 28}, + [2634] = {.lex_state = 75}, + [2635] = {.lex_state = 28}, + [2636] = {.lex_state = 28}, + [2637] = {.lex_state = 28}, + [2638] = {.lex_state = 28}, + [2639] = {.lex_state = 73}, [2640] = {.lex_state = 73}, - [2641] = {.lex_state = 77}, - [2642] = {.lex_state = 73}, - [2643] = {.lex_state = 73}, - [2644] = {.lex_state = 73}, - [2645] = {.lex_state = 73}, - [2646] = {.lex_state = 73}, - [2647] = {.lex_state = 73}, - [2648] = {.lex_state = 73}, - [2649] = {.lex_state = 73}, - [2650] = {.lex_state = 73}, + [2641] = {.lex_state = 28}, + [2642] = {.lex_state = 28}, + [2643] = {.lex_state = 28}, + [2644] = {.lex_state = 28}, + [2645] = {.lex_state = 28}, + [2646] = {.lex_state = 28}, + [2647] = {.lex_state = 28}, + [2648] = {.lex_state = 28}, + [2649] = {.lex_state = 28}, + [2650] = {.lex_state = 28}, [2651] = {.lex_state = 73}, - [2652] = {.lex_state = 75}, - [2653] = {.lex_state = 75}, - [2654] = {.lex_state = 75}, + [2652] = {.lex_state = 73}, + [2653] = {.lex_state = 73}, + [2654] = {.lex_state = 73}, [2655] = {.lex_state = 73}, [2656] = {.lex_state = 73}, - [2657] = {.lex_state = 75}, - [2658] = {.lex_state = 28}, + [2657] = {.lex_state = 73}, + [2658] = {.lex_state = 73}, [2659] = {.lex_state = 73}, [2660] = {.lex_state = 73}, - [2661] = {.lex_state = 75}, + [2661] = {.lex_state = 28}, [2662] = {.lex_state = 73}, - [2663] = {.lex_state = 73}, + [2663] = {.lex_state = 28}, [2664] = {.lex_state = 73}, [2665] = {.lex_state = 73}, [2666] = {.lex_state = 73}, - [2667] = {.lex_state = 73}, - [2668] = {.lex_state = 75}, + [2667] = {.lex_state = 77}, + [2668] = {.lex_state = 73}, [2669] = {.lex_state = 73}, [2670] = {.lex_state = 73}, - [2671] = {.lex_state = 73}, - [2672] = {.lex_state = 57}, - [2673] = {.lex_state = 75}, + [2671] = {.lex_state = 75}, + [2672] = {.lex_state = 73}, + [2673] = {.lex_state = 73}, [2674] = {.lex_state = 73}, - [2675] = {.lex_state = 83}, - [2676] = {.lex_state = 75}, + [2675] = {.lex_state = 75}, + [2676] = {.lex_state = 73}, [2677] = {.lex_state = 73}, - [2678] = {.lex_state = 83}, + [2678] = {.lex_state = 73}, [2679] = {.lex_state = 75}, - [2680] = {.lex_state = 75}, + [2680] = {.lex_state = 73}, [2681] = {.lex_state = 73}, - [2682] = {.lex_state = 75}, - [2683] = {.lex_state = 75}, - [2684] = {.lex_state = 75}, - [2685] = {.lex_state = 75}, + [2682] = {.lex_state = 73}, + [2683] = {.lex_state = 73}, + [2684] = {.lex_state = 73}, + [2685] = {.lex_state = 73}, [2686] = {.lex_state = 75}, - [2687] = {.lex_state = 73}, - [2688] = {.lex_state = 73}, + [2687] = {.lex_state = 75}, + [2688] = {.lex_state = 75}, [2689] = {.lex_state = 73}, [2690] = {.lex_state = 73}, [2691] = {.lex_state = 73}, [2692] = {.lex_state = 75}, [2693] = {.lex_state = 75}, - [2694] = {.lex_state = 83}, + [2694] = {.lex_state = 73}, [2695] = {.lex_state = 73}, [2696] = {.lex_state = 75}, [2697] = {.lex_state = 75}, - [2698] = {.lex_state = 75}, - [2699] = {.lex_state = 75}, - [2700] = {.lex_state = 75}, - [2701] = {.lex_state = 75}, - [2702] = {.lex_state = 73}, + [2698] = {.lex_state = 73}, + [2699] = {.lex_state = 73}, + [2700] = {.lex_state = 73}, + [2701] = {.lex_state = 77}, + [2702] = {.lex_state = 75}, [2703] = {.lex_state = 75}, [2704] = {.lex_state = 75}, - [2705] = {.lex_state = 83}, - [2706] = {.lex_state = 73}, - [2707] = {.lex_state = 75}, + [2705] = {.lex_state = 73}, + [2706] = {.lex_state = 83}, + [2707] = {.lex_state = 73}, [2708] = {.lex_state = 75}, [2709] = {.lex_state = 75}, [2710] = {.lex_state = 75}, [2711] = {.lex_state = 75}, [2712] = {.lex_state = 75}, - [2713] = {.lex_state = 73}, - [2714] = {.lex_state = 75}, + [2713] = {.lex_state = 75}, + [2714] = {.lex_state = 73}, [2715] = {.lex_state = 73}, - [2716] = {.lex_state = 73}, + [2716] = {.lex_state = 75}, [2717] = {.lex_state = 75}, - [2718] = {.lex_state = 83}, - [2719] = {.lex_state = 73}, + [2718] = {.lex_state = 73}, + [2719] = {.lex_state = 75}, [2720] = {.lex_state = 75}, [2721] = {.lex_state = 75}, - [2722] = {.lex_state = 75}, + [2722] = {.lex_state = 73}, [2723] = {.lex_state = 75}, [2724] = {.lex_state = 75}, - [2725] = {.lex_state = 73}, - [2726] = {.lex_state = 73}, + [2725] = {.lex_state = 75}, + [2726] = {.lex_state = 75}, [2727] = {.lex_state = 75}, [2728] = {.lex_state = 75}, [2729] = {.lex_state = 75}, - [2730] = {.lex_state = 75}, - [2731] = {.lex_state = 75}, + [2730] = {.lex_state = 73}, + [2731] = {.lex_state = 73}, [2732] = {.lex_state = 75}, - [2733] = {.lex_state = 83}, + [2733] = {.lex_state = 75}, [2734] = {.lex_state = 75}, - [2735] = {.lex_state = 83}, + [2735] = {.lex_state = 75}, [2736] = {.lex_state = 75}, - [2737] = {.lex_state = 57}, + [2737] = {.lex_state = 75}, [2738] = {.lex_state = 75}, - [2739] = {.lex_state = 73}, + [2739] = {.lex_state = 75}, [2740] = {.lex_state = 75}, - [2741] = {.lex_state = 75}, - [2742] = {.lex_state = 75}, - [2743] = {.lex_state = 75}, - [2744] = {.lex_state = 75}, - [2745] = {.lex_state = 75}, + [2741] = {.lex_state = 73}, + [2742] = {.lex_state = 73}, + [2743] = {.lex_state = 83}, + [2744] = {.lex_state = 73}, + [2745] = {.lex_state = 83}, [2746] = {.lex_state = 75}, [2747] = {.lex_state = 75}, [2748] = {.lex_state = 75}, - [2749] = {.lex_state = 75}, - [2750] = {.lex_state = 75}, + [2749] = {.lex_state = 73}, + [2750] = {.lex_state = 83}, [2751] = {.lex_state = 75}, - [2752] = {.lex_state = 73}, + [2752] = {.lex_state = 75}, [2753] = {.lex_state = 75}, [2754] = {.lex_state = 75}, - [2755] = {.lex_state = 73}, - [2756] = {.lex_state = 75}, - [2757] = {.lex_state = 77}, + [2755] = {.lex_state = 83}, + [2756] = {.lex_state = 73}, + [2757] = {.lex_state = 75}, [2758] = {.lex_state = 73}, [2759] = {.lex_state = 75}, [2760] = {.lex_state = 75}, - [2761] = {.lex_state = 73}, + [2761] = {.lex_state = 75}, [2762] = {.lex_state = 75}, [2763] = {.lex_state = 75}, - [2764] = {.lex_state = 73}, + [2764] = {.lex_state = 75}, [2765] = {.lex_state = 75}, [2766] = {.lex_state = 75}, - [2767] = {.lex_state = 73}, - [2768] = {.lex_state = 77}, - [2769] = {.lex_state = 73}, + [2767] = {.lex_state = 75}, + [2768] = {.lex_state = 75}, + [2769] = {.lex_state = 75}, [2770] = {.lex_state = 75}, [2771] = {.lex_state = 75}, [2772] = {.lex_state = 75}, [2773] = {.lex_state = 75}, - [2774] = {.lex_state = 77}, + [2774] = {.lex_state = 75}, [2775] = {.lex_state = 75}, [2776] = {.lex_state = 75}, [2777] = {.lex_state = 75}, - [2778] = {.lex_state = 67}, - [2779] = {.lex_state = 73}, + [2778] = {.lex_state = 75}, + [2779] = {.lex_state = 75}, [2780] = {.lex_state = 73}, - [2781] = {.lex_state = 73}, - [2782] = {.lex_state = 73}, - [2783] = {.lex_state = 83}, + [2781] = {.lex_state = 75}, + [2782] = {.lex_state = 75}, + [2783] = {.lex_state = 75}, [2784] = {.lex_state = 75}, [2785] = {.lex_state = 73}, - [2786] = {.lex_state = 73}, - [2787] = {.lex_state = 73}, + [2786] = {.lex_state = 75}, + [2787] = {.lex_state = 75}, [2788] = {.lex_state = 75}, - [2789] = {.lex_state = 73}, - [2790] = {.lex_state = 73}, - [2791] = {.lex_state = 83}, + [2789] = {.lex_state = 75}, + [2790] = {.lex_state = 75}, + [2791] = {.lex_state = 75}, [2792] = {.lex_state = 75}, - [2793] = {.lex_state = 73}, - [2794] = {.lex_state = 73}, - [2795] = {.lex_state = 75}, - [2796] = {.lex_state = 73}, - [2797] = {.lex_state = 73}, - [2798] = {.lex_state = 83}, + [2793] = {.lex_state = 75}, + [2794] = {.lex_state = 75}, + [2795] = {.lex_state = 73}, + [2796] = {.lex_state = 67}, + [2797] = {.lex_state = 75}, + [2798] = {.lex_state = 73}, [2799] = {.lex_state = 73}, - [2800] = {.lex_state = 67}, + [2800] = {.lex_state = 75}, [2801] = {.lex_state = 75}, - [2802] = {.lex_state = 75}, - [2803] = {.lex_state = 75}, - [2804] = {.lex_state = 75}, + [2802] = {.lex_state = 73}, + [2803] = {.lex_state = 73}, + [2804] = {.lex_state = 73}, [2805] = {.lex_state = 75}, - [2806] = {.lex_state = 75}, - [2807] = {.lex_state = 75}, - [2808] = {.lex_state = 75}, - [2809] = {.lex_state = 73}, + [2806] = {.lex_state = 73}, + [2807] = {.lex_state = 73}, + [2808] = {.lex_state = 73}, + [2809] = {.lex_state = 77}, [2810] = {.lex_state = 75}, - [2811] = {.lex_state = 73}, - [2812] = {.lex_state = 83}, + [2811] = {.lex_state = 75}, + [2812] = {.lex_state = 75}, [2813] = {.lex_state = 75}, [2814] = {.lex_state = 75}, - [2815] = {.lex_state = 75}, + [2815] = {.lex_state = 57}, [2816] = {.lex_state = 75}, - [2817] = {.lex_state = 73}, + [2817] = {.lex_state = 57}, [2818] = {.lex_state = 75}, - [2819] = {.lex_state = 73}, + [2819] = {.lex_state = 75}, [2820] = {.lex_state = 75}, [2821] = {.lex_state = 73}, [2822] = {.lex_state = 73}, [2823] = {.lex_state = 73}, - [2824] = {.lex_state = 73}, - [2825] = {.lex_state = 75}, + [2824] = {.lex_state = 67}, + [2825] = {.lex_state = 73}, [2826] = {.lex_state = 75}, - [2827] = {.lex_state = 73}, - [2828] = {.lex_state = 73}, + [2827] = {.lex_state = 75}, + [2828] = {.lex_state = 83}, [2829] = {.lex_state = 75}, - [2830] = {.lex_state = 83}, - [2831] = {.lex_state = 83}, - [2832] = {.lex_state = 75}, - [2833] = {.lex_state = 75}, - [2834] = {.lex_state = 73}, + [2830] = {.lex_state = 75}, + [2831] = {.lex_state = 73}, + [2832] = {.lex_state = 73}, + [2833] = {.lex_state = 73}, + [2834] = {.lex_state = 75}, [2835] = {.lex_state = 73}, - [2836] = {.lex_state = 83}, - [2837] = {.lex_state = 73}, - [2838] = {.lex_state = 73}, + [2836] = {.lex_state = 73}, + [2837] = {.lex_state = 75}, + [2838] = {.lex_state = 75}, [2839] = {.lex_state = 73}, - [2840] = {.lex_state = 73}, - [2841] = {.lex_state = 83}, - [2842] = {.lex_state = 73}, - [2843] = {.lex_state = 75}, - [2844] = {.lex_state = 75}, + [2840] = {.lex_state = 83}, + [2841] = {.lex_state = 77}, + [2842] = {.lex_state = 75}, + [2843] = {.lex_state = 83}, + [2844] = {.lex_state = 83}, [2845] = {.lex_state = 75}, [2846] = {.lex_state = 75}, - [2847] = {.lex_state = 73}, + [2847] = {.lex_state = 83}, [2848] = {.lex_state = 73}, - [2849] = {.lex_state = 75}, + [2849] = {.lex_state = 83}, [2850] = {.lex_state = 73}, [2851] = {.lex_state = 73}, [2852] = {.lex_state = 73}, - [2853] = {.lex_state = 83}, + [2853] = {.lex_state = 73}, [2854] = {.lex_state = 73}, - [2855] = {.lex_state = 81}, + [2855] = {.lex_state = 75}, [2856] = {.lex_state = 73}, - [2857] = {.lex_state = 81}, + [2857] = {.lex_state = 83}, [2858] = {.lex_state = 73}, [2859] = {.lex_state = 73}, - [2860] = {.lex_state = 73}, + [2860] = {.lex_state = 75}, [2861] = {.lex_state = 73}, [2862] = {.lex_state = 73}, - [2863] = {.lex_state = 73}, + [2863] = {.lex_state = 75}, [2864] = {.lex_state = 73}, - [2865] = {.lex_state = 73}, + [2865] = {.lex_state = 83}, [2866] = {.lex_state = 73}, [2867] = {.lex_state = 73}, [2868] = {.lex_state = 73}, - [2869] = {.lex_state = 81}, - [2870] = {.lex_state = 77}, + [2869] = {.lex_state = 73}, + [2870] = {.lex_state = 83}, [2871] = {.lex_state = 73}, [2872] = {.lex_state = 73}, [2873] = {.lex_state = 73}, [2874] = {.lex_state = 73}, - [2875] = {.lex_state = 81}, - [2876] = {.lex_state = 77}, - [2877] = {.lex_state = 73}, + [2875] = {.lex_state = 73}, + [2876] = {.lex_state = 83}, + [2877] = {.lex_state = 83}, [2878] = {.lex_state = 73}, [2879] = {.lex_state = 73}, [2880] = {.lex_state = 73}, [2881] = {.lex_state = 73}, [2882] = {.lex_state = 77}, - [2883] = {.lex_state = 77}, - [2884] = {.lex_state = 77}, - [2885] = {.lex_state = 77}, - [2886] = {.lex_state = 77}, - [2887] = {.lex_state = 77}, - [2888] = {.lex_state = 77}, - [2889] = {.lex_state = 77}, - [2890] = {.lex_state = 77}, - [2891] = {.lex_state = 77}, - [2892] = {.lex_state = 77}, + [2883] = {.lex_state = 73}, + [2884] = {.lex_state = 73}, + [2885] = {.lex_state = 73}, + [2886] = {.lex_state = 73}, + [2887] = {.lex_state = 81}, + [2888] = {.lex_state = 73}, + [2889] = {.lex_state = 73}, + [2890] = {.lex_state = 73}, + [2891] = {.lex_state = 81}, + [2892] = {.lex_state = 73}, [2893] = {.lex_state = 73}, [2894] = {.lex_state = 73}, - [2895] = {.lex_state = 77}, + [2895] = {.lex_state = 73}, [2896] = {.lex_state = 73}, - [2897] = {.lex_state = 77}, - [2898] = {.lex_state = 77}, - [2899] = {.lex_state = 77}, - [2900] = {.lex_state = 77}, - [2901] = {.lex_state = 77}, - [2902] = {.lex_state = 77}, - [2903] = {.lex_state = 83}, - [2904] = {.lex_state = 77}, - [2905] = {.lex_state = 83}, - [2906] = {.lex_state = 77}, + [2897] = {.lex_state = 73}, + [2898] = {.lex_state = 73}, + [2899] = {.lex_state = 73}, + [2900] = {.lex_state = 73}, + [2901] = {.lex_state = 81}, + [2902] = {.lex_state = 73}, + [2903] = {.lex_state = 81}, + [2904] = {.lex_state = 73}, + [2905] = {.lex_state = 77}, + [2906] = {.lex_state = 73}, [2907] = {.lex_state = 73}, - [2908] = {.lex_state = 77}, - [2909] = {.lex_state = 77}, + [2908] = {.lex_state = 73}, + [2909] = {.lex_state = 73}, [2910] = {.lex_state = 73}, - [2911] = {.lex_state = 77}, - [2912] = {.lex_state = 77}, + [2911] = {.lex_state = 73}, + [2912] = {.lex_state = 83}, [2913] = {.lex_state = 77}, - [2914] = {.lex_state = 73}, + [2914] = {.lex_state = 77}, [2915] = {.lex_state = 77}, - [2916] = {.lex_state = 73}, - [2917] = {.lex_state = 33}, - [2918] = {.lex_state = 73}, - [2919] = {.lex_state = 77}, - [2920] = {.lex_state = 33}, + [2916] = {.lex_state = 77}, + [2917] = {.lex_state = 77}, + [2918] = {.lex_state = 77}, + [2919] = {.lex_state = 73}, + [2920] = {.lex_state = 77}, [2921] = {.lex_state = 77}, - [2922] = {.lex_state = 73}, + [2922] = {.lex_state = 77}, [2923] = {.lex_state = 77}, - [2924] = {.lex_state = 33}, - [2925] = {.lex_state = 73}, - [2926] = {.lex_state = 73}, - [2927] = {.lex_state = 73}, - [2928] = {.lex_state = 73}, - [2929] = {.lex_state = 73}, - [2930] = {.lex_state = 83}, - [2931] = {.lex_state = 83}, - [2932] = {.lex_state = 73}, - [2933] = {.lex_state = 73}, + [2924] = {.lex_state = 77}, + [2925] = {.lex_state = 77}, + [2926] = {.lex_state = 77}, + [2927] = {.lex_state = 33}, + [2928] = {.lex_state = 77}, + [2929] = {.lex_state = 77}, + [2930] = {.lex_state = 73}, + [2931] = {.lex_state = 77}, + [2932] = {.lex_state = 77}, + [2933] = {.lex_state = 77}, [2934] = {.lex_state = 73}, [2935] = {.lex_state = 73}, - [2936] = {.lex_state = 73}, + [2936] = {.lex_state = 33}, [2937] = {.lex_state = 73}, - [2938] = {.lex_state = 73}, - [2939] = {.lex_state = 73}, + [2938] = {.lex_state = 33}, + [2939] = {.lex_state = 77}, [2940] = {.lex_state = 73}, [2941] = {.lex_state = 73}, - [2942] = {.lex_state = 73}, - [2943] = {.lex_state = 73}, - [2944] = {.lex_state = 73}, - [2945] = {.lex_state = 73}, + [2942] = {.lex_state = 77}, + [2943] = {.lex_state = 77}, + [2944] = {.lex_state = 77}, + [2945] = {.lex_state = 83}, [2946] = {.lex_state = 73}, - [2947] = {.lex_state = 73}, + [2947] = {.lex_state = 77}, [2948] = {.lex_state = 73}, - [2949] = {.lex_state = 73}, + [2949] = {.lex_state = 83}, [2950] = {.lex_state = 73}, - [2951] = {.lex_state = 73}, + [2951] = {.lex_state = 77}, [2952] = {.lex_state = 73}, - [2953] = {.lex_state = 73}, - [2954] = {.lex_state = 73}, + [2953] = {.lex_state = 77}, + [2954] = {.lex_state = 77}, [2955] = {.lex_state = 73}, - [2956] = {.lex_state = 73}, - [2957] = {.lex_state = 73}, - [2958] = {.lex_state = 73}, - [2959] = {.lex_state = 73}, + [2956] = {.lex_state = 77}, + [2957] = {.lex_state = 83}, + [2958] = {.lex_state = 77}, + [2959] = {.lex_state = 77}, [2960] = {.lex_state = 73}, [2961] = {.lex_state = 73}, [2962] = {.lex_state = 73}, @@ -20750,34 +17715,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3004] = {.lex_state = 73}, [3005] = {.lex_state = 73}, [3006] = {.lex_state = 73}, - [3007] = {.lex_state = 83}, - [3008] = {.lex_state = 83}, - [3009] = {.lex_state = 83}, - [3010] = {.lex_state = 83}, - [3011] = {.lex_state = 83}, - [3012] = {.lex_state = 83}, - [3013] = {.lex_state = 83}, - [3014] = {.lex_state = 83}, - [3015] = {.lex_state = 83}, - [3016] = {.lex_state = 83}, - [3017] = {.lex_state = 83}, - [3018] = {.lex_state = 83}, - [3019] = {.lex_state = 83}, - [3020] = {.lex_state = 83}, - [3021] = {.lex_state = 83}, - [3022] = {.lex_state = 83}, - [3023] = {.lex_state = 83}, - [3024] = {.lex_state = 83}, - [3025] = {.lex_state = 83}, - [3026] = {.lex_state = 83}, - [3027] = {.lex_state = 83}, - [3028] = {.lex_state = 83}, - [3029] = {.lex_state = 83}, - [3030] = {.lex_state = 83}, - [3031] = {.lex_state = 83}, - [3032] = {.lex_state = 83}, - [3033] = {.lex_state = 83}, - [3034] = {.lex_state = 83}, + [3007] = {.lex_state = 73}, + [3008] = {.lex_state = 73}, + [3009] = {.lex_state = 73}, + [3010] = {.lex_state = 73}, + [3011] = {.lex_state = 73}, + [3012] = {.lex_state = 73}, + [3013] = {.lex_state = 73}, + [3014] = {.lex_state = 73}, + [3015] = {.lex_state = 73}, + [3016] = {.lex_state = 73}, + [3017] = {.lex_state = 73}, + [3018] = {.lex_state = 73}, + [3019] = {.lex_state = 73}, + [3020] = {.lex_state = 73}, + [3021] = {.lex_state = 73}, + [3022] = {.lex_state = 73}, + [3023] = {.lex_state = 73}, + [3024] = {.lex_state = 73}, + [3025] = {.lex_state = 73}, + [3026] = {.lex_state = 73}, + [3027] = {.lex_state = 73}, + [3028] = {.lex_state = 73}, + [3029] = {.lex_state = 73}, + [3030] = {.lex_state = 73}, + [3031] = {.lex_state = 73}, + [3032] = {.lex_state = 73}, + [3033] = {.lex_state = 73}, + [3034] = {.lex_state = 73}, [3035] = {.lex_state = 83}, [3036] = {.lex_state = 83}, [3037] = {.lex_state = 83}, @@ -21060,7 +18025,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3314] = {.lex_state = 83}, [3315] = {.lex_state = 83}, [3316] = {.lex_state = 83}, - [3317] = {.lex_state = 87}, + [3317] = {.lex_state = 83}, [3318] = {.lex_state = 83}, [3319] = {.lex_state = 83}, [3320] = {.lex_state = 83}, @@ -21072,729 +18037,729 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3326] = {.lex_state = 83}, [3327] = {.lex_state = 83}, [3328] = {.lex_state = 83}, - [3329] = {.lex_state = 87}, - [3330] = {.lex_state = 85}, - [3331] = {.lex_state = 33}, - [3332] = {.lex_state = 33}, - [3333] = {.lex_state = 33}, - [3334] = {.lex_state = 33}, - [3335] = {.lex_state = 33}, - [3336] = {.lex_state = 247}, - [3337] = {.lex_state = 84}, - [3338] = {.lex_state = 87}, - [3339] = {.lex_state = 84}, + [3329] = {.lex_state = 83}, + [3330] = {.lex_state = 83}, + [3331] = {.lex_state = 83}, + [3332] = {.lex_state = 83}, + [3333] = {.lex_state = 83}, + [3334] = {.lex_state = 83}, + [3335] = {.lex_state = 83}, + [3336] = {.lex_state = 83}, + [3337] = {.lex_state = 83}, + [3338] = {.lex_state = 83}, + [3339] = {.lex_state = 83}, [3340] = {.lex_state = 83}, [3341] = {.lex_state = 83}, [3342] = {.lex_state = 83}, [3343] = {.lex_state = 83}, [3344] = {.lex_state = 83}, - [3345] = {.lex_state = 84}, - [3346] = {.lex_state = 41}, - [3347] = {.lex_state = 34}, - [3348] = {.lex_state = 34}, - [3349] = {.lex_state = 41}, - [3350] = {.lex_state = 41}, + [3345] = {.lex_state = 83}, + [3346] = {.lex_state = 83}, + [3347] = {.lex_state = 83}, + [3348] = {.lex_state = 83}, + [3349] = {.lex_state = 83}, + [3350] = {.lex_state = 87}, [3351] = {.lex_state = 83}, [3352] = {.lex_state = 83}, - [3353] = {.lex_state = 41}, - [3354] = {.lex_state = 41}, - [3355] = {.lex_state = 41}, - [3356] = {.lex_state = 41}, - [3357] = {.lex_state = 41}, - [3358] = {.lex_state = 41}, - [3359] = {.lex_state = 41}, - [3360] = {.lex_state = 41}, - [3361] = {.lex_state = 83}, - [3362] = {.lex_state = 83}, - [3363] = {.lex_state = 85}, - [3364] = {.lex_state = 85}, - [3365] = {.lex_state = 85}, - [3366] = {.lex_state = 41}, - [3367] = {.lex_state = 85}, - [3368] = {.lex_state = 85}, - [3369] = {.lex_state = 85}, - [3370] = {.lex_state = 84}, - [3371] = {.lex_state = 85}, - [3372] = {.lex_state = 85}, - [3373] = {.lex_state = 85}, - [3374] = {.lex_state = 85}, - [3375] = {.lex_state = 35}, - [3376] = {.lex_state = 85}, - [3377] = {.lex_state = 85}, - [3378] = {.lex_state = 85}, + [3353] = {.lex_state = 83}, + [3354] = {.lex_state = 83}, + [3355] = {.lex_state = 87}, + [3356] = {.lex_state = 83}, + [3357] = {.lex_state = 83}, + [3358] = {.lex_state = 85}, + [3359] = {.lex_state = 33}, + [3360] = {.lex_state = 33}, + [3361] = {.lex_state = 33}, + [3362] = {.lex_state = 33}, + [3363] = {.lex_state = 33}, + [3364] = {.lex_state = 237}, + [3365] = {.lex_state = 87}, + [3366] = {.lex_state = 83}, + [3367] = {.lex_state = 84}, + [3368] = {.lex_state = 83}, + [3369] = {.lex_state = 83}, + [3370] = {.lex_state = 83}, + [3371] = {.lex_state = 84}, + [3372] = {.lex_state = 84}, + [3373] = {.lex_state = 83}, + [3374] = {.lex_state = 34}, + [3375] = {.lex_state = 41}, + [3376] = {.lex_state = 83}, + [3377] = {.lex_state = 34}, + [3378] = {.lex_state = 41}, [3379] = {.lex_state = 41}, - [3380] = {.lex_state = 35}, + [3380] = {.lex_state = 41}, [3381] = {.lex_state = 41}, - [3382] = {.lex_state = 84}, - [3383] = {.lex_state = 85}, - [3384] = {.lex_state = 35}, - [3385] = {.lex_state = 84}, - [3386] = {.lex_state = 85}, - [3387] = {.lex_state = 85}, - [3388] = {.lex_state = 85}, + [3382] = {.lex_state = 41}, + [3383] = {.lex_state = 41}, + [3384] = {.lex_state = 41}, + [3385] = {.lex_state = 41}, + [3386] = {.lex_state = 41}, + [3387] = {.lex_state = 41}, + [3388] = {.lex_state = 83}, [3389] = {.lex_state = 85}, - [3390] = {.lex_state = 35}, - [3391] = {.lex_state = 84}, + [3390] = {.lex_state = 83}, + [3391] = {.lex_state = 85}, [3392] = {.lex_state = 85}, - [3393] = {.lex_state = 85}, - [3394] = {.lex_state = 85}, - [3395] = {.lex_state = 84}, + [3393] = {.lex_state = 41}, + [3394] = {.lex_state = 83}, + [3395] = {.lex_state = 85}, [3396] = {.lex_state = 85}, - [3397] = {.lex_state = 34}, - [3398] = {.lex_state = 84}, + [3397] = {.lex_state = 85}, + [3398] = {.lex_state = 85}, [3399] = {.lex_state = 85}, - [3400] = {.lex_state = 41}, + [3400] = {.lex_state = 85}, [3401] = {.lex_state = 85}, - [3402] = {.lex_state = 41}, + [3402] = {.lex_state = 85}, [3403] = {.lex_state = 85}, [3404] = {.lex_state = 85}, [3405] = {.lex_state = 85}, - [3406] = {.lex_state = 84}, + [3406] = {.lex_state = 35}, [3407] = {.lex_state = 85}, - [3408] = {.lex_state = 84}, - [3409] = {.lex_state = 85}, + [3408] = {.lex_state = 85}, + [3409] = {.lex_state = 84}, [3410] = {.lex_state = 85}, - [3411] = {.lex_state = 85}, - [3412] = {.lex_state = 85}, + [3411] = {.lex_state = 84}, + [3412] = {.lex_state = 35}, [3413] = {.lex_state = 84}, - [3414] = {.lex_state = 34}, - [3415] = {.lex_state = 34}, - [3416] = {.lex_state = 34}, + [3414] = {.lex_state = 84}, + [3415] = {.lex_state = 85}, + [3416] = {.lex_state = 85}, [3417] = {.lex_state = 84}, - [3418] = {.lex_state = 84}, - [3419] = {.lex_state = 34}, - [3420] = {.lex_state = 84}, - [3421] = {.lex_state = 34}, - [3422] = {.lex_state = 34}, - [3423] = {.lex_state = 34}, - [3424] = {.lex_state = 34}, - [3425] = {.lex_state = 34}, - [3426] = {.lex_state = 34}, - [3427] = {.lex_state = 34}, - [3428] = {.lex_state = 35}, - [3429] = {.lex_state = 34}, - [3430] = {.lex_state = 34}, - [3431] = {.lex_state = 34}, + [3418] = {.lex_state = 85}, + [3419] = {.lex_state = 41}, + [3420] = {.lex_state = 85}, + [3421] = {.lex_state = 85}, + [3422] = {.lex_state = 85}, + [3423] = {.lex_state = 41}, + [3424] = {.lex_state = 85}, + [3425] = {.lex_state = 85}, + [3426] = {.lex_state = 85}, + [3427] = {.lex_state = 85}, + [3428] = {.lex_state = 84}, + [3429] = {.lex_state = 41}, + [3430] = {.lex_state = 84}, + [3431] = {.lex_state = 41}, [3432] = {.lex_state = 34}, - [3433] = {.lex_state = 34}, - [3434] = {.lex_state = 34}, - [3435] = {.lex_state = 34}, - [3436] = {.lex_state = 84}, - [3437] = {.lex_state = 34}, - [3438] = {.lex_state = 34}, - [3439] = {.lex_state = 34}, - [3440] = {.lex_state = 34}, + [3433] = {.lex_state = 85}, + [3434] = {.lex_state = 85}, + [3435] = {.lex_state = 85}, + [3436] = {.lex_state = 85}, + [3437] = {.lex_state = 84}, + [3438] = {.lex_state = 35}, + [3439] = {.lex_state = 85}, + [3440] = {.lex_state = 35}, [3441] = {.lex_state = 34}, - [3442] = {.lex_state = 34}, + [3442] = {.lex_state = 84}, [3443] = {.lex_state = 34}, [3444] = {.lex_state = 34}, - [3445] = {.lex_state = 34}, - [3446] = {.lex_state = 35}, - [3447] = {.lex_state = 85}, - [3448] = {.lex_state = 85}, - [3449] = {.lex_state = 81}, + [3445] = {.lex_state = 84}, + [3446] = {.lex_state = 34}, + [3447] = {.lex_state = 84}, + [3448] = {.lex_state = 84}, + [3449] = {.lex_state = 34}, [3450] = {.lex_state = 34}, [3451] = {.lex_state = 34}, - [3452] = {.lex_state = 81}, - [3453] = {.lex_state = 81}, - [3454] = {.lex_state = 85}, - [3455] = {.lex_state = 81}, + [3452] = {.lex_state = 34}, + [3453] = {.lex_state = 34}, + [3454] = {.lex_state = 34}, + [3455] = {.lex_state = 34}, [3456] = {.lex_state = 34}, - [3457] = {.lex_state = 81}, - [3458] = {.lex_state = 34}, - [3459] = {.lex_state = 81}, - [3460] = {.lex_state = 81}, - [3461] = {.lex_state = 81}, - [3462] = {.lex_state = 81}, - [3463] = {.lex_state = 85}, - [3464] = {.lex_state = 81}, - [3465] = {.lex_state = 81}, - [3466] = {.lex_state = 81}, - [3467] = {.lex_state = 24}, + [3457] = {.lex_state = 35}, + [3458] = {.lex_state = 84}, + [3459] = {.lex_state = 34}, + [3460] = {.lex_state = 34}, + [3461] = {.lex_state = 34}, + [3462] = {.lex_state = 34}, + [3463] = {.lex_state = 34}, + [3464] = {.lex_state = 34}, + [3465] = {.lex_state = 34}, + [3466] = {.lex_state = 34}, + [3467] = {.lex_state = 34}, [3468] = {.lex_state = 34}, [3469] = {.lex_state = 34}, [3470] = {.lex_state = 34}, [3471] = {.lex_state = 34}, [3472] = {.lex_state = 34}, [3473] = {.lex_state = 34}, - [3474] = {.lex_state = 34}, - [3475] = {.lex_state = 34}, - [3476] = {.lex_state = 34}, + [3474] = {.lex_state = 85}, + [3475] = {.lex_state = 85}, + [3476] = {.lex_state = 35}, [3477] = {.lex_state = 85}, - [3478] = {.lex_state = 24}, - [3479] = {.lex_state = 24}, - [3480] = {.lex_state = 24}, + [3478] = {.lex_state = 81}, + [3479] = {.lex_state = 81}, + [3480] = {.lex_state = 81}, [3481] = {.lex_state = 34}, - [3482] = {.lex_state = 34}, - [3483] = {.lex_state = 34}, + [3482] = {.lex_state = 81}, + [3483] = {.lex_state = 81}, [3484] = {.lex_state = 81}, [3485] = {.lex_state = 81}, - [3486] = {.lex_state = 81}, - [3487] = {.lex_state = 85}, + [3486] = {.lex_state = 34}, + [3487] = {.lex_state = 81}, [3488] = {.lex_state = 81}, - [3489] = {.lex_state = 81}, - [3490] = {.lex_state = 24}, + [3489] = {.lex_state = 34}, + [3490] = {.lex_state = 34}, [3491] = {.lex_state = 81}, - [3492] = {.lex_state = 34}, + [3492] = {.lex_state = 85}, [3493] = {.lex_state = 81}, [3494] = {.lex_state = 81}, - [3495] = {.lex_state = 81}, - [3496] = {.lex_state = 81}, - [3497] = {.lex_state = 81}, - [3498] = {.lex_state = 85}, - [3499] = {.lex_state = 85}, - [3500] = {.lex_state = 81}, - [3501] = {.lex_state = 81}, - [3502] = {.lex_state = 81}, - [3503] = {.lex_state = 81}, - [3504] = {.lex_state = 81}, - [3505] = {.lex_state = 81}, - [3506] = {.lex_state = 24}, - [3507] = {.lex_state = 81}, - [3508] = {.lex_state = 81}, - [3509] = {.lex_state = 81}, - [3510] = {.lex_state = 85}, - [3511] = {.lex_state = 81}, + [3495] = {.lex_state = 34}, + [3496] = {.lex_state = 34}, + [3497] = {.lex_state = 24}, + [3498] = {.lex_state = 24}, + [3499] = {.lex_state = 34}, + [3500] = {.lex_state = 34}, + [3501] = {.lex_state = 34}, + [3502] = {.lex_state = 24}, + [3503] = {.lex_state = 34}, + [3504] = {.lex_state = 34}, + [3505] = {.lex_state = 34}, + [3506] = {.lex_state = 34}, + [3507] = {.lex_state = 34}, + [3508] = {.lex_state = 24}, + [3509] = {.lex_state = 34}, + [3510] = {.lex_state = 34}, + [3511] = {.lex_state = 85}, [3512] = {.lex_state = 85}, [3513] = {.lex_state = 81}, - [3514] = {.lex_state = 85}, + [3514] = {.lex_state = 24}, [3515] = {.lex_state = 81}, [3516] = {.lex_state = 81}, - [3517] = {.lex_state = 256}, - [3518] = {.lex_state = 256}, - [3519] = {.lex_state = 95}, - [3520] = {.lex_state = 95}, - [3521] = {.lex_state = 88}, - [3522] = {.lex_state = 95}, - [3523] = {.lex_state = 90}, - [3524] = {.lex_state = 88}, - [3525] = {.lex_state = 95}, - [3526] = {.lex_state = 95}, - [3527] = {.lex_state = 88}, - [3528] = {.lex_state = 88}, - [3529] = {.lex_state = 95}, - [3530] = {.lex_state = 95}, - [3531] = {.lex_state = 88}, - [3532] = {.lex_state = 88}, - [3533] = {.lex_state = 95}, - [3534] = {.lex_state = 95}, - [3535] = {.lex_state = 88}, - [3536] = {.lex_state = 88}, - [3537] = {.lex_state = 95}, - [3538] = {.lex_state = 0}, - [3539] = {.lex_state = 256}, - [3540] = {.lex_state = 88}, - [3541] = {.lex_state = 95}, - [3542] = {.lex_state = 88}, - [3543] = {.lex_state = 88}, - [3544] = {.lex_state = 95}, + [3517] = {.lex_state = 81}, + [3518] = {.lex_state = 81}, + [3519] = {.lex_state = 81}, + [3520] = {.lex_state = 81}, + [3521] = {.lex_state = 81}, + [3522] = {.lex_state = 85}, + [3523] = {.lex_state = 85}, + [3524] = {.lex_state = 81}, + [3525] = {.lex_state = 81}, + [3526] = {.lex_state = 81}, + [3527] = {.lex_state = 81}, + [3528] = {.lex_state = 85}, + [3529] = {.lex_state = 81}, + [3530] = {.lex_state = 81}, + [3531] = {.lex_state = 81}, + [3532] = {.lex_state = 81}, + [3533] = {.lex_state = 81}, + [3534] = {.lex_state = 81}, + [3535] = {.lex_state = 81}, + [3536] = {.lex_state = 81}, + [3537] = {.lex_state = 85}, + [3538] = {.lex_state = 81}, + [3539] = {.lex_state = 81}, + [3540] = {.lex_state = 81}, + [3541] = {.lex_state = 85}, + [3542] = {.lex_state = 24}, + [3543] = {.lex_state = 34}, + [3544] = {.lex_state = 81}, [3545] = {.lex_state = 95}, [3546] = {.lex_state = 95}, [3547] = {.lex_state = 88}, [3548] = {.lex_state = 95}, [3549] = {.lex_state = 95}, - [3550] = {.lex_state = 88}, - [3551] = {.lex_state = 95}, - [3552] = {.lex_state = 95}, - [3553] = {.lex_state = 88}, - [3554] = {.lex_state = 95}, - [3555] = {.lex_state = 88}, + [3550] = {.lex_state = 95}, + [3551] = {.lex_state = 34}, + [3552] = {.lex_state = 88}, + [3553] = {.lex_state = 95}, + [3554] = {.lex_state = 246}, + [3555] = {.lex_state = 34}, [3556] = {.lex_state = 95}, - [3557] = {.lex_state = 88}, - [3558] = {.lex_state = 95}, + [3557] = {.lex_state = 0}, + [3558] = {.lex_state = 88}, [3559] = {.lex_state = 88}, - [3560] = {.lex_state = 88}, + [3560] = {.lex_state = 95}, [3561] = {.lex_state = 95}, [3562] = {.lex_state = 88}, - [3563] = {.lex_state = 95}, + [3563] = {.lex_state = 88}, [3564] = {.lex_state = 88}, - [3565] = {.lex_state = 95}, - [3566] = {.lex_state = 88}, - [3567] = {.lex_state = 88}, - [3568] = {.lex_state = 95}, - [3569] = {.lex_state = 88}, - [3570] = {.lex_state = 34}, - [3571] = {.lex_state = 34}, + [3565] = {.lex_state = 246}, + [3566] = {.lex_state = 90}, + [3567] = {.lex_state = 95}, + [3568] = {.lex_state = 88}, + [3569] = {.lex_state = 95}, + [3570] = {.lex_state = 246}, + [3571] = {.lex_state = 88}, [3572] = {.lex_state = 95}, [3573] = {.lex_state = 88}, - [3574] = {.lex_state = 85}, - [3575] = {.lex_state = 88}, + [3574] = {.lex_state = 88}, + [3575] = {.lex_state = 95}, [3576] = {.lex_state = 95}, - [3577] = {.lex_state = 95}, - [3578] = {.lex_state = 88}, + [3577] = {.lex_state = 88}, + [3578] = {.lex_state = 246}, [3579] = {.lex_state = 95}, [3580] = {.lex_state = 95}, [3581] = {.lex_state = 88}, [3582] = {.lex_state = 95}, [3583] = {.lex_state = 88}, [3584] = {.lex_state = 88}, - [3585] = {.lex_state = 95}, - [3586] = {.lex_state = 88}, + [3585] = {.lex_state = 88}, + [3586] = {.lex_state = 95}, [3587] = {.lex_state = 95}, [3588] = {.lex_state = 88}, - [3589] = {.lex_state = 256}, + [3589] = {.lex_state = 88}, [3590] = {.lex_state = 95}, [3591] = {.lex_state = 88}, [3592] = {.lex_state = 95}, - [3593] = {.lex_state = 256}, + [3593] = {.lex_state = 95}, [3594] = {.lex_state = 88}, [3595] = {.lex_state = 88}, - [3596] = {.lex_state = 95}, - [3597] = {.lex_state = 95}, - [3598] = {.lex_state = 88}, + [3596] = {.lex_state = 88}, + [3597] = {.lex_state = 88}, + [3598] = {.lex_state = 95}, [3599] = {.lex_state = 88}, - [3600] = {.lex_state = 88}, + [3600] = {.lex_state = 95}, [3601] = {.lex_state = 88}, - [3602] = {.lex_state = 256}, + [3602] = {.lex_state = 95}, [3603] = {.lex_state = 95}, [3604] = {.lex_state = 88}, - [3605] = {.lex_state = 0}, + [3605] = {.lex_state = 246}, [3606] = {.lex_state = 95}, - [3607] = {.lex_state = 95}, + [3607] = {.lex_state = 88}, [3608] = {.lex_state = 95}, [3609] = {.lex_state = 88}, [3610] = {.lex_state = 95}, [3611] = {.lex_state = 95}, - [3612] = {.lex_state = 88}, + [3612] = {.lex_state = 95}, [3613] = {.lex_state = 88}, [3614] = {.lex_state = 95}, [3615] = {.lex_state = 88}, - [3616] = {.lex_state = 256}, + [3616] = {.lex_state = 88}, [3617] = {.lex_state = 88}, - [3618] = {.lex_state = 95}, - [3619] = {.lex_state = 85}, - [3620] = {.lex_state = 88}, + [3618] = {.lex_state = 88}, + [3619] = {.lex_state = 88}, + [3620] = {.lex_state = 95}, [3621] = {.lex_state = 95}, - [3622] = {.lex_state = 256}, + [3622] = {.lex_state = 246}, [3623] = {.lex_state = 88}, - [3624] = {.lex_state = 95}, + [3624] = {.lex_state = 88}, [3625] = {.lex_state = 95}, [3626] = {.lex_state = 88}, [3627] = {.lex_state = 88}, - [3628] = {.lex_state = 88}, - [3629] = {.lex_state = 95}, - [3630] = {.lex_state = 256}, - [3631] = {.lex_state = 0}, - [3632] = {.lex_state = 85}, - [3633] = {.lex_state = 85}, - [3634] = {.lex_state = 0}, - [3635] = {.lex_state = 260}, - [3636] = {.lex_state = 81}, - [3637] = {.lex_state = 81}, - [3638] = {.lex_state = 0}, - [3639] = {.lex_state = 85}, - [3640] = {.lex_state = 256}, - [3641] = {.lex_state = 81}, - [3642] = {.lex_state = 81}, - [3643] = {.lex_state = 256}, - [3644] = {.lex_state = 0}, - [3645] = {.lex_state = 256}, - [3646] = {.lex_state = 256}, - [3647] = {.lex_state = 34}, - [3648] = {.lex_state = 85}, - [3649] = {.lex_state = 81}, - [3650] = {.lex_state = 85}, - [3651] = {.lex_state = 256}, - [3652] = {.lex_state = 81}, - [3653] = {.lex_state = 81}, - [3654] = {.lex_state = 0}, - [3655] = {.lex_state = 85}, - [3656] = {.lex_state = 0}, - [3657] = {.lex_state = 34}, - [3658] = {.lex_state = 0}, - [3659] = {.lex_state = 34}, - [3660] = {.lex_state = 81}, - [3661] = {.lex_state = 0}, + [3628] = {.lex_state = 95}, + [3629] = {.lex_state = 88}, + [3630] = {.lex_state = 95}, + [3631] = {.lex_state = 95}, + [3632] = {.lex_state = 95}, + [3633] = {.lex_state = 88}, + [3634] = {.lex_state = 95}, + [3635] = {.lex_state = 88}, + [3636] = {.lex_state = 95}, + [3637] = {.lex_state = 88}, + [3638] = {.lex_state = 85}, + [3639] = {.lex_state = 246}, + [3640] = {.lex_state = 95}, + [3641] = {.lex_state = 85}, + [3642] = {.lex_state = 88}, + [3643] = {.lex_state = 88}, + [3644] = {.lex_state = 246}, + [3645] = {.lex_state = 0}, + [3646] = {.lex_state = 95}, + [3647] = {.lex_state = 88}, + [3648] = {.lex_state = 95}, + [3649] = {.lex_state = 95}, + [3650] = {.lex_state = 95}, + [3651] = {.lex_state = 95}, + [3652] = {.lex_state = 95}, + [3653] = {.lex_state = 88}, + [3654] = {.lex_state = 88}, + [3655] = {.lex_state = 88}, + [3656] = {.lex_state = 95}, + [3657] = {.lex_state = 88}, + [3658] = {.lex_state = 246}, + [3659] = {.lex_state = 250}, + [3660] = {.lex_state = 34}, + [3661] = {.lex_state = 81}, [3662] = {.lex_state = 85}, - [3663] = {.lex_state = 69}, - [3664] = {.lex_state = 0}, - [3665] = {.lex_state = 85}, - [3666] = {.lex_state = 81}, - [3667] = {.lex_state = 85}, + [3663] = {.lex_state = 85}, + [3664] = {.lex_state = 34}, + [3665] = {.lex_state = 81}, + [3666] = {.lex_state = 246}, + [3667] = {.lex_state = 246}, [3668] = {.lex_state = 0}, - [3669] = {.lex_state = 85}, - [3670] = {.lex_state = 69}, + [3669] = {.lex_state = 0}, + [3670] = {.lex_state = 81}, [3671] = {.lex_state = 0}, - [3672] = {.lex_state = 69}, - [3673] = {.lex_state = 85}, + [3672] = {.lex_state = 0}, + [3673] = {.lex_state = 81}, [3674] = {.lex_state = 85}, - [3675] = {.lex_state = 85}, - [3676] = {.lex_state = 85}, - [3677] = {.lex_state = 69}, - [3678] = {.lex_state = 69}, - [3679] = {.lex_state = 0}, - [3680] = {.lex_state = 69}, - [3681] = {.lex_state = 85}, + [3675] = {.lex_state = 81}, + [3676] = {.lex_state = 81}, + [3677] = {.lex_state = 0}, + [3678] = {.lex_state = 0}, + [3679] = {.lex_state = 246}, + [3680] = {.lex_state = 81}, + [3681] = {.lex_state = 0}, [3682] = {.lex_state = 85}, - [3683] = {.lex_state = 0}, - [3684] = {.lex_state = 0}, + [3683] = {.lex_state = 81}, + [3684] = {.lex_state = 85}, [3685] = {.lex_state = 0}, - [3686] = {.lex_state = 0}, - [3687] = {.lex_state = 0}, + [3686] = {.lex_state = 246}, + [3687] = {.lex_state = 246}, [3688] = {.lex_state = 85}, - [3689] = {.lex_state = 69}, + [3689] = {.lex_state = 34}, [3690] = {.lex_state = 85}, - [3691] = {.lex_state = 0}, - [3692] = {.lex_state = 69}, - [3693] = {.lex_state = 0}, - [3694] = {.lex_state = 69}, - [3695] = {.lex_state = 69}, + [3691] = {.lex_state = 88}, + [3692] = {.lex_state = 85}, + [3693] = {.lex_state = 85}, + [3694] = {.lex_state = 0}, + [3695] = {.lex_state = 0}, [3696] = {.lex_state = 85}, - [3697] = {.lex_state = 69}, - [3698] = {.lex_state = 256}, + [3697] = {.lex_state = 88}, + [3698] = {.lex_state = 0}, [3699] = {.lex_state = 85}, [3700] = {.lex_state = 0}, - [3701] = {.lex_state = 256}, - [3702] = {.lex_state = 85}, + [3701] = {.lex_state = 0}, + [3702] = {.lex_state = 69}, [3703] = {.lex_state = 0}, - [3704] = {.lex_state = 0}, - [3705] = {.lex_state = 256}, - [3706] = {.lex_state = 256}, - [3707] = {.lex_state = 0}, - [3708] = {.lex_state = 85}, - [3709] = {.lex_state = 0}, + [3704] = {.lex_state = 246}, + [3705] = {.lex_state = 69}, + [3706] = {.lex_state = 0}, + [3707] = {.lex_state = 69}, + [3708] = {.lex_state = 0}, + [3709] = {.lex_state = 69}, [3710] = {.lex_state = 0}, [3711] = {.lex_state = 0}, - [3712] = {.lex_state = 85}, - [3713] = {.lex_state = 256}, - [3714] = {.lex_state = 260}, - [3715] = {.lex_state = 0}, - [3716] = {.lex_state = 256}, - [3717] = {.lex_state = 0}, - [3718] = {.lex_state = 0}, - [3719] = {.lex_state = 0}, - [3720] = {.lex_state = 260}, - [3721] = {.lex_state = 0}, - [3722] = {.lex_state = 85}, - [3723] = {.lex_state = 0}, - [3724] = {.lex_state = 69}, - [3725] = {.lex_state = 85}, - [3726] = {.lex_state = 69}, - [3727] = {.lex_state = 69}, + [3712] = {.lex_state = 0}, + [3713] = {.lex_state = 0}, + [3714] = {.lex_state = 246}, + [3715] = {.lex_state = 85}, + [3716] = {.lex_state = 0}, + [3717] = {.lex_state = 85}, + [3718] = {.lex_state = 95}, + [3719] = {.lex_state = 85}, + [3720] = {.lex_state = 250}, + [3721] = {.lex_state = 95}, + [3722] = {.lex_state = 0}, + [3723] = {.lex_state = 69}, + [3724] = {.lex_state = 85}, + [3725] = {.lex_state = 0}, + [3726] = {.lex_state = 85}, + [3727] = {.lex_state = 0}, [3728] = {.lex_state = 85}, - [3729] = {.lex_state = 85}, - [3730] = {.lex_state = 85}, - [3731] = {.lex_state = 69}, + [3729] = {.lex_state = 69}, + [3730] = {.lex_state = 69}, + [3731] = {.lex_state = 85}, [3732] = {.lex_state = 69}, - [3733] = {.lex_state = 256}, - [3734] = {.lex_state = 256}, + [3733] = {.lex_state = 246}, + [3734] = {.lex_state = 0}, [3735] = {.lex_state = 85}, - [3736] = {.lex_state = 85}, - [3737] = {.lex_state = 85}, - [3738] = {.lex_state = 69}, - [3739] = {.lex_state = 256}, - [3740] = {.lex_state = 90}, - [3741] = {.lex_state = 85}, - [3742] = {.lex_state = 85}, - [3743] = {.lex_state = 256}, - [3744] = {.lex_state = 0}, - [3745] = {.lex_state = 69}, - [3746] = {.lex_state = 88}, + [3736] = {.lex_state = 246}, + [3737] = {.lex_state = 69}, + [3738] = {.lex_state = 85}, + [3739] = {.lex_state = 246}, + [3740] = {.lex_state = 246}, + [3741] = {.lex_state = 0}, + [3742] = {.lex_state = 69}, + [3743] = {.lex_state = 85}, + [3744] = {.lex_state = 85}, + [3745] = {.lex_state = 85}, + [3746] = {.lex_state = 0}, [3747] = {.lex_state = 85}, - [3748] = {.lex_state = 69}, + [3748] = {.lex_state = 0}, [3749] = {.lex_state = 0}, - [3750] = {.lex_state = 256}, - [3751] = {.lex_state = 0}, - [3752] = {.lex_state = 69}, - [3753] = {.lex_state = 85}, - [3754] = {.lex_state = 256}, - [3755] = {.lex_state = 95}, - [3756] = {.lex_state = 95}, + [3750] = {.lex_state = 85}, + [3751] = {.lex_state = 69}, + [3752] = {.lex_state = 95}, + [3753] = {.lex_state = 95}, + [3754] = {.lex_state = 0}, + [3755] = {.lex_state = 246}, + [3756] = {.lex_state = 246}, [3757] = {.lex_state = 0}, - [3758] = {.lex_state = 69}, - [3759] = {.lex_state = 85}, + [3758] = {.lex_state = 0}, + [3759] = {.lex_state = 246}, [3760] = {.lex_state = 0}, - [3761] = {.lex_state = 88}, - [3762] = {.lex_state = 256}, - [3763] = {.lex_state = 256}, - [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 85}, + [3761] = {.lex_state = 85}, + [3762] = {.lex_state = 0}, + [3763] = {.lex_state = 69}, + [3764] = {.lex_state = 85}, + [3765] = {.lex_state = 0}, [3766] = {.lex_state = 88}, [3767] = {.lex_state = 0}, - [3768] = {.lex_state = 256}, - [3769] = {.lex_state = 85}, + [3768] = {.lex_state = 246}, + [3769] = {.lex_state = 95}, [3770] = {.lex_state = 88}, - [3771] = {.lex_state = 0}, - [3772] = {.lex_state = 0}, - [3773] = {.lex_state = 95}, - [3774] = {.lex_state = 0}, - [3775] = {.lex_state = 85}, - [3776] = {.lex_state = 256}, - [3777] = {.lex_state = 95}, - [3778] = {.lex_state = 256}, + [3771] = {.lex_state = 85}, + [3772] = {.lex_state = 69}, + [3773] = {.lex_state = 88}, + [3774] = {.lex_state = 69}, + [3775] = {.lex_state = 0}, + [3776] = {.lex_state = 85}, + [3777] = {.lex_state = 0}, + [3778] = {.lex_state = 0}, [3779] = {.lex_state = 69}, [3780] = {.lex_state = 0}, - [3781] = {.lex_state = 256}, - [3782] = {.lex_state = 0}, + [3781] = {.lex_state = 69}, + [3782] = {.lex_state = 246}, [3783] = {.lex_state = 85}, - [3784] = {.lex_state = 81}, + [3784] = {.lex_state = 0}, [3785] = {.lex_state = 0}, - [3786] = {.lex_state = 256}, - [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 85}, - [3789] = {.lex_state = 85}, - [3790] = {.lex_state = 256}, + [3786] = {.lex_state = 250}, + [3787] = {.lex_state = 69}, + [3788] = {.lex_state = 246}, + [3789] = {.lex_state = 246}, + [3790] = {.lex_state = 0}, [3791] = {.lex_state = 0}, [3792] = {.lex_state = 69}, [3793] = {.lex_state = 85}, - [3794] = {.lex_state = 0}, - [3795] = {.lex_state = 0}, - [3796] = {.lex_state = 85}, - [3797] = {.lex_state = 85}, - [3798] = {.lex_state = 0}, - [3799] = {.lex_state = 69}, + [3794] = {.lex_state = 246}, + [3795] = {.lex_state = 85}, + [3796] = {.lex_state = 90}, + [3797] = {.lex_state = 69}, + [3798] = {.lex_state = 85}, + [3799] = {.lex_state = 0}, [3800] = {.lex_state = 69}, - [3801] = {.lex_state = 256}, - [3802] = {.lex_state = 256}, - [3803] = {.lex_state = 256}, - [3804] = {.lex_state = 0}, - [3805] = {.lex_state = 0}, - [3806] = {.lex_state = 85}, - [3807] = {.lex_state = 69}, - [3808] = {.lex_state = 0}, - [3809] = {.lex_state = 69}, + [3801] = {.lex_state = 0}, + [3802] = {.lex_state = 0}, + [3803] = {.lex_state = 85}, + [3804] = {.lex_state = 246}, + [3805] = {.lex_state = 85}, + [3806] = {.lex_state = 246}, + [3807] = {.lex_state = 246}, + [3808] = {.lex_state = 246}, + [3809] = {.lex_state = 81}, [3810] = {.lex_state = 85}, [3811] = {.lex_state = 69}, - [3812] = {.lex_state = 256}, - [3813] = {.lex_state = 85}, - [3814] = {.lex_state = 0}, - [3815] = {.lex_state = 0}, - [3816] = {.lex_state = 0}, + [3812] = {.lex_state = 0}, + [3813] = {.lex_state = 0}, + [3814] = {.lex_state = 246}, + [3815] = {.lex_state = 85}, + [3816] = {.lex_state = 246}, [3817] = {.lex_state = 0}, - [3818] = {.lex_state = 260}, - [3819] = {.lex_state = 90}, - [3820] = {.lex_state = 81}, - [3821] = {.lex_state = 0}, - [3822] = {.lex_state = 85}, + [3818] = {.lex_state = 246}, + [3819] = {.lex_state = 85}, + [3820] = {.lex_state = 85}, + [3821] = {.lex_state = 69}, + [3822] = {.lex_state = 81}, [3823] = {.lex_state = 0}, - [3824] = {.lex_state = 256}, - [3825] = {.lex_state = 85}, - [3826] = {.lex_state = 0}, - [3827] = {.lex_state = 0}, - [3828] = {.lex_state = 69}, - [3829] = {.lex_state = 0}, + [3824] = {.lex_state = 0}, + [3825] = {.lex_state = 69}, + [3826] = {.lex_state = 85}, + [3827] = {.lex_state = 81}, + [3828] = {.lex_state = 0}, + [3829] = {.lex_state = 85}, [3830] = {.lex_state = 85}, - [3831] = {.lex_state = 69}, - [3832] = {.lex_state = 256}, - [3833] = {.lex_state = 96}, - [3834] = {.lex_state = 89}, - [3835] = {.lex_state = 89}, + [3831] = {.lex_state = 0}, + [3832] = {.lex_state = 69}, + [3833] = {.lex_state = 0}, + [3834] = {.lex_state = 85}, + [3835] = {.lex_state = 85}, [3836] = {.lex_state = 0}, - [3837] = {.lex_state = 0}, - [3838] = {.lex_state = 0}, + [3837] = {.lex_state = 85}, + [3838] = {.lex_state = 85}, [3839] = {.lex_state = 0}, - [3840] = {.lex_state = 96}, - [3841] = {.lex_state = 0}, + [3840] = {.lex_state = 69}, + [3841] = {.lex_state = 69}, [3842] = {.lex_state = 0}, - [3843] = {.lex_state = 0}, - [3844] = {.lex_state = 0}, - [3845] = {.lex_state = 0}, - [3846] = {.lex_state = 260}, + [3843] = {.lex_state = 85}, + [3844] = {.lex_state = 85}, + [3845] = {.lex_state = 69}, + [3846] = {.lex_state = 246}, [3847] = {.lex_state = 0}, - [3848] = {.lex_state = 0}, - [3849] = {.lex_state = 0}, - [3850] = {.lex_state = 0}, - [3851] = {.lex_state = 96}, - [3852] = {.lex_state = 89}, - [3853] = {.lex_state = 0}, - [3854] = {.lex_state = 85}, - [3855] = {.lex_state = 85}, - [3856] = {.lex_state = 0}, + [3848] = {.lex_state = 85}, + [3849] = {.lex_state = 90}, + [3850] = {.lex_state = 250}, + [3851] = {.lex_state = 246}, + [3852] = {.lex_state = 85}, + [3853] = {.lex_state = 246}, + [3854] = {.lex_state = 69}, + [3855] = {.lex_state = 69}, + [3856] = {.lex_state = 246}, [3857] = {.lex_state = 0}, [3858] = {.lex_state = 0}, [3859] = {.lex_state = 0}, - [3860] = {.lex_state = 89}, - [3861] = {.lex_state = 96}, - [3862] = {.lex_state = 0}, + [3860] = {.lex_state = 246}, + [3861] = {.lex_state = 69}, + [3862] = {.lex_state = 85}, [3863] = {.lex_state = 0}, - [3864] = {.lex_state = 81}, - [3865] = {.lex_state = 85}, + [3864] = {.lex_state = 85}, + [3865] = {.lex_state = 0}, [3866] = {.lex_state = 0}, [3867] = {.lex_state = 0}, - [3868] = {.lex_state = 89}, + [3868] = {.lex_state = 0}, [3869] = {.lex_state = 0}, - [3870] = {.lex_state = 0}, + [3870] = {.lex_state = 89}, [3871] = {.lex_state = 0}, - [3872] = {.lex_state = 0}, - [3873] = {.lex_state = 0}, + [3872] = {.lex_state = 96}, + [3873] = {.lex_state = 89}, [3874] = {.lex_state = 0}, [3875] = {.lex_state = 0}, [3876] = {.lex_state = 0}, [3877] = {.lex_state = 0}, - [3878] = {.lex_state = 96}, - [3879] = {.lex_state = 81}, - [3880] = {.lex_state = 85}, - [3881] = {.lex_state = 89}, - [3882] = {.lex_state = 96}, - [3883] = {.lex_state = 89}, + [3878] = {.lex_state = 0}, + [3879] = {.lex_state = 0}, + [3880] = {.lex_state = 0}, + [3881] = {.lex_state = 0}, + [3882] = {.lex_state = 0}, + [3883] = {.lex_state = 96}, [3884] = {.lex_state = 0}, [3885] = {.lex_state = 0}, - [3886] = {.lex_state = 96}, + [3886] = {.lex_state = 89}, [3887] = {.lex_state = 0}, - [3888] = {.lex_state = 89}, - [3889] = {.lex_state = 89}, + [3888] = {.lex_state = 0}, + [3889] = {.lex_state = 0}, [3890] = {.lex_state = 96}, [3891] = {.lex_state = 0}, - [3892] = {.lex_state = 0}, - [3893] = {.lex_state = 0}, + [3892] = {.lex_state = 96}, + [3893] = {.lex_state = 89}, [3894] = {.lex_state = 0}, - [3895] = {.lex_state = 96}, - [3896] = {.lex_state = 0}, + [3895] = {.lex_state = 85}, + [3896] = {.lex_state = 85}, [3897] = {.lex_state = 0}, [3898] = {.lex_state = 0}, - [3899] = {.lex_state = 0}, - [3900] = {.lex_state = 96}, - [3901] = {.lex_state = 0}, - [3902] = {.lex_state = 0}, - [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 89}, - [3905] = {.lex_state = 260}, - [3906] = {.lex_state = 85}, + [3899] = {.lex_state = 85}, + [3900] = {.lex_state = 0}, + [3901] = {.lex_state = 89}, + [3902] = {.lex_state = 96}, + [3903] = {.lex_state = 81}, + [3904] = {.lex_state = 96}, + [3905] = {.lex_state = 0}, + [3906] = {.lex_state = 89}, [3907] = {.lex_state = 0}, - [3908] = {.lex_state = 260}, + [3908] = {.lex_state = 250}, [3909] = {.lex_state = 0}, - [3910] = {.lex_state = 89}, - [3911] = {.lex_state = 96}, - [3912] = {.lex_state = 0}, - [3913] = {.lex_state = 69}, + [3910] = {.lex_state = 0}, + [3911] = {.lex_state = 0}, + [3912] = {.lex_state = 250}, + [3913] = {.lex_state = 0}, [3914] = {.lex_state = 69}, - [3915] = {.lex_state = 96}, - [3916] = {.lex_state = 89}, + [3915] = {.lex_state = 85}, + [3916] = {.lex_state = 0}, [3917] = {.lex_state = 0}, - [3918] = {.lex_state = 0}, - [3919] = {.lex_state = 96}, - [3920] = {.lex_state = 89}, - [3921] = {.lex_state = 0}, + [3918] = {.lex_state = 85}, + [3919] = {.lex_state = 0}, + [3920] = {.lex_state = 96}, + [3921] = {.lex_state = 89}, [3922] = {.lex_state = 0}, - [3923] = {.lex_state = 69}, + [3923] = {.lex_state = 250}, [3924] = {.lex_state = 0}, - [3925] = {.lex_state = 0}, + [3925] = {.lex_state = 85}, [3926] = {.lex_state = 0}, [3927] = {.lex_state = 0}, [3928] = {.lex_state = 0}, - [3929] = {.lex_state = 85}, - [3930] = {.lex_state = 0}, - [3931] = {.lex_state = 0}, - [3932] = {.lex_state = 85}, - [3933] = {.lex_state = 0}, + [3929] = {.lex_state = 89}, + [3930] = {.lex_state = 89}, + [3931] = {.lex_state = 96}, + [3932] = {.lex_state = 0}, + [3933] = {.lex_state = 85}, [3934] = {.lex_state = 96}, - [3935] = {.lex_state = 89}, - [3936] = {.lex_state = 0}, + [3935] = {.lex_state = 0}, + [3936] = {.lex_state = 89}, [3937] = {.lex_state = 85}, - [3938] = {.lex_state = 85}, + [3938] = {.lex_state = 0}, [3939] = {.lex_state = 0}, - [3940] = {.lex_state = 0}, + [3940] = {.lex_state = 85}, [3941] = {.lex_state = 0}, - [3942] = {.lex_state = 260}, + [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}, + [3948] = {.lex_state = 85}, [3949] = {.lex_state = 0}, [3950] = {.lex_state = 0}, [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 0}, - [3953] = {.lex_state = 0}, - [3954] = {.lex_state = 85}, - [3955] = {.lex_state = 0}, - [3956] = {.lex_state = 260}, - [3957] = {.lex_state = 89}, - [3958] = {.lex_state = 0}, - [3959] = {.lex_state = 89}, - [3960] = {.lex_state = 96}, - [3961] = {.lex_state = 85}, + [3952] = {.lex_state = 89}, + [3953] = {.lex_state = 96}, + [3954] = {.lex_state = 96}, + [3955] = {.lex_state = 89}, + [3956] = {.lex_state = 85}, + [3957] = {.lex_state = 0}, + [3958] = {.lex_state = 69}, + [3959] = {.lex_state = 0}, + [3960] = {.lex_state = 0}, + [3961] = {.lex_state = 0}, [3962] = {.lex_state = 0}, - [3963] = {.lex_state = 0}, + [3963] = {.lex_state = 250}, [3964] = {.lex_state = 0}, - [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 85}, + [3965] = {.lex_state = 85}, + [3966] = {.lex_state = 0}, [3967] = {.lex_state = 0}, [3968] = {.lex_state = 0}, - [3969] = {.lex_state = 85}, - [3970] = {.lex_state = 0}, - [3971] = {.lex_state = 81}, + [3969] = {.lex_state = 0}, + [3970] = {.lex_state = 81}, + [3971] = {.lex_state = 0}, [3972] = {.lex_state = 0}, [3973] = {.lex_state = 0}, [3974] = {.lex_state = 0}, [3975] = {.lex_state = 0}, - [3976] = {.lex_state = 0}, + [3976] = {.lex_state = 89}, [3977] = {.lex_state = 0}, [3978] = {.lex_state = 0}, [3979] = {.lex_state = 0}, [3980] = {.lex_state = 0}, [3981] = {.lex_state = 0}, - [3982] = {.lex_state = 0}, + [3982] = {.lex_state = 89}, [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 81}, + [3984] = {.lex_state = 96}, [3985] = {.lex_state = 85}, [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 96}, - [3988] = {.lex_state = 89}, - [3989] = {.lex_state = 96}, - [3990] = {.lex_state = 0}, + [3987] = {.lex_state = 0}, + [3988] = {.lex_state = 81}, + [3989] = {.lex_state = 0}, + [3990] = {.lex_state = 89}, [3991] = {.lex_state = 96}, - [3992] = {.lex_state = 0}, - [3993] = {.lex_state = 89}, + [3992] = {.lex_state = 96}, + [3993] = {.lex_state = 85}, [3994] = {.lex_state = 0}, - [3995] = {.lex_state = 0}, + [3995] = {.lex_state = 85}, [3996] = {.lex_state = 0}, - [3997] = {.lex_state = 89}, - [3998] = {.lex_state = 96}, + [3997] = {.lex_state = 85}, + [3998] = {.lex_state = 0}, [3999] = {.lex_state = 0}, - [4000] = {.lex_state = 0}, - [4001] = {.lex_state = 0}, - [4002] = {.lex_state = 0}, - [4003] = {.lex_state = 0}, - [4004] = {.lex_state = 0}, + [4000] = {.lex_state = 89}, + [4001] = {.lex_state = 96}, + [4002] = {.lex_state = 96}, + [4003] = {.lex_state = 89}, + [4004] = {.lex_state = 89}, [4005] = {.lex_state = 0}, [4006] = {.lex_state = 0}, - [4007] = {.lex_state = 0}, + [4007] = {.lex_state = 96}, [4008] = {.lex_state = 0}, [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 0}, - [4011] = {.lex_state = 96}, + [4010] = {.lex_state = 89}, + [4011] = {.lex_state = 0}, [4012] = {.lex_state = 0}, - [4013] = {.lex_state = 89}, - [4014] = {.lex_state = 85}, - [4015] = {.lex_state = 0}, + [4013] = {.lex_state = 0}, + [4014] = {.lex_state = 0}, + [4015] = {.lex_state = 69}, [4016] = {.lex_state = 0}, [4017] = {.lex_state = 0}, [4018] = {.lex_state = 0}, [4019] = {.lex_state = 0}, [4020] = {.lex_state = 0}, - [4021] = {.lex_state = 85}, - [4022] = {.lex_state = 85}, + [4021] = {.lex_state = 96}, + [4022] = {.lex_state = 96}, [4023] = {.lex_state = 89}, - [4024] = {.lex_state = 96}, - [4025] = {.lex_state = 85}, + [4024] = {.lex_state = 85}, + [4025] = {.lex_state = 0}, [4026] = {.lex_state = 0}, [4027] = {.lex_state = 0}, [4028] = {.lex_state = 0}, - [4029] = {.lex_state = 0}, - [4030] = {.lex_state = 0}, + [4029] = {.lex_state = 89}, + [4030] = {.lex_state = 96}, [4031] = {.lex_state = 0}, [4032] = {.lex_state = 0}, - [4033] = {.lex_state = 85}, - [4034] = {.lex_state = 0}, + [4033] = {.lex_state = 0}, + [4034] = {.lex_state = 85}, [4035] = {.lex_state = 0}, - [4036] = {.lex_state = 96}, + [4036] = {.lex_state = 81}, [4037] = {.lex_state = 89}, [4038] = {.lex_state = 0}, [4039] = {.lex_state = 0}, - [4040] = {.lex_state = 0}, - [4041] = {.lex_state = 260}, - [4042] = {.lex_state = 85}, - [4043] = {.lex_state = 89}, + [4040] = {.lex_state = 96}, + [4041] = {.lex_state = 0}, + [4042] = {.lex_state = 0}, + [4043] = {.lex_state = 0}, [4044] = {.lex_state = 0}, [4045] = {.lex_state = 96}, - [4046] = {.lex_state = 96}, - [4047] = {.lex_state = 89}, - [4048] = {.lex_state = 85}, - [4049] = {.lex_state = 85}, + [4046] = {.lex_state = 0}, + [4047] = {.lex_state = 0}, + [4048] = {.lex_state = 0}, + [4049] = {.lex_state = 0}, [4050] = {.lex_state = 0}, - [4051] = {.lex_state = 85}, + [4051] = {.lex_state = 81}, [4052] = {.lex_state = 0}, [4053] = {.lex_state = 0}, [4054] = {.lex_state = 0}, @@ -21808,17 +18773,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4062] = {.lex_state = 0}, [4063] = {.lex_state = 0}, [4064] = {.lex_state = 0}, - [4065] = {.lex_state = 0}, + [4065] = {.lex_state = 250}, [4066] = {.lex_state = 0}, [4067] = {.lex_state = 0}, [4068] = {.lex_state = 0}, - [4069] = {.lex_state = 96}, - [4070] = {.lex_state = 89}, - [4071] = {.lex_state = 85}, + [4069] = {.lex_state = 0}, + [4070] = {.lex_state = 0}, + [4071] = {.lex_state = 0}, [4072] = {.lex_state = 81}, - [4073] = {.lex_state = 0}, - [4074] = {.lex_state = 0}, - [4075] = {.lex_state = 0}, + [4073] = {.lex_state = 96}, + [4074] = {.lex_state = 89}, + [4075] = {.lex_state = 250}, [4076] = {.lex_state = 0}, [4077] = {.lex_state = 0}, [4078] = {.lex_state = 0}, @@ -21826,23 +18791,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4080] = {.lex_state = 0}, [4081] = {.lex_state = 0}, [4082] = {.lex_state = 0}, - [4083] = {.lex_state = 85}, - [4084] = {.lex_state = 0}, + [4083] = {.lex_state = 0}, + [4084] = {.lex_state = 96}, [4085] = {.lex_state = 85}, - [4086] = {.lex_state = 0}, + [4086] = {.lex_state = 89}, [4087] = {.lex_state = 0}, - [4088] = {.lex_state = 0}, - [4089] = {.lex_state = 0}, - [4090] = {.lex_state = 0}, + [4088] = {.lex_state = 85}, + [4089] = {.lex_state = 96}, + [4090] = {.lex_state = 89}, [4091] = {.lex_state = 0}, - [4092] = {.lex_state = 0}, + [4092] = {.lex_state = 85}, [4093] = {.lex_state = 0}, - [4094] = {.lex_state = 85}, + [4094] = {.lex_state = 0}, [4095] = {.lex_state = 0}, - [4096] = {.lex_state = 0}, + [4096] = {.lex_state = 85}, [4097] = {.lex_state = 0}, [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 0}, + [4099] = {.lex_state = 85}, [4100] = {.lex_state = 0}, [4101] = {.lex_state = 0}, [4102] = {.lex_state = 0}, @@ -21850,48 +18815,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4104] = {.lex_state = 0}, [4105] = {.lex_state = 0}, [4106] = {.lex_state = 0}, - [4107] = {.lex_state = 0}, + [4107] = {.lex_state = 85}, [4108] = {.lex_state = 0}, [4109] = {.lex_state = 0}, [4110] = {.lex_state = 0}, [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 0}, - [4113] = {.lex_state = 0}, + [4112] = {.lex_state = 85}, + [4113] = {.lex_state = 85}, [4114] = {.lex_state = 0}, [4115] = {.lex_state = 0}, - [4116] = {.lex_state = 85}, + [4116] = {.lex_state = 0}, [4117] = {.lex_state = 0}, - [4118] = {.lex_state = 85}, + [4118] = {.lex_state = 0}, [4119] = {.lex_state = 0}, - [4120] = {.lex_state = 85}, + [4120] = {.lex_state = 0}, [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 85}, + [4122] = {.lex_state = 0}, [4123] = {.lex_state = 0}, [4124] = {.lex_state = 0}, - [4125] = {.lex_state = 0}, + [4125] = {.lex_state = 85}, [4126] = {.lex_state = 0}, [4127] = {.lex_state = 0}, [4128] = {.lex_state = 0}, - [4129] = {.lex_state = 0}, + [4129] = {.lex_state = 85}, [4130] = {.lex_state = 0}, - [4131] = {.lex_state = 85}, - [4132] = {.lex_state = 85}, - [4133] = {.lex_state = 0}, + [4131] = {.lex_state = 0}, + [4132] = {.lex_state = 0}, + [4133] = {.lex_state = 85}, [4134] = {.lex_state = 0}, [4135] = {.lex_state = 0}, [4136] = {.lex_state = 0}, [4137] = {.lex_state = 0}, [4138] = {.lex_state = 0}, - [4139] = {.lex_state = 85}, + [4139] = {.lex_state = 0}, [4140] = {.lex_state = 0}, [4141] = {.lex_state = 0}, [4142] = {.lex_state = 0}, [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 85}, - [4145] = {.lex_state = 0}, + [4144] = {.lex_state = 0}, + [4145] = {.lex_state = 85}, [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 85}, + [4148] = {.lex_state = 0}, [4149] = {.lex_state = 0}, [4150] = {.lex_state = 0}, [4151] = {.lex_state = 85}, @@ -21904,32 +18869,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4158] = {.lex_state = 0}, [4159] = {.lex_state = 0}, [4160] = {.lex_state = 0}, - [4161] = {.lex_state = 0}, + [4161] = {.lex_state = 85}, [4162] = {.lex_state = 0}, [4163] = {.lex_state = 85}, - [4164] = {.lex_state = 69}, - [4165] = {.lex_state = 85}, - [4166] = {.lex_state = 0}, + [4164] = {.lex_state = 0}, + [4165] = {.lex_state = 0}, + [4166] = {.lex_state = 85}, [4167] = {.lex_state = 0}, [4168] = {.lex_state = 0}, [4169] = {.lex_state = 0}, [4170] = {.lex_state = 0}, - [4171] = {.lex_state = 0}, + [4171] = {.lex_state = 85}, [4172] = {.lex_state = 0}, [4173] = {.lex_state = 0}, [4174] = {.lex_state = 0}, - [4175] = {.lex_state = 0}, + [4175] = {.lex_state = 85}, [4176] = {.lex_state = 0}, [4177] = {.lex_state = 0}, [4178] = {.lex_state = 0}, - [4179] = {.lex_state = 85}, + [4179] = {.lex_state = 0}, [4180] = {.lex_state = 0}, - [4181] = {.lex_state = 85}, + [4181] = {.lex_state = 0}, [4182] = {.lex_state = 0}, [4183] = {.lex_state = 0}, [4184] = {.lex_state = 0}, [4185] = {.lex_state = 0}, - [4186] = {.lex_state = 0}, + [4186] = {.lex_state = 85}, [4187] = {.lex_state = 0}, [4188] = {.lex_state = 0}, [4189] = {.lex_state = 0}, @@ -21941,9 +18906,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4195] = {.lex_state = 0}, [4196] = {.lex_state = 0}, [4197] = {.lex_state = 0}, - [4198] = {.lex_state = 0}, + [4198] = {.lex_state = 69}, [4199] = {.lex_state = 0}, - [4200] = {.lex_state = 85}, + [4200] = {.lex_state = 0}, [4201] = {.lex_state = 0}, [4202] = {.lex_state = 0}, [4203] = {.lex_state = 0}, @@ -21956,23 +18921,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4210] = {.lex_state = 0}, [4211] = {.lex_state = 0}, [4212] = {.lex_state = 0}, - [4213] = {.lex_state = 0}, + [4213] = {.lex_state = 85}, [4214] = {.lex_state = 0}, [4215] = {.lex_state = 0}, [4216] = {.lex_state = 0}, [4217] = {.lex_state = 0}, - [4218] = {.lex_state = 85}, + [4218] = {.lex_state = 0}, [4219] = {.lex_state = 0}, - [4220] = {.lex_state = 69}, + [4220] = {.lex_state = 0}, [4221] = {.lex_state = 0}, [4222] = {.lex_state = 0}, [4223] = {.lex_state = 0}, - [4224] = {.lex_state = 0}, + [4224] = {.lex_state = 85}, [4225] = {.lex_state = 0}, [4226] = {.lex_state = 0}, [4227] = {.lex_state = 0}, [4228] = {.lex_state = 0}, - [4229] = {.lex_state = 85}, + [4229] = {.lex_state = 0}, [4230] = {.lex_state = 0}, [4231] = {.lex_state = 0}, [4232] = {.lex_state = 0}, @@ -21983,60 +18948,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4237] = {.lex_state = 0}, [4238] = {.lex_state = 0}, [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 0}, + [4240] = {.lex_state = 89}, [4241] = {.lex_state = 0}, [4242] = {.lex_state = 0}, [4243] = {.lex_state = 0}, [4244] = {.lex_state = 0}, - [4245] = {.lex_state = 0}, + [4245] = {.lex_state = 96}, [4246] = {.lex_state = 0}, [4247] = {.lex_state = 0}, [4248] = {.lex_state = 0}, [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 85}, + [4250] = {.lex_state = 0}, [4251] = {.lex_state = 0}, [4252] = {.lex_state = 0}, - [4253] = {.lex_state = 0}, + [4253] = {.lex_state = 85}, [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 = 0}, + [4260] = {.lex_state = 69}, [4261] = {.lex_state = 0}, [4262] = {.lex_state = 0}, [4263] = {.lex_state = 85}, [4264] = {.lex_state = 0}, [4265] = {.lex_state = 0}, - [4266] = {.lex_state = 0}, + [4266] = {.lex_state = 85}, [4267] = {.lex_state = 85}, - [4268] = {.lex_state = 0}, + [4268] = {.lex_state = 85}, [4269] = {.lex_state = 0}, - [4270] = {.lex_state = 85}, + [4270] = {.lex_state = 0}, [4271] = {.lex_state = 0}, [4272] = {.lex_state = 0}, - [4273] = {.lex_state = 0}, + [4273] = {.lex_state = 85}, [4274] = {.lex_state = 0}, [4275] = {.lex_state = 0}, - [4276] = {.lex_state = 85}, + [4276] = {.lex_state = 0}, [4277] = {.lex_state = 85}, - [4278] = {.lex_state = 0}, + [4278] = {.lex_state = 85}, [4279] = {.lex_state = 0}, [4280] = {.lex_state = 0}, [4281] = {.lex_state = 0}, - [4282] = {.lex_state = 0}, + [4282] = {.lex_state = 85}, [4283] = {.lex_state = 0}, [4284] = {.lex_state = 0}, [4285] = {.lex_state = 0}, [4286] = {.lex_state = 0}, - [4287] = {.lex_state = 260}, + [4287] = {.lex_state = 0}, [4288] = {.lex_state = 0}, - [4289] = {.lex_state = 0}, + [4289] = {.lex_state = 250}, [4290] = {.lex_state = 0}, [4291] = {.lex_state = 0}, - [4292] = {.lex_state = 85}, - [4293] = {.lex_state = 0}, + [4292] = {.lex_state = 0}, + [4293] = {.lex_state = 85}, [4294] = {.lex_state = 0}, [4295] = {.lex_state = 0}, [4296] = {.lex_state = 0}, @@ -22045,11 +19010,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4299] = {.lex_state = 0}, [4300] = {.lex_state = 0}, [4301] = {.lex_state = 0}, - [4302] = {.lex_state = 85}, + [4302] = {.lex_state = 0}, [4303] = {.lex_state = 0}, [4304] = {.lex_state = 0}, [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 85}, + [4306] = {.lex_state = 0}, [4307] = {.lex_state = 0}, [4308] = {.lex_state = 0}, [4309] = {.lex_state = 0}, @@ -22061,17 +19026,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4315] = {.lex_state = 0}, [4316] = {.lex_state = 85}, [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 85}, - [4319] = {.lex_state = 85}, + [4318] = {.lex_state = 0}, + [4319] = {.lex_state = 0}, [4320] = {.lex_state = 0}, [4321] = {.lex_state = 0}, [4322] = {.lex_state = 0}, [4323] = {.lex_state = 0}, - [4324] = {.lex_state = 0}, + [4324] = {.lex_state = 85}, [4325] = {.lex_state = 0}, [4326] = {.lex_state = 0}, - [4327] = {.lex_state = 0}, - [4328] = {.lex_state = 85}, + [4327] = {.lex_state = 85}, + [4328] = {.lex_state = 0}, [4329] = {.lex_state = 0}, [4330] = {.lex_state = 0}, [4331] = {.lex_state = 0}, @@ -22083,183 +19048,183 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4337] = {.lex_state = 0}, [4338] = {.lex_state = 0}, [4339] = {.lex_state = 0}, - [4340] = {.lex_state = 0}, - [4341] = {.lex_state = 0}, + [4340] = {.lex_state = 85}, + [4341] = {.lex_state = 85}, [4342] = {.lex_state = 0}, [4343] = {.lex_state = 0}, [4344] = {.lex_state = 0}, - [4345] = {.lex_state = 0}, - [4346] = {.lex_state = 0}, + [4345] = {.lex_state = 85}, + [4346] = {.lex_state = 85}, [4347] = {.lex_state = 85}, - [4348] = {.lex_state = 0}, + [4348] = {.lex_state = 85}, [4349] = {.lex_state = 0}, - [4350] = {.lex_state = 85}, + [4350] = {.lex_state = 0}, [4351] = {.lex_state = 0}, [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 0}, + [4353] = {.lex_state = 85}, [4354] = {.lex_state = 0}, [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 85}, - [4358] = {.lex_state = 85}, + [4356] = {.lex_state = 85}, + [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 = 85}, + [4364] = {.lex_state = 0}, [4365] = {.lex_state = 0}, [4366] = {.lex_state = 85}, [4367] = {.lex_state = 0}, [4368] = {.lex_state = 0}, [4369] = {.lex_state = 0}, [4370] = {.lex_state = 0}, - [4371] = {.lex_state = 85}, - [4372] = {.lex_state = 85}, + [4371] = {.lex_state = 0}, + [4372] = {.lex_state = 0}, [4373] = {.lex_state = 0}, [4374] = {.lex_state = 0}, [4375] = {.lex_state = 0}, - [4376] = {.lex_state = 85}, + [4376] = {.lex_state = 0}, [4377] = {.lex_state = 0}, [4378] = {.lex_state = 0}, [4379] = {.lex_state = 0}, [4380] = {.lex_state = 0}, - [4381] = {.lex_state = 69}, + [4381] = {.lex_state = 0}, [4382] = {.lex_state = 0}, [4383] = {.lex_state = 0}, [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, + [4385] = {.lex_state = 85}, [4386] = {.lex_state = 0}, - [4387] = {.lex_state = 85}, + [4387] = {.lex_state = 0}, [4388] = {.lex_state = 0}, [4389] = {.lex_state = 0}, [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 0}, + [4391] = {.lex_state = 85}, [4392] = {.lex_state = 0}, [4393] = {.lex_state = 0}, [4394] = {.lex_state = 0}, [4395] = {.lex_state = 0}, [4396] = {.lex_state = 0}, [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 161}, + [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 = 85}, - [4405] = {.lex_state = 85}, + [4405] = {.lex_state = 0}, [4406] = {.lex_state = 0}, [4407] = {.lex_state = 0}, - [4408] = {.lex_state = 161}, + [4408] = {.lex_state = 0}, [4409] = {.lex_state = 0}, [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 85}, - [4412] = {.lex_state = 85}, + [4411] = {.lex_state = 0}, + [4412] = {.lex_state = 0}, [4413] = {.lex_state = 0}, [4414] = {.lex_state = 0}, - [4415] = {.lex_state = 41}, + [4415] = {.lex_state = 0}, [4416] = {.lex_state = 0}, [4417] = {.lex_state = 0}, [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 0}, + [4419] = {.lex_state = 85}, [4420] = {.lex_state = 0}, [4421] = {.lex_state = 0}, - [4422] = {.lex_state = 0}, + [4422] = {.lex_state = 85}, [4423] = {.lex_state = 0}, - [4424] = {.lex_state = 0}, + [4424] = {.lex_state = 69}, [4425] = {.lex_state = 0}, - [4426] = {.lex_state = 161}, - [4427] = {.lex_state = 0}, + [4426] = {.lex_state = 0}, + [4427] = {.lex_state = 85}, [4428] = {.lex_state = 0}, - [4429] = {.lex_state = 161}, + [4429] = {.lex_state = 0}, [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 0}, + [4431] = {.lex_state = 151}, [4432] = {.lex_state = 0}, [4433] = {.lex_state = 0}, [4434] = {.lex_state = 0}, [4435] = {.lex_state = 0}, [4436] = {.lex_state = 0}, - [4437] = {.lex_state = 162}, + [4437] = {.lex_state = 0}, [4438] = {.lex_state = 0}, - [4439] = {.lex_state = 85}, - [4440] = {.lex_state = 85}, + [4439] = {.lex_state = 0}, + [4440] = {.lex_state = 0}, [4441] = {.lex_state = 0}, [4442] = {.lex_state = 0}, [4443] = {.lex_state = 0}, [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 0}, - [4446] = {.lex_state = 85}, + [4445] = {.lex_state = 151}, + [4446] = {.lex_state = 0}, [4447] = {.lex_state = 0}, [4448] = {.lex_state = 0}, [4449] = {.lex_state = 0}, - [4450] = {.lex_state = 161}, - [4451] = {.lex_state = 85}, + [4450] = {.lex_state = 0}, + [4451] = {.lex_state = 0}, [4452] = {.lex_state = 0}, - [4453] = {.lex_state = 161}, + [4453] = {.lex_state = 0}, [4454] = {.lex_state = 0}, - [4455] = {.lex_state = 0}, + [4455] = {.lex_state = 151}, [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 = 85}, - [4463] = {.lex_state = 85}, + [4462] = {.lex_state = 0}, + [4463] = {.lex_state = 0}, [4464] = {.lex_state = 0}, - [4465] = {.lex_state = 85}, + [4465] = {.lex_state = 0}, [4466] = {.lex_state = 0}, [4467] = {.lex_state = 0}, [4468] = {.lex_state = 0}, - [4469] = {.lex_state = 0}, + [4469] = {.lex_state = 151}, [4470] = {.lex_state = 0}, - [4471] = {.lex_state = 161}, - [4472] = {.lex_state = 162}, + [4471] = {.lex_state = 0}, + [4472] = {.lex_state = 0}, [4473] = {.lex_state = 0}, [4474] = {.lex_state = 0}, [4475] = {.lex_state = 0}, [4476] = {.lex_state = 0}, [4477] = {.lex_state = 0}, - [4478] = {.lex_state = 161}, + [4478] = {.lex_state = 0}, [4479] = {.lex_state = 0}, [4480] = {.lex_state = 0}, [4481] = {.lex_state = 0}, [4482] = {.lex_state = 0}, - [4483] = {.lex_state = 0}, + [4483] = {.lex_state = 151}, [4484] = {.lex_state = 0}, [4485] = {.lex_state = 0}, [4486] = {.lex_state = 0}, [4487] = {.lex_state = 0}, - [4488] = {.lex_state = 0}, + [4488] = {.lex_state = 152}, [4489] = {.lex_state = 0}, [4490] = {.lex_state = 0}, - [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 161}, + [4491] = {.lex_state = 151}, + [4492] = {.lex_state = 85}, [4493] = {.lex_state = 0}, [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 85}, + [4495] = {.lex_state = 0}, [4496] = {.lex_state = 0}, - [4497] = {.lex_state = 41}, - [4498] = {.lex_state = 0}, + [4497] = {.lex_state = 85}, + [4498] = {.lex_state = 85}, [4499] = {.lex_state = 0}, [4500] = {.lex_state = 0}, [4501] = {.lex_state = 0}, [4502] = {.lex_state = 0}, - [4503] = {.lex_state = 41}, + [4503] = {.lex_state = 0}, [4504] = {.lex_state = 0}, [4505] = {.lex_state = 0}, [4506] = {.lex_state = 0}, [4507] = {.lex_state = 0}, [4508] = {.lex_state = 0}, [4509] = {.lex_state = 0}, - [4510] = {.lex_state = 260}, + [4510] = {.lex_state = 0}, [4511] = {.lex_state = 0}, - [4512] = {.lex_state = 0}, - [4513] = {.lex_state = 161}, + [4512] = {.lex_state = 151}, + [4513] = {.lex_state = 0}, [4514] = {.lex_state = 0}, [4515] = {.lex_state = 0}, - [4516] = {.lex_state = 0}, + [4516] = {.lex_state = 151}, [4517] = {.lex_state = 0}, [4518] = {.lex_state = 0}, [4519] = {.lex_state = 0}, @@ -22267,28 +19232,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4521] = {.lex_state = 0}, [4522] = {.lex_state = 0}, [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 0}, + [4524] = {.lex_state = 85}, [4525] = {.lex_state = 0}, [4526] = {.lex_state = 0}, [4527] = {.lex_state = 0}, [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 161}, - [4530] = {.lex_state = 0}, + [4529] = {.lex_state = 0}, + [4530] = {.lex_state = 41}, [4531] = {.lex_state = 0}, [4532] = {.lex_state = 0}, - [4533] = {.lex_state = 0}, - [4534] = {.lex_state = 161}, + [4533] = {.lex_state = 151}, + [4534] = {.lex_state = 0}, [4535] = {.lex_state = 0}, [4536] = {.lex_state = 0}, [4537] = {.lex_state = 0}, - [4538] = {.lex_state = 0}, + [4538] = {.lex_state = 85}, [4539] = {.lex_state = 0}, [4540] = {.lex_state = 0}, [4541] = {.lex_state = 0}, [4542] = {.lex_state = 0}, [4543] = {.lex_state = 0}, - [4544] = {.lex_state = 85}, - [4545] = {.lex_state = 85}, + [4544] = {.lex_state = 0}, + [4545] = {.lex_state = 0}, [4546] = {.lex_state = 0}, [4547] = {.lex_state = 0}, [4548] = {.lex_state = 0}, @@ -22297,12 +19262,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4551] = {.lex_state = 0}, [4552] = {.lex_state = 0}, [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 161}, + [4554] = {.lex_state = 151}, [4555] = {.lex_state = 0}, [4556] = {.lex_state = 0}, [4557] = {.lex_state = 0}, [4558] = {.lex_state = 0}, - [4559] = {.lex_state = 85}, + [4559] = {.lex_state = 0}, [4560] = {.lex_state = 0}, [4561] = {.lex_state = 0}, [4562] = {.lex_state = 0}, @@ -22310,44 +19275,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4564] = {.lex_state = 0}, [4565] = {.lex_state = 0}, [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 0}, + [4567] = {.lex_state = 85}, [4568] = {.lex_state = 0}, - [4569] = {.lex_state = 85}, - [4570] = {.lex_state = 0}, + [4569] = {.lex_state = 0}, + [4570] = {.lex_state = 151}, [4571] = {.lex_state = 0}, - [4572] = {.lex_state = 85}, + [4572] = {.lex_state = 0}, [4573] = {.lex_state = 0}, [4574] = {.lex_state = 0}, - [4575] = {.lex_state = 0}, + [4575] = {.lex_state = 151}, [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}, + [4582] = {.lex_state = 151}, [4583] = {.lex_state = 0}, - [4584] = {.lex_state = 0}, + [4584] = {.lex_state = 101}, [4585] = {.lex_state = 0}, [4586] = {.lex_state = 0}, [4587] = {.lex_state = 0}, - [4588] = {.lex_state = 0}, + [4588] = {.lex_state = 85}, [4589] = {.lex_state = 0}, - [4590] = {.lex_state = 0}, + [4590] = {.lex_state = 85}, [4591] = {.lex_state = 0}, [4592] = {.lex_state = 0}, - [4593] = {.lex_state = 0}, + [4593] = {.lex_state = 41}, [4594] = {.lex_state = 0}, [4595] = {.lex_state = 0}, - [4596] = {.lex_state = 0}, - [4597] = {.lex_state = 0}, - [4598] = {.lex_state = 0}, - [4599] = {.lex_state = 0}, + [4596] = {.lex_state = 85}, + [4597] = {.lex_state = 85}, + [4598] = {.lex_state = 85}, + [4599] = {.lex_state = 85}, [4600] = {.lex_state = 0}, - [4601] = {.lex_state = 0}, + [4601] = {.lex_state = 85}, [4602] = {.lex_state = 0}, [4603] = {.lex_state = 0}, - [4604] = {.lex_state = 0}, + [4604] = {.lex_state = 85}, [4605] = {.lex_state = 0}, [4606] = {.lex_state = 0}, [4607] = {.lex_state = 0}, @@ -22358,52 +19323,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4612] = {.lex_state = 0}, [4613] = {.lex_state = 0}, [4614] = {.lex_state = 0}, - [4615] = {.lex_state = 85}, + [4615] = {.lex_state = 0}, [4616] = {.lex_state = 0}, [4617] = {.lex_state = 0}, - [4618] = {.lex_state = 0}, + [4618] = {.lex_state = 85}, [4619] = {.lex_state = 0}, [4620] = {.lex_state = 0}, - [4621] = {.lex_state = 69}, + [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}, + [4627] = {.lex_state = 85}, [4628] = {.lex_state = 0}, [4629] = {.lex_state = 0}, [4630] = {.lex_state = 0}, [4631] = {.lex_state = 0}, - [4632] = {.lex_state = 0}, + [4632] = {.lex_state = 69}, [4633] = {.lex_state = 0}, - [4634] = {.lex_state = 0}, + [4634] = {.lex_state = 85}, [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 0}, - [4637] = {.lex_state = 0}, + [4636] = {.lex_state = 250}, + [4637] = {.lex_state = 151}, [4638] = {.lex_state = 0}, [4639] = {.lex_state = 0}, [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 85}, + [4641] = {.lex_state = 0}, [4642] = {.lex_state = 0}, [4643] = {.lex_state = 0}, [4644] = {.lex_state = 0}, [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 0}, + [4646] = {.lex_state = 85}, [4647] = {.lex_state = 0}, [4648] = {.lex_state = 0}, [4649] = {.lex_state = 0}, [4650] = {.lex_state = 0}, [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 85}, - [4653] = {.lex_state = 85}, - [4654] = {.lex_state = 85}, + [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 = 0}, [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 85}, + [4660] = {.lex_state = 0}, [4661] = {.lex_state = 0}, [4662] = {.lex_state = 0}, [4663] = {.lex_state = 0}, @@ -22411,9 +19376,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4665] = {.lex_state = 0}, [4666] = {.lex_state = 0}, [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 0}, + [4668] = {.lex_state = 257}, [4669] = {.lex_state = 0}, - [4670] = {.lex_state = 85}, + [4670] = {.lex_state = 0}, [4671] = {.lex_state = 0}, [4672] = {.lex_state = 0}, [4673] = {.lex_state = 0}, @@ -22425,8 +19390,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4679] = {.lex_state = 0}, [4680] = {.lex_state = 0}, [4681] = {.lex_state = 0}, - [4682] = {.lex_state = 85}, - [4683] = {.lex_state = 161}, + [4682] = {.lex_state = 0}, + [4683] = {.lex_state = 0}, [4684] = {.lex_state = 0}, [4685] = {.lex_state = 0}, [4686] = {.lex_state = 0}, @@ -22435,7 +19400,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4689] = {.lex_state = 0}, [4690] = {.lex_state = 0}, [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 0}, + [4692] = {.lex_state = 257}, [4693] = {.lex_state = 0}, [4694] = {.lex_state = 0}, [4695] = {.lex_state = 0}, @@ -22454,20 +19419,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4708] = {.lex_state = 0}, [4709] = {.lex_state = 0}, [4710] = {.lex_state = 0}, - [4711] = {.lex_state = 0}, + [4711] = {.lex_state = 41}, [4712] = {.lex_state = 0}, [4713] = {.lex_state = 0}, [4714] = {.lex_state = 0}, [4715] = {.lex_state = 0}, [4716] = {.lex_state = 0}, + [4717] = {.lex_state = 85}, + [4718] = {.lex_state = 0}, + [4719] = {.lex_state = 152}, + [4720] = {.lex_state = 0}, + [4721] = {.lex_state = 0}, + [4722] = {.lex_state = 0}, + [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 = 0}, + [4731] = {.lex_state = 0}, + [4732] = {.lex_state = 0}, + [4733] = {.lex_state = 0}, + [4734] = {.lex_state = 0}, + [4735] = {.lex_state = 0}, + [4736] = {.lex_state = 0}, + [4737] = {.lex_state = 0}, + [4738] = {.lex_state = 0}, + [4739] = {.lex_state = 0}, + [4740] = {.lex_state = 0}, + [4741] = {.lex_state = 85}, + [4742] = {.lex_state = 0}, + [4743] = {.lex_state = 85}, + [4744] = {.lex_state = 0}, + [4745] = {.lex_state = 0}, + [4746] = {.lex_state = 0}, + [4747] = {.lex_state = 85}, + [4748] = {.lex_state = 0}, + [4749] = {.lex_state = 0}, + [4750] = {.lex_state = 85}, + [4751] = {.lex_state = 0}, + [4752] = {.lex_state = 0}, + [4753] = {.lex_state = 0}, + [4754] = {.lex_state = 0}, + [4755] = {.lex_state = 85}, + [4756] = {(TSStateId)(-1)}, + [4757] = {(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), - [sym_shebang] = ACTIONS(1), - [sym_comment] = ACTIONS(3), + [anon_sym_POUND_BANG] = ACTIONS(1), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1), [anon_sym_module] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), @@ -22487,7 +19497,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), @@ -22594,1632 +19603,1323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(4431), + [sym_source_file] = STATE(4702), + [sym_shebang] = STATE(2), + [sym_line_comment] = STATE(1), + [sym_block_comment] = STATE(1), [sym_module_clause] = STATE(3), - [sym_import_list] = STATE(9), - [sym_import_declaration] = STATE(1596), - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), + [sym_import_list] = STATE(6), + [sym_import_declaration] = STATE(1622), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3448), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_import_list_repeat1] = STATE(1596), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [sym_shebang] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [anon_sym_module] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(107), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3474), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_import_list_repeat1] = STATE(1542), + [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), + [anon_sym_SLASH_STAR] = 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), }, [2] = { + [sym_line_comment] = STATE(2), + [sym_block_comment] = STATE(2), [sym_module_clause] = STATE(4), - [sym_import_list] = STATE(12), - [sym_import_declaration] = STATE(1596), - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), + [sym_import_list] = STATE(10), + [sym_import_declaration] = STATE(1622), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3448), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_import_list_repeat1] = STATE(1596), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(125), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_module] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3474), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_import_list_repeat1] = STATE(1542), + [aux_sym_attributes_repeat1] = STATE(3442), + [ts_builtin_sym_end] = ACTIONS(127), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [3] = { - [sym_import_list] = STATE(12), - [sym_import_declaration] = STATE(1596), - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), + [sym_line_comment] = STATE(3), + [sym_block_comment] = STATE(3), + [sym_import_list] = STATE(10), + [sym_import_declaration] = STATE(1622), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3454), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_import_list_repeat1] = STATE(1596), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(125), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_import_list_repeat1] = STATE(1542), + [aux_sym_attributes_repeat1] = STATE(3442), + [ts_builtin_sym_end] = ACTIONS(127), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [4] = { - [sym_import_list] = STATE(8), - [sym_import_declaration] = STATE(1596), - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), + [sym_line_comment] = STATE(4), + [sym_block_comment] = STATE(4), + [sym_import_list] = STATE(5), + [sym_import_declaration] = STATE(1622), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3454), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_import_list_repeat1] = STATE(1596), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(129), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_import_list_repeat1] = STATE(1542), + [aux_sym_attributes_repeat1] = STATE(3442), + [ts_builtin_sym_end] = ACTIONS(131), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [5] = { - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), + [sym_line_comment] = STATE(5), + [sym_block_comment] = STATE(5), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3454), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(129), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_attributes_repeat1] = STATE(3442), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [6] = { - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), + [sym_line_comment] = STATE(6), + [sym_block_comment] = STATE(6), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3454), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(131), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_attributes_repeat1] = STATE(3442), + [ts_builtin_sym_end] = ACTIONS(127), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [7] = { - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), + [sym_line_comment] = STATE(7), + [sym_block_comment] = STATE(7), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3454), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(3442), + [ts_builtin_sym_end] = ACTIONS(127), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [8] = { - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), - [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3454), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), - }, - [9] = { - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3454), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(125), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), - }, - [10] = { - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), - [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3454), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3413), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(3442), [ts_builtin_sym_end] = ACTIONS(135), [sym_identifier] = ACTIONS(137), - [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(140), [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_const] = ACTIONS(146), @@ -24285,8936 +20985,9323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(299), [sym___r_single_quote] = ACTIONS(302), }, + [9] = { + [sym_line_comment] = STATE(9), + [sym_block_comment] = STATE(9), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(3442), + [ts_builtin_sym_end] = ACTIONS(305), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), + }, + [10] = { + [sym_line_comment] = STATE(10), + [sym_block_comment] = STATE(10), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3442), + [ts_builtin_sym_end] = ACTIONS(131), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), + }, [11] = { - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), + [sym_line_comment] = STATE(11), + [sym_block_comment] = STATE(11), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3454), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(125), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(3442), + [ts_builtin_sym_end] = ACTIONS(131), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [12] = { - [sym_const_declaration] = STATE(1579), - [sym_global_var_declaration] = STATE(1579), - [sym_type_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym_static_method_declaration] = STATE(1579), - [sym_struct_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), + [sym_line_comment] = STATE(12), + [sym_block_comment] = STATE(12), + [sym_const_declaration] = STATE(1532), + [sym_global_var_declaration] = STATE(1532), + [sym_type_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym_static_method_declaration] = STATE(1532), + [sym_struct_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_visibility_modifiers] = STATE(3487), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1579), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_visibility_modifiers] = STATE(3537), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1532), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_attributes] = STATE(3454), - [sym_attribute] = STATE(3397), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(129), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3432), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(3442), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [13] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4444), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(13), + [sym_block_comment] = STATE(13), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4508), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4444), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(241), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [14] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4639), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(14), + [sym_block_comment] = STATE(14), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4713), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4639), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [15] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4694), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(15), + [sym_block_comment] = STATE(15), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4684), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4694), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(241), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [16] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4444), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(16), + [sym_block_comment] = STATE(16), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4447), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4444), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [17] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4597), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(17), + [sym_block_comment] = STATE(17), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4631), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4597), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [18] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4601), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(18), + [sym_block_comment] = STATE(18), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4625), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4601), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [19] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4629), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(19), + [sym_block_comment] = STATE(19), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4515), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4629), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [20] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4420), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(20), + [sym_block_comment] = STATE(20), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4628), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4420), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [21] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4601), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(21), + [sym_block_comment] = STATE(21), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4649), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4601), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [22] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4499), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(22), + [sym_block_comment] = STATE(22), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4621), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4499), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [23] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4601), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(23), + [sym_block_comment] = STATE(23), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4508), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4601), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [24] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4647), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(24), + [sym_block_comment] = STATE(24), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4503), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4647), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [25] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4499), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(25), + [sym_block_comment] = STATE(25), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4625), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4499), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [26] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4647), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(26), + [sym_block_comment] = STATE(26), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4503), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4647), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [27] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4550), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(27), + [sym_block_comment] = STATE(27), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4621), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4550), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [28] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4585), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(28), + [sym_block_comment] = STATE(28), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4508), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4585), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [29] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4629), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(29), + [sym_block_comment] = STATE(29), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4684), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4629), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [30] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4413), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(30), + [sym_block_comment] = STATE(30), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4713), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4413), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(311), [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [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), }, [31] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4485), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(31), + [sym_block_comment] = STATE(31), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4621), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4485), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [32] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4413), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(32), + [sym_block_comment] = STATE(32), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4413), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [33] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4413), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(33), + [sym_block_comment] = STATE(33), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4451), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4413), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(311), + [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), }, [34] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4647), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(34), + [sym_block_comment] = STATE(34), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4623), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4647), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(311), + [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), }, [35] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4485), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(35), + [sym_block_comment] = STATE(35), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4621), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4485), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(257), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(311), + [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), }, [36] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4647), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(36), + [sym_block_comment] = STATE(36), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4625), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4647), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(311), + [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), }, [37] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4420), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(37), + [sym_block_comment] = STATE(37), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4515), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4420), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(311), + [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), }, [38] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4585), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(38), + [sym_block_comment] = STATE(38), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4649), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4585), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [39] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4638), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(39), + [sym_block_comment] = STATE(39), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4631), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4638), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(307), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [40] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4617), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(40), + [sym_block_comment] = STATE(40), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4628), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4617), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [41] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4595), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(41), + [sym_block_comment] = STATE(41), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4649), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4595), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [42] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4597), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(42), + [sym_block_comment] = STATE(42), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4503), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4597), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [43] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4585), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(43), + [sym_block_comment] = STATE(43), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4451), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4585), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [44] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4601), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(44), + [sym_block_comment] = STATE(44), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4696), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4601), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [45] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4499), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(45), + [sym_block_comment] = STATE(45), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4536), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4499), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [46] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4420), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(46), + [sym_block_comment] = STATE(46), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4420), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [47] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4639), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(47), + [sym_block_comment] = STATE(47), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4502), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4639), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [48] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4413), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4504), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4413), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [49] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4550), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4623), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4550), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [50] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4629), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4621), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4629), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [51] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4698), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(51), + [sym_block_comment] = STATE(51), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4684), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4698), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [52] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4444), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(52), + [sym_block_comment] = STATE(52), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4732), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4444), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [53] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4694), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(53), + [sym_block_comment] = STATE(53), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4625), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4694), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [54] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4501), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4620), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4501), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [55] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4485), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(55), + [sym_block_comment] = STATE(55), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4515), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4485), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [56] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4647), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(56), + [sym_block_comment] = STATE(56), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4713), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4647), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [57] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4596), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(57), + [sym_block_comment] = STATE(57), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4631), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4596), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [58] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4638), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(58), + [sym_block_comment] = STATE(58), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4508), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4638), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [59] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement_list] = STATE(4667), - [sym__statement] = STATE(3646), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(59), + [sym_block_comment] = STATE(59), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement_list] = STATE(4447), + [sym__statement] = STATE(3679), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4667), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4682), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [60] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(3705), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(60), + [sym_block_comment] = STATE(60), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(3860), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4515), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4513), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [61] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(3705), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), + [sym_line_comment] = STATE(61), + [sym_block_comment] = STATE(61), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(3860), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3716), - [sym_empty_labeled_statement] = STATE(4645), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_labeled_statement] = STATE(3851), + [sym_empty_labeled_statement] = STATE(4633), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [62] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(3776), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3716), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(62), + [sym_block_comment] = STATE(62), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(3739), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(3851), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [63] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(3776), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3716), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(63), + [sym_block_comment] = STATE(63), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(3860), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(3851), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [64] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_strictly_expression_list] = STATE(3713), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(684), - [sym_mutable_expression] = STATE(3355), - [sym_expression_list] = STATE(3400), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(3705), - [sym_simple_statement] = STATE(3716), - [sym_assert_statement] = STATE(3716), - [sym_append_statement] = STATE(3716), - [sym_send_statement] = STATE(3716), - [sym_var_declaration] = STATE(3713), - [sym_assignment_statement] = STATE(3713), - [sym_block] = STATE(3716), - [sym_defer_statement] = STATE(3716), - [sym_goto_statement] = STATE(3716), - [sym_break_statement] = STATE(3716), - [sym_continue_statement] = STATE(3716), - [sym_return_statement] = STATE(3716), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3716), - [sym_compile_time_for_statement] = STATE(3716), - [sym_for_statement] = STATE(3716), - [sym_hash_statement] = STATE(3716), - [sym_asm_statement] = STATE(3716), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_strictly_expression_list] = STATE(3853), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(571), + [sym_mutable_expression] = STATE(3384), + [sym_expression_list] = STATE(3423), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(3739), + [sym_simple_statement] = STATE(3851), + [sym_assert_statement] = STATE(3851), + [sym_append_statement] = STATE(3851), + [sym_send_statement] = STATE(3851), + [sym_var_declaration] = STATE(3853), + [sym_assignment_statement] = STATE(3853), + [sym_block] = STATE(3851), + [sym_defer_statement] = STATE(3851), + [sym_goto_statement] = STATE(3851), + [sym_break_statement] = STATE(3851), + [sym_continue_statement] = STATE(3851), + [sym_return_statement] = STATE(3851), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(3851), + [sym_compile_time_for_statement] = STATE(3851), + [sym_for_statement] = STATE(3851), + [sym_hash_statement] = STATE(3851), + [sym_asm_statement] = STATE(3851), + [sym_identifier] = ACTIONS(437), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [65] = { + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_strictly_expression_list] = STATE(1585), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__statement] = STATE(1563), - [sym_simple_statement] = STATE(1590), - [sym_assert_statement] = STATE(1590), - [sym_append_statement] = STATE(1590), - [sym_send_statement] = STATE(1590), - [sym_var_declaration] = STATE(1585), - [sym_assignment_statement] = STATE(1585), - [sym_block] = STATE(1590), - [sym_defer_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_strictly_expression_list] = STATE(1534), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3386), + [sym_expression_list] = STATE(3431), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__statement] = STATE(1598), + [sym_simple_statement] = STATE(1541), + [sym_assert_statement] = STATE(1541), + [sym_append_statement] = STATE(1541), + [sym_send_statement] = STATE(1541), + [sym_var_declaration] = STATE(1534), + [sym_assignment_statement] = STATE(1534), + [sym_block] = STATE(1541), + [sym_defer_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1590), - [sym_compile_time_for_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_hash_statement] = STATE(1590), - [sym_asm_statement] = STATE(1590), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_labeled_statement] = STATE(1541), + [sym_compile_time_for_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_hash_statement] = STATE(1541), + [sym_asm_statement] = STATE(1541), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [66] = { - [sym__expression] = STATE(977), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(537), - [sym_mutable_expression] = STATE(1436), - [sym_expression_list] = STATE(1572), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [ts_builtin_sym_end] = ACTIONS(489), - [sym_identifier] = ACTIONS(491), - [anon_sym_LF] = ACTIONS(493), - [anon_sym_CR] = ACTIONS(493), - [anon_sym_CR_LF] = ACTIONS(493), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_const] = ACTIONS(493), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym___global] = ACTIONS(493), - [anon_sym_type] = ACTIONS(493), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_union] = ACTIONS(493), - [anon_sym_pub] = ACTIONS(493), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(493), - [anon_sym_interface] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(519), - [anon_sym_LBRACK2] = ACTIONS(521), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_LT_DASH] = ACTIONS(525), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(527), - [sym_rune_literal] = ACTIONS(527), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(493), - [anon_sym_defer] = ACTIONS(493), - [anon_sym_goto] = ACTIONS(493), - [anon_sym_break] = ACTIONS(493), - [anon_sym_continue] = ACTIONS(493), - [anon_sym_return] = ACTIONS(493), - [anon_sym_DOLLARfor] = ACTIONS(493), - [anon_sym_for] = ACTIONS(493), - [anon_sym_POUND] = ACTIONS(493), - [anon_sym_asm] = ACTIONS(493), - [anon_sym_AT_LBRACK] = ACTIONS(493), - [sym___double_quote] = ACTIONS(547), - [sym___single_quote] = ACTIONS(549), - [sym___c_double_quote] = ACTIONS(551), - [sym___c_single_quote] = ACTIONS(553), - [sym___r_double_quote] = ACTIONS(555), - [sym___r_single_quote] = ACTIONS(557), + [sym_line_comment] = STATE(66), + [sym_block_comment] = STATE(66), + [sym__expression] = STATE(979), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(1445), + [sym_expression_list] = STATE(1584), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(503), + [anon_sym_const] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym___global] = ACTIONS(495), + [anon_sym_type] = ACTIONS(495), + [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_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(523), + [anon_sym_LBRACK2] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_LT_DASH] = ACTIONS(529), + [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(531), + [sym_rune_literal] = ACTIONS(531), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [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), + [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), + [sym___double_quote] = ACTIONS(551), + [sym___single_quote] = ACTIONS(553), + [sym___c_double_quote] = ACTIONS(555), + [sym___c_single_quote] = ACTIONS(557), + [sym___r_double_quote] = ACTIONS(559), + [sym___r_single_quote] = ACTIONS(561), }, [67] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [ts_builtin_sym_end] = ACTIONS(559), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(563), - [anon_sym_CR] = ACTIONS(563), - [anon_sym_CR_LF] = ACTIONS(563), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_const] = ACTIONS(563), + [sym_line_comment] = STATE(67), + [sym_block_comment] = STATE(67), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [ts_builtin_sym_end] = ACTIONS(563), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(565), + [anon_sym_CR] = ACTIONS(565), + [anon_sym_CR_LF] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym___global] = ACTIONS(563), - [anon_sym_type] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [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(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_union] = ACTIONS(563), - [anon_sym_pub] = ACTIONS(563), - [anon_sym_mut] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(563), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_go] = ACTIONS(563), - [anon_sym_spawn] = ACTIONS(563), - [anon_sym_json_DOTdecode] = ACTIONS(563), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_DASH] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [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(563), - [sym_none] = ACTIONS(563), - [sym_true] = ACTIONS(563), - [sym_false] = ACTIONS(563), - [sym_nil] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_DOLLARif] = ACTIONS(563), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_match] = ACTIONS(563), - [anon_sym_select] = 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_lock] = ACTIONS(563), - [anon_sym_rlock] = ACTIONS(563), - [anon_sym_unsafe] = ACTIONS(563), - [anon_sym_sql] = ACTIONS(563), - [sym_int_literal] = ACTIONS(563), - [sym_float_literal] = ACTIONS(563), - [sym_rune_literal] = ACTIONS(563), - [sym_pseudo_compile_time_identifier] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(563), - [anon_sym_defer] = ACTIONS(563), - [anon_sym_goto] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_DOLLARfor] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_asm] = ACTIONS(563), - [anon_sym_AT_LBRACK] = ACTIONS(563), - [sym___double_quote] = ACTIONS(563), - [sym___single_quote] = ACTIONS(563), - [sym___c_double_quote] = ACTIONS(563), - [sym___c_single_quote] = ACTIONS(563), - [sym___r_double_quote] = ACTIONS(563), - [sym___r_single_quote] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym___global] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_EQ_EQ] = ACTIONS(565), + [anon_sym_BANG_EQ] = ACTIONS(565), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_mut] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_interface] = ACTIONS(565), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_go] = ACTIONS(565), + [anon_sym_spawn] = ACTIONS(565), + [anon_sym_json_DOTdecode] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_DASH] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_AMP_CARET] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [sym_none] = ACTIONS(565), + [sym_true] = ACTIONS(565), + [sym_false] = ACTIONS(565), + [sym_nil] = ACTIONS(565), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_POUND_LBRACK] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_DOLLARif] = ACTIONS(565), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_BANGin] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_select] = ACTIONS(565), + [anon_sym_STAR_EQ] = ACTIONS(565), + [anon_sym_SLASH_EQ] = ACTIONS(565), + [anon_sym_PERCENT_EQ] = ACTIONS(565), + [anon_sym_LT_LT_EQ] = ACTIONS(565), + [anon_sym_GT_GT_EQ] = ACTIONS(565), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(565), + [anon_sym_AMP_EQ] = ACTIONS(565), + [anon_sym_AMP_CARET_EQ] = ACTIONS(565), + [anon_sym_PLUS_EQ] = ACTIONS(565), + [anon_sym_DASH_EQ] = ACTIONS(565), + [anon_sym_PIPE_EQ] = ACTIONS(565), + [anon_sym_CARET_EQ] = ACTIONS(565), + [anon_sym_COLON_EQ] = ACTIONS(565), + [anon_sym_lock] = ACTIONS(565), + [anon_sym_rlock] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_sql] = ACTIONS(565), + [sym_int_literal] = ACTIONS(565), + [sym_float_literal] = ACTIONS(565), + [sym_rune_literal] = ACTIONS(565), + [sym_pseudo_compile_time_identifier] = ACTIONS(565), + [anon_sym_shared] = ACTIONS(565), + [anon_sym_map_LBRACK] = ACTIONS(565), + [anon_sym_chan] = ACTIONS(565), + [anon_sym_thread] = ACTIONS(565), + [anon_sym_atomic] = ACTIONS(565), + [anon_sym_assert] = ACTIONS(565), + [anon_sym_defer] = ACTIONS(565), + [anon_sym_goto] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_DOLLARfor] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_asm] = ACTIONS(565), + [anon_sym_AT_LBRACK] = ACTIONS(565), + [sym___double_quote] = ACTIONS(565), + [sym___single_quote] = ACTIONS(565), + [sym___c_double_quote] = ACTIONS(565), + [sym___c_single_quote] = ACTIONS(565), + [sym___r_double_quote] = ACTIONS(565), + [sym___r_single_quote] = ACTIONS(565), }, [68] = { - [sym_reference_expression] = STATE(4484), - [sym_type_reference_expression] = STATE(404), - [sym_plain_type] = STATE(660), - [sym__plain_type_without_special] = STATE(879), - [sym_anon_struct_type] = STATE(878), - [sym_multi_return_type] = STATE(879), - [sym_result_type] = STATE(879), - [sym_option_type] = STATE(879), - [sym_qualified_type] = STATE(404), - [sym_fixed_array_type] = STATE(878), - [sym_array_type] = STATE(878), - [sym_pointer_type] = STATE(878), - [sym_wrong_pointer_type] = STATE(878), - [sym_map_type] = STATE(878), - [sym_channel_type] = STATE(878), - [sym_shared_type] = STATE(878), - [sym_thread_type] = STATE(878), - [sym_atomic_type] = STATE(878), - [sym_generic_type] = STATE(878), - [sym_function_type] = STATE(878), - [ts_builtin_sym_end] = ACTIONS(581), - [sym_identifier] = ACTIONS(583), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_const] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(587), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym___global] = ACTIONS(585), - [anon_sym_type] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [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(581), - [anon_sym_struct] = ACTIONS(593), - [anon_sym_union] = ACTIONS(585), - [anon_sym_pub] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_enum] = ACTIONS(585), - [anon_sym_interface] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(595), - [anon_sym_BANG] = ACTIONS(597), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [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(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = 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_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [sym_pseudo_compile_time_identifier] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(603), - [anon_sym_map_LBRACK] = ACTIONS(605), - [anon_sym_chan] = ACTIONS(607), - [anon_sym_thread] = ACTIONS(609), - [anon_sym_atomic] = ACTIONS(611), - [anon_sym_assert] = ACTIONS(585), - [anon_sym_defer] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(585), - [anon_sym_break] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_return] = ACTIONS(585), - [anon_sym_DOLLARfor] = ACTIONS(585), - [anon_sym_for] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_asm] = ACTIONS(585), - [anon_sym_AT_LBRACK] = ACTIONS(585), - [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), + [sym_line_comment] = STATE(68), + [sym_block_comment] = STATE(68), + [sym_reference_expression] = STATE(4521), + [sym_type_reference_expression] = STATE(401), + [sym_plain_type] = STATE(591), + [sym__plain_type_without_special] = STATE(466), + [sym_anon_struct_type] = STATE(465), + [sym_multi_return_type] = STATE(466), + [sym_result_type] = STATE(466), + [sym_option_type] = STATE(466), + [sym_qualified_type] = STATE(401), + [sym_fixed_array_type] = STATE(465), + [sym_array_type] = STATE(465), + [sym_pointer_type] = STATE(465), + [sym_wrong_pointer_type] = STATE(465), + [sym_map_type] = STATE(465), + [sym_channel_type] = STATE(465), + [sym_shared_type] = STATE(465), + [sym_thread_type] = STATE(465), + [sym_atomic_type] = STATE(465), + [sym_generic_type] = STATE(465), + [sym_function_type] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(567), + [sym_identifier] = ACTIONS(569), + [anon_sym_LF] = ACTIONS(571), + [anon_sym_CR] = ACTIONS(571), + [anon_sym_CR_LF] = ACTIONS(571), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_as] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_const] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(571), + [anon_sym___global] = ACTIONS(571), + [anon_sym_type] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_struct] = ACTIONS(579), + [anon_sym_union] = ACTIONS(571), + [anon_sym_pub] = ACTIONS(571), + [anon_sym_mut] = ACTIONS(571), + [anon_sym_enum] = ACTIONS(571), + [anon_sym_interface] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(571), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_go] = ACTIONS(571), + [anon_sym_spawn] = ACTIONS(571), + [anon_sym_json_DOTdecode] = ACTIONS(571), + [anon_sym_LBRACK2] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(587), + [anon_sym_LT_DASH] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_GT_GT_GT] = ACTIONS(571), + [anon_sym_AMP_CARET] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_or] = ACTIONS(571), + [sym_none] = ACTIONS(571), + [sym_true] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [sym_nil] = ACTIONS(571), + [anon_sym_QMARK_DOT] = ACTIONS(571), + [anon_sym_POUND_LBRACK] = ACTIONS(571), + [anon_sym_if] = ACTIONS(571), + [anon_sym_DOLLARif] = ACTIONS(571), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(571), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(571), + [anon_sym_match] = ACTIONS(571), + [anon_sym_select] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_AMP_CARET_EQ] = ACTIONS(571), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_COLON_EQ] = ACTIONS(571), + [anon_sym_lock] = ACTIONS(571), + [anon_sym_rlock] = ACTIONS(571), + [anon_sym_unsafe] = ACTIONS(571), + [anon_sym_sql] = ACTIONS(571), + [sym_int_literal] = ACTIONS(571), + [sym_float_literal] = ACTIONS(571), + [sym_rune_literal] = ACTIONS(571), + [sym_pseudo_compile_time_identifier] = ACTIONS(571), + [anon_sym_shared] = ACTIONS(589), + [anon_sym_map_LBRACK] = ACTIONS(591), + [anon_sym_chan] = ACTIONS(593), + [anon_sym_thread] = ACTIONS(595), + [anon_sym_atomic] = ACTIONS(597), + [anon_sym_assert] = ACTIONS(571), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(571), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_return] = ACTIONS(571), + [anon_sym_DOLLARfor] = ACTIONS(571), + [anon_sym_for] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_asm] = ACTIONS(571), + [anon_sym_AT_LBRACK] = ACTIONS(571), + [sym___double_quote] = ACTIONS(571), + [sym___single_quote] = ACTIONS(571), + [sym___c_double_quote] = ACTIONS(571), + [sym___c_single_quote] = ACTIONS(571), + [sym___r_double_quote] = ACTIONS(571), + [sym___r_single_quote] = ACTIONS(571), }, [69] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(615), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_const] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym___global] = ACTIONS(615), - [anon_sym_type] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_union] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_interface] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(615), + [sym_line_comment] = STATE(69), + [sym_block_comment] = STATE(69), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(603), + [anon_sym_CR] = ACTIONS(603), + [anon_sym_CR_LF] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_const] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_EQ] = ACTIONS(603), + [anon_sym___global] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(599), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_union] = ACTIONS(603), + [anon_sym_pub] = ACTIONS(603), + [anon_sym_mut] = ACTIONS(603), + [anon_sym_enum] = ACTIONS(603), + [anon_sym_interface] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_go] = ACTIONS(603), + [anon_sym_spawn] = ACTIONS(603), + [anon_sym_json_DOTdecode] = ACTIONS(603), [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [sym_pseudo_compile_time_identifier] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(615), - [anon_sym_chan] = ACTIONS(615), - [anon_sym_thread] = ACTIONS(615), - [anon_sym_atomic] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_defer] = ACTIONS(615), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_DOLLARfor] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_POUND] = ACTIONS(615), - [anon_sym_asm] = ACTIONS(615), - [anon_sym_AT_LBRACK] = ACTIONS(615), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [sym_none] = ACTIONS(603), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_nil] = ACTIONS(603), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_if] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(603), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(603), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_match] = ACTIONS(603), + [anon_sym_select] = 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_lock] = ACTIONS(603), + [anon_sym_rlock] = ACTIONS(603), + [anon_sym_unsafe] = ACTIONS(603), + [anon_sym_sql] = ACTIONS(603), + [sym_int_literal] = ACTIONS(603), + [sym_float_literal] = ACTIONS(603), + [sym_rune_literal] = ACTIONS(603), + [sym_pseudo_compile_time_identifier] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(619), + [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(603), + [anon_sym_defer] = ACTIONS(603), + [anon_sym_goto] = ACTIONS(603), + [anon_sym_break] = ACTIONS(603), + [anon_sym_continue] = ACTIONS(603), + [anon_sym_return] = ACTIONS(603), + [anon_sym_DOLLARfor] = ACTIONS(603), + [anon_sym_for] = ACTIONS(603), + [anon_sym_POUND] = ACTIONS(603), + [anon_sym_asm] = ACTIONS(603), + [anon_sym_AT_LBRACK] = ACTIONS(603), + [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), }, - [70] = { - [sym_reference_expression] = STATE(4484), - [sym_type_reference_expression] = STATE(404), - [sym_plain_type] = STATE(711), - [sym__plain_type_without_special] = STATE(879), - [sym_anon_struct_type] = STATE(878), - [sym_multi_return_type] = STATE(879), - [sym_result_type] = STATE(879), - [sym_option_type] = STATE(879), - [sym_qualified_type] = STATE(404), - [sym_fixed_array_type] = STATE(878), - [sym_array_type] = STATE(878), - [sym_pointer_type] = STATE(878), - [sym_wrong_pointer_type] = STATE(878), - [sym_map_type] = STATE(878), - [sym_channel_type] = STATE(878), - [sym_shared_type] = STATE(878), - [sym_thread_type] = STATE(878), - [sym_atomic_type] = STATE(878), - [sym_generic_type] = STATE(878), - [sym_function_type] = STATE(878), - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(583), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [sym_comment] = ACTIONS(495), - [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(587), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym___global] = ACTIONS(619), - [anon_sym_type] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(591), - [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(593), - [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(595), - [anon_sym_BANG] = ACTIONS(597), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(601), - [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(603), - [anon_sym_map_LBRACK] = ACTIONS(605), - [anon_sym_chan] = ACTIONS(607), - [anon_sym_thread] = ACTIONS(609), - [anon_sym_atomic] = ACTIONS(611), - [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), - }, - [71] = { - [sym_reference_expression] = STATE(4484), - [sym_type_reference_expression] = STATE(404), - [sym_plain_type] = STATE(840), - [sym__plain_type_without_special] = STATE(879), - [sym_anon_struct_type] = STATE(878), - [sym_multi_return_type] = STATE(879), - [sym_result_type] = STATE(879), - [sym_option_type] = STATE(879), - [sym_qualified_type] = STATE(404), - [sym_fixed_array_type] = STATE(878), - [sym_array_type] = STATE(878), - [sym_pointer_type] = STATE(878), - [sym_wrong_pointer_type] = STATE(878), - [sym_map_type] = STATE(878), - [sym_channel_type] = STATE(878), - [sym_shared_type] = STATE(878), - [sym_thread_type] = STATE(878), - [sym_atomic_type] = STATE(878), - [sym_generic_type] = STATE(878), - [sym_function_type] = STATE(878), + [70] = { + [sym_line_comment] = STATE(70), + [sym_block_comment] = STATE(70), + [sym_reference_expression] = STATE(4521), + [sym_type_reference_expression] = STATE(401), + [sym_plain_type] = STATE(647), + [sym__plain_type_without_special] = STATE(466), + [sym_anon_struct_type] = STATE(465), + [sym_multi_return_type] = STATE(466), + [sym_result_type] = STATE(466), + [sym_option_type] = STATE(466), + [sym_qualified_type] = STATE(401), + [sym_fixed_array_type] = STATE(465), + [sym_array_type] = STATE(465), + [sym_pointer_type] = STATE(465), + [sym_wrong_pointer_type] = STATE(465), + [sym_map_type] = STATE(465), + [sym_channel_type] = STATE(465), + [sym_shared_type] = STATE(465), + [sym_thread_type] = STATE(465), + [sym_atomic_type] = STATE(465), + [sym_generic_type] = STATE(465), + [sym_function_type] = STATE(465), [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(583), + [sym_identifier] = ACTIONS(569), [anon_sym_LF] = ACTIONS(623), [anon_sym_CR] = ACTIONS(623), [anon_sym_CR_LF] = ACTIONS(623), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(623), [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(587), + [anon_sym_LPAREN] = ACTIONS(573), [anon_sym_EQ] = ACTIONS(623), [anon_sym___global] = ACTIONS(623), [anon_sym_type] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(589), + [anon_sym_fn] = ACTIONS(575), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(623), [anon_sym_LT] = ACTIONS(623), [anon_sym_GT] = ACTIONS(623), @@ -33223,7 +30310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(623), [anon_sym_GT_EQ] = ACTIONS(623), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(593), + [anon_sym_struct] = ACTIONS(579), [anon_sym_union] = ACTIONS(623), [anon_sym_pub] = ACTIONS(623), [anon_sym_mut] = ACTIONS(623), @@ -33231,15 +30318,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(623), [anon_sym_PLUS_PLUS] = ACTIONS(623), [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(595), - [anon_sym_BANG] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), [anon_sym_go] = ACTIONS(623), [anon_sym_spawn] = ACTIONS(623), [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(599), + [anon_sym_LBRACK2] = ACTIONS(585), [anon_sym_TILDE] = ACTIONS(623), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(587), [anon_sym_LT_DASH] = ACTIONS(623), [anon_sym_LT_LT] = ACTIONS(623), [anon_sym_GT_GT] = ACTIONS(623), @@ -33283,11 +30370,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(623), [sym_rune_literal] = ACTIONS(623), [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(603), - [anon_sym_map_LBRACK] = ACTIONS(605), - [anon_sym_chan] = ACTIONS(607), - [anon_sym_thread] = ACTIONS(609), - [anon_sym_atomic] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(589), + [anon_sym_map_LBRACK] = ACTIONS(591), + [anon_sym_chan] = ACTIONS(593), + [anon_sym_thread] = ACTIONS(595), + [anon_sym_atomic] = ACTIONS(597), [anon_sym_assert] = ACTIONS(623), [anon_sym_defer] = ACTIONS(623), [anon_sym_goto] = ACTIONS(623), @@ -33306,16842 +30393,17511 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(623), [sym___r_single_quote] = ACTIONS(623), }, - [72] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4557), - [sym_short_element_list] = STATE(4716), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), + [71] = { + [sym_line_comment] = STATE(71), + [sym_block_comment] = STATE(71), + [sym_reference_expression] = STATE(4521), + [sym_type_reference_expression] = STATE(401), + [sym_plain_type] = STATE(486), + [sym__plain_type_without_special] = STATE(466), + [sym_anon_struct_type] = STATE(465), + [sym_multi_return_type] = STATE(466), + [sym_result_type] = STATE(466), + [sym_option_type] = STATE(466), + [sym_qualified_type] = STATE(401), + [sym_fixed_array_type] = STATE(465), + [sym_array_type] = STATE(465), + [sym_pointer_type] = STATE(465), + [sym_wrong_pointer_type] = STATE(465), + [sym_map_type] = STATE(465), + [sym_channel_type] = STATE(465), + [sym_shared_type] = STATE(465), + [sym_thread_type] = STATE(465), + [sym_atomic_type] = STATE(465), + [sym_generic_type] = STATE(465), + [sym_function_type] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(625), + [sym_identifier] = ACTIONS(569), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_CR] = ACTIONS(627), + [anon_sym_CR_LF] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(627), [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_COMMA] = ACTIONS(627), + [anon_sym_const] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym___global] = ACTIONS(627), + [anon_sym_type] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(577), + [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(579), + [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(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_go] = ACTIONS(627), + [anon_sym_spawn] = ACTIONS(627), + [anon_sym_json_DOTdecode] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(587), + [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(589), + [anon_sym_map_LBRACK] = ACTIONS(591), + [anon_sym_chan] = ACTIONS(593), + [anon_sym_thread] = ACTIONS(595), + [anon_sym_atomic] = ACTIONS(597), + [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), + }, + [72] = { + [sym_line_comment] = STATE(72), + [sym_block_comment] = STATE(72), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4428), + [sym_short_element_list] = STATE(4493), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [73] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4620), - [sym_short_element_list] = STATE(4618), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(73), + [sym_block_comment] = STATE(73), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4509), + [sym_short_element_list] = STATE(4486), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [74] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4606), - [sym_short_element_list] = STATE(4616), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(74), + [sym_block_comment] = STATE(74), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4619), + [sym_short_element_list] = STATE(4622), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [75] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4509), - [sym_short_element_list] = STATE(4514), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(75), + [sym_block_comment] = STATE(75), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4752), + [sym_short_element_list] = STATE(4748), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [76] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4644), - [sym_short_element_list] = STATE(4648), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(76), + [sym_block_comment] = STATE(76), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4576), + [sym_short_element_list] = STATE(4581), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [77] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4567), - [sym_short_element_list] = STATE(4568), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(77), + [sym_block_comment] = STATE(77), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4707), + [sym_short_element_list] = STATE(4706), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [78] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4395), - [sym_short_element_list] = STATE(4396), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(78), + [sym_block_comment] = STATE(78), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4580), + [sym_short_element_list] = STATE(4579), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [79] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4556), - [sym_short_element_list] = STATE(4552), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(79), + [sym_block_comment] = STATE(79), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4494), + [sym_short_element_list] = STATE(4495), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [80] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4700), - [sym_short_element_list] = STATE(4696), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(80), + [sym_block_comment] = STATE(80), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4479), + [sym_short_element_list] = STATE(4478), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [81] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4706), - [sym_short_element_list] = STATE(4707), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(81), + [sym_block_comment] = STATE(81), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4651), + [sym_short_element_list] = STATE(4653), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [82] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4517), - [sym_short_element_list] = STATE(4518), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(82), + [sym_block_comment] = STATE(82), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4693), + [sym_short_element_list] = STATE(4656), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [83] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4467), - [sym_short_element_list] = STATE(4464), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(83), + [sym_block_comment] = STATE(83), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4527), + [sym_short_element_list] = STATE(4529), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [84] = { - [sym_struct_field_scope] = STATE(3483), - [sym_struct_field_declaration] = STATE(3483), - [sym__struct_field_definition] = STATE(3482), - [sym_embedded_definition] = STATE(3481), - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4468), - [sym_short_element_list] = STATE(4473), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3428), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3428), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(3458), - [sym_function_type] = STATE(2413), - [aux_sym__struct_body_repeat1] = STATE(3392), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym___global] = ACTIONS(635), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_mut] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(84), + [sym_block_comment] = STATE(84), + [sym_struct_field_scope] = STATE(3495), + [sym_struct_field_declaration] = STATE(3495), + [sym__struct_field_definition] = STATE(3501), + [sym_embedded_definition] = STATE(3507), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4703), + [sym_short_element_list] = STATE(4712), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1240), + [sym_type_reference_expression] = STATE(3457), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3457), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(3489), + [sym_function_type] = STATE(2462), + [aux_sym__struct_body_repeat1] = STATE(3420), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym___global] = ACTIONS(639), + [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(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(651), + [anon_sym_mut] = ACTIONS(653), + [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), }, [85] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(147), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4690), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(703), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(85), + [sym_block_comment] = STATE(85), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4484), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(707), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [86] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(137), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4710), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(86), + [sym_block_comment] = STATE(86), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4654), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(767), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [87] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(129), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4410), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4751), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(769), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [88] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(145), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4435), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(145), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4475), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(771), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [89] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(111), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4619), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4426), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(773), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [90] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(134), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4649), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(90), + [sym_block_comment] = STATE(90), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4739), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [91] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(113), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4549), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4484), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(777), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [92] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(134), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4649), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4654), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(779), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [93] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(130), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4613), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4534), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(781), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [94] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(111), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4619), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(779), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4537), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(767), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [95] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(130), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4613), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4537), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [96] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(143), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4658), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4573), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [97] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(147), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4690), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4728), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [98] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(113), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4549), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4697), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(789), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [99] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(147), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4690), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4728), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [100] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(145), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4435), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(145), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4537), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(779), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [101] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(129), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4410), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), - }, - [102] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(138), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4519), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4645), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, - [103] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(116), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4474), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), + [102] = { + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4697), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), [aux_sym_select_expression_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, - [104] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(134), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4649), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), + [103] = { + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4537), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), + }, + [104] = { + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4645), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(799), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [105] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(147), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4690), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4426), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(801), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [106] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(120), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4573), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4654), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(803), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [107] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(128), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4520), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [aux_sym_select_expression_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4476), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [aux_sym_select_expression_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(805), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [108] = { - [sym__expression] = STATE(1664), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_strictly_expression_list] = STATE(4143), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_expression] = STATE(3358), - [sym_expression_list] = STATE(3379), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_simple_statement] = STATE(4598), - [sym_var_declaration] = STATE(4143), - [sym_var_definition_list] = STATE(4621), - [sym_var_definition] = STATE(3914), - [sym_assignment_statement] = STATE(4143), - [sym_block] = STATE(1516), - [sym_range_clause] = STATE(4191), - [sym_for_clause] = STATE(4191), - [sym_identifier] = ACTIONS(803), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [sym__expression] = STATE(1680), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_strictly_expression_list] = STATE(4361), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(972), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3429), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_simple_statement] = STATE(4629), + [sym_var_declaration] = STATE(4361), + [sym_var_definition_list] = STATE(4632), + [sym_var_definition] = STATE(4015), + [sym_assignment_statement] = STATE(4361), + [sym_block] = STATE(3804), + [sym_range_clause] = STATE(4291), + [sym_for_clause] = STATE(4291), + [sym_identifier] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [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(825), + [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), }, [109] = { - [sym__expression] = STATE(1668), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_strictly_expression_list] = STATE(4143), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_expression] = STATE(3358), - [sym_expression_list] = STATE(3379), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_simple_statement] = STATE(4598), - [sym_var_declaration] = STATE(4143), - [sym_var_definition_list] = STATE(4621), - [sym_var_definition] = STATE(3914), - [sym_assignment_statement] = STATE(4143), - [sym_block] = STATE(3754), - [sym_range_clause] = STATE(4340), - [sym_for_clause] = STATE(4340), - [sym_identifier] = ACTIONS(803), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [sym__expression] = STATE(1675), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_strictly_expression_list] = STATE(4361), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(972), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3429), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_simple_statement] = STATE(4629), + [sym_var_declaration] = STATE(4361), + [sym_var_definition_list] = STATE(4632), + [sym_var_definition] = STATE(4015), + [sym_assignment_statement] = STATE(4361), + [sym_block] = STATE(1585), + [sym_range_clause] = STATE(4206), + [sym_for_clause] = STATE(4206), + [sym_identifier] = ACTIONS(807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(873), + [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(825), + [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), }, [110] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4688), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4457), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(875), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [111] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4633), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4460), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(877), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [112] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4493), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4496), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(879), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [113] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4526), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4663), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(881), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [114] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4548), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4461), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(883), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [115] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(112), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4489), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(112), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4462), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(885), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [116] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4488), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4675), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(887), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [117] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(119), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4524), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(117), + [sym_block_comment] = STATE(117), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4672), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(889), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [118] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4602), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4617), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(891), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [119] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4521), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4595), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(893), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [120] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4586), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4589), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(895), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [121] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(124), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4588), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4578), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(897), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [122] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4434), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4643), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(899), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [123] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4599), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4615), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(901), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [124] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4590), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4683), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(903), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [125] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(122), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4433), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4701), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(905), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [126] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(118), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4603), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4700), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(907), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [127] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(123), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4593), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4694), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(909), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [128] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4592), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4695), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(130), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(911), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [129] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4425), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(129), + [sym_block_comment] = STATE(129), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4459), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(913), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [130] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4604), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(130), + [sym_block_comment] = STATE(130), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4698), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(915), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [131] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(132), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4635), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(132), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(131), + [sym_block_comment] = STATE(131), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4666), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(917), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [132] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4636), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(132), + [sym_block_comment] = STATE(132), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4669), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(919), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [133] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4392), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(133), + [sym_block_comment] = STATE(133), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4585), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(921), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [134] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4675), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(134), + [sym_block_comment] = STATE(134), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4547), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(923), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [135] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(136), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4679), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(135), + [sym_block_comment] = STATE(135), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4546), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(925), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [136] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4687), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4452), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(927), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [137] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4692), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4720), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(929), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [138] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4542), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4716), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(931), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [139] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(110), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4691), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4708), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(933), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [140] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(114), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4543), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4602), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(935), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [141] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(133), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4575), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4658), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(937), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [142] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4659), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4523), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(939), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [143] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4577), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4670), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(941), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [144] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(142), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4663), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4736), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(943), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [145] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4442), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4522), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(945), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [146] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4438), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4541), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(947), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [147] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4665), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4520), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(949), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [148] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_select_else_arn_clause] = STATE(4441), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(697), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(713), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(733), - [anon_sym_DOLLARif] = ACTIONS(735), - [anon_sym_match] = ACTIONS(737), - [anon_sym_select] = ACTIONS(739), - [anon_sym_lock] = ACTIONS(741), - [anon_sym_rlock] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(743), - [anon_sym_sql] = ACTIONS(745), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(749), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_select_else_arn_clause] = STATE(4673), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(951), + [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_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(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [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), }, [149] = { - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(1945), - [sym__expression_with_blocks] = STATE(2923), - [sym_inc_expression] = STATE(1945), - [sym_dec_expression] = STATE(1945), - [sym_or_block_expression] = STATE(1945), - [sym_option_propagation_expression] = STATE(1945), - [sym_result_propagation_expression] = STATE(1945), - [sym_anon_struct_value_expression] = STATE(2921), - [sym_go_expression] = STATE(1945), - [sym_spawn_expression] = STATE(1945), - [sym_parenthesized_expression] = STATE(1945), - [sym_call_expression] = STATE(1945), - [sym_type_initializer] = STATE(2921), - [sym_function_literal] = STATE(1945), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1945), - [sym_receive_expression] = STATE(1945), - [sym_binary_expression] = STATE(1945), - [sym_as_type_cast_expression] = STATE(1945), - [sym__max_group] = STATE(1945), - [sym_literal] = STATE(1945), - [sym_map_init_expression] = STATE(2921), - [sym_array_creation] = STATE(1945), - [sym_fixed_array_creation] = STATE(1945), - [sym_selector_expression] = STATE(1945), - [sym_index_expression] = STATE(1945), - [sym_slice_expression] = STATE(1945), - [sym_if_expression] = STATE(2921), - [sym_compile_time_if_expression] = STATE(2921), - [sym_is_expression] = STATE(1945), - [sym_not_is_expression] = STATE(1945), - [sym_in_expression] = STATE(1945), - [sym_not_in_expression] = STATE(1945), - [sym_enum_fetch] = STATE(1945), - [sym_match_expression] = STATE(2921), - [sym_select_expression] = STATE(2921), - [sym_select_arm] = STATE(149), - [sym_select_arm_statement] = STATE(4140), - [sym_select_var_declaration] = STATE(4634), - [sym_lock_expression] = STATE(2921), - [sym_unsafe_expression] = STATE(2921), - [sym_sql_expression] = STATE(2921), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(845), - [sym_mutable_identifier] = STATE(3977), - [sym_identifier_list] = STATE(4640), - [sym_expression_without_blocks_list] = STATE(3366), - [sym_plain_type] = STATE(4295), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_send_statement] = STATE(4634), + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2933), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(2931), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(2931), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(2931), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(2931), + [sym_compile_time_if_expression] = STATE(2931), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(2931), + [sym_select_expression] = STATE(2931), + [sym_select_arm] = STATE(2184), + [sym_select_arm_statement] = STATE(4400), + [sym_select_var_declaration] = STATE(4477), + [sym_lock_expression] = STATE(2931), + [sym_unsafe_expression] = STATE(2931), + [sym_sql_expression] = STATE(2931), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(632), + [sym_mutable_identifier] = STATE(3922), + [sym_identifier_list] = STATE(4474), + [sym_expression_without_blocks_list] = STATE(3393), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_send_statement] = STATE(4477), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(949), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_fn] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(981), - [anon_sym_go] = ACTIONS(984), - [anon_sym_spawn] = ACTIONS(987), - [anon_sym_json_DOTdecode] = ACTIONS(990), - [anon_sym_LBRACK2] = ACTIONS(993), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(996), - [anon_sym_LT_DASH] = ACTIONS(999), - [sym_none] = ACTIONS(1002), - [sym_true] = ACTIONS(1002), - [sym_false] = ACTIONS(1002), - [sym_nil] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_DOLLARif] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1013), - [anon_sym_select] = ACTIONS(1016), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_rlock] = ACTIONS(1019), - [anon_sym_unsafe] = ACTIONS(1022), - [anon_sym_sql] = ACTIONS(1025), - [sym_int_literal] = ACTIONS(1002), - [sym_float_literal] = ACTIONS(1028), - [sym_rune_literal] = ACTIONS(1028), - [sym_pseudo_compile_time_identifier] = ACTIONS(1031), - [anon_sym_shared] = ACTIONS(1034), - [anon_sym_map_LBRACK] = ACTIONS(1037), - [anon_sym_chan] = ACTIONS(1040), - [anon_sym_thread] = ACTIONS(1043), - [anon_sym_atomic] = ACTIONS(1046), - [sym___double_quote] = ACTIONS(1049), - [sym___single_quote] = ACTIONS(1052), - [sym___c_double_quote] = ACTIONS(1055), - [sym___c_single_quote] = ACTIONS(1058), - [sym___r_double_quote] = ACTIONS(1061), - [sym___r_single_quote] = ACTIONS(1064), + [sym_identifier] = ACTIONS(953), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_go] = ACTIONS(988), + [anon_sym_spawn] = ACTIONS(991), + [anon_sym_json_DOTdecode] = ACTIONS(994), + [anon_sym_LBRACK2] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_CARET] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_LT_DASH] = ACTIONS(1003), + [sym_none] = ACTIONS(1006), + [sym_true] = ACTIONS(1006), + [sym_false] = ACTIONS(1006), + [sym_nil] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_DOLLARif] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1017), + [anon_sym_select] = ACTIONS(1020), + [anon_sym_lock] = ACTIONS(1023), + [anon_sym_rlock] = ACTIONS(1023), + [anon_sym_unsafe] = ACTIONS(1026), + [anon_sym_sql] = ACTIONS(1029), + [sym_int_literal] = ACTIONS(1006), + [sym_float_literal] = ACTIONS(1032), + [sym_rune_literal] = ACTIONS(1032), + [sym_pseudo_compile_time_identifier] = ACTIONS(1035), + [anon_sym_shared] = ACTIONS(1038), + [anon_sym_map_LBRACK] = ACTIONS(1041), + [anon_sym_chan] = ACTIONS(1044), + [anon_sym_thread] = ACTIONS(1047), + [anon_sym_atomic] = ACTIONS(1050), + [sym___double_quote] = ACTIONS(1053), + [sym___single_quote] = ACTIONS(1056), + [sym___c_double_quote] = ACTIONS(1059), + [sym___c_single_quote] = ACTIONS(1062), + [sym___r_double_quote] = ACTIONS(1065), + [sym___r_single_quote] = ACTIONS(1068), }, [150] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4476), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(196), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4448), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4671), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4650), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(195), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [152] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4666), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4665), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1145), + [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), }, [153] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4624), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4501), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(202), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(1147), + [anon_sym_PIPE] = ACTIONS(1141), + [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_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), }, [154] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4632), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4551), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4530), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4471), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [156] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4579), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4740), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [157] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4443), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4514), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [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), }, [158] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4461), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4704), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1157), + [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), }, [159] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4587), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4571), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(1159), + [anon_sym_PIPE] = ACTIONS(1141), + [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_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), }, [160] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4516), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4456), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(1161), + [anon_sym_PIPE] = ACTIONS(1141), + [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_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), }, [161] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4486), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4434), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [162] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4713), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1161), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4543), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(1165), + [anon_sym_PIPE] = ACTIONS(1141), + [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_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), }, [163] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4610), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4721), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [164] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4584), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4564), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1169), + [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__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4623), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1167), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4560), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4684), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4606), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [167] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4695), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4733), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [168] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4651), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4688), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4457), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1175), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4613), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4523), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4686), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1181), + [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), }, [171] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4541), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4676), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4423), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4660), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [173] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_short_lambda] = STATE(4416), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arms] = STATE(4463), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arms] = STATE(4605), - [sym_match_arm] = STATE(181), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(181), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_short_lambda] = STATE(4689), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [175] = { - [sym__expression] = STATE(2663), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2667), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2860), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4627), + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1333), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1428), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), [sym_attribute_expression] = STATE(4019), - [sym_if_attribute] = STATE(4111), - [sym__plain_attribute] = STATE(4111), - [sym_literal_attribute] = STATE(4111), - [sym_value_attribute] = STATE(4038), - [sym_key_value_attribute] = STATE(4111), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1229), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_if_attribute] = STATE(4179), + [sym__plain_attribute] = STATE(4179), + [sym_literal_attribute] = STATE(4185), + [sym_value_attribute] = STATE(4018), + [sym_key_value_attribute] = STATE(4185), + [aux_sym__array_repeat1] = STATE(387), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [176] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arm] = STATE(176), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(176), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1262), + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym__expression] = STATE(2664), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2869), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2900), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4610), + [sym_attribute_expression] = STATE(4019), + [sym_if_attribute] = STATE(4179), + [sym__plain_attribute] = STATE(4179), + [sym_literal_attribute] = STATE(4185), + [sym_value_attribute] = STATE(4018), + [sym_key_value_attribute] = STATE(4185), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), [anon_sym_fn] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_mut] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_go] = ACTIONS(1286), - [anon_sym_spawn] = ACTIONS(1289), - [anon_sym_json_DOTdecode] = ACTIONS(1292), - [anon_sym_LBRACK2] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_LT_DASH] = ACTIONS(1301), - [sym_none] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_nil] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_DOLLARif] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_select] = ACTIONS(1319), - [anon_sym_lock] = ACTIONS(1322), - [anon_sym_rlock] = ACTIONS(1322), - [anon_sym_unsafe] = ACTIONS(1325), - [anon_sym_sql] = ACTIONS(1328), - [sym_int_literal] = ACTIONS(1304), - [sym_float_literal] = ACTIONS(1331), - [sym_rune_literal] = ACTIONS(1331), - [sym_pseudo_compile_time_identifier] = ACTIONS(1334), - [anon_sym_shared] = ACTIONS(1337), - [anon_sym_map_LBRACK] = ACTIONS(1340), - [anon_sym_chan] = ACTIONS(1343), - [anon_sym_thread] = ACTIONS(1346), - [anon_sym_atomic] = ACTIONS(1349), - [sym___double_quote] = ACTIONS(1352), - [sym___single_quote] = ACTIONS(1355), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1361), - [sym___r_double_quote] = ACTIONS(1364), - [sym___r_single_quote] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1289), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1299), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [177] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4419), - [sym_short_element_list] = STATE(4421), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4545), + [sym_short_element_list] = STATE(4548), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1321), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [178] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4539), - [sym_short_element_list] = STATE(4540), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4681), + [sym_short_element_list] = STATE(4679), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1323), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [179] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4661), - [sym_short_element_list] = STATE(4662), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1325), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_fn] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_mut] = ACTIONS(1351), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_go] = ACTIONS(1360), + [anon_sym_spawn] = ACTIONS(1363), + [anon_sym_json_DOTdecode] = ACTIONS(1366), + [anon_sym_LBRACK2] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_CARET] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_LT_DASH] = ACTIONS(1375), + [sym_none] = ACTIONS(1378), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [sym_nil] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_DOLLARif] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_select] = ACTIONS(1393), + [anon_sym_lock] = ACTIONS(1396), + [anon_sym_rlock] = ACTIONS(1396), + [anon_sym_unsafe] = ACTIONS(1399), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1378), + [sym_float_literal] = ACTIONS(1405), + [sym_rune_literal] = ACTIONS(1405), + [sym_pseudo_compile_time_identifier] = ACTIONS(1408), + [anon_sym_shared] = ACTIONS(1411), + [anon_sym_map_LBRACK] = ACTIONS(1414), + [anon_sym_chan] = ACTIONS(1417), + [anon_sym_thread] = ACTIONS(1420), + [anon_sym_atomic] = ACTIONS(1423), + [sym___double_quote] = ACTIONS(1426), + [sym___single_quote] = ACTIONS(1429), + [sym___c_double_quote] = ACTIONS(1432), + [sym___c_single_quote] = ACTIONS(1435), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1441), }, [180] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1350), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1420), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_attribute_expression] = STATE(4019), - [sym_if_attribute] = STATE(4111), - [sym__plain_attribute] = STATE(4111), - [sym_literal_attribute] = STATE(4111), - [sym_value_attribute] = STATE(4038), - [sym_key_value_attribute] = STATE(4111), - [aux_sym__array_repeat1] = STATE(340), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1420), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4715), + [sym_short_element_list] = STATE(4699), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1444), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [181] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2635), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2635), - [sym_dec_expression] = STATE(2635), - [sym_or_block_expression] = STATE(2635), - [sym_option_propagation_expression] = STATE(2635), - [sym_result_propagation_expression] = STATE(2635), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2635), - [sym_spawn_expression] = STATE(2635), - [sym_parenthesized_expression] = STATE(2635), - [sym_call_expression] = STATE(2635), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2635), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2635), - [sym_receive_expression] = STATE(2635), - [sym_binary_expression] = STATE(2635), - [sym_as_type_cast_expression] = STATE(2635), - [sym__max_group] = STATE(2635), - [sym_literal] = STATE(2635), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2635), - [sym_fixed_array_creation] = STATE(2635), - [sym_selector_expression] = STATE(2635), - [sym_index_expression] = STATE(2635), - [sym_slice_expression] = STATE(2635), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2635), - [sym_not_is_expression] = STATE(2635), - [sym_in_expression] = STATE(2635), - [sym_not_in_expression] = STATE(2635), - [sym_enum_fetch] = STATE(2635), - [sym_match_expression] = STATE(2816), - [sym_match_arm] = STATE(176), - [sym_match_expression_list] = STATE(4208), - [sym_match_arm_type] = STATE(3939), - [sym_match_else_arm_clause] = STATE(176), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(1127), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4745), + [sym_short_element_list] = STATE(4624), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1446), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [182] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4705), - [sym_short_element_list] = STATE(4703), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4562), + [sym_short_element_list] = STATE(4561), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1448), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [183] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4676), - [sym_short_element_list] = STATE(4674), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4439), + [sym_short_element_list] = STATE(4440), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1450), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [184] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4537), - [sym_short_element_list] = STATE(4536), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4674), + [sym_short_element_list] = STATE(4677), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1452), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [185] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4560), - [sym_short_element_list] = STATE(4565), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4657), + [sym_short_element_list] = STATE(4659), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1454), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [186] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4591), - [sym_short_element_list] = STATE(4582), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arm] = STATE(2187), + [sym_match_expression_list] = STATE(4290), + [sym_match_arm_type] = STATE(3938), + [sym_match_else_arm_clause] = STATE(2187), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(3946), + [aux_sym_match_arms_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1456), + [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), }, [187] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4678), - [sym_short_element_list] = STATE(4672), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4727), + [sym_short_element_list] = STATE(4725), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1458), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [188] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4452), - [sym_short_element_list] = STATE(4447), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4438), + [sym_short_element_list] = STATE(4437), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1460), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [189] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4628), - [sym_short_element_list] = STATE(4631), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4505), + [sym_short_element_list] = STATE(4506), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1462), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [190] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4608), - [sym_short_element_list] = STATE(4607), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4611), + [sym_short_element_list] = STATE(4612), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1464), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [191] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_element_list] = STATE(4482), - [sym_short_element_list] = STATE(4483), - [sym_keyed_element] = STATE(3475), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1210), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(3475), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_element_list_repeat1] = STATE(3498), - [aux_sym_short_element_list_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_element_list] = STATE(4465), + [sym_short_element_list] = STATE(4464), + [sym_keyed_element] = STATE(3503), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1208), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(3503), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_element_list_repeat1] = STATE(3528), + [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1466), + [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_DOT_DOT_DOT] = ACTIONS(647), + [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), }, [192] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(1468), + [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_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), }, [193] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1470), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [195] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [196] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [197] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_mut] = ACTIONS(1503), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_go] = ACTIONS(1512), - [anon_sym_spawn] = ACTIONS(1515), - [anon_sym_json_DOTdecode] = ACTIONS(1518), - [anon_sym_LBRACK2] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_LT_DASH] = ACTIONS(1527), - [sym_none] = ACTIONS(1530), - [sym_true] = ACTIONS(1530), - [sym_false] = ACTIONS(1530), - [sym_nil] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_DOLLARif] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_select] = ACTIONS(1542), - [anon_sym_lock] = ACTIONS(1545), - [anon_sym_rlock] = ACTIONS(1545), - [anon_sym_unsafe] = ACTIONS(1548), - [anon_sym_sql] = ACTIONS(1551), - [sym_int_literal] = ACTIONS(1530), - [sym_float_literal] = ACTIONS(1554), - [sym_rune_literal] = ACTIONS(1554), - [sym_pseudo_compile_time_identifier] = ACTIONS(1557), - [anon_sym_shared] = ACTIONS(1560), - [anon_sym_map_LBRACK] = ACTIONS(1563), - [anon_sym_chan] = ACTIONS(1566), - [anon_sym_thread] = ACTIONS(1569), - [anon_sym_atomic] = ACTIONS(1572), - [sym___double_quote] = ACTIONS(1575), - [sym___single_quote] = ACTIONS(1578), - [sym___c_double_quote] = ACTIONS(1581), - [sym___c_single_quote] = ACTIONS(1584), - [sym___r_double_quote] = ACTIONS(1587), - [sym___r_single_quote] = ACTIONS(1590), + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [198] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1593), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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_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_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), }, [199] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(1599), + [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_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), }, [200] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(1601), + [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_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), }, [201] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(1603), + [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_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), }, [202] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(1605), + [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_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), }, [203] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(1607), + [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_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), }, [204] = { - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_argument] = STATE(1944), - [sym_type_initializer] = STATE(1205), - [sym_keyed_element] = STATE(1943), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1254), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_spread_expression] = STATE(1943), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(705), - [sym_mutable_expression] = STATE(1943), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1605), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_argument] = STATE(1958), + [sym_type_initializer] = STATE(1222), + [sym_keyed_element] = STATE(1959), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1248), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_spread_expression] = STATE(1959), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(843), + [sym_mutable_expression] = STATE(1959), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(1609), + [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_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), }, [205] = { - [sym_reference_expression] = STATE(4403), - [sym_type_reference_expression] = STATE(1014), - [sym_plain_type] = STATE(1061), - [sym__plain_type_without_special] = STATE(1097), - [sym_anon_struct_type] = STATE(1096), - [sym_multi_return_type] = STATE(1097), - [sym_result_type] = STATE(1097), - [sym_option_type] = STATE(1097), - [sym_qualified_type] = STATE(1014), - [sym_fixed_array_type] = STATE(1096), - [sym_array_type] = STATE(1096), - [sym_pointer_type] = STATE(1096), - [sym_wrong_pointer_type] = STATE(1096), - [sym_map_type] = STATE(1096), - [sym_channel_type] = STATE(1096), - [sym_shared_type] = STATE(1096), - [sym_thread_type] = STATE(1096), - [sym_atomic_type] = STATE(1096), - [sym_generic_type] = STATE(1096), - [sym_function_type] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(581), - [sym_identifier] = ACTIONS(1607), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_const] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym___global] = ACTIONS(585), - [anon_sym_type] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [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(581), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(585), - [anon_sym_pub] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_enum] = ACTIONS(585), - [anon_sym_interface] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [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(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [sym_pseudo_compile_time_identifier] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(1625), - [anon_sym_map_LBRACK] = ACTIONS(1627), - [anon_sym_chan] = ACTIONS(1629), - [anon_sym_thread] = ACTIONS(1631), - [anon_sym_atomic] = ACTIONS(1633), - [anon_sym_assert] = ACTIONS(585), - [anon_sym_defer] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(585), - [anon_sym_break] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_return] = ACTIONS(585), - [anon_sym_DOLLARfor] = ACTIONS(585), - [anon_sym_for] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_asm] = ACTIONS(585), - [anon_sym_AT_LBRACK] = ACTIONS(585), - [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), + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_strictly_expression_list] = STATE(4361), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(972), + [sym_mutable_expression] = STATE(3380), + [sym_expression_list] = STATE(3419), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_simple_statement] = STATE(4603), + [sym_var_declaration] = STATE(4361), + [sym_assignment_statement] = STATE(4361), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1613), + [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), }, [206] = { - [sym_reference_expression] = STATE(4403), - [sym_type_reference_expression] = STATE(1014), - [sym_plain_type] = STATE(1076), - [sym__plain_type_without_special] = STATE(1097), - [sym_anon_struct_type] = STATE(1096), - [sym_multi_return_type] = STATE(1097), - [sym_result_type] = STATE(1097), - [sym_option_type] = STATE(1097), - [sym_qualified_type] = STATE(1014), - [sym_fixed_array_type] = STATE(1096), - [sym_array_type] = STATE(1096), - [sym_pointer_type] = STATE(1096), - [sym_wrong_pointer_type] = STATE(1096), - [sym_map_type] = STATE(1096), - [sym_channel_type] = STATE(1096), - [sym_shared_type] = STATE(1096), - [sym_thread_type] = STATE(1096), - [sym_atomic_type] = STATE(1096), - [sym_generic_type] = STATE(1096), - [sym_function_type] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(1607), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [sym_comment] = ACTIONS(495), - [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(1609), - [anon_sym___global] = ACTIONS(619), - [anon_sym_type] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(1613), - [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(1615), - [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(1617), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(1623), - [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(1625), - [anon_sym_map_LBRACK] = ACTIONS(1627), - [anon_sym_chan] = ACTIONS(1629), - [anon_sym_thread] = ACTIONS(1631), - [anon_sym_atomic] = ACTIONS(1633), - [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_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [sym__expression] = STATE(2344), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(590), + [sym_mutable_expression] = STATE(3565), + [sym_expression_list] = STATE(3806), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_LF] = ACTIONS(495), + [anon_sym_CR] = ACTIONS(495), + [anon_sym_CR_LF] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(1621), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(1637), + [anon_sym_LBRACK2] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_LT_DASH] = ACTIONS(1643), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(1645), + [sym_rune_literal] = ACTIONS(1645), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [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(1663), + [sym___single_quote] = ACTIONS(1665), + [sym___c_double_quote] = ACTIONS(1667), + [sym___c_single_quote] = ACTIONS(1669), + [sym___r_double_quote] = ACTIONS(1671), + [sym___r_single_quote] = ACTIONS(1673), }, [207] = { - [sym__expression] = STATE(2319), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(608), - [sym_mutable_expression] = STATE(3517), - [sym_expression_list] = STATE(3750), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [anon_sym_LF] = ACTIONS(493), - [anon_sym_CR] = ACTIONS(493), - [anon_sym_CR_LF] = ACTIONS(493), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(1657), - [anon_sym_LBRACK2] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1645), - [anon_sym_CARET] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_LT_DASH] = ACTIONS(1663), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(1665), - [sym_rune_literal] = ACTIONS(1665), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1683), - [sym___single_quote] = ACTIONS(1685), - [sym___c_double_quote] = ACTIONS(1687), - [sym___c_single_quote] = ACTIONS(1689), - [sym___r_double_quote] = ACTIONS(1691), - [sym___r_single_quote] = ACTIONS(1693), + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_strictly_expression_list] = STATE(4361), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(972), + [sym_mutable_expression] = STATE(3380), + [sym_expression_list] = STATE(3419), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_simple_statement] = STATE(4724), + [sym_var_declaration] = STATE(4361), + [sym_assignment_statement] = STATE(4361), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [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_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), }, [208] = { - [sym_reference_expression] = STATE(4403), - [sym_type_reference_expression] = STATE(1014), - [sym_plain_type] = STATE(1090), - [sym__plain_type_without_special] = STATE(1097), - [sym_anon_struct_type] = STATE(1096), - [sym_multi_return_type] = STATE(1097), - [sym_result_type] = STATE(1097), - [sym_option_type] = STATE(1097), - [sym_qualified_type] = STATE(1014), - [sym_fixed_array_type] = STATE(1096), - [sym_array_type] = STATE(1096), - [sym_pointer_type] = STATE(1096), - [sym_wrong_pointer_type] = STATE(1096), - [sym_map_type] = STATE(1096), - [sym_channel_type] = STATE(1096), - [sym_shared_type] = STATE(1096), - [sym_thread_type] = STATE(1096), - [sym_atomic_type] = STATE(1096), - [sym_generic_type] = STATE(1096), - [sym_function_type] = STATE(1096), + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_reference_expression] = STATE(4466), + [sym_type_reference_expression] = STATE(1017), + [sym_plain_type] = STATE(1083), + [sym__plain_type_without_special] = STATE(1068), + [sym_anon_struct_type] = STATE(1033), + [sym_multi_return_type] = STATE(1068), + [sym_result_type] = STATE(1068), + [sym_option_type] = STATE(1068), + [sym_qualified_type] = STATE(1017), + [sym_fixed_array_type] = STATE(1033), + [sym_array_type] = STATE(1033), + [sym_pointer_type] = STATE(1033), + [sym_wrong_pointer_type] = STATE(1033), + [sym_map_type] = STATE(1033), + [sym_channel_type] = STATE(1033), + [sym_shared_type] = STATE(1033), + [sym_thread_type] = STATE(1033), + [sym_atomic_type] = STATE(1033), + [sym_generic_type] = STATE(1033), + [sym_function_type] = STATE(1033), + [ts_builtin_sym_end] = ACTIONS(625), + [sym_identifier] = ACTIONS(1677), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_CR] = ACTIONS(627), + [anon_sym_CR_LF] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(627), + [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(1679), + [anon_sym___global] = ACTIONS(627), + [anon_sym_type] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(1683), + [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(1685), + [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(1687), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_go] = ACTIONS(627), + [anon_sym_spawn] = ACTIONS(627), + [anon_sym_json_DOTdecode] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(1693), + [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(1695), + [anon_sym_map_LBRACK] = ACTIONS(1697), + [anon_sym_chan] = ACTIONS(1699), + [anon_sym_thread] = ACTIONS(1701), + [anon_sym_atomic] = ACTIONS(1703), + [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), + }, + [209] = { + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [sym_reference_expression] = STATE(4466), + [sym_type_reference_expression] = STATE(1017), + [sym_plain_type] = STATE(1066), + [sym__plain_type_without_special] = STATE(1068), + [sym_anon_struct_type] = STATE(1033), + [sym_multi_return_type] = STATE(1068), + [sym_result_type] = STATE(1068), + [sym_option_type] = STATE(1068), + [sym_qualified_type] = STATE(1017), + [sym_fixed_array_type] = STATE(1033), + [sym_array_type] = STATE(1033), + [sym_pointer_type] = STATE(1033), + [sym_wrong_pointer_type] = STATE(1033), + [sym_map_type] = STATE(1033), + [sym_channel_type] = STATE(1033), + [sym_shared_type] = STATE(1033), + [sym_thread_type] = STATE(1033), + [sym_atomic_type] = STATE(1033), + [sym_generic_type] = STATE(1033), + [sym_function_type] = STATE(1033), [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1677), [anon_sym_LF] = ACTIONS(623), [anon_sym_CR] = ACTIONS(623), [anon_sym_CR_LF] = ACTIONS(623), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(623), [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(1609), + [anon_sym_LPAREN] = ACTIONS(1679), [anon_sym___global] = ACTIONS(623), [anon_sym_type] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1681), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(1683), [anon_sym_PERCENT] = ACTIONS(623), [anon_sym_LT] = ACTIONS(623), [anon_sym_GT] = ACTIONS(623), @@ -50150,7 +47906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(623), [anon_sym_GT_EQ] = ACTIONS(623), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1685), [anon_sym_union] = ACTIONS(623), [anon_sym_pub] = ACTIONS(623), [anon_sym_mut] = ACTIONS(623), @@ -50158,15 +47914,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(623), [anon_sym_PLUS_PLUS] = ACTIONS(623), [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1687), + [anon_sym_BANG] = ACTIONS(1689), [anon_sym_go] = ACTIONS(623), [anon_sym_spawn] = ACTIONS(623), [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(1621), + [anon_sym_LBRACK2] = ACTIONS(1691), [anon_sym_TILDE] = ACTIONS(623), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1693), [anon_sym_LT_DASH] = ACTIONS(623), [anon_sym_LT_LT] = ACTIONS(623), [anon_sym_GT_GT] = ACTIONS(623), @@ -50197,11 +47953,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(623), [sym_rune_literal] = ACTIONS(623), [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(1625), - [anon_sym_map_LBRACK] = ACTIONS(1627), - [anon_sym_chan] = ACTIONS(1629), - [anon_sym_thread] = ACTIONS(1631), - [anon_sym_atomic] = ACTIONS(1633), + [anon_sym_shared] = ACTIONS(1695), + [anon_sym_map_LBRACK] = ACTIONS(1697), + [anon_sym_chan] = ACTIONS(1699), + [anon_sym_thread] = ACTIONS(1701), + [anon_sym_atomic] = ACTIONS(1703), [anon_sym_assert] = ACTIONS(623), [anon_sym_defer] = ACTIONS(623), [anon_sym_goto] = ACTIONS(623), @@ -50220,4635 +47976,5109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(623), [sym___r_single_quote] = ACTIONS(623), }, - [209] = { - [sym__expression] = STATE(1798), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_strictly_expression_list] = STATE(4143), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_expression] = STATE(3356), - [sym_expression_list] = STATE(3402), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_simple_statement] = STATE(4494), - [sym_var_declaration] = STATE(4143), - [sym_assignment_statement] = STATE(4143), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), - }, [210] = { - [sym__expression] = STATE(1798), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_strictly_expression_list] = STATE(4143), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_expression] = STATE(3356), - [sym_expression_list] = STATE(3402), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_simple_statement] = STATE(4397), - [sym_var_declaration] = STATE(4143), - [sym_assignment_statement] = STATE(4143), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_strictly_expression_list] = STATE(4361), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(972), + [sym_mutable_expression] = STATE(3380), + [sym_expression_list] = STATE(3419), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_simple_statement] = STATE(4723), + [sym_var_declaration] = STATE(4361), + [sym_assignment_statement] = STATE(4361), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1705), + [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), }, [211] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(615), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_const] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym___global] = ACTIONS(615), - [anon_sym_type] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_union] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_interface] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(615), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(603), + [anon_sym_CR] = ACTIONS(603), + [anon_sym_CR_LF] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_const] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym___global] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(599), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_union] = ACTIONS(603), + [anon_sym_pub] = ACTIONS(603), + [anon_sym_mut] = ACTIONS(603), + [anon_sym_enum] = ACTIONS(603), + [anon_sym_interface] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_go] = ACTIONS(603), + [anon_sym_spawn] = ACTIONS(603), + [anon_sym_json_DOTdecode] = ACTIONS(603), [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [sym_pseudo_compile_time_identifier] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(615), - [anon_sym_chan] = ACTIONS(615), - [anon_sym_thread] = ACTIONS(615), - [anon_sym_atomic] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_defer] = ACTIONS(615), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_DOLLARfor] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_POUND] = ACTIONS(615), - [anon_sym_asm] = ACTIONS(615), - [anon_sym_AT_LBRACK] = ACTIONS(615), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [sym_none] = ACTIONS(603), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_nil] = ACTIONS(603), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_if] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(603), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(603), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_match] = ACTIONS(603), + [anon_sym_select] = ACTIONS(603), + [anon_sym_lock] = ACTIONS(603), + [anon_sym_rlock] = ACTIONS(603), + [anon_sym_unsafe] = ACTIONS(603), + [anon_sym_sql] = ACTIONS(603), + [sym_int_literal] = ACTIONS(603), + [sym_float_literal] = ACTIONS(603), + [sym_rune_literal] = ACTIONS(603), + [sym_pseudo_compile_time_identifier] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(619), + [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(603), + [anon_sym_defer] = ACTIONS(603), + [anon_sym_goto] = ACTIONS(603), + [anon_sym_break] = ACTIONS(603), + [anon_sym_continue] = ACTIONS(603), + [anon_sym_return] = ACTIONS(603), + [anon_sym_DOLLARfor] = ACTIONS(603), + [anon_sym_for] = ACTIONS(603), + [anon_sym_POUND] = ACTIONS(603), + [anon_sym_asm] = ACTIONS(603), + [anon_sym_AT_LBRACK] = ACTIONS(603), + [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), }, [212] = { - [sym__expression] = STATE(1798), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_strictly_expression_list] = STATE(4143), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_expression] = STATE(3356), - [sym_expression_list] = STATE(3402), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_simple_statement] = STATE(4571), - [sym_var_declaration] = STATE(4143), - [sym_assignment_statement] = STATE(4143), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [sym_reference_expression] = STATE(4466), + [sym_type_reference_expression] = STATE(1017), + [sym_plain_type] = STATE(1121), + [sym__plain_type_without_special] = STATE(1068), + [sym_anon_struct_type] = STATE(1033), + [sym_multi_return_type] = STATE(1068), + [sym_result_type] = STATE(1068), + [sym_option_type] = STATE(1068), + [sym_qualified_type] = STATE(1017), + [sym_fixed_array_type] = STATE(1033), + [sym_array_type] = STATE(1033), + [sym_pointer_type] = STATE(1033), + [sym_wrong_pointer_type] = STATE(1033), + [sym_map_type] = STATE(1033), + [sym_channel_type] = STATE(1033), + [sym_shared_type] = STATE(1033), + [sym_thread_type] = STATE(1033), + [sym_atomic_type] = STATE(1033), + [sym_generic_type] = STATE(1033), + [sym_function_type] = STATE(1033), + [ts_builtin_sym_end] = ACTIONS(567), + [sym_identifier] = ACTIONS(1677), + [anon_sym_LF] = ACTIONS(571), + [anon_sym_CR] = ACTIONS(571), + [anon_sym_CR_LF] = ACTIONS(571), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_as] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_const] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym___global] = ACTIONS(571), + [anon_sym_type] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_PERCENT] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_struct] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(571), + [anon_sym_pub] = ACTIONS(571), + [anon_sym_mut] = ACTIONS(571), + [anon_sym_enum] = ACTIONS(571), + [anon_sym_interface] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(571), + [anon_sym_QMARK] = ACTIONS(1687), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_go] = ACTIONS(571), + [anon_sym_spawn] = ACTIONS(571), + [anon_sym_json_DOTdecode] = ACTIONS(571), + [anon_sym_LBRACK2] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(1693), + [anon_sym_LT_DASH] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_GT_GT_GT] = ACTIONS(571), + [anon_sym_AMP_CARET] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_or] = ACTIONS(571), + [sym_none] = ACTIONS(571), + [sym_true] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [sym_nil] = ACTIONS(571), + [anon_sym_QMARK_DOT] = ACTIONS(571), + [anon_sym_POUND_LBRACK] = ACTIONS(571), + [anon_sym_if] = ACTIONS(571), + [anon_sym_DOLLARif] = ACTIONS(571), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(571), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(571), + [anon_sym_match] = ACTIONS(571), + [anon_sym_select] = ACTIONS(571), + [anon_sym_lock] = ACTIONS(571), + [anon_sym_rlock] = ACTIONS(571), + [anon_sym_unsafe] = ACTIONS(571), + [anon_sym_sql] = ACTIONS(571), + [sym_int_literal] = ACTIONS(571), + [sym_float_literal] = ACTIONS(571), + [sym_rune_literal] = ACTIONS(571), + [sym_pseudo_compile_time_identifier] = ACTIONS(571), + [anon_sym_shared] = ACTIONS(1695), + [anon_sym_map_LBRACK] = ACTIONS(1697), + [anon_sym_chan] = ACTIONS(1699), + [anon_sym_thread] = ACTIONS(1701), + [anon_sym_atomic] = ACTIONS(1703), + [anon_sym_assert] = ACTIONS(571), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(571), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_return] = ACTIONS(571), + [anon_sym_DOLLARfor] = ACTIONS(571), + [anon_sym_for] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_asm] = ACTIONS(571), + [anon_sym_AT_LBRACK] = ACTIONS(571), + [sym___double_quote] = ACTIONS(571), + [sym___single_quote] = ACTIONS(571), + [sym___c_double_quote] = ACTIONS(571), + [sym___c_single_quote] = ACTIONS(571), + [sym___r_double_quote] = ACTIONS(571), + [sym___r_single_quote] = ACTIONS(571), }, [213] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [ts_builtin_sym_end] = ACTIONS(559), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(563), - [anon_sym_CR] = ACTIONS(563), - [anon_sym_CR_LF] = ACTIONS(563), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_const] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym___global] = ACTIONS(563), - [anon_sym_type] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [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(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_union] = ACTIONS(563), - [anon_sym_pub] = ACTIONS(563), - [anon_sym_mut] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(563), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_go] = ACTIONS(563), - [anon_sym_spawn] = ACTIONS(563), - [anon_sym_json_DOTdecode] = ACTIONS(563), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_DASH] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [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(563), - [sym_none] = ACTIONS(563), - [sym_true] = ACTIONS(563), - [sym_false] = ACTIONS(563), - [sym_nil] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_DOLLARif] = ACTIONS(563), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_match] = ACTIONS(563), - [anon_sym_select] = ACTIONS(563), - [anon_sym_lock] = ACTIONS(563), - [anon_sym_rlock] = ACTIONS(563), - [anon_sym_unsafe] = ACTIONS(563), - [anon_sym_sql] = ACTIONS(563), - [sym_int_literal] = ACTIONS(563), - [sym_float_literal] = ACTIONS(563), - [sym_rune_literal] = ACTIONS(563), - [sym_pseudo_compile_time_identifier] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(563), - [anon_sym_defer] = ACTIONS(563), - [anon_sym_goto] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_DOLLARfor] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_asm] = ACTIONS(563), - [anon_sym_AT_LBRACK] = ACTIONS(563), - [sym___double_quote] = ACTIONS(563), - [sym___single_quote] = ACTIONS(563), - [sym___c_double_quote] = ACTIONS(563), - [sym___c_single_quote] = ACTIONS(563), - [sym___r_double_quote] = ACTIONS(563), - [sym___r_single_quote] = ACTIONS(563), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_strictly_expression_list] = STATE(4361), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(972), + [sym_mutable_expression] = STATE(3380), + [sym_expression_list] = STATE(3419), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_simple_statement] = STATE(4609), + [sym_var_declaration] = STATE(4361), + [sym_assignment_statement] = STATE(4361), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1709), + [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), }, [214] = { - [sym__expression] = STATE(1798), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_strictly_expression_list] = STATE(4143), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_expression] = STATE(3356), - [sym_expression_list] = STATE(3402), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_simple_statement] = STATE(4402), - [sym_var_declaration] = STATE(4143), - [sym_assignment_statement] = STATE(4143), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [ts_builtin_sym_end] = ACTIONS(563), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(565), + [anon_sym_CR] = ACTIONS(565), + [anon_sym_CR_LF] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym___global] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_EQ_EQ] = ACTIONS(565), + [anon_sym_BANG_EQ] = ACTIONS(565), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_mut] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_interface] = ACTIONS(565), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_go] = ACTIONS(565), + [anon_sym_spawn] = ACTIONS(565), + [anon_sym_json_DOTdecode] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_DASH] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_AMP_CARET] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [sym_none] = ACTIONS(565), + [sym_true] = ACTIONS(565), + [sym_false] = ACTIONS(565), + [sym_nil] = ACTIONS(565), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_POUND_LBRACK] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_DOLLARif] = ACTIONS(565), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_BANGin] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_select] = ACTIONS(565), + [anon_sym_lock] = ACTIONS(565), + [anon_sym_rlock] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_sql] = ACTIONS(565), + [sym_int_literal] = ACTIONS(565), + [sym_float_literal] = ACTIONS(565), + [sym_rune_literal] = ACTIONS(565), + [sym_pseudo_compile_time_identifier] = ACTIONS(565), + [anon_sym_shared] = ACTIONS(565), + [anon_sym_map_LBRACK] = ACTIONS(565), + [anon_sym_chan] = ACTIONS(565), + [anon_sym_thread] = ACTIONS(565), + [anon_sym_atomic] = ACTIONS(565), + [anon_sym_assert] = ACTIONS(565), + [anon_sym_defer] = ACTIONS(565), + [anon_sym_goto] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_DOLLARfor] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_asm] = ACTIONS(565), + [anon_sym_AT_LBRACK] = ACTIONS(565), + [sym___double_quote] = ACTIONS(565), + [sym___single_quote] = ACTIONS(565), + [sym___c_double_quote] = ACTIONS(565), + [sym___c_single_quote] = ACTIONS(565), + [sym___r_double_quote] = ACTIONS(565), + [sym___r_single_quote] = ACTIONS(565), }, [215] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [aux_sym_strictly_expression_list_repeat1] = STATE(3359), - [ts_builtin_sym_end] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1709), - [anon_sym_LF] = ACTIONS(1709), - [anon_sym_CR] = ACTIONS(1709), - [anon_sym_CR_LF] = ACTIONS(1709), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_COMMA] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym___global] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_union] = ACTIONS(1709), - [anon_sym_pub] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_enum] = ACTIONS(1709), - [anon_sym_interface] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1729), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1709), - [anon_sym_json_DOTdecode] = ACTIONS(1709), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_DASH] = ACTIONS(1739), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_AMP_CARET] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1743), - [anon_sym_PIPE_PIPE] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1747), - [sym_none] = ACTIONS(1709), - [sym_true] = ACTIONS(1709), - [sym_false] = ACTIONS(1709), - [sym_nil] = ACTIONS(1709), - [anon_sym_QMARK_DOT] = ACTIONS(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_DOLLARif] = ACTIONS(1709), - [anon_sym_is] = ACTIONS(1749), - [anon_sym_BANGis] = ACTIONS(1751), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_select] = ACTIONS(1709), - [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(1709), - [anon_sym_rlock] = ACTIONS(1709), - [anon_sym_unsafe] = ACTIONS(1709), - [anon_sym_sql] = ACTIONS(1709), - [sym_int_literal] = ACTIONS(1709), - [sym_float_literal] = ACTIONS(1709), - [sym_rune_literal] = ACTIONS(1709), - [sym_pseudo_compile_time_identifier] = ACTIONS(1709), - [anon_sym_shared] = ACTIONS(1709), - [anon_sym_map_LBRACK] = ACTIONS(1709), - [anon_sym_chan] = ACTIONS(1709), - [anon_sym_thread] = ACTIONS(1709), - [anon_sym_atomic] = ACTIONS(1709), - [anon_sym_assert] = ACTIONS(1709), - [anon_sym_defer] = ACTIONS(1709), - [anon_sym_goto] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_DOLLARfor] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_POUND] = ACTIONS(1709), - [anon_sym_asm] = ACTIONS(1709), - [anon_sym_AT_LBRACK] = ACTIONS(1709), - [sym___double_quote] = ACTIONS(1709), - [sym___single_quote] = ACTIONS(1709), - [sym___c_double_quote] = ACTIONS(1709), - [sym___c_single_quote] = ACTIONS(1709), - [sym___r_double_quote] = ACTIONS(1709), - [sym___r_single_quote] = ACTIONS(1709), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [aux_sym_strictly_expression_list_repeat1] = STATE(3383), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1725), + [anon_sym___global] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [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(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(1741), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_LT_DASH] = ACTIONS(1743), + [anon_sym_LT_LT] = ACTIONS(1745), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_AMP_CARET] = ACTIONS(1715), + [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(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_DOLLARif] = ACTIONS(1713), + [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(1725), + [anon_sym_SLASH_EQ] = ACTIONS(1725), + [anon_sym_PERCENT_EQ] = ACTIONS(1725), + [anon_sym_LT_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_GT_EQ] = ACTIONS(1725), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1725), + [anon_sym_AMP_EQ] = ACTIONS(1725), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1725), + [anon_sym_PLUS_EQ] = ACTIONS(1725), + [anon_sym_DASH_EQ] = ACTIONS(1725), + [anon_sym_PIPE_EQ] = ACTIONS(1725), + [anon_sym_CARET_EQ] = ACTIONS(1725), + [anon_sym_COLON_EQ] = ACTIONS(1725), + [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), }, [216] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), [aux_sym_strictly_expression_list_repeat1] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_CR] = ACTIONS(1759), - [anon_sym_CR_LF] = ACTIONS(1759), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1761), - [anon_sym___global] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [anon_sym_pub] = ACTIONS(1759), - [anon_sym_mut] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_PLUS_PLUS] = ACTIONS(1729), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1759), - [anon_sym_spawn] = ACTIONS(1759), - [anon_sym_json_DOTdecode] = ACTIONS(1759), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_DASH] = ACTIONS(1759), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_AMP_CARET] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1743), - [anon_sym_PIPE_PIPE] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1747), - [sym_none] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_nil] = ACTIONS(1759), - [anon_sym_QMARK_DOT] = ACTIONS(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_DOLLARif] = ACTIONS(1759), - [anon_sym_is] = ACTIONS(1749), - [anon_sym_BANGis] = ACTIONS(1751), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1759), - [anon_sym_select] = ACTIONS(1759), - [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(1759), - [anon_sym_rlock] = ACTIONS(1759), - [anon_sym_unsafe] = ACTIONS(1759), - [anon_sym_sql] = ACTIONS(1759), - [sym_int_literal] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), - [sym_rune_literal] = ACTIONS(1759), - [sym_pseudo_compile_time_identifier] = ACTIONS(1759), - [anon_sym_shared] = ACTIONS(1759), - [anon_sym_map_LBRACK] = ACTIONS(1759), - [anon_sym_chan] = ACTIONS(1759), - [anon_sym_thread] = ACTIONS(1759), - [anon_sym_atomic] = ACTIONS(1759), - [anon_sym_assert] = ACTIONS(1759), - [anon_sym_defer] = ACTIONS(1759), - [anon_sym_goto] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_DOLLARfor] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_asm] = ACTIONS(1759), - [anon_sym_AT_LBRACK] = ACTIONS(1759), - [sym___double_quote] = ACTIONS(1759), - [sym___single_quote] = ACTIONS(1759), - [sym___c_double_quote] = ACTIONS(1759), - [sym___c_single_quote] = ACTIONS(1759), - [sym___r_double_quote] = ACTIONS(1759), - [sym___r_single_quote] = ACTIONS(1759), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym___global] = ACTIONS(1763), + [anon_sym_type] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [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(1727), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_AMP_CARET] = ACTIONS(1715), + [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(1717), + [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__expression] = STATE(1290), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym___rcbr] = STATE(3773), - [aux_sym_string_interpolation_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym__expression] = STATE(1296), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym___rcbr] = STATE(3770), + [aux_sym_string_interpolation_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [219] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(220), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4395), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2438), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [220] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4207), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(1349), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [221] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4288), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(1031), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [222] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4185), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2219), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4312), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2086), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [223] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(233), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4116), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2538), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [224] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [225] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [sym__expression] = STATE(2473), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2668), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4396), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [226] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4137), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2788), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4305), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2208), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [227] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4236), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(1854), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4200), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2711), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [228] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4223), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(1066), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4246), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(1235), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [229] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4087), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2014), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [sym__expression] = STATE(2473), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4396), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [230] = { - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym___rcbr] = STATE(3761), - [aux_sym_string_interpolation_repeat1] = STATE(288), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4307), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(1713), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [231] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [232] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4395), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2438), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [233] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [sym__expression] = STATE(2472), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4308), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [234] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4395), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2438), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [235] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym___global] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1727), - [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(1729), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1849), - [anon_sym_spawn] = ACTIONS(1849), - [anon_sym_json_DOTdecode] = ACTIONS(1849), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_DASH] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_AMP_CARET] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1743), - [anon_sym_PIPE_PIPE] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1747), - [sym_none] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_nil] = ACTIONS(1849), - [anon_sym_QMARK_DOT] = ACTIONS(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_DOLLARif] = ACTIONS(1849), - [anon_sym_is] = ACTIONS(1749), - [anon_sym_BANGis] = ACTIONS(1751), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1755), - [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), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4200), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2711), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [236] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LF] = ACTIONS(1853), - [anon_sym_CR] = ACTIONS(1853), - [anon_sym_CR_LF] = ACTIONS(1853), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1853), - [anon_sym___global] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_fn] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_SLASH] = ACTIONS(1853), - [anon_sym_PERCENT] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_GT] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1853), - [anon_sym_BANG_EQ] = ACTIONS(1853), - [anon_sym_LT_EQ] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_union] = ACTIONS(1853), - [anon_sym_pub] = ACTIONS(1853), - [anon_sym_mut] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1853), - [anon_sym_interface] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1853), - [anon_sym_spawn] = ACTIONS(1853), - [anon_sym_json_DOTdecode] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_LT_DASH] = ACTIONS(1853), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1853), - [anon_sym_GT_GT_GT] = ACTIONS(1853), - [anon_sym_AMP_CARET] = ACTIONS(1853), - [anon_sym_AMP_AMP] = ACTIONS(1853), - [anon_sym_PIPE_PIPE] = ACTIONS(1853), - [anon_sym_or] = ACTIONS(1853), - [sym_none] = ACTIONS(1853), - [sym_true] = ACTIONS(1853), - [sym_false] = ACTIONS(1853), - [sym_nil] = ACTIONS(1853), - [anon_sym_QMARK_DOT] = ACTIONS(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_DOLLARif] = ACTIONS(1853), - [anon_sym_is] = ACTIONS(1853), - [anon_sym_BANGis] = ACTIONS(1853), - [anon_sym_in] = ACTIONS(1853), - [anon_sym_BANGin] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_select] = ACTIONS(1853), - [anon_sym_STAR_EQ] = ACTIONS(1853), - [anon_sym_SLASH_EQ] = ACTIONS(1853), - [anon_sym_PERCENT_EQ] = ACTIONS(1853), - [anon_sym_LT_LT_EQ] = ACTIONS(1853), - [anon_sym_GT_GT_EQ] = ACTIONS(1853), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1853), - [anon_sym_AMP_EQ] = ACTIONS(1853), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1853), - [anon_sym_PLUS_EQ] = ACTIONS(1853), - [anon_sym_DASH_EQ] = ACTIONS(1853), - [anon_sym_PIPE_EQ] = ACTIONS(1853), - [anon_sym_CARET_EQ] = ACTIONS(1853), - [anon_sym_COLON_EQ] = ACTIONS(1853), - [anon_sym_lock] = ACTIONS(1853), - [anon_sym_rlock] = ACTIONS(1853), - [anon_sym_unsafe] = ACTIONS(1853), - [anon_sym_sql] = ACTIONS(1853), - [sym_int_literal] = ACTIONS(1853), - [sym_float_literal] = ACTIONS(1853), - [sym_rune_literal] = ACTIONS(1853), - [sym_pseudo_compile_time_identifier] = ACTIONS(1853), - [anon_sym_shared] = ACTIONS(1853), - [anon_sym_map_LBRACK] = ACTIONS(1853), - [anon_sym_chan] = ACTIONS(1853), - [anon_sym_thread] = ACTIONS(1853), - [anon_sym_atomic] = ACTIONS(1853), - [anon_sym_assert] = ACTIONS(1853), - [anon_sym_defer] = ACTIONS(1853), - [anon_sym_goto] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_DOLLARfor] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_POUND] = ACTIONS(1853), - [anon_sym_asm] = ACTIONS(1853), - [anon_sym_AT_LBRACK] = ACTIONS(1853), - [sym___double_quote] = ACTIONS(1853), - [sym___single_quote] = ACTIONS(1853), - [sym___c_double_quote] = ACTIONS(1853), - [sym___c_single_quote] = ACTIONS(1853), - [sym___r_double_quote] = ACTIONS(1853), - [sym___r_single_quote] = ACTIONS(1853), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym__expression] = STATE(2375), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4281), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [237] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4157), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(1334), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [238] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [239] = { - [sym__expression] = STATE(2348), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2631), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4156), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [240] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_LF] = ACTIONS(1861), - [anon_sym_CR] = ACTIONS(1861), - [anon_sym_CR_LF] = ACTIONS(1861), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_COMMA] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym___global] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_union] = ACTIONS(1861), - [anon_sym_pub] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1729), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1861), - [anon_sym_spawn] = ACTIONS(1861), - [anon_sym_json_DOTdecode] = ACTIONS(1861), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_AMP_CARET] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1743), - [anon_sym_PIPE_PIPE] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1747), - [sym_none] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_nil] = ACTIONS(1861), - [anon_sym_QMARK_DOT] = ACTIONS(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_DOLLARif] = ACTIONS(1861), - [anon_sym_is] = ACTIONS(1749), - [anon_sym_BANGis] = ACTIONS(1751), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_select] = ACTIONS(1861), - [anon_sym_STAR_EQ] = ACTIONS(1861), - [anon_sym_SLASH_EQ] = ACTIONS(1861), - [anon_sym_PERCENT_EQ] = ACTIONS(1861), - [anon_sym_LT_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_GT_EQ] = ACTIONS(1861), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1861), - [anon_sym_AMP_EQ] = ACTIONS(1861), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1861), - [anon_sym_PLUS_EQ] = ACTIONS(1861), - [anon_sym_DASH_EQ] = ACTIONS(1861), - [anon_sym_PIPE_EQ] = ACTIONS(1861), - [anon_sym_CARET_EQ] = ACTIONS(1861), - [anon_sym_COLON_EQ] = ACTIONS(1861), - [anon_sym_lock] = ACTIONS(1861), - [anon_sym_rlock] = ACTIONS(1861), - [anon_sym_unsafe] = ACTIONS(1861), - [anon_sym_sql] = ACTIONS(1861), - [sym_int_literal] = ACTIONS(1861), - [sym_float_literal] = ACTIONS(1861), - [sym_rune_literal] = ACTIONS(1861), - [sym_pseudo_compile_time_identifier] = ACTIONS(1861), - [anon_sym_shared] = ACTIONS(1861), - [anon_sym_map_LBRACK] = ACTIONS(1861), - [anon_sym_chan] = ACTIONS(1861), - [anon_sym_thread] = ACTIONS(1861), - [anon_sym_atomic] = ACTIONS(1861), - [anon_sym_assert] = ACTIONS(1861), - [anon_sym_defer] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_DOLLARfor] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(1861), - [anon_sym_asm] = ACTIONS(1861), - [anon_sym_AT_LBRACK] = ACTIONS(1861), - [sym___double_quote] = ACTIONS(1861), - [sym___single_quote] = ACTIONS(1861), - [sym___c_double_quote] = ACTIONS(1861), - [sym___c_single_quote] = ACTIONS(1861), - [sym___r_double_quote] = ACTIONS(1861), - [sym___r_single_quote] = ACTIONS(1861), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4407), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(1942), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [241] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_COMMA] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1865), - [anon_sym___global] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_GT] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1865), - [anon_sym_BANG_EQ] = ACTIONS(1865), - [anon_sym_LT_EQ] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1727), - [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(1865), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1865), - [anon_sym_spawn] = ACTIONS(1865), - [anon_sym_json_DOTdecode] = ACTIONS(1865), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_DASH] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_AMP_CARET] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_PIPE_PIPE] = ACTIONS(1865), - [anon_sym_or] = ACTIONS(1865), - [sym_none] = ACTIONS(1865), - [sym_true] = ACTIONS(1865), - [sym_false] = ACTIONS(1865), - [sym_nil] = ACTIONS(1865), - [anon_sym_QMARK_DOT] = ACTIONS(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1865), - [anon_sym_is] = ACTIONS(1865), - [anon_sym_BANGis] = ACTIONS(1865), - [anon_sym_in] = ACTIONS(1865), - [anon_sym_BANGin] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_select] = ACTIONS(1865), - [anon_sym_STAR_EQ] = ACTIONS(1865), - [anon_sym_SLASH_EQ] = ACTIONS(1865), - [anon_sym_PERCENT_EQ] = ACTIONS(1865), - [anon_sym_LT_LT_EQ] = ACTIONS(1865), - [anon_sym_GT_GT_EQ] = ACTIONS(1865), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1865), - [anon_sym_AMP_EQ] = ACTIONS(1865), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1865), - [anon_sym_PLUS_EQ] = ACTIONS(1865), - [anon_sym_DASH_EQ] = ACTIONS(1865), - [anon_sym_PIPE_EQ] = ACTIONS(1865), - [anon_sym_CARET_EQ] = ACTIONS(1865), - [anon_sym_COLON_EQ] = ACTIONS(1865), - [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), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [242] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_identifier] = ACTIONS(1869), - [anon_sym_LF] = ACTIONS(1869), - [anon_sym_CR] = ACTIONS(1869), - [anon_sym_CR_LF] = ACTIONS(1869), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1869), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_COMMA] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1869), - [anon_sym___global] = ACTIONS(1869), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_fn] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_PERCENT] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1869), - [anon_sym_BANG_EQ] = ACTIONS(1869), - [anon_sym_LT_EQ] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_union] = ACTIONS(1869), - [anon_sym_pub] = ACTIONS(1869), - [anon_sym_mut] = ACTIONS(1869), - [anon_sym_enum] = ACTIONS(1869), - [anon_sym_interface] = ACTIONS(1869), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1869), - [anon_sym_json_DOTdecode] = ACTIONS(1869), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_LT_DASH] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1869), - [anon_sym_GT_GT_GT] = ACTIONS(1869), - [anon_sym_AMP_CARET] = ACTIONS(1869), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_PIPE_PIPE] = ACTIONS(1869), - [anon_sym_or] = ACTIONS(1869), - [sym_none] = ACTIONS(1869), - [sym_true] = ACTIONS(1869), - [sym_false] = ACTIONS(1869), - [sym_nil] = ACTIONS(1869), - [anon_sym_QMARK_DOT] = ACTIONS(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_DOLLARif] = ACTIONS(1869), - [anon_sym_is] = ACTIONS(1869), - [anon_sym_BANGis] = ACTIONS(1869), - [anon_sym_in] = ACTIONS(1869), - [anon_sym_BANGin] = ACTIONS(1869), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_select] = ACTIONS(1869), - [anon_sym_STAR_EQ] = ACTIONS(1869), - [anon_sym_SLASH_EQ] = ACTIONS(1869), - [anon_sym_PERCENT_EQ] = ACTIONS(1869), - [anon_sym_LT_LT_EQ] = ACTIONS(1869), - [anon_sym_GT_GT_EQ] = ACTIONS(1869), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1869), - [anon_sym_AMP_EQ] = ACTIONS(1869), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1869), - [anon_sym_PLUS_EQ] = ACTIONS(1869), - [anon_sym_DASH_EQ] = ACTIONS(1869), - [anon_sym_PIPE_EQ] = ACTIONS(1869), - [anon_sym_CARET_EQ] = ACTIONS(1869), - [anon_sym_COLON_EQ] = ACTIONS(1869), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1869), - [anon_sym_sql] = ACTIONS(1869), - [sym_int_literal] = ACTIONS(1869), - [sym_float_literal] = ACTIONS(1869), - [sym_rune_literal] = ACTIONS(1869), - [sym_pseudo_compile_time_identifier] = ACTIONS(1869), - [anon_sym_shared] = ACTIONS(1869), - [anon_sym_map_LBRACK] = ACTIONS(1869), - [anon_sym_chan] = ACTIONS(1869), - [anon_sym_thread] = ACTIONS(1869), - [anon_sym_atomic] = ACTIONS(1869), - [anon_sym_assert] = ACTIONS(1869), - [anon_sym_defer] = ACTIONS(1869), - [anon_sym_goto] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1869), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_DOLLARfor] = ACTIONS(1869), - [anon_sym_for] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(1869), - [anon_sym_asm] = ACTIONS(1869), - [anon_sym_AT_LBRACK] = ACTIONS(1869), - [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), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4395), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2438), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [243] = { - [sym__expression] = STATE(2394), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4360), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [sym__expression] = STATE(2419), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4315), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [244] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [245] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(231), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [246] = { - [sym__expression] = STATE(2377), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2631), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4161), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4305), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2208), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [247] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4278), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2919), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [248] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [249] = { + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym__expression] = STATE(2418), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4208), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [250] = { + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym___global] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1731), + [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(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1871), + [anon_sym_spawn] = ACTIONS(1871), + [anon_sym_json_DOTdecode] = ACTIONS(1871), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_AMP_CARET] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [sym_none] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_nil] = ACTIONS(1871), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_DOLLARif] = ACTIONS(1871), + [anon_sym_is] = ACTIONS(1871), + [anon_sym_BANGis] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_BANGin] = ACTIONS(1871), + [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), + }, + [251] = { + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1873), + [sym_identifier] = ACTIONS(1875), + [anon_sym_LF] = ACTIONS(1875), + [anon_sym_CR] = ACTIONS(1875), + [anon_sym_CR_LF] = ACTIONS(1875), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1875), + [anon_sym___global] = ACTIONS(1875), + [anon_sym_type] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_GT] = ACTIONS(1875), + [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(1731), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_pub] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_interface] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1875), + [anon_sym_spawn] = ACTIONS(1875), + [anon_sym_json_DOTdecode] = ACTIONS(1875), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_LT_DASH] = ACTIONS(1875), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_AMP_CARET] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1875), + [anon_sym_PIPE_PIPE] = ACTIONS(1875), + [anon_sym_or] = ACTIONS(1875), + [sym_none] = ACTIONS(1875), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [sym_nil] = ACTIONS(1875), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_DOLLARif] = ACTIONS(1875), + [anon_sym_is] = ACTIONS(1875), + [anon_sym_BANGis] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1875), + [anon_sym_BANGin] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_select] = ACTIONS(1875), + [anon_sym_STAR_EQ] = ACTIONS(1875), + [anon_sym_SLASH_EQ] = ACTIONS(1875), + [anon_sym_PERCENT_EQ] = ACTIONS(1875), + [anon_sym_LT_LT_EQ] = ACTIONS(1875), + [anon_sym_GT_GT_EQ] = ACTIONS(1875), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1875), + [anon_sym_AMP_EQ] = ACTIONS(1875), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1875), + [anon_sym_PLUS_EQ] = ACTIONS(1875), + [anon_sym_DASH_EQ] = ACTIONS(1875), + [anon_sym_PIPE_EQ] = ACTIONS(1875), + [anon_sym_CARET_EQ] = ACTIONS(1875), + [anon_sym_COLON_EQ] = ACTIONS(1875), + [anon_sym_lock] = ACTIONS(1875), + [anon_sym_rlock] = ACTIONS(1875), + [anon_sym_unsafe] = ACTIONS(1875), + [anon_sym_sql] = ACTIONS(1875), + [sym_int_literal] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1875), + [sym_rune_literal] = ACTIONS(1875), + [sym_pseudo_compile_time_identifier] = ACTIONS(1875), + [anon_sym_shared] = ACTIONS(1875), + [anon_sym_map_LBRACK] = ACTIONS(1875), + [anon_sym_chan] = ACTIONS(1875), + [anon_sym_thread] = ACTIONS(1875), + [anon_sym_atomic] = ACTIONS(1875), + [anon_sym_assert] = ACTIONS(1875), + [anon_sym_defer] = ACTIONS(1875), + [anon_sym_goto] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_DOLLARfor] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym_AT_LBRACK] = ACTIONS(1875), + [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), + }, + [252] = { + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), [ts_builtin_sym_end] = ACTIONS(1877), [sym_identifier] = ACTIONS(1879), [anon_sym_LF] = ACTIONS(1879), [anon_sym_CR] = ACTIONS(1879), [anon_sym_CR_LF] = ACTIONS(1879), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1879), [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1879), [anon_sym_const] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1879), [anon_sym___global] = ACTIONS(1879), [anon_sym_type] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1727), [anon_sym_fn] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [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(1727), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [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(1879), [anon_sym_union] = ACTIONS(1879), [anon_sym_pub] = ACTIONS(1879), [anon_sym_mut] = ACTIONS(1879), [anon_sym_enum] = ACTIONS(1879), [anon_sym_interface] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), [anon_sym_go] = ACTIONS(1879), [anon_sym_spawn] = ACTIONS(1879), [anon_sym_json_DOTdecode] = ACTIONS(1879), - [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_LBRACK2] = ACTIONS(1741), [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1715), [anon_sym_LT_DASH] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_AMP_CARET] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_AMP_CARET] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), [sym_none] = ACTIONS(1879), [sym_true] = ACTIONS(1879), [sym_false] = ACTIONS(1879), [sym_nil] = ACTIONS(1879), - [anon_sym_QMARK_DOT] = ACTIONS(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), [anon_sym_if] = ACTIONS(1879), [anon_sym_DOLLARif] = ACTIONS(1879), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), [anon_sym_match] = ACTIONS(1879), [anon_sym_select] = ACTIONS(1879), - [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_STAR_EQ] = ACTIONS(1879), + [anon_sym_SLASH_EQ] = ACTIONS(1879), + [anon_sym_PERCENT_EQ] = ACTIONS(1879), + [anon_sym_LT_LT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_AMP_EQ] = ACTIONS(1879), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1879), + [anon_sym_PLUS_EQ] = ACTIONS(1879), + [anon_sym_DASH_EQ] = ACTIONS(1879), + [anon_sym_PIPE_EQ] = ACTIONS(1879), + [anon_sym_CARET_EQ] = ACTIONS(1879), + [anon_sym_COLON_EQ] = ACTIONS(1879), [anon_sym_lock] = ACTIONS(1879), [anon_sym_rlock] = ACTIONS(1879), [anon_sym_unsafe] = ACTIONS(1879), @@ -54880,33284 +53110,29161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1879), [sym___r_single_quote] = ACTIONS(1879), }, - [249] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4077), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2420), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [250] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4157), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(1334), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [251] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4223), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(1066), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [252] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4310), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2087), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, [253] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1879), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [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(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_AMP_CARET] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_STAR_EQ] = ACTIONS(1879), + [anon_sym_SLASH_EQ] = ACTIONS(1879), + [anon_sym_PERCENT_EQ] = ACTIONS(1879), + [anon_sym_LT_LT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_AMP_EQ] = ACTIONS(1879), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1879), + [anon_sym_PLUS_EQ] = ACTIONS(1879), + [anon_sym_DASH_EQ] = ACTIONS(1879), + [anon_sym_PIPE_EQ] = ACTIONS(1879), + [anon_sym_CARET_EQ] = ACTIONS(1879), + [anon_sym_COLON_EQ] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), }, [254] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4383), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2527), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1881), + [sym_identifier] = ACTIONS(1883), + [anon_sym_LF] = ACTIONS(1883), + [anon_sym_CR] = ACTIONS(1883), + [anon_sym_CR_LF] = ACTIONS(1883), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1879), + [anon_sym___global] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1883), + [anon_sym_PLUS] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(1883), + [anon_sym_PERCENT] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(1731), + [anon_sym_struct] = ACTIONS(1883), + [anon_sym_union] = ACTIONS(1883), + [anon_sym_pub] = ACTIONS(1883), + [anon_sym_mut] = ACTIONS(1883), + [anon_sym_enum] = ACTIONS(1883), + [anon_sym_interface] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1883), + [anon_sym_spawn] = ACTIONS(1883), + [anon_sym_json_DOTdecode] = ACTIONS(1883), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_LT_DASH] = ACTIONS(1883), + [anon_sym_LT_LT] = ACTIONS(1879), + [anon_sym_GT_GT] = ACTIONS(1879), + [anon_sym_GT_GT_GT] = ACTIONS(1879), + [anon_sym_AMP_CARET] = ACTIONS(1879), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1883), + [sym_true] = ACTIONS(1883), + [sym_false] = ACTIONS(1883), + [sym_nil] = ACTIONS(1883), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_DOLLARif] = ACTIONS(1883), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_select] = ACTIONS(1883), + [anon_sym_STAR_EQ] = ACTIONS(1879), + [anon_sym_SLASH_EQ] = ACTIONS(1879), + [anon_sym_PERCENT_EQ] = ACTIONS(1879), + [anon_sym_LT_LT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_AMP_EQ] = ACTIONS(1879), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1879), + [anon_sym_PLUS_EQ] = ACTIONS(1879), + [anon_sym_DASH_EQ] = ACTIONS(1879), + [anon_sym_PIPE_EQ] = ACTIONS(1879), + [anon_sym_CARET_EQ] = ACTIONS(1879), + [anon_sym_COLON_EQ] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1883), + [anon_sym_rlock] = ACTIONS(1883), + [anon_sym_unsafe] = ACTIONS(1883), + [anon_sym_sql] = ACTIONS(1883), + [sym_int_literal] = ACTIONS(1883), + [sym_float_literal] = ACTIONS(1883), + [sym_rune_literal] = ACTIONS(1883), + [sym_pseudo_compile_time_identifier] = ACTIONS(1883), + [anon_sym_shared] = ACTIONS(1883), + [anon_sym_map_LBRACK] = ACTIONS(1883), + [anon_sym_chan] = ACTIONS(1883), + [anon_sym_thread] = ACTIONS(1883), + [anon_sym_atomic] = ACTIONS(1883), + [anon_sym_assert] = ACTIONS(1883), + [anon_sym_defer] = ACTIONS(1883), + [anon_sym_goto] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_DOLLARfor] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(1883), + [anon_sym_asm] = ACTIONS(1883), + [anon_sym_AT_LBRACK] = ACTIONS(1883), + [sym___double_quote] = ACTIONS(1883), + [sym___single_quote] = ACTIONS(1883), + [sym___c_double_quote] = ACTIONS(1883), + [sym___c_single_quote] = ACTIONS(1883), + [sym___r_double_quote] = ACTIONS(1883), + [sym___r_single_quote] = ACTIONS(1883), }, [255] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4185), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2219), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(287), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [256] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4137), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2788), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1879), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(1731), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_AMP_CARET] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_STAR_EQ] = ACTIONS(1879), + [anon_sym_SLASH_EQ] = ACTIONS(1879), + [anon_sym_PERCENT_EQ] = ACTIONS(1879), + [anon_sym_LT_LT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_AMP_EQ] = ACTIONS(1879), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1879), + [anon_sym_PLUS_EQ] = ACTIONS(1879), + [anon_sym_DASH_EQ] = ACTIONS(1879), + [anon_sym_PIPE_EQ] = ACTIONS(1879), + [anon_sym_CARET_EQ] = ACTIONS(1879), + [anon_sym_COLON_EQ] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), }, [257] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1879), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(1731), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_AMP_CARET] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_STAR_EQ] = ACTIONS(1879), + [anon_sym_SLASH_EQ] = ACTIONS(1879), + [anon_sym_PERCENT_EQ] = ACTIONS(1879), + [anon_sym_LT_LT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_AMP_EQ] = ACTIONS(1879), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1879), + [anon_sym_PLUS_EQ] = ACTIONS(1879), + [anon_sym_DASH_EQ] = ACTIONS(1879), + [anon_sym_PIPE_EQ] = ACTIONS(1879), + [anon_sym_CARET_EQ] = ACTIONS(1879), + [anon_sym_COLON_EQ] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), }, [258] = { - [sym__expression] = STATE(2377), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4161), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4207), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(1349), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [259] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4200), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2711), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [260] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1879), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_PERCENT] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(1731), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1879), + [anon_sym_GT_GT] = ACTIONS(1879), + [anon_sym_GT_GT_GT] = ACTIONS(1879), + [anon_sym_AMP_CARET] = ACTIONS(1879), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_STAR_EQ] = ACTIONS(1879), + [anon_sym_SLASH_EQ] = ACTIONS(1879), + [anon_sym_PERCENT_EQ] = ACTIONS(1879), + [anon_sym_LT_LT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1879), + [anon_sym_AMP_EQ] = ACTIONS(1879), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1879), + [anon_sym_PLUS_EQ] = ACTIONS(1879), + [anon_sym_DASH_EQ] = ACTIONS(1879), + [anon_sym_PIPE_EQ] = ACTIONS(1879), + [anon_sym_CARET_EQ] = ACTIONS(1879), + [anon_sym_COLON_EQ] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), }, [261] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(232), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [262] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4335), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(1188), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4192), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(685), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [263] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [sym__expression] = STATE(1387), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym___rcbr] = STATE(3697), + [aux_sym_string_interpolation_repeat1] = STATE(354), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4077), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2420), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [sym__expression] = STATE(2367), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4108), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [265] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4077), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2420), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [266] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4137), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2788), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(261), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [267] = { - [sym__expression] = STATE(2368), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4221), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [268] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4077), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2420), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym__expression] = STATE(2458), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4191), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [269] = { - [sym__expression] = STATE(2391), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4309), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1901), + [sym_identifier] = ACTIONS(1903), + [anon_sym_LF] = ACTIONS(1903), + [anon_sym_CR] = ACTIONS(1903), + [anon_sym_CR_LF] = ACTIONS(1903), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1903), + [anon_sym___global] = ACTIONS(1903), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_fn] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1903), + [anon_sym_BANG_EQ] = ACTIONS(1903), + [anon_sym_LT_EQ] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_pub] = ACTIONS(1903), + [anon_sym_mut] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_interface] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1903), + [anon_sym_spawn] = ACTIONS(1903), + [anon_sym_json_DOTdecode] = ACTIONS(1903), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_LT_DASH] = ACTIONS(1903), + [anon_sym_LT_LT] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym_GT_GT_GT] = ACTIONS(1903), + [anon_sym_AMP_CARET] = ACTIONS(1903), + [anon_sym_AMP_AMP] = ACTIONS(1903), + [anon_sym_PIPE_PIPE] = ACTIONS(1903), + [anon_sym_or] = ACTIONS(1903), + [sym_none] = ACTIONS(1903), + [sym_true] = ACTIONS(1903), + [sym_false] = ACTIONS(1903), + [sym_nil] = ACTIONS(1903), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_DOLLARif] = ACTIONS(1903), + [anon_sym_is] = ACTIONS(1903), + [anon_sym_BANGis] = ACTIONS(1903), + [anon_sym_in] = ACTIONS(1903), + [anon_sym_BANGin] = ACTIONS(1903), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_select] = ACTIONS(1903), + [anon_sym_STAR_EQ] = ACTIONS(1903), + [anon_sym_SLASH_EQ] = ACTIONS(1903), + [anon_sym_PERCENT_EQ] = ACTIONS(1903), + [anon_sym_LT_LT_EQ] = ACTIONS(1903), + [anon_sym_GT_GT_EQ] = ACTIONS(1903), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1903), + [anon_sym_AMP_EQ] = ACTIONS(1903), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1903), + [anon_sym_PLUS_EQ] = ACTIONS(1903), + [anon_sym_DASH_EQ] = ACTIONS(1903), + [anon_sym_PIPE_EQ] = ACTIONS(1903), + [anon_sym_CARET_EQ] = ACTIONS(1903), + [anon_sym_COLON_EQ] = ACTIONS(1903), + [anon_sym_lock] = ACTIONS(1903), + [anon_sym_rlock] = ACTIONS(1903), + [anon_sym_unsafe] = ACTIONS(1903), + [anon_sym_sql] = ACTIONS(1903), + [sym_int_literal] = ACTIONS(1903), + [sym_float_literal] = ACTIONS(1903), + [sym_rune_literal] = ACTIONS(1903), + [sym_pseudo_compile_time_identifier] = ACTIONS(1903), + [anon_sym_shared] = ACTIONS(1903), + [anon_sym_map_LBRACK] = ACTIONS(1903), + [anon_sym_chan] = ACTIONS(1903), + [anon_sym_thread] = ACTIONS(1903), + [anon_sym_atomic] = ACTIONS(1903), + [anon_sym_assert] = ACTIONS(1903), + [anon_sym_defer] = ACTIONS(1903), + [anon_sym_goto] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_DOLLARfor] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(1903), + [anon_sym_asm] = ACTIONS(1903), + [anon_sym_AT_LBRACK] = ACTIONS(1903), + [sym___double_quote] = ACTIONS(1903), + [sym___single_quote] = ACTIONS(1903), + [sym___c_double_quote] = ACTIONS(1903), + [sym___c_single_quote] = ACTIONS(1903), + [sym___r_double_quote] = ACTIONS(1903), + [sym___r_single_quote] = ACTIONS(1903), }, [270] = { - [sym__expression] = STATE(2348), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4156), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4237), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [271] = { - [sym__expression] = STATE(2405), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4379), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [272] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(257), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [sym__expression] = STATE(1387), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym___rcbr] = STATE(3721), + [aux_sym_string_interpolation_repeat1] = STATE(354), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4109), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(1990), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [274] = { - [sym__expression] = STATE(2417), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4338), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4116), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2538), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [275] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4352), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(1743), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1913), + [sym_identifier] = ACTIONS(1915), + [anon_sym_LF] = ACTIONS(1915), + [anon_sym_CR] = ACTIONS(1915), + [anon_sym_CR_LF] = ACTIONS(1915), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_COMMA] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym___global] = ACTIONS(1915), + [anon_sym_type] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_fn] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1915), + [anon_sym_BANG_EQ] = ACTIONS(1915), + [anon_sym_LT_EQ] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1915), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_pub] = ACTIONS(1915), + [anon_sym_mut] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_interface] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1915), + [anon_sym_spawn] = ACTIONS(1915), + [anon_sym_json_DOTdecode] = ACTIONS(1915), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_LT_DASH] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_GT_GT_GT] = ACTIONS(1915), + [anon_sym_AMP_CARET] = ACTIONS(1915), + [anon_sym_AMP_AMP] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1915), + [anon_sym_or] = ACTIONS(1915), + [sym_none] = ACTIONS(1915), + [sym_true] = ACTIONS(1915), + [sym_false] = ACTIONS(1915), + [sym_nil] = ACTIONS(1915), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_DOLLARif] = ACTIONS(1915), + [anon_sym_is] = ACTIONS(1915), + [anon_sym_BANGis] = ACTIONS(1915), + [anon_sym_in] = ACTIONS(1915), + [anon_sym_BANGin] = ACTIONS(1915), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_select] = ACTIONS(1915), + [anon_sym_STAR_EQ] = ACTIONS(1915), + [anon_sym_SLASH_EQ] = ACTIONS(1915), + [anon_sym_PERCENT_EQ] = ACTIONS(1915), + [anon_sym_LT_LT_EQ] = ACTIONS(1915), + [anon_sym_GT_GT_EQ] = ACTIONS(1915), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1915), + [anon_sym_AMP_EQ] = ACTIONS(1915), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1915), + [anon_sym_PLUS_EQ] = ACTIONS(1915), + [anon_sym_DASH_EQ] = ACTIONS(1915), + [anon_sym_PIPE_EQ] = ACTIONS(1915), + [anon_sym_CARET_EQ] = ACTIONS(1915), + [anon_sym_COLON_EQ] = ACTIONS(1915), + [anon_sym_lock] = ACTIONS(1915), + [anon_sym_rlock] = ACTIONS(1915), + [anon_sym_unsafe] = ACTIONS(1915), + [anon_sym_sql] = ACTIONS(1915), + [sym_int_literal] = ACTIONS(1915), + [sym_float_literal] = ACTIONS(1915), + [sym_rune_literal] = ACTIONS(1915), + [sym_pseudo_compile_time_identifier] = ACTIONS(1915), + [anon_sym_shared] = ACTIONS(1915), + [anon_sym_map_LBRACK] = ACTIONS(1915), + [anon_sym_chan] = ACTIONS(1915), + [anon_sym_thread] = ACTIONS(1915), + [anon_sym_atomic] = ACTIONS(1915), + [anon_sym_assert] = ACTIONS(1915), + [anon_sym_defer] = ACTIONS(1915), + [anon_sym_goto] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_DOLLARfor] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(1915), + [anon_sym_asm] = ACTIONS(1915), + [anon_sym_AT_LBRACK] = ACTIONS(1915), + [sym___double_quote] = ACTIONS(1915), + [sym___single_quote] = ACTIONS(1915), + [sym___c_double_quote] = ACTIONS(1915), + [sym___c_single_quote] = ACTIONS(1915), + [sym___r_double_quote] = ACTIONS(1915), + [sym___r_single_quote] = ACTIONS(1915), }, [276] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(277), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym__expression] = STATE(2418), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2668), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4208), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [277] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1917), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_CR] = ACTIONS(1919), + [anon_sym_CR_LF] = ACTIONS(1919), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_COMMA] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1919), + [anon_sym___global] = ACTIONS(1919), + [anon_sym_type] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [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(1919), + [anon_sym_union] = ACTIONS(1919), + [anon_sym_pub] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_enum] = ACTIONS(1919), + [anon_sym_interface] = ACTIONS(1919), + [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(1919), + [anon_sym_spawn] = ACTIONS(1919), + [anon_sym_json_DOTdecode] = ACTIONS(1919), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1919), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_LT_DASH] = ACTIONS(1919), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_AMP_CARET] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1749), + [anon_sym_or] = ACTIONS(1751), + [sym_none] = ACTIONS(1919), + [sym_true] = ACTIONS(1919), + [sym_false] = ACTIONS(1919), + [sym_nil] = ACTIONS(1919), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_DOLLARif] = ACTIONS(1919), + [anon_sym_is] = ACTIONS(1921), + [anon_sym_BANGis] = ACTIONS(1923), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_select] = ACTIONS(1919), + [anon_sym_STAR_EQ] = ACTIONS(1919), + [anon_sym_SLASH_EQ] = ACTIONS(1919), + [anon_sym_PERCENT_EQ] = ACTIONS(1919), + [anon_sym_LT_LT_EQ] = ACTIONS(1919), + [anon_sym_GT_GT_EQ] = ACTIONS(1919), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1919), + [anon_sym_AMP_EQ] = ACTIONS(1919), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1919), + [anon_sym_PLUS_EQ] = ACTIONS(1919), + [anon_sym_DASH_EQ] = ACTIONS(1919), + [anon_sym_PIPE_EQ] = ACTIONS(1919), + [anon_sym_CARET_EQ] = ACTIONS(1919), + [anon_sym_COLON_EQ] = ACTIONS(1919), + [anon_sym_lock] = ACTIONS(1919), + [anon_sym_rlock] = ACTIONS(1919), + [anon_sym_unsafe] = ACTIONS(1919), + [anon_sym_sql] = ACTIONS(1919), + [sym_int_literal] = ACTIONS(1919), + [sym_float_literal] = ACTIONS(1919), + [sym_rune_literal] = ACTIONS(1919), + [sym_pseudo_compile_time_identifier] = ACTIONS(1919), + [anon_sym_shared] = ACTIONS(1919), + [anon_sym_map_LBRACK] = ACTIONS(1919), + [anon_sym_chan] = ACTIONS(1919), + [anon_sym_thread] = ACTIONS(1919), + [anon_sym_atomic] = ACTIONS(1919), + [anon_sym_assert] = ACTIONS(1919), + [anon_sym_defer] = ACTIONS(1919), + [anon_sym_goto] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_DOLLARfor] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(1919), + [anon_sym_asm] = ACTIONS(1919), + [anon_sym_AT_LBRACK] = ACTIONS(1919), + [sym___double_quote] = ACTIONS(1919), + [sym___single_quote] = ACTIONS(1919), + [sym___c_double_quote] = ACTIONS(1919), + [sym___c_single_quote] = ACTIONS(1919), + [sym___r_double_quote] = ACTIONS(1919), + [sym___r_single_quote] = ACTIONS(1919), }, [278] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4383), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2527), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [279] = { - [sym__expression] = STATE(2452), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4279), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(285), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [280] = { - [sym__expression] = STATE(2453), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4239), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1929), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LF] = ACTIONS(1931), + [anon_sym_CR] = ACTIONS(1931), + [anon_sym_CR_LF] = ACTIONS(1931), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym___global] = ACTIONS(1931), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [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(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_pub] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_interface] = ACTIONS(1931), + [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(1931), + [anon_sym_spawn] = ACTIONS(1931), + [anon_sym_json_DOTdecode] = ACTIONS(1931), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1931), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_LT_DASH] = ACTIONS(1931), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_AMP_CARET] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1749), + [anon_sym_or] = ACTIONS(1751), + [sym_none] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_nil] = ACTIONS(1931), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_DOLLARif] = ACTIONS(1931), + [anon_sym_is] = ACTIONS(1753), + [anon_sym_BANGis] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_select] = ACTIONS(1931), + [anon_sym_STAR_EQ] = ACTIONS(1931), + [anon_sym_SLASH_EQ] = ACTIONS(1931), + [anon_sym_PERCENT_EQ] = ACTIONS(1931), + [anon_sym_LT_LT_EQ] = ACTIONS(1931), + [anon_sym_GT_GT_EQ] = ACTIONS(1931), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1931), + [anon_sym_AMP_EQ] = ACTIONS(1931), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1931), + [anon_sym_PLUS_EQ] = ACTIONS(1931), + [anon_sym_DASH_EQ] = ACTIONS(1931), + [anon_sym_PIPE_EQ] = ACTIONS(1931), + [anon_sym_CARET_EQ] = ACTIONS(1931), + [anon_sym_COLON_EQ] = ACTIONS(1931), + [anon_sym_lock] = ACTIONS(1931), + [anon_sym_rlock] = ACTIONS(1931), + [anon_sym_unsafe] = ACTIONS(1931), + [anon_sym_sql] = ACTIONS(1931), + [sym_int_literal] = ACTIONS(1931), + [sym_float_literal] = ACTIONS(1931), + [sym_rune_literal] = ACTIONS(1931), + [sym_pseudo_compile_time_identifier] = ACTIONS(1931), + [anon_sym_shared] = ACTIONS(1931), + [anon_sym_map_LBRACK] = ACTIONS(1931), + [anon_sym_chan] = ACTIONS(1931), + [anon_sym_thread] = ACTIONS(1931), + [anon_sym_atomic] = ACTIONS(1931), + [anon_sym_assert] = ACTIONS(1931), + [anon_sym_defer] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_DOLLARfor] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(1931), + [anon_sym_asm] = ACTIONS(1931), + [anon_sym_AT_LBRACK] = ACTIONS(1931), + [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), }, [281] = { - [sym__expression] = STATE(2372), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4187), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4312), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2086), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [282] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_COMMA] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1933), - [anon_sym___global] = ACTIONS(1933), - [anon_sym_type] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1727), - [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(1729), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1933), - [anon_sym_spawn] = ACTIONS(1933), - [anon_sym_json_DOTdecode] = ACTIONS(1933), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1933), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_DASH] = ACTIONS(1933), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_AMP_CARET] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1743), - [anon_sym_PIPE_PIPE] = ACTIONS(1745), - [anon_sym_or] = ACTIONS(1747), - [sym_none] = ACTIONS(1933), - [sym_true] = ACTIONS(1933), - [sym_false] = ACTIONS(1933), - [sym_nil] = ACTIONS(1933), - [anon_sym_QMARK_DOT] = ACTIONS(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_DOLLARif] = ACTIONS(1933), - [anon_sym_is] = ACTIONS(1935), - [anon_sym_BANGis] = ACTIONS(1937), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1755), - [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), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym__expression] = STATE(2397), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4310), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [283] = { - [sym__expression] = STATE(2430), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4141), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_type_parameters] = STATE(4261), + [sym_argument_list] = STATE(498), + [sym_or_block] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1935), + [sym_identifier] = ACTIONS(1937), + [anon_sym_LF] = ACTIONS(1937), + [anon_sym_CR] = ACTIONS(1937), + [anon_sym_CR_LF] = ACTIONS(1937), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1937), + [anon_sym___global] = ACTIONS(1937), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1937), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [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(1937), + [anon_sym_union] = ACTIONS(1937), + [anon_sym_pub] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_enum] = ACTIONS(1937), + [anon_sym_interface] = ACTIONS(1937), + [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(1937), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1937), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1937), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_LT_DASH] = ACTIONS(1937), + [anon_sym_LT_LT] = ACTIONS(1715), + [anon_sym_GT_GT] = ACTIONS(1715), + [anon_sym_GT_GT_GT] = ACTIONS(1715), + [anon_sym_AMP_CARET] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1749), + [anon_sym_or] = ACTIONS(1751), + [sym_none] = ACTIONS(1937), + [sym_true] = ACTIONS(1937), + [sym_false] = ACTIONS(1937), + [sym_nil] = ACTIONS(1937), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_DOLLARif] = ACTIONS(1937), + [anon_sym_is] = ACTIONS(1753), + [anon_sym_BANGis] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_select] = ACTIONS(1937), + [anon_sym_STAR_EQ] = ACTIONS(1937), + [anon_sym_SLASH_EQ] = ACTIONS(1937), + [anon_sym_PERCENT_EQ] = ACTIONS(1937), + [anon_sym_LT_LT_EQ] = ACTIONS(1937), + [anon_sym_GT_GT_EQ] = ACTIONS(1937), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1937), + [anon_sym_AMP_EQ] = ACTIONS(1937), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1937), + [anon_sym_PLUS_EQ] = ACTIONS(1937), + [anon_sym_DASH_EQ] = ACTIONS(1937), + [anon_sym_PIPE_EQ] = ACTIONS(1937), + [anon_sym_CARET_EQ] = ACTIONS(1937), + [anon_sym_COLON_EQ] = ACTIONS(1937), + [anon_sym_lock] = ACTIONS(1937), + [anon_sym_rlock] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_sql] = ACTIONS(1937), + [sym_int_literal] = ACTIONS(1937), + [sym_float_literal] = ACTIONS(1937), + [sym_rune_literal] = ACTIONS(1937), + [sym_pseudo_compile_time_identifier] = ACTIONS(1937), + [anon_sym_shared] = ACTIONS(1937), + [anon_sym_map_LBRACK] = ACTIONS(1937), + [anon_sym_chan] = ACTIONS(1937), + [anon_sym_thread] = ACTIONS(1937), + [anon_sym_atomic] = ACTIONS(1937), + [anon_sym_assert] = ACTIONS(1937), + [anon_sym_defer] = ACTIONS(1937), + [anon_sym_goto] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_DOLLARfor] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_POUND] = ACTIONS(1937), + [anon_sym_asm] = ACTIONS(1937), + [anon_sym_AT_LBRACK] = ACTIONS(1937), + [sym___double_quote] = ACTIONS(1937), + [sym___single_quote] = ACTIONS(1937), + [sym___c_double_quote] = ACTIONS(1937), + [sym___c_single_quote] = ACTIONS(1937), + [sym___r_double_quote] = ACTIONS(1937), + [sym___r_single_quote] = ACTIONS(1937), }, [284] = { - [sym__expression] = STATE(1328), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym___rcbr] = STATE(3756), - [aux_sym_string_interpolation_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [285] = { - [sym__expression] = STATE(2399), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4088), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [286] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4095), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(658), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4288), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(1031), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [287] = { - [sym__expression] = STATE(2398), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(4068), - [sym_expression_list] = STATE(4714), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_var_declaration] = STATE(4080), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [288] = { - [sym__expression] = STATE(1328), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym___rcbr] = STATE(3770), - [aux_sym_string_interpolation_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4269), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [289] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1727), - [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(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_AMP_CARET] = ACTIONS(1723), - [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(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1755), - [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), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym__expression] = STATE(2471), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4377), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [290] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1943), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_fn] = ACTIONS(1957), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_STAR] = ACTIONS(1963), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_QMARK] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_go] = ACTIONS(1978), - [anon_sym_spawn] = ACTIONS(1981), - [anon_sym_json_DOTdecode] = ACTIONS(1984), - [anon_sym_LBRACK2] = ACTIONS(1987), - [anon_sym_TILDE] = ACTIONS(1960), - [anon_sym_CARET] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_LT_DASH] = ACTIONS(1993), - [sym_none] = ACTIONS(1996), - [sym_true] = ACTIONS(1996), - [sym_false] = ACTIONS(1996), - [sym_nil] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_DOLLARif] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_select] = ACTIONS(2008), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2014), - [anon_sym_sql] = ACTIONS(2017), - [sym_int_literal] = ACTIONS(1996), - [sym_float_literal] = ACTIONS(2020), - [sym_rune_literal] = ACTIONS(2020), - [sym_pseudo_compile_time_identifier] = ACTIONS(2023), - [anon_sym_shared] = ACTIONS(2026), - [anon_sym_map_LBRACK] = ACTIONS(2029), - [anon_sym_chan] = ACTIONS(2032), - [anon_sym_thread] = ACTIONS(2035), - [anon_sym_atomic] = ACTIONS(2038), - [sym___double_quote] = ACTIONS(2041), - [sym___single_quote] = ACTIONS(2044), - [sym___c_double_quote] = ACTIONS(2047), - [sym___c_single_quote] = ACTIONS(2050), - [sym___r_double_quote] = ACTIONS(2053), - [sym___r_single_quote] = ACTIONS(2056), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(241), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [291] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym__expression] = STATE(1295), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym___rcbr] = STATE(3752), + [aux_sym_string_interpolation_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_map_keyed_element] = STATE(2127), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(295), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [293] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4310), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_block] = STATE(2087), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1951), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1965), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_mut] = ACTIONS(1977), + [anon_sym_QMARK] = ACTIONS(1980), + [anon_sym_BANG] = ACTIONS(1983), + [anon_sym_go] = ACTIONS(1986), + [anon_sym_spawn] = ACTIONS(1989), + [anon_sym_json_DOTdecode] = ACTIONS(1992), + [anon_sym_LBRACK2] = ACTIONS(1995), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_CARET] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1998), + [anon_sym_LT_DASH] = ACTIONS(2001), + [sym_none] = ACTIONS(2004), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_DOLLARif] = ACTIONS(2010), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_select] = ACTIONS(2016), + [anon_sym_lock] = ACTIONS(2019), + [anon_sym_rlock] = ACTIONS(2019), + [anon_sym_unsafe] = ACTIONS(2022), + [anon_sym_sql] = ACTIONS(2025), + [sym_int_literal] = ACTIONS(2004), + [sym_float_literal] = ACTIONS(2028), + [sym_rune_literal] = ACTIONS(2028), + [sym_pseudo_compile_time_identifier] = ACTIONS(2031), + [anon_sym_shared] = ACTIONS(2034), + [anon_sym_map_LBRACK] = ACTIONS(2037), + [anon_sym_chan] = ACTIONS(2040), + [anon_sym_thread] = ACTIONS(2043), + [anon_sym_atomic] = ACTIONS(2046), + [sym___double_quote] = ACTIONS(2049), + [sym___single_quote] = ACTIONS(2052), + [sym___c_double_quote] = ACTIONS(2055), + [sym___c_single_quote] = ACTIONS(2058), + [sym___r_double_quote] = ACTIONS(2061), + [sym___r_single_quote] = ACTIONS(2064), }, [294] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1727), - [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(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_AMP_CARET] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1743), - [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(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1755), - [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), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym__expression] = STATE(2417), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4203), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [295] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [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(1727), - [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(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_AMP_CARET] = ACTIONS(1723), - [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(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [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), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [296] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [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(1727), - [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(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_AMP_CARET] = ACTIONS(1881), - [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(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [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), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_map_keyed_element] = STATE(1970), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_map_init_expression_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [297] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [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(1727), - [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(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_AMP_CARET] = ACTIONS(1723), - [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(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [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), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4381), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_block] = STATE(2913), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [298] = { - [sym_type_parameters] = STATE(4299), - [sym_argument_list] = STATE(933), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2065), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LF] = ACTIONS(2067), - [anon_sym_CR] = ACTIONS(2067), - [anon_sym_CR_LF] = ACTIONS(2067), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(2067), - [anon_sym___global] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(2067), - [anon_sym_union] = ACTIONS(2067), - [anon_sym_pub] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_go] = ACTIONS(2067), - [anon_sym_spawn] = ACTIONS(2067), - [anon_sym_json_DOTdecode] = ACTIONS(2067), - [anon_sym_LBRACK2] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_DASH] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_AMP_CARET] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_or] = ACTIONS(2067), - [sym_none] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_nil] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(1711), - [anon_sym_POUND_LBRACK] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_DOLLARif] = ACTIONS(2067), - [anon_sym_is] = ACTIONS(2067), - [anon_sym_BANGis] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_BANGin] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_select] = ACTIONS(2067), - [anon_sym_STAR_EQ] = ACTIONS(2067), - [anon_sym_SLASH_EQ] = ACTIONS(2067), - [anon_sym_PERCENT_EQ] = ACTIONS(2067), - [anon_sym_LT_LT_EQ] = ACTIONS(2067), - [anon_sym_GT_GT_EQ] = ACTIONS(2067), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2067), - [anon_sym_AMP_EQ] = ACTIONS(2067), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2067), - [anon_sym_PLUS_EQ] = ACTIONS(2067), - [anon_sym_DASH_EQ] = ACTIONS(2067), - [anon_sym_PIPE_EQ] = ACTIONS(2067), - [anon_sym_CARET_EQ] = ACTIONS(2067), - [anon_sym_COLON_EQ] = ACTIONS(2067), - [anon_sym_lock] = ACTIONS(2067), - [anon_sym_rlock] = ACTIONS(2067), - [anon_sym_unsafe] = ACTIONS(2067), - [anon_sym_sql] = ACTIONS(2067), - [sym_int_literal] = ACTIONS(2067), - [sym_float_literal] = ACTIONS(2067), - [sym_rune_literal] = ACTIONS(2067), - [sym_pseudo_compile_time_identifier] = ACTIONS(2067), - [anon_sym_shared] = ACTIONS(2067), - [anon_sym_map_LBRACK] = ACTIONS(2067), - [anon_sym_chan] = ACTIONS(2067), - [anon_sym_thread] = ACTIONS(2067), - [anon_sym_atomic] = ACTIONS(2067), - [anon_sym_assert] = ACTIONS(2067), - [anon_sym_defer] = ACTIONS(2067), - [anon_sym_goto] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_DOLLARfor] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(2067), - [anon_sym_asm] = ACTIONS(2067), - [anon_sym_AT_LBRACK] = ACTIONS(2067), - [sym___double_quote] = ACTIONS(2067), - [sym___single_quote] = ACTIONS(2067), - [sym___c_double_quote] = ACTIONS(2067), - [sym___c_single_quote] = ACTIONS(2067), - [sym___r_double_quote] = ACTIONS(2067), - [sym___r_single_quote] = ACTIONS(2067), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym__expression] = STATE(2359), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4642), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_var_declaration] = STATE(4409), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [299] = { - [sym__expression] = STATE(2664), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4547), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4553), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [300] = { - [sym__expression] = STATE(2319), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(608), - [sym_mutable_expression] = STATE(3517), - [sym_expression_list] = STATE(3763), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4454), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [301] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2101), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym__expression] = STATE(979), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(1445), + [sym_expression_list] = STATE(1582), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [302] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4517), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [303] = { - [sym__expression] = STATE(977), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(537), - [sym_mutable_expression] = STATE(1436), - [sym_expression_list] = STATE(1513), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(977), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(537), - [sym_mutable_expression] = STATE(1436), - [sym_expression_list] = STATE(1514), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4435), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [305] = { - [sym__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_short_element_list_repeat1] = STATE(305), - [sym_identifier] = ACTIONS(2137), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_fn] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2160), - [anon_sym_mut] = ACTIONS(2163), - [anon_sym_QMARK] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2169), - [anon_sym_go] = ACTIONS(2172), - [anon_sym_spawn] = ACTIONS(2175), - [anon_sym_json_DOTdecode] = ACTIONS(2178), - [anon_sym_LBRACK2] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_CARET] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_LT_DASH] = ACTIONS(2187), - [sym_none] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_nil] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_DOLLARif] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_select] = ACTIONS(2202), - [anon_sym_lock] = ACTIONS(2205), - [anon_sym_rlock] = ACTIONS(2205), - [anon_sym_unsafe] = ACTIONS(2208), - [anon_sym_sql] = ACTIONS(2211), - [sym_int_literal] = ACTIONS(2190), - [sym_float_literal] = ACTIONS(2214), - [sym_rune_literal] = ACTIONS(2214), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2220), - [anon_sym_map_LBRACK] = ACTIONS(2223), - [anon_sym_chan] = ACTIONS(2226), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2232), - [sym___double_quote] = ACTIONS(2235), - [sym___single_quote] = ACTIONS(2238), - [sym___c_double_quote] = ACTIONS(2241), - [sym___c_single_quote] = ACTIONS(2244), - [sym___r_double_quote] = ACTIONS(2247), - [sym___r_single_quote] = ACTIONS(2250), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [306] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4491), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4435), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [307] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(308), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym__expression] = STATE(2658), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4449), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [308] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2257), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4512), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym__expression] = STATE(2658), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4449), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [310] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4512), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4517), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [311] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4711), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4532), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [312] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(322), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(301), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2265), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4553), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [314] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4528), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4569), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [315] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2269), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4553), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [316] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4512), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4532), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [317] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4468), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [318] = { - [sym__expression] = STATE(1328), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_string_interpolation_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(2275), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_fn] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2298), - [anon_sym_mut] = ACTIONS(2301), - [anon_sym_QMARK] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_go] = ACTIONS(2310), - [anon_sym_spawn] = ACTIONS(2313), - [anon_sym_json_DOTdecode] = ACTIONS(2316), - [anon_sym_LBRACK2] = ACTIONS(2319), - [anon_sym_TILDE] = ACTIONS(2292), - [anon_sym_CARET] = ACTIONS(2292), - [anon_sym_AMP] = ACTIONS(2322), - [anon_sym_LT_DASH] = ACTIONS(2325), - [sym_none] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_nil] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_DOLLARif] = ACTIONS(2334), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_select] = ACTIONS(2340), - [anon_sym_lock] = ACTIONS(2343), - [anon_sym_rlock] = ACTIONS(2343), - [anon_sym_unsafe] = ACTIONS(2346), - [anon_sym_sql] = ACTIONS(2349), - [sym_int_literal] = ACTIONS(2328), - [sym_float_literal] = ACTIONS(2352), - [sym_rune_literal] = ACTIONS(2352), - [sym_pseudo_compile_time_identifier] = ACTIONS(2355), - [anon_sym_shared] = ACTIONS(2358), - [anon_sym_map_LBRACK] = ACTIONS(2361), - [anon_sym_chan] = ACTIONS(2364), - [anon_sym_thread] = ACTIONS(2367), - [anon_sym_atomic] = ACTIONS(2370), - [sym___double_quote] = ACTIONS(2373), - [sym___single_quote] = ACTIONS(2376), - [sym___c_double_quote] = ACTIONS(2379), - [sym___c_single_quote] = ACTIONS(2382), - [sym___r_double_quote] = ACTIONS(2385), - [sym___r_single_quote] = ACTIONS(2388), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4511), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [319] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(354), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4444), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [320] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4711), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4430), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [321] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4491), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym__expression] = STATE(2681), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4678), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [322] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(312), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [323] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4407), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym__expression] = STATE(2681), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4678), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [324] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4639), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [325] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(354), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2409), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4444), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [326] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4470), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [327] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2773), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2773), - [sym_dec_expression] = STATE(2773), - [sym_or_block_expression] = STATE(2773), - [sym_option_propagation_expression] = STATE(2773), - [sym_result_propagation_expression] = STATE(2773), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2773), - [sym_spawn_expression] = STATE(2773), - [sym_parenthesized_expression] = STATE(2773), - [sym_call_expression] = STATE(2773), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2773), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2773), - [sym_receive_expression] = STATE(2773), - [sym_binary_expression] = STATE(2773), - [sym_as_type_cast_expression] = STATE(2773), - [sym__max_group] = STATE(2773), - [sym_literal] = STATE(2773), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2773), - [sym_fixed_array_creation] = STATE(2773), - [sym_selector_expression] = STATE(2773), - [sym_index_expression] = STATE(2773), - [sym_slice_expression] = STATE(2773), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2773), - [sym_not_is_expression] = STATE(2773), - [sym_in_expression] = STATE(2773), - [sym_not_in_expression] = STATE(2773), - [sym_enum_fetch] = STATE(2773), - [sym_match_expression] = STATE(2816), - [sym_match_arm_type] = STATE(4297), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3933), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(4296), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(1117), - [anon_sym_lock] = ACTIONS(1119), - [anon_sym_rlock] = ACTIONS(1119), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2413), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym__expression] = STATE(2662), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4687), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [328] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2415), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym__expression] = STATE(2662), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4687), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [329] = { - [sym__expression] = STATE(2510), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(913), - [sym_mutable_expression] = STATE(4061), - [sym_expression_list] = STATE(4079), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(387), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4103), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym__expression] = STATE(2683), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4744), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [331] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), [sym_expression_list] = STATE(4430), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [332] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(317), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4490), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [333] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4456), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym__expression] = STATE(2656), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4544), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [334] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym__expression] = STATE(2656), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4544), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [335] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4449), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym__expression] = STATE(2683), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4744), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [336] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4517), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [337] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(326), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [338] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(334), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2453), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_short_element_list_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(2163), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_mut] = ACTIONS(2189), + [anon_sym_QMARK] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_go] = ACTIONS(2198), + [anon_sym_spawn] = ACTIONS(2201), + [anon_sym_json_DOTdecode] = ACTIONS(2204), + [anon_sym_LBRACK2] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_LT_DASH] = ACTIONS(2213), + [sym_none] = ACTIONS(2216), + [sym_true] = ACTIONS(2216), + [sym_false] = ACTIONS(2216), + [sym_nil] = ACTIONS(2216), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_DOLLARif] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_select] = ACTIONS(2228), + [anon_sym_lock] = ACTIONS(2231), + [anon_sym_rlock] = ACTIONS(2231), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_sql] = ACTIONS(2237), + [sym_int_literal] = ACTIONS(2216), + [sym_float_literal] = ACTIONS(2240), + [sym_rune_literal] = ACTIONS(2240), + [sym_pseudo_compile_time_identifier] = ACTIONS(2243), + [anon_sym_shared] = ACTIONS(2246), + [anon_sym_map_LBRACK] = ACTIONS(2249), + [anon_sym_chan] = ACTIONS(2252), + [anon_sym_thread] = ACTIONS(2255), + [anon_sym_atomic] = ACTIONS(2258), + [sym___double_quote] = ACTIONS(2261), + [sym___single_quote] = ACTIONS(2264), + [sym___c_double_quote] = ACTIONS(2267), + [sym___c_single_quote] = ACTIONS(2270), + [sym___r_double_quote] = ACTIONS(2273), + [sym___r_single_quote] = ACTIONS(2276), }, [339] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4699), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym__expression] = STATE(2654), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4731), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [340] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2457), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym__expression] = STATE(2654), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4731), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [341] = { - [sym__expression] = STATE(2642), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4657), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2279), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [342] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(328), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4667), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [343] = { - [sym__expression] = STATE(2642), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4657), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4667), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [344] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3661), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_RBRACK] = ACTIONS(581), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [sym__expression] = STATE(2659), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4565), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [345] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(336), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4517), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [346] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4479), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym__expression] = STATE(2535), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(587), + [sym_mutable_expression] = STATE(4095), + [sym_expression_list] = STATE(4239), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [347] = { - [sym__expression] = STATE(2663), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4627), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(356), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [348] = { - [sym__expression] = STATE(2663), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4627), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4583), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [349] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4079), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4239), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [350] = { - [sym__expression] = STATE(2510), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(913), - [sym_mutable_expression] = STATE(4061), - [sym_expression_list] = STATE(4103), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4243), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [351] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4428), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), + [sym__expression] = STATE(2664), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4610), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [352] = { - [sym__expression] = STATE(2625), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4580), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym__expression] = STATE(2664), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4610), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [353] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4555), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [354] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym__expression] = STATE(1387), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_string_interpolation_repeat1] = STATE(354), + [sym_identifier] = ACTIONS(2311), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2322), + [anon_sym_fn] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_struct] = ACTIONS(2334), + [anon_sym_mut] = ACTIONS(2337), + [anon_sym_QMARK] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_go] = ACTIONS(2346), + [anon_sym_spawn] = ACTIONS(2349), + [anon_sym_json_DOTdecode] = ACTIONS(2352), + [anon_sym_LBRACK2] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_CARET] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2358), + [anon_sym_LT_DASH] = ACTIONS(2361), + [sym_none] = ACTIONS(2364), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [sym_nil] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_DOLLARif] = ACTIONS(2370), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_select] = ACTIONS(2376), + [anon_sym_lock] = ACTIONS(2379), + [anon_sym_rlock] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2382), + [anon_sym_sql] = ACTIONS(2385), + [sym_int_literal] = ACTIONS(2364), + [sym_float_literal] = ACTIONS(2388), + [sym_rune_literal] = ACTIONS(2388), + [sym_pseudo_compile_time_identifier] = ACTIONS(2391), + [anon_sym_shared] = ACTIONS(2394), + [anon_sym_map_LBRACK] = ACTIONS(2397), + [anon_sym_chan] = ACTIONS(2400), + [anon_sym_thread] = ACTIONS(2403), + [anon_sym_atomic] = ACTIONS(2406), + [sym___double_quote] = ACTIONS(2409), + [sym___single_quote] = ACTIONS(2412), + [sym___c_double_quote] = ACTIONS(2415), + [sym___c_single_quote] = ACTIONS(2418), + [sym___r_double_quote] = ACTIONS(2421), + [sym___r_single_quote] = ACTIONS(2424), }, [355] = { - [sym__expression] = STATE(2625), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4580), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4482), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [356] = { - [sym__expression] = STATE(2664), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4547), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [357] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4479), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2431), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(1165), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym_short_element_list_repeat1] = STATE(305), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3685), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [359] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(340), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [sym_else_branch] = STATE(618), + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2449), + [anon_sym_LF] = ACTIONS(2449), + [anon_sym_CR] = ACTIONS(2449), + [anon_sym_CR_LF] = ACTIONS(2449), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(2449), + [anon_sym___global] = ACTIONS(2449), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_union] = ACTIONS(2449), + [anon_sym_pub] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_interface] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [anon_sym_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2449), + [anon_sym_go] = ACTIONS(2449), + [anon_sym_spawn] = ACTIONS(2449), + [anon_sym_json_DOTdecode] = ACTIONS(2449), + [anon_sym_LBRACK2] = ACTIONS(2449), + [anon_sym_TILDE] = ACTIONS(2449), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_LT_DASH] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2449), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_AMP_CARET] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_or] = ACTIONS(2449), + [sym_none] = ACTIONS(2449), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_nil] = ACTIONS(2449), + [anon_sym_QMARK_DOT] = ACTIONS(2449), + [anon_sym_POUND_LBRACK] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2451), + [anon_sym_DOLLARif] = ACTIONS(2449), + [anon_sym_is] = ACTIONS(2449), + [anon_sym_BANGis] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_BANGin] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_select] = ACTIONS(2449), + [anon_sym_STAR_EQ] = ACTIONS(2449), + [anon_sym_SLASH_EQ] = ACTIONS(2449), + [anon_sym_PERCENT_EQ] = ACTIONS(2449), + [anon_sym_LT_LT_EQ] = ACTIONS(2449), + [anon_sym_GT_GT_EQ] = ACTIONS(2449), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2449), + [anon_sym_AMP_EQ] = ACTIONS(2449), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(2449), + [anon_sym_DASH_EQ] = ACTIONS(2449), + [anon_sym_PIPE_EQ] = ACTIONS(2449), + [anon_sym_CARET_EQ] = ACTIONS(2449), + [anon_sym_COLON_EQ] = ACTIONS(2449), + [anon_sym_lock] = ACTIONS(2449), + [anon_sym_rlock] = ACTIONS(2449), + [anon_sym_unsafe] = ACTIONS(2449), + [anon_sym_sql] = ACTIONS(2449), + [sym_int_literal] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2449), + [sym_rune_literal] = ACTIONS(2449), + [sym_pseudo_compile_time_identifier] = ACTIONS(2449), + [anon_sym_shared] = ACTIONS(2449), + [anon_sym_map_LBRACK] = ACTIONS(2449), + [anon_sym_chan] = ACTIONS(2449), + [anon_sym_thread] = ACTIONS(2449), + [anon_sym_atomic] = ACTIONS(2449), + [anon_sym_assert] = ACTIONS(2449), + [anon_sym_defer] = ACTIONS(2449), + [anon_sym_goto] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_DOLLARfor] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2449), + [anon_sym_asm] = ACTIONS(2449), + [anon_sym_AT_LBRACK] = ACTIONS(2449), + [sym___double_quote] = ACTIONS(2449), + [sym___single_quote] = ACTIONS(2449), + [sym___c_double_quote] = ACTIONS(2449), + [sym___c_single_quote] = ACTIONS(2449), + [sym___r_double_quote] = ACTIONS(2449), + [sym___r_single_quote] = ACTIONS(2449), }, [360] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4680), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [361] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3661), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_else_branch] = STATE(617), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_EQ] = ACTIONS(2457), + [anon_sym___global] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_pub] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2451), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_STAR_EQ] = ACTIONS(2457), + [anon_sym_SLASH_EQ] = ACTIONS(2457), + [anon_sym_PERCENT_EQ] = ACTIONS(2457), + [anon_sym_LT_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_GT_EQ] = ACTIONS(2457), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2457), + [anon_sym_AMP_EQ] = ACTIONS(2457), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2457), + [anon_sym_PLUS_EQ] = ACTIONS(2457), + [anon_sym_DASH_EQ] = ACTIONS(2457), + [anon_sym_PIPE_EQ] = ACTIONS(2457), + [anon_sym_CARET_EQ] = ACTIONS(2457), + [anon_sym_COLON_EQ] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + [anon_sym_assert] = ACTIONS(2457), + [anon_sym_defer] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_DOLLARfor] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2457), + [anon_sym_asm] = ACTIONS(2457), + [anon_sym_AT_LBRACK] = ACTIONS(2457), + [sym___double_quote] = ACTIONS(2457), + [sym___single_quote] = ACTIONS(2457), + [sym___c_double_quote] = ACTIONS(2457), + [sym___c_single_quote] = ACTIONS(2457), + [sym___r_double_quote] = ACTIONS(2457), + [sym___r_single_quote] = ACTIONS(2457), }, [362] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(377), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(379), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2459), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4407), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4680), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(2463), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_RBRACK] = ACTIONS(2484), + [anon_sym_struct] = ACTIONS(2486), + [anon_sym_mut] = ACTIONS(2489), + [anon_sym_QMARK] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_go] = ACTIONS(2498), + [anon_sym_spawn] = ACTIONS(2501), + [anon_sym_json_DOTdecode] = ACTIONS(2504), + [anon_sym_LBRACK2] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_CARET] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2510), + [anon_sym_LT_DASH] = ACTIONS(2513), + [sym_none] = ACTIONS(2516), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [sym_nil] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_DOLLARif] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2525), + [anon_sym_select] = ACTIONS(2528), + [anon_sym_lock] = ACTIONS(2531), + [anon_sym_rlock] = ACTIONS(2531), + [anon_sym_unsafe] = ACTIONS(2534), + [anon_sym_sql] = ACTIONS(2537), + [sym_int_literal] = ACTIONS(2516), + [sym_float_literal] = ACTIONS(2540), + [sym_rune_literal] = ACTIONS(2540), + [sym_pseudo_compile_time_identifier] = ACTIONS(2543), + [anon_sym_shared] = ACTIONS(2546), + [anon_sym_map_LBRACK] = ACTIONS(2549), + [anon_sym_chan] = ACTIONS(2552), + [anon_sym_thread] = ACTIONS(2555), + [anon_sym_atomic] = ACTIONS(2558), + [sym___double_quote] = ACTIONS(2561), + [sym___single_quote] = ACTIONS(2564), + [sym___c_double_quote] = ACTIONS(2567), + [sym___c_single_quote] = ACTIONS(2570), + [sym___r_double_quote] = ACTIONS(2573), + [sym___r_single_quote] = ACTIONS(2576), }, [365] = { - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4531), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [366] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4456), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym__expression] = STATE(2670), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4499), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [367] = { - [sym__expression] = STATE(2662), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4609), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym__expression] = STATE(2670), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4499), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [368] = { - [sym__expression] = STATE(2662), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4609), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym__expression] = STATE(2344), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(590), + [sym_mutable_expression] = STATE(3565), + [sym_expression_list] = STATE(3733), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [369] = { - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4531), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [sym__expression] = STATE(2344), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(590), + [sym_mutable_expression] = STATE(3565), + [sym_expression_list] = STATE(3714), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [370] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4479), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4468), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [371] = { - [sym__expression] = STATE(2319), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(608), - [sym_mutable_expression] = STATE(3517), - [sym_expression_list] = STATE(3762), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(308), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2497), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym__expression] = STATE(2535), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(587), + [sym_mutable_expression] = STATE(4095), + [sym_expression_list] = STATE(4243), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [373] = { - [sym__expression] = STATE(2626), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4538), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2617), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [374] = { - [sym__expression] = STATE(2626), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4538), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(341), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4479), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [sym__expression] = STATE(1169), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym_short_element_list_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(2621), + [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), }, [376] = { - [sym__expression] = STATE(2627), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4454), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym__expression] = STATE(2678), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4470), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [377] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2501), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2860), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_match_arm_type] = STATE(4241), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(3939), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(4242), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), }, [378] = { - [sym__expression] = STATE(2627), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4454), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [sym__expression] = STATE(2678), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4470), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [379] = { - [sym_else_branch] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2503), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LF] = ACTIONS(2505), - [anon_sym_CR] = ACTIONS(2505), - [anon_sym_CR_LF] = ACTIONS(2505), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_COMMA] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_EQ] = ACTIONS(2505), - [anon_sym___global] = ACTIONS(2505), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_fn] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), - [anon_sym_EQ_EQ] = ACTIONS(2505), - [anon_sym_BANG_EQ] = ACTIONS(2505), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2505), - [anon_sym_union] = ACTIONS(2505), - [anon_sym_pub] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_QMARK] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_go] = ACTIONS(2505), - [anon_sym_spawn] = ACTIONS(2505), - [anon_sym_json_DOTdecode] = ACTIONS(2505), - [anon_sym_LBRACK2] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_CARET] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_LT_DASH] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_GT_GT] = ACTIONS(2505), - [anon_sym_GT_GT_GT] = ACTIONS(2505), - [anon_sym_AMP_CARET] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_PIPE_PIPE] = ACTIONS(2505), - [anon_sym_or] = ACTIONS(2505), - [sym_none] = ACTIONS(2505), - [sym_true] = ACTIONS(2505), - [sym_false] = ACTIONS(2505), - [sym_nil] = ACTIONS(2505), - [anon_sym_QMARK_DOT] = ACTIONS(2505), - [anon_sym_POUND_LBRACK] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2505), - [anon_sym_is] = ACTIONS(2505), - [anon_sym_BANGis] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [anon_sym_BANGin] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_select] = ACTIONS(2505), - [anon_sym_STAR_EQ] = ACTIONS(2505), - [anon_sym_SLASH_EQ] = ACTIONS(2505), - [anon_sym_PERCENT_EQ] = ACTIONS(2505), - [anon_sym_LT_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_GT_EQ] = ACTIONS(2505), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2505), - [anon_sym_AMP_EQ] = ACTIONS(2505), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2505), - [anon_sym_PLUS_EQ] = ACTIONS(2505), - [anon_sym_DASH_EQ] = ACTIONS(2505), - [anon_sym_PIPE_EQ] = ACTIONS(2505), - [anon_sym_CARET_EQ] = ACTIONS(2505), - [anon_sym_COLON_EQ] = ACTIONS(2505), - [anon_sym_lock] = ACTIONS(2505), - [anon_sym_rlock] = ACTIONS(2505), - [anon_sym_unsafe] = ACTIONS(2505), - [anon_sym_sql] = ACTIONS(2505), - [sym_int_literal] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2505), - [sym_rune_literal] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(2505), - [anon_sym_shared] = ACTIONS(2505), - [anon_sym_map_LBRACK] = ACTIONS(2505), - [anon_sym_chan] = ACTIONS(2505), - [anon_sym_thread] = ACTIONS(2505), - [anon_sym_atomic] = ACTIONS(2505), - [anon_sym_assert] = ACTIONS(2505), - [anon_sym_defer] = ACTIONS(2505), - [anon_sym_goto] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_DOLLARfor] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2505), - [anon_sym_AT_LBRACK] = ACTIONS(2505), - [sym___double_quote] = ACTIONS(2505), - [sym___single_quote] = ACTIONS(2505), - [sym___c_double_quote] = ACTIONS(2505), - [sym___c_single_quote] = ACTIONS(2505), - [sym___r_double_quote] = ACTIONS(2505), - [sym___r_single_quote] = ACTIONS(2505), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [380] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4430), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3951), + [sym_expression_list] = STATE(4454), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [381] = { - [sym__expression] = STATE(2637), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4418), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(360), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [382] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1429), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1424), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(354), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2637), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4418), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(356), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [384] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4399), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3685), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [385] = { - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4477), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(365), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [386] = { - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_range] = STATE(4477), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym__expression] = STATE(979), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(1445), + [sym_expression_list] = STATE(1583), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [387] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4399), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_fn] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2535), - [anon_sym_RBRACK] = ACTIONS(2538), - [anon_sym_struct] = ACTIONS(2540), - [anon_sym_mut] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2549), - [anon_sym_go] = ACTIONS(2552), - [anon_sym_spawn] = ACTIONS(2555), - [anon_sym_json_DOTdecode] = ACTIONS(2558), - [anon_sym_LBRACK2] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2532), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2564), - [anon_sym_LT_DASH] = ACTIONS(2567), - [sym_none] = ACTIONS(2570), - [sym_true] = ACTIONS(2570), - [sym_false] = ACTIONS(2570), - [sym_nil] = ACTIONS(2570), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_DOLLARif] = ACTIONS(2576), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_select] = ACTIONS(2582), - [anon_sym_lock] = ACTIONS(2585), - [anon_sym_rlock] = ACTIONS(2585), - [anon_sym_unsafe] = ACTIONS(2588), - [anon_sym_sql] = ACTIONS(2591), - [sym_int_literal] = ACTIONS(2570), - [sym_float_literal] = ACTIONS(2594), - [sym_rune_literal] = ACTIONS(2594), - [sym_pseudo_compile_time_identifier] = ACTIONS(2597), - [anon_sym_shared] = ACTIONS(2600), - [anon_sym_map_LBRACK] = ACTIONS(2603), - [anon_sym_chan] = ACTIONS(2606), - [anon_sym_thread] = ACTIONS(2609), - [anon_sym_atomic] = ACTIONS(2612), - [sym___double_quote] = ACTIONS(2615), - [sym___single_quote] = ACTIONS(2618), - [sym___c_double_quote] = ACTIONS(2621), - [sym___c_single_quote] = ACTIONS(2624), - [sym___r_double_quote] = ACTIONS(2627), - [sym___r_single_quote] = ACTIONS(2630), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1432), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1434), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [aux_sym__array_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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_else_branch] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(2633), - [sym_identifier] = ACTIONS(2635), - [anon_sym_LF] = ACTIONS(2635), - [anon_sym_CR] = ACTIONS(2635), - [anon_sym_CR_LF] = ACTIONS(2635), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2635), - [anon_sym_as] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_EQ] = ACTIONS(2635), - [anon_sym___global] = ACTIONS(2635), - [anon_sym_type] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_fn] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_SLASH] = ACTIONS(2635), - [anon_sym_PERCENT] = ACTIONS(2635), - [anon_sym_LT] = ACTIONS(2635), - [anon_sym_GT] = ACTIONS(2635), - [anon_sym_EQ_EQ] = ACTIONS(2635), - [anon_sym_BANG_EQ] = ACTIONS(2635), - [anon_sym_LT_EQ] = ACTIONS(2635), - [anon_sym_GT_EQ] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_pub] = ACTIONS(2635), - [anon_sym_mut] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_interface] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_QMARK] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_go] = ACTIONS(2635), - [anon_sym_spawn] = ACTIONS(2635), - [anon_sym_json_DOTdecode] = ACTIONS(2635), - [anon_sym_LBRACK2] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_LT_DASH] = ACTIONS(2635), - [anon_sym_LT_LT] = ACTIONS(2635), - [anon_sym_GT_GT] = ACTIONS(2635), - [anon_sym_GT_GT_GT] = ACTIONS(2635), - [anon_sym_AMP_CARET] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_PIPE_PIPE] = ACTIONS(2635), - [anon_sym_or] = ACTIONS(2635), - [sym_none] = ACTIONS(2635), - [sym_true] = ACTIONS(2635), - [sym_false] = ACTIONS(2635), - [sym_nil] = ACTIONS(2635), - [anon_sym_QMARK_DOT] = ACTIONS(2635), - [anon_sym_POUND_LBRACK] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2635), - [anon_sym_is] = ACTIONS(2635), - [anon_sym_BANGis] = ACTIONS(2635), - [anon_sym_in] = ACTIONS(2635), - [anon_sym_BANGin] = ACTIONS(2635), - [anon_sym_match] = ACTIONS(2635), - [anon_sym_select] = ACTIONS(2635), - [anon_sym_STAR_EQ] = ACTIONS(2635), - [anon_sym_SLASH_EQ] = ACTIONS(2635), - [anon_sym_PERCENT_EQ] = ACTIONS(2635), - [anon_sym_LT_LT_EQ] = ACTIONS(2635), - [anon_sym_GT_GT_EQ] = ACTIONS(2635), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2635), - [anon_sym_AMP_EQ] = ACTIONS(2635), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2635), - [anon_sym_PLUS_EQ] = ACTIONS(2635), - [anon_sym_DASH_EQ] = ACTIONS(2635), - [anon_sym_PIPE_EQ] = ACTIONS(2635), - [anon_sym_CARET_EQ] = ACTIONS(2635), - [anon_sym_COLON_EQ] = ACTIONS(2635), - [anon_sym_lock] = ACTIONS(2635), - [anon_sym_rlock] = ACTIONS(2635), - [anon_sym_unsafe] = ACTIONS(2635), - [anon_sym_sql] = ACTIONS(2635), - [sym_int_literal] = ACTIONS(2635), - [sym_float_literal] = ACTIONS(2635), - [sym_rune_literal] = ACTIONS(2635), - [sym_pseudo_compile_time_identifier] = ACTIONS(2635), - [anon_sym_shared] = ACTIONS(2635), - [anon_sym_map_LBRACK] = ACTIONS(2635), - [anon_sym_chan] = ACTIONS(2635), - [anon_sym_thread] = ACTIONS(2635), - [anon_sym_atomic] = ACTIONS(2635), - [anon_sym_assert] = ACTIONS(2635), - [anon_sym_defer] = ACTIONS(2635), - [anon_sym_goto] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_DOLLARfor] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(2635), - [anon_sym_asm] = ACTIONS(2635), - [anon_sym_AT_LBRACK] = ACTIONS(2635), - [sym___double_quote] = ACTIONS(2635), - [sym___single_quote] = ACTIONS(2635), - [sym___c_double_quote] = ACTIONS(2635), - [sym___c_single_quote] = ACTIONS(2635), - [sym___r_double_quote] = ACTIONS(2635), - [sym___r_single_quote] = ACTIONS(2635), + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [sym__expression] = STATE(2659), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_range] = STATE(4565), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(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(1307), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [390] = { - [sym__expression] = STATE(2606), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(3349), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [sym__expression] = STATE(1662), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(731), + [sym_mutable_expression] = STATE(3364), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [391] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(3003), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2975), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2639), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3005), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3006), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [392] = { - [sym__expression] = STATE(2628), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(533), - [sym_mutable_expression] = STATE(3349), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3003), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2989), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2643), - [anon_sym_LF] = ACTIONS(2643), - [anon_sym_CR] = ACTIONS(2643), - [anon_sym_CR_LF] = ACTIONS(2643), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_EQ] = ACTIONS(2643), - [anon_sym___global] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2643), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_EQ_EQ] = ACTIONS(2643), - [anon_sym_BANG_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_pub] = ACTIONS(2643), - [anon_sym_mut] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_interface] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_go] = ACTIONS(2643), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(2643), - [anon_sym_LBRACK2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_LT_DASH] = ACTIONS(2643), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_GT_GT_GT] = ACTIONS(2643), - [anon_sym_AMP_CARET] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_PIPE_PIPE] = ACTIONS(2643), - [anon_sym_or] = ACTIONS(2643), - [sym_none] = ACTIONS(2643), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_nil] = ACTIONS(2643), - [anon_sym_QMARK_DOT] = ACTIONS(2643), - [anon_sym_POUND_LBRACK] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_DOLLARif] = ACTIONS(2643), - [anon_sym_DOLLARelse] = ACTIONS(2645), - [anon_sym_is] = ACTIONS(2643), - [anon_sym_BANGis] = ACTIONS(2643), - [anon_sym_in] = ACTIONS(2643), - [anon_sym_BANGin] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_select] = ACTIONS(2643), - [anon_sym_STAR_EQ] = ACTIONS(2643), - [anon_sym_SLASH_EQ] = ACTIONS(2643), - [anon_sym_PERCENT_EQ] = ACTIONS(2643), - [anon_sym_LT_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_GT_EQ] = ACTIONS(2643), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2643), - [anon_sym_AMP_EQ] = ACTIONS(2643), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2643), - [anon_sym_PLUS_EQ] = ACTIONS(2643), - [anon_sym_DASH_EQ] = ACTIONS(2643), - [anon_sym_PIPE_EQ] = ACTIONS(2643), - [anon_sym_CARET_EQ] = ACTIONS(2643), - [anon_sym_COLON_EQ] = ACTIONS(2643), - [anon_sym_lock] = ACTIONS(2643), - [anon_sym_rlock] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_sql] = ACTIONS(2643), - [sym_int_literal] = ACTIONS(2643), - [sym_float_literal] = ACTIONS(2643), - [sym_rune_literal] = ACTIONS(2643), - [sym_pseudo_compile_time_identifier] = ACTIONS(2643), - [anon_sym_shared] = ACTIONS(2643), - [anon_sym_map_LBRACK] = ACTIONS(2643), - [anon_sym_chan] = ACTIONS(2643), - [anon_sym_thread] = ACTIONS(2643), - [anon_sym_atomic] = ACTIONS(2643), - [anon_sym_assert] = ACTIONS(2643), - [anon_sym_defer] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_DOLLARfor] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_POUND] = ACTIONS(2643), - [anon_sym_asm] = ACTIONS(2643), - [anon_sym_AT_LBRACK] = ACTIONS(2643), - [sym___double_quote] = ACTIONS(2643), - [sym___single_quote] = ACTIONS(2643), - [sym___c_double_quote] = ACTIONS(2643), - [sym___c_single_quote] = ACTIONS(2643), - [sym___r_double_quote] = ACTIONS(2643), - [sym___r_single_quote] = ACTIONS(2643), + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2971), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2974), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2711), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2651), - [anon_sym___global] = ACTIONS(2649), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2651), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2651), - [anon_sym_GT] = ACTIONS(2651), - [anon_sym_EQ_EQ] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2651), - [anon_sym_LT_EQ] = ACTIONS(2651), - [anon_sym_GT_EQ] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_pub] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2651), - [anon_sym_GT_GT] = ACTIONS(2651), - [anon_sym_GT_GT_GT] = ACTIONS(2651), - [anon_sym_AMP_CARET] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_or] = ACTIONS(2651), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2651), - [anon_sym_POUND_LBRACK] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2651), - [anon_sym_BANGis] = ACTIONS(2651), - [anon_sym_in] = ACTIONS(2651), - [anon_sym_BANGin] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_STAR_EQ] = ACTIONS(2651), - [anon_sym_SLASH_EQ] = ACTIONS(2651), - [anon_sym_PERCENT_EQ] = ACTIONS(2651), - [anon_sym_LT_LT_EQ] = ACTIONS(2651), - [anon_sym_GT_GT_EQ] = ACTIONS(2651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2651), - [anon_sym_AMP_EQ] = ACTIONS(2651), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2651), - [anon_sym_PLUS_EQ] = ACTIONS(2651), - [anon_sym_DASH_EQ] = ACTIONS(2651), - [anon_sym_PIPE_EQ] = ACTIONS(2651), - [anon_sym_CARET_EQ] = ACTIONS(2651), - [anon_sym_COLON_EQ] = ACTIONS(2651), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [anon_sym_assert] = ACTIONS(2649), - [anon_sym_defer] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_DOLLARfor] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym_AT_LBRACK] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), + [sym_line_comment] = STATE(394), + [sym_block_comment] = STATE(394), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3017), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2967), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [395] = { - [sym__expression] = STATE(1786), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(494), - [sym_mutable_expression] = STATE(3350), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(395), + [sym_block_comment] = STATE(395), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2979), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2985), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym___global] = ACTIONS(2649), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_pub] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_AMP_CARET] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2649), - [anon_sym_POUND_LBRACK] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_DOLLARelse] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_STAR_EQ] = ACTIONS(2649), - [anon_sym_SLASH_EQ] = ACTIONS(2649), - [anon_sym_PERCENT_EQ] = ACTIONS(2649), - [anon_sym_LT_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_GT_EQ] = ACTIONS(2649), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2649), - [anon_sym_AMP_EQ] = ACTIONS(2649), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2649), - [anon_sym_PLUS_EQ] = ACTIONS(2649), - [anon_sym_DASH_EQ] = ACTIONS(2649), - [anon_sym_PIPE_EQ] = ACTIONS(2649), - [anon_sym_CARET_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [anon_sym_assert] = ACTIONS(2649), - [anon_sym_defer] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_DOLLARfor] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym_AT_LBRACK] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), + [sym_line_comment] = STATE(396), + [sym_block_comment] = STATE(396), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2964), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2963), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [397] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2949), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2953), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2681), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(397), + [sym_block_comment] = STATE(397), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2998), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3000), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(2683), - [sym_identifier] = ACTIONS(2685), - [anon_sym_LF] = ACTIONS(2685), - [anon_sym_CR] = ACTIONS(2685), - [anon_sym_CR_LF] = ACTIONS(2685), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2685), - [anon_sym_as] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_COMMA] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym_EQ] = ACTIONS(2685), - [anon_sym___global] = ACTIONS(2685), - [anon_sym_type] = ACTIONS(2685), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_fn] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_SLASH] = ACTIONS(2685), - [anon_sym_PERCENT] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_pub] = ACTIONS(2685), - [anon_sym_mut] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_interface] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_QMARK] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_go] = ACTIONS(2685), - [anon_sym_spawn] = ACTIONS(2685), - [anon_sym_json_DOTdecode] = ACTIONS(2685), - [anon_sym_LBRACK2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_LT_DASH] = ACTIONS(2685), - [anon_sym_LT_LT] = ACTIONS(2685), - [anon_sym_GT_GT] = ACTIONS(2685), - [anon_sym_GT_GT_GT] = ACTIONS(2685), - [anon_sym_AMP_CARET] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_PIPE_PIPE] = ACTIONS(2685), - [anon_sym_or] = ACTIONS(2685), - [sym_none] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nil] = ACTIONS(2685), - [anon_sym_QMARK_DOT] = ACTIONS(2685), - [anon_sym_POUND_LBRACK] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_DOLLARif] = ACTIONS(2685), - [anon_sym_DOLLARelse] = ACTIONS(2685), - [anon_sym_is] = ACTIONS(2685), - [anon_sym_BANGis] = ACTIONS(2685), - [anon_sym_in] = ACTIONS(2685), - [anon_sym_BANGin] = ACTIONS(2685), - [anon_sym_match] = ACTIONS(2685), - [anon_sym_select] = ACTIONS(2685), - [anon_sym_STAR_EQ] = ACTIONS(2685), - [anon_sym_SLASH_EQ] = ACTIONS(2685), - [anon_sym_PERCENT_EQ] = ACTIONS(2685), - [anon_sym_LT_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_GT_EQ] = ACTIONS(2685), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2685), - [anon_sym_AMP_EQ] = ACTIONS(2685), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2685), - [anon_sym_PLUS_EQ] = ACTIONS(2685), - [anon_sym_DASH_EQ] = ACTIONS(2685), - [anon_sym_PIPE_EQ] = ACTIONS(2685), - [anon_sym_CARET_EQ] = ACTIONS(2685), - [anon_sym_COLON_EQ] = ACTIONS(2685), - [anon_sym_lock] = ACTIONS(2685), - [anon_sym_rlock] = ACTIONS(2685), - [anon_sym_unsafe] = ACTIONS(2685), - [anon_sym_sql] = ACTIONS(2685), - [sym_int_literal] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2685), - [sym_rune_literal] = ACTIONS(2685), - [sym_pseudo_compile_time_identifier] = ACTIONS(2685), - [anon_sym_shared] = ACTIONS(2685), - [anon_sym_map_LBRACK] = ACTIONS(2685), - [anon_sym_chan] = ACTIONS(2685), - [anon_sym_thread] = ACTIONS(2685), - [anon_sym_atomic] = ACTIONS(2685), - [anon_sym_assert] = ACTIONS(2685), - [anon_sym_defer] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_DOLLARfor] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_POUND] = ACTIONS(2685), - [anon_sym_asm] = ACTIONS(2685), - [anon_sym_AT_LBRACK] = ACTIONS(2685), - [sym___double_quote] = ACTIONS(2685), - [sym___single_quote] = ACTIONS(2685), - [sym___c_double_quote] = ACTIONS(2685), - [sym___c_single_quote] = ACTIONS(2685), - [sym___r_double_quote] = ACTIONS(2685), - [sym___r_single_quote] = ACTIONS(2685), + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_COMMA] = ACTIONS(621), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, [399] = { - [sym__expression] = STATE(2725), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4527), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2977), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2982), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2735), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [400] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2974), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2946), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2707), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(400), + [sym_block_comment] = STATE(400), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2972), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2973), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2739), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(2683), - [sym_identifier] = ACTIONS(2685), - [anon_sym_LF] = ACTIONS(2685), - [anon_sym_CR] = ACTIONS(2685), - [anon_sym_CR_LF] = ACTIONS(2685), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2685), - [anon_sym_as] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_COMMA] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym_EQ] = ACTIONS(2685), - [anon_sym___global] = ACTIONS(2685), - [anon_sym_type] = ACTIONS(2685), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_fn] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_SLASH] = ACTIONS(2685), - [anon_sym_PERCENT] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_pub] = ACTIONS(2685), - [anon_sym_mut] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_interface] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_QMARK] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_go] = ACTIONS(2685), - [anon_sym_spawn] = ACTIONS(2685), - [anon_sym_json_DOTdecode] = ACTIONS(2685), - [anon_sym_LBRACK2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_LT_DASH] = ACTIONS(2685), - [anon_sym_LT_LT] = ACTIONS(2685), - [anon_sym_GT_GT] = ACTIONS(2685), - [anon_sym_GT_GT_GT] = ACTIONS(2685), - [anon_sym_AMP_CARET] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_PIPE_PIPE] = ACTIONS(2685), - [anon_sym_or] = ACTIONS(2685), - [sym_none] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nil] = ACTIONS(2685), - [anon_sym_QMARK_DOT] = ACTIONS(2685), - [anon_sym_POUND_LBRACK] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_else] = ACTIONS(2685), - [anon_sym_DOLLARif] = ACTIONS(2685), - [anon_sym_is] = ACTIONS(2685), - [anon_sym_BANGis] = ACTIONS(2685), - [anon_sym_in] = ACTIONS(2685), - [anon_sym_BANGin] = ACTIONS(2685), - [anon_sym_match] = ACTIONS(2685), - [anon_sym_select] = ACTIONS(2685), - [anon_sym_STAR_EQ] = ACTIONS(2685), - [anon_sym_SLASH_EQ] = ACTIONS(2685), - [anon_sym_PERCENT_EQ] = ACTIONS(2685), - [anon_sym_LT_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_GT_EQ] = ACTIONS(2685), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2685), - [anon_sym_AMP_EQ] = ACTIONS(2685), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2685), - [anon_sym_PLUS_EQ] = ACTIONS(2685), - [anon_sym_DASH_EQ] = ACTIONS(2685), - [anon_sym_PIPE_EQ] = ACTIONS(2685), - [anon_sym_CARET_EQ] = ACTIONS(2685), - [anon_sym_COLON_EQ] = ACTIONS(2685), - [anon_sym_lock] = ACTIONS(2685), - [anon_sym_rlock] = ACTIONS(2685), - [anon_sym_unsafe] = ACTIONS(2685), - [anon_sym_sql] = ACTIONS(2685), - [sym_int_literal] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2685), - [sym_rune_literal] = ACTIONS(2685), - [sym_pseudo_compile_time_identifier] = ACTIONS(2685), - [anon_sym_shared] = ACTIONS(2685), - [anon_sym_map_LBRACK] = ACTIONS(2685), - [anon_sym_chan] = ACTIONS(2685), - [anon_sym_thread] = ACTIONS(2685), - [anon_sym_atomic] = ACTIONS(2685), - [anon_sym_assert] = ACTIONS(2685), - [anon_sym_defer] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_DOLLARfor] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_POUND] = ACTIONS(2685), - [anon_sym_asm] = ACTIONS(2685), - [anon_sym_AT_LBRACK] = ACTIONS(2685), - [sym___double_quote] = ACTIONS(2685), - [sym___single_quote] = ACTIONS(2685), - [sym___c_double_quote] = ACTIONS(2685), - [sym___c_single_quote] = ACTIONS(2685), - [sym___r_double_quote] = ACTIONS(2685), - [sym___r_single_quote] = ACTIONS(2685), + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), + [sym_type_parameters] = STATE(936), + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2743), + [anon_sym_LF] = ACTIONS(2743), + [anon_sym_CR] = ACTIONS(2743), + [anon_sym_CR_LF] = ACTIONS(2743), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_as] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_EQ] = ACTIONS(2743), + [anon_sym___global] = ACTIONS(2743), + [anon_sym_type] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [anon_sym_EQ_EQ] = ACTIONS(2743), + [anon_sym_BANG_EQ] = ACTIONS(2743), + [anon_sym_LT_EQ] = ACTIONS(2743), + [anon_sym_GT_EQ] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_pub] = ACTIONS(2743), + [anon_sym_mut] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_interface] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_go] = ACTIONS(2743), + [anon_sym_spawn] = ACTIONS(2743), + [anon_sym_json_DOTdecode] = ACTIONS(2743), + [anon_sym_LBRACK2] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2743), + [anon_sym_LT_LT] = ACTIONS(2743), + [anon_sym_GT_GT] = ACTIONS(2743), + [anon_sym_GT_GT_GT] = ACTIONS(2743), + [anon_sym_AMP_CARET] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_PIPE_PIPE] = ACTIONS(2743), + [anon_sym_or] = ACTIONS(2743), + [sym_none] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_nil] = ACTIONS(2743), + [anon_sym_QMARK_DOT] = ACTIONS(2743), + [anon_sym_POUND_LBRACK] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_DOLLARif] = ACTIONS(2743), + [anon_sym_is] = ACTIONS(2743), + [anon_sym_BANGis] = ACTIONS(2743), + [anon_sym_in] = ACTIONS(2743), + [anon_sym_BANGin] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_select] = ACTIONS(2743), + [anon_sym_STAR_EQ] = ACTIONS(2743), + [anon_sym_SLASH_EQ] = ACTIONS(2743), + [anon_sym_PERCENT_EQ] = ACTIONS(2743), + [anon_sym_LT_LT_EQ] = ACTIONS(2743), + [anon_sym_GT_GT_EQ] = ACTIONS(2743), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2743), + [anon_sym_AMP_EQ] = ACTIONS(2743), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2743), + [anon_sym_PLUS_EQ] = ACTIONS(2743), + [anon_sym_DASH_EQ] = ACTIONS(2743), + [anon_sym_PIPE_EQ] = ACTIONS(2743), + [anon_sym_CARET_EQ] = ACTIONS(2743), + [anon_sym_COLON_EQ] = ACTIONS(2743), + [anon_sym_lock] = ACTIONS(2743), + [anon_sym_rlock] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_sql] = ACTIONS(2743), + [sym_int_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), + [sym_rune_literal] = ACTIONS(2743), + [sym_pseudo_compile_time_identifier] = ACTIONS(2743), + [anon_sym_shared] = ACTIONS(2743), + [anon_sym_map_LBRACK] = ACTIONS(2743), + [anon_sym_chan] = ACTIONS(2743), + [anon_sym_thread] = ACTIONS(2743), + [anon_sym_atomic] = ACTIONS(2743), + [anon_sym_assert] = ACTIONS(2743), + [anon_sym_defer] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_DOLLARfor] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym_AT_LBRACK] = ACTIONS(2743), + [sym___double_quote] = ACTIONS(2743), + [sym___single_quote] = ACTIONS(2743), + [sym___c_double_quote] = ACTIONS(2743), + [sym___c_single_quote] = ACTIONS(2743), + [sym___r_double_quote] = ACTIONS(2743), + [sym___r_single_quote] = ACTIONS(2743), }, [402] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2992), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2991), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2711), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(402), + [sym_block_comment] = STATE(402), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), }, [403] = { - [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(537), - [sym_mutable_expression] = STATE(1450), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3031), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3034), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2751), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [404] = { - [sym_type_parameters] = STATE(853), - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2715), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_CR] = ACTIONS(2715), - [anon_sym_CR_LF] = ACTIONS(2715), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_as] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_COMMA] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_EQ] = ACTIONS(2715), - [anon_sym___global] = ACTIONS(2715), - [anon_sym_type] = ACTIONS(2715), - [anon_sym_PIPE] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_SLASH] = ACTIONS(2715), - [anon_sym_PERCENT] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2715), - [anon_sym_GT] = ACTIONS(2715), - [anon_sym_EQ_EQ] = ACTIONS(2715), - [anon_sym_BANG_EQ] = ACTIONS(2715), - [anon_sym_LT_EQ] = ACTIONS(2715), - [anon_sym_GT_EQ] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_pub] = ACTIONS(2715), - [anon_sym_mut] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_interface] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_QMARK] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_go] = ACTIONS(2715), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(2715), - [anon_sym_LBRACK2] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_CARET] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_LT_DASH] = ACTIONS(2715), - [anon_sym_LT_LT] = ACTIONS(2715), - [anon_sym_GT_GT] = ACTIONS(2715), - [anon_sym_GT_GT_GT] = ACTIONS(2715), - [anon_sym_AMP_CARET] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_PIPE_PIPE] = ACTIONS(2715), - [anon_sym_or] = ACTIONS(2715), - [sym_none] = ACTIONS(2715), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [sym_nil] = ACTIONS(2715), - [anon_sym_QMARK_DOT] = ACTIONS(2715), - [anon_sym_POUND_LBRACK] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_DOLLARif] = ACTIONS(2715), - [anon_sym_is] = ACTIONS(2715), - [anon_sym_BANGis] = ACTIONS(2715), - [anon_sym_in] = ACTIONS(2715), - [anon_sym_BANGin] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_select] = ACTIONS(2715), - [anon_sym_STAR_EQ] = ACTIONS(2715), - [anon_sym_SLASH_EQ] = ACTIONS(2715), - [anon_sym_PERCENT_EQ] = ACTIONS(2715), - [anon_sym_LT_LT_EQ] = ACTIONS(2715), - [anon_sym_GT_GT_EQ] = ACTIONS(2715), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2715), - [anon_sym_AMP_EQ] = ACTIONS(2715), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2715), - [anon_sym_PLUS_EQ] = ACTIONS(2715), - [anon_sym_DASH_EQ] = ACTIONS(2715), - [anon_sym_PIPE_EQ] = ACTIONS(2715), - [anon_sym_CARET_EQ] = ACTIONS(2715), - [anon_sym_COLON_EQ] = ACTIONS(2715), - [anon_sym_lock] = ACTIONS(2715), - [anon_sym_rlock] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_sql] = ACTIONS(2715), - [sym_int_literal] = ACTIONS(2715), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(2715), - [anon_sym_shared] = ACTIONS(2715), - [anon_sym_map_LBRACK] = ACTIONS(2715), - [anon_sym_chan] = ACTIONS(2715), - [anon_sym_thread] = ACTIONS(2715), - [anon_sym_atomic] = ACTIONS(2715), - [anon_sym_assert] = ACTIONS(2715), - [anon_sym_defer] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_DOLLARfor] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_POUND] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym_AT_LBRACK] = ACTIONS(2715), - [sym___double_quote] = ACTIONS(2715), - [sym___single_quote] = ACTIONS(2715), - [sym___c_double_quote] = ACTIONS(2715), - [sym___c_single_quote] = ACTIONS(2715), - [sym___r_double_quote] = ACTIONS(2715), - [sym___r_single_quote] = ACTIONS(2715), + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [sym__expression] = STATE(2563), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(689), + [sym_mutable_expression] = STATE(3379), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [405] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2983), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(3006), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2719), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(405), + [sym_block_comment] = STATE(405), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3002), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3004), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2755), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [406] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2981), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2980), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2721), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2723), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(406), + [sym_block_comment] = STATE(406), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2757), + [anon_sym_DOT] = ACTIONS(2747), + [anon_sym_as] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_COMMA] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_EQ] = ACTIONS(2757), + [anon_sym___global] = ACTIONS(2747), + [anon_sym_type] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2757), + [anon_sym_fn] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_PERCENT] = ACTIONS(2757), + [anon_sym_LT] = ACTIONS(2757), + [anon_sym_GT] = ACTIONS(2757), + [anon_sym_EQ_EQ] = ACTIONS(2757), + [anon_sym_BANG_EQ] = ACTIONS(2757), + [anon_sym_LT_EQ] = ACTIONS(2757), + [anon_sym_GT_EQ] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2759), + [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(2757), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [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(2757), + [anon_sym_GT_GT] = ACTIONS(2757), + [anon_sym_GT_GT_GT] = ACTIONS(2757), + [anon_sym_AMP_CARET] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2757), + [anon_sym_PIPE_PIPE] = ACTIONS(2757), + [anon_sym_or] = ACTIONS(2757), + [sym_none] = ACTIONS(2747), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_nil] = ACTIONS(2747), + [anon_sym_QMARK_DOT] = ACTIONS(2757), + [anon_sym_POUND_LBRACK] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_DOLLARif] = ACTIONS(2747), + [anon_sym_is] = ACTIONS(2757), + [anon_sym_BANGis] = ACTIONS(2757), + [anon_sym_in] = ACTIONS(2757), + [anon_sym_BANGin] = ACTIONS(2757), + [anon_sym_match] = ACTIONS(2747), + [anon_sym_select] = ACTIONS(2747), + [anon_sym_STAR_EQ] = ACTIONS(2757), + [anon_sym_SLASH_EQ] = ACTIONS(2757), + [anon_sym_PERCENT_EQ] = ACTIONS(2757), + [anon_sym_LT_LT_EQ] = ACTIONS(2757), + [anon_sym_GT_GT_EQ] = ACTIONS(2757), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2757), + [anon_sym_AMP_EQ] = ACTIONS(2757), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2757), + [anon_sym_PLUS_EQ] = ACTIONS(2757), + [anon_sym_DASH_EQ] = ACTIONS(2757), + [anon_sym_PIPE_EQ] = ACTIONS(2757), + [anon_sym_CARET_EQ] = ACTIONS(2757), + [anon_sym_COLON_EQ] = ACTIONS(2757), + [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), }, [407] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2727), - [anon_sym_as] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [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(2732), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_pub] = ACTIONS(2727), - [anon_sym_mut] = ACTIONS(2727), - [anon_sym_COLON] = ACTIONS(2735), - [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_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), + [sym_line_comment] = STATE(407), + [sym_block_comment] = STATE(407), + [sym__expression] = STATE(2853), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [408] = { - [sym__expression] = STATE(1788), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(838), - [sym_mutable_expression] = STATE(3346), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(408), + [sym_block_comment] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(2763), + [sym_identifier] = ACTIONS(2765), + [anon_sym_LF] = ACTIONS(2765), + [anon_sym_CR] = ACTIONS(2765), + [anon_sym_CR_LF] = ACTIONS(2765), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2765), + [anon_sym_DOT] = ACTIONS(2765), + [anon_sym_as] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_COMMA] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_LPAREN] = ACTIONS(2765), + [anon_sym_EQ] = ACTIONS(2765), + [anon_sym___global] = ACTIONS(2765), + [anon_sym_type] = ACTIONS(2765), + [anon_sym_PIPE] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_PERCENT] = ACTIONS(2765), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_GT] = ACTIONS(2765), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_pub] = ACTIONS(2765), + [anon_sym_mut] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_interface] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2765), + [anon_sym_QMARK] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_go] = ACTIONS(2765), + [anon_sym_spawn] = ACTIONS(2765), + [anon_sym_json_DOTdecode] = ACTIONS(2765), + [anon_sym_LBRACK2] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_CARET] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_LT_DASH] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2765), + [anon_sym_GT_GT] = ACTIONS(2765), + [anon_sym_GT_GT_GT] = ACTIONS(2765), + [anon_sym_AMP_CARET] = ACTIONS(2765), + [anon_sym_AMP_AMP] = ACTIONS(2765), + [anon_sym_PIPE_PIPE] = ACTIONS(2765), + [anon_sym_or] = ACTIONS(2765), + [sym_none] = ACTIONS(2765), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_nil] = ACTIONS(2765), + [anon_sym_QMARK_DOT] = ACTIONS(2765), + [anon_sym_POUND_LBRACK] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_DOLLARif] = ACTIONS(2765), + [anon_sym_DOLLARelse] = ACTIONS(2767), + [anon_sym_is] = ACTIONS(2765), + [anon_sym_BANGis] = ACTIONS(2765), + [anon_sym_in] = ACTIONS(2765), + [anon_sym_BANGin] = ACTIONS(2765), + [anon_sym_match] = ACTIONS(2765), + [anon_sym_select] = ACTIONS(2765), + [anon_sym_STAR_EQ] = ACTIONS(2765), + [anon_sym_SLASH_EQ] = ACTIONS(2765), + [anon_sym_PERCENT_EQ] = ACTIONS(2765), + [anon_sym_LT_LT_EQ] = ACTIONS(2765), + [anon_sym_GT_GT_EQ] = ACTIONS(2765), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2765), + [anon_sym_AMP_EQ] = ACTIONS(2765), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2765), + [anon_sym_PLUS_EQ] = ACTIONS(2765), + [anon_sym_DASH_EQ] = ACTIONS(2765), + [anon_sym_PIPE_EQ] = ACTIONS(2765), + [anon_sym_CARET_EQ] = ACTIONS(2765), + [anon_sym_COLON_EQ] = ACTIONS(2765), + [anon_sym_lock] = ACTIONS(2765), + [anon_sym_rlock] = ACTIONS(2765), + [anon_sym_unsafe] = ACTIONS(2765), + [anon_sym_sql] = ACTIONS(2765), + [sym_int_literal] = ACTIONS(2765), + [sym_float_literal] = ACTIONS(2765), + [sym_rune_literal] = ACTIONS(2765), + [sym_pseudo_compile_time_identifier] = ACTIONS(2765), + [anon_sym_shared] = ACTIONS(2765), + [anon_sym_map_LBRACK] = ACTIONS(2765), + [anon_sym_chan] = ACTIONS(2765), + [anon_sym_thread] = ACTIONS(2765), + [anon_sym_atomic] = ACTIONS(2765), + [anon_sym_assert] = ACTIONS(2765), + [anon_sym_defer] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_DOLLARfor] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_POUND] = ACTIONS(2765), + [anon_sym_asm] = ACTIONS(2765), + [anon_sym_AT_LBRACK] = ACTIONS(2765), + [sym___double_quote] = ACTIONS(2765), + [sym___single_quote] = ACTIONS(2765), + [sym___c_double_quote] = ACTIONS(2765), + [sym___c_single_quote] = ACTIONS(2765), + [sym___r_double_quote] = ACTIONS(2765), + [sym___r_single_quote] = ACTIONS(2765), }, [409] = { - [sym__expression] = STATE(1656), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(767), - [sym_mutable_expression] = STATE(3336), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), + [sym_line_comment] = STATE(409), + [sym_block_comment] = STATE(409), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3016), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3018), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2771), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym___global] = ACTIONS(2649), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_pub] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_AMP_CARET] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2649), - [anon_sym_POUND_LBRACK] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_STAR_EQ] = ACTIONS(2649), - [anon_sym_SLASH_EQ] = ACTIONS(2649), - [anon_sym_PERCENT_EQ] = ACTIONS(2649), - [anon_sym_LT_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_GT_EQ] = ACTIONS(2649), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2649), - [anon_sym_AMP_EQ] = ACTIONS(2649), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2649), - [anon_sym_PLUS_EQ] = ACTIONS(2649), - [anon_sym_DASH_EQ] = ACTIONS(2649), - [anon_sym_PIPE_EQ] = ACTIONS(2649), - [anon_sym_CARET_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [anon_sym_assert] = ACTIONS(2649), - [anon_sym_defer] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_DOLLARfor] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym_AT_LBRACK] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), + [sym_line_comment] = STATE(410), + [sym_block_comment] = STATE(410), + [sym__expression] = STATE(2804), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4489), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [411] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2944), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2955), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2801), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), + [sym__expression] = STATE(1819), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(961), + [sym_mutable_expression] = STATE(3378), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [412] = { - [sym__expression] = STATE(2691), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4702), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(412), + [sym_block_comment] = STATE(412), + [sym__expression] = STATE(2371), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(590), + [sym_mutable_expression] = STATE(3667), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [413] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2935), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2939), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2805), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(413), + [sym_block_comment] = STATE(413), + [sym__expression] = STATE(2707), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4519), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [414] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2978), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2942), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2809), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(414), + [sym_block_comment] = STATE(414), + [sym__expression] = STATE(2893), + [sym__expression_without_blocks] = STATE(2886), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_expression_without_blocks_list] = STATE(4737), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [415] = { - [sym__expression] = STATE(2713), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(415), + [sym_block_comment] = STATE(415), + [sym__expression] = STATE(2893), + [sym__expression_without_blocks] = STATE(2886), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_expression_without_blocks_list] = STATE(4753), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [416] = { - [sym__expression] = STATE(2581), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym__definite_range] = STATE(4574), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(416), + [sym_block_comment] = STATE(416), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4429), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [417] = { - [sym__expression] = STATE(1936), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_expression] = STATE(3349), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(417), + [sym_block_comment] = STATE(417), + [sym__expression] = STATE(2698), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4443), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [418] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2936), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2938), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2835), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(418), + [sym_block_comment] = STATE(418), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2999), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2980), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2817), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [419] = { - [sym__expression] = STATE(2823), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2837), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(2819), + [sym_identifier] = ACTIONS(2821), + [anon_sym_LF] = ACTIONS(2821), + [anon_sym_CR] = ACTIONS(2821), + [anon_sym_CR_LF] = ACTIONS(2821), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_as] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_COMMA] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym_EQ] = ACTIONS(2821), + [anon_sym___global] = ACTIONS(2821), + [anon_sym_type] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_fn] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_PERCENT] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_EQ_EQ] = ACTIONS(2821), + [anon_sym_BANG_EQ] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2821), + [anon_sym_GT_EQ] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_pub] = ACTIONS(2821), + [anon_sym_mut] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_interface] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_go] = ACTIONS(2821), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(2821), + [anon_sym_LBRACK2] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_CARET] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_LT_DASH] = ACTIONS(2821), + [anon_sym_LT_LT] = ACTIONS(2821), + [anon_sym_GT_GT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2821), + [anon_sym_AMP_CARET] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_PIPE_PIPE] = ACTIONS(2821), + [anon_sym_or] = ACTIONS(2821), + [sym_none] = ACTIONS(2821), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_nil] = ACTIONS(2821), + [anon_sym_QMARK_DOT] = ACTIONS(2821), + [anon_sym_POUND_LBRACK] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_DOLLARif] = ACTIONS(2821), + [anon_sym_DOLLARelse] = ACTIONS(2823), + [anon_sym_is] = ACTIONS(2821), + [anon_sym_BANGis] = ACTIONS(2821), + [anon_sym_in] = ACTIONS(2821), + [anon_sym_BANGin] = ACTIONS(2821), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2821), + [anon_sym_STAR_EQ] = ACTIONS(2821), + [anon_sym_SLASH_EQ] = ACTIONS(2821), + [anon_sym_PERCENT_EQ] = ACTIONS(2821), + [anon_sym_LT_LT_EQ] = ACTIONS(2821), + [anon_sym_GT_GT_EQ] = ACTIONS(2821), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2821), + [anon_sym_AMP_EQ] = ACTIONS(2821), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2821), + [anon_sym_PLUS_EQ] = ACTIONS(2821), + [anon_sym_DASH_EQ] = ACTIONS(2821), + [anon_sym_PIPE_EQ] = ACTIONS(2821), + [anon_sym_CARET_EQ] = ACTIONS(2821), + [anon_sym_COLON_EQ] = ACTIONS(2821), + [anon_sym_lock] = ACTIONS(2821), + [anon_sym_rlock] = ACTIONS(2821), + [anon_sym_unsafe] = ACTIONS(2821), + [anon_sym_sql] = ACTIONS(2821), + [sym_int_literal] = ACTIONS(2821), + [sym_float_literal] = ACTIONS(2821), + [sym_rune_literal] = ACTIONS(2821), + [sym_pseudo_compile_time_identifier] = ACTIONS(2821), + [anon_sym_shared] = ACTIONS(2821), + [anon_sym_map_LBRACK] = ACTIONS(2821), + [anon_sym_chan] = ACTIONS(2821), + [anon_sym_thread] = ACTIONS(2821), + [anon_sym_atomic] = ACTIONS(2821), + [anon_sym_assert] = ACTIONS(2821), + [anon_sym_defer] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_DOLLARfor] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_POUND] = ACTIONS(2821), + [anon_sym_asm] = ACTIONS(2821), + [anon_sym_AT_LBRACK] = ACTIONS(2821), + [sym___double_quote] = ACTIONS(2821), + [sym___single_quote] = ACTIONS(2821), + [sym___c_double_quote] = ACTIONS(2821), + [sym___c_single_quote] = ACTIONS(2821), + [sym___r_double_quote] = ACTIONS(2821), + [sym___r_single_quote] = ACTIONS(2821), }, [420] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2979), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2971), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2839), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2841), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(420), + [sym_block_comment] = STATE(420), + [sym__expression] = STATE(1950), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(972), + [sym_mutable_expression] = STATE(3379), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [421] = { - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(939), - [sym_mutable_expression] = STATE(1131), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_line_comment] = STATE(421), + [sym_block_comment] = STATE(421), + [sym__expression] = STATE(1812), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(966), + [sym_mutable_expression] = STATE(3375), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), }, [422] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3973), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(422), + [sym_block_comment] = STATE(422), + [sym__expression] = STATE(2730), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4453), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [423] = { - [sym__expression] = STATE(2687), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(423), + [sym_block_comment] = STATE(423), + [sym__expression] = STATE(2744), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4467), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [424] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2989), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2987), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(424), + [sym_block_comment] = STATE(424), + [sym__expression] = STATE(2741), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [425] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2977), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2968), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2857), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2859), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(425), + [sym_block_comment] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_EQ] = ACTIONS(2829), + [anon_sym___global] = ACTIONS(2829), + [anon_sym_type] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2829), + [anon_sym_BANG_EQ] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_pub] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2829), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2829), + [anon_sym_AMP_CARET] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_PIPE_PIPE] = ACTIONS(2829), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2829), + [anon_sym_POUND_LBRACK] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_DOLLARelse] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_STAR_EQ] = ACTIONS(2829), + [anon_sym_SLASH_EQ] = ACTIONS(2829), + [anon_sym_PERCENT_EQ] = ACTIONS(2829), + [anon_sym_LT_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_GT_EQ] = ACTIONS(2829), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2829), + [anon_sym_AMP_EQ] = ACTIONS(2829), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2829), + [anon_sym_PLUS_EQ] = ACTIONS(2829), + [anon_sym_DASH_EQ] = ACTIONS(2829), + [anon_sym_PIPE_EQ] = ACTIONS(2829), + [anon_sym_CARET_EQ] = ACTIONS(2829), + [anon_sym_COLON_EQ] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [anon_sym_assert] = ACTIONS(2829), + [anon_sym_defer] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_DOLLARfor] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_asm] = ACTIONS(2829), + [anon_sym_AT_LBRACK] = ACTIONS(2829), + [sym___double_quote] = ACTIONS(2829), + [sym___single_quote] = ACTIONS(2829), + [sym___c_double_quote] = ACTIONS(2829), + [sym___c_single_quote] = ACTIONS(2829), + [sym___r_double_quote] = ACTIONS(2829), + [sym___r_single_quote] = ACTIONS(2829), }, [426] = { - [sym__expression] = STATE(2419), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(608), - [sym_mutable_expression] = STATE(3651), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(426), + [sym_block_comment] = STATE(426), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), }, [427] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2956), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(3004), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2861), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2863), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(427), + [sym_block_comment] = STATE(427), + [sym__expression] = STATE(2756), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4481), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [428] = { - [sym__expression] = STATE(2861), - [sym__expression_without_blocks] = STATE(2863), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2863), - [sym_dec_expression] = STATE(2863), - [sym_or_block_expression] = STATE(2863), - [sym_option_propagation_expression] = STATE(2863), - [sym_result_propagation_expression] = STATE(2863), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2863), - [sym_spawn_expression] = STATE(2863), - [sym_parenthesized_expression] = STATE(2863), - [sym_call_expression] = STATE(2863), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2863), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2863), - [sym_receive_expression] = STATE(2863), - [sym_binary_expression] = STATE(2863), - [sym_as_type_cast_expression] = STATE(2863), - [sym__max_group] = STATE(2863), - [sym_literal] = STATE(2863), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2863), - [sym_fixed_array_creation] = STATE(2863), - [sym_selector_expression] = STATE(2863), - [sym_index_expression] = STATE(2863), - [sym_slice_expression] = STATE(2863), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2863), - [sym_not_is_expression] = STATE(2863), - [sym_in_expression] = STATE(2863), - [sym_not_in_expression] = STATE(2863), - [sym_enum_fetch] = STATE(2863), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_expression_without_blocks_list] = STATE(4393), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [sym__expression] = STATE(2689), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(839), + [sym_mutable_expression] = STATE(3379), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [429] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2988), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2984), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [sym__expression] = STATE(2808), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4510), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [430] = { - [sym__expression] = STATE(2861), - [sym__expression_without_blocks] = STATE(2863), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2863), - [sym_dec_expression] = STATE(2863), - [sym_or_block_expression] = STATE(2863), - [sym_option_propagation_expression] = STATE(2863), - [sym_result_propagation_expression] = STATE(2863), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2863), - [sym_spawn_expression] = STATE(2863), - [sym_parenthesized_expression] = STATE(2863), - [sym_call_expression] = STATE(2863), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2863), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2863), - [sym_receive_expression] = STATE(2863), - [sym_binary_expression] = STATE(2863), - [sym_as_type_cast_expression] = STATE(2863), - [sym__max_group] = STATE(2863), - [sym_literal] = STATE(2863), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2863), - [sym_fixed_array_creation] = STATE(2863), - [sym_selector_expression] = STATE(2863), - [sym_index_expression] = STATE(2863), - [sym_slice_expression] = STATE(2863), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2863), - [sym_not_is_expression] = STATE(2863), - [sym_in_expression] = STATE(2863), - [sym_not_in_expression] = STATE(2863), - [sym_enum_fetch] = STATE(2863), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_expression_without_blocks_list] = STATE(4394), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2833), + [anon_sym___global] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_pub] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_COLON] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_STAR_EQ] = ACTIONS(2833), + [anon_sym_SLASH_EQ] = ACTIONS(2833), + [anon_sym_PERCENT_EQ] = ACTIONS(2833), + [anon_sym_LT_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_AMP_EQ] = ACTIONS(2833), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2833), + [anon_sym_PLUS_EQ] = ACTIONS(2833), + [anon_sym_DASH_EQ] = ACTIONS(2833), + [anon_sym_PIPE_EQ] = ACTIONS(2833), + [anon_sym_CARET_EQ] = ACTIONS(2833), + [anon_sym_COLON_EQ] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), + [anon_sym_AT_LBRACK] = ACTIONS(2833), + [sym___double_quote] = ACTIONS(2833), + [sym___single_quote] = ACTIONS(2833), + [sym___c_double_quote] = ACTIONS(2833), + [sym___c_single_quote] = ACTIONS(2833), + [sym___r_double_quote] = ACTIONS(2833), + [sym___r_single_quote] = ACTIONS(2833), }, [431] = { - [sym__expression] = STATE(2811), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4558), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [sym__expression] = STATE(2523), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym__definite_range] = STATE(4608), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_identifier] = ACTIONS(2873), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_CR] = ACTIONS(2873), - [anon_sym_CR_LF] = ACTIONS(2873), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2873), - [anon_sym_as] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_COMMA] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_EQ] = ACTIONS(2873), - [anon_sym___global] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_fn] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2873), - [anon_sym_PERCENT] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_GT] = ACTIONS(2873), - [anon_sym_EQ_EQ] = ACTIONS(2873), - [anon_sym_BANG_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2873), - [anon_sym_GT_EQ] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [anon_sym_pub] = ACTIONS(2873), - [anon_sym_mut] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_interface] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_QMARK] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_go] = ACTIONS(2873), - [anon_sym_spawn] = ACTIONS(2873), - [anon_sym_json_DOTdecode] = ACTIONS(2873), - [anon_sym_LBRACK2] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_CARET] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_LT_DASH] = ACTIONS(2873), - [anon_sym_LT_LT] = ACTIONS(2873), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_GT_GT_GT] = ACTIONS(2873), - [anon_sym_AMP_CARET] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [anon_sym_or] = ACTIONS(2873), - [sym_none] = ACTIONS(2873), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [sym_nil] = ACTIONS(2873), - [anon_sym_QMARK_DOT] = ACTIONS(2873), - [anon_sym_POUND_LBRACK] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_DOLLARif] = ACTIONS(2873), - [anon_sym_DOLLARelse] = ACTIONS(2875), - [anon_sym_is] = ACTIONS(2873), - [anon_sym_BANGis] = ACTIONS(2873), - [anon_sym_in] = ACTIONS(2873), - [anon_sym_BANGin] = ACTIONS(2873), - [anon_sym_match] = ACTIONS(2873), - [anon_sym_select] = ACTIONS(2873), - [anon_sym_STAR_EQ] = ACTIONS(2873), - [anon_sym_SLASH_EQ] = ACTIONS(2873), - [anon_sym_PERCENT_EQ] = ACTIONS(2873), - [anon_sym_LT_LT_EQ] = ACTIONS(2873), - [anon_sym_GT_GT_EQ] = ACTIONS(2873), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2873), - [anon_sym_AMP_EQ] = ACTIONS(2873), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2873), - [anon_sym_PLUS_EQ] = ACTIONS(2873), - [anon_sym_DASH_EQ] = ACTIONS(2873), - [anon_sym_PIPE_EQ] = ACTIONS(2873), - [anon_sym_CARET_EQ] = ACTIONS(2873), - [anon_sym_COLON_EQ] = ACTIONS(2873), - [anon_sym_lock] = ACTIONS(2873), - [anon_sym_rlock] = ACTIONS(2873), - [anon_sym_unsafe] = ACTIONS(2873), - [anon_sym_sql] = ACTIONS(2873), - [sym_int_literal] = ACTIONS(2873), - [sym_float_literal] = ACTIONS(2873), - [sym_rune_literal] = ACTIONS(2873), - [sym_pseudo_compile_time_identifier] = ACTIONS(2873), - [anon_sym_shared] = ACTIONS(2873), - [anon_sym_map_LBRACK] = ACTIONS(2873), - [anon_sym_chan] = ACTIONS(2873), - [anon_sym_thread] = ACTIONS(2873), - [anon_sym_atomic] = ACTIONS(2873), - [anon_sym_assert] = ACTIONS(2873), - [anon_sym_defer] = ACTIONS(2873), - [anon_sym_goto] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_DOLLARfor] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_POUND] = ACTIONS(2873), - [anon_sym_asm] = ACTIONS(2873), - [anon_sym_AT_LBRACK] = ACTIONS(2873), - [sym___double_quote] = ACTIONS(2873), - [sym___single_quote] = ACTIONS(2873), - [sym___c_double_quote] = ACTIONS(2873), - [sym___c_single_quote] = ACTIONS(2873), - [sym___r_double_quote] = ACTIONS(2873), - [sym___r_single_quote] = ACTIONS(2873), + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [sym__expression] = STATE(2831), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [433] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2998), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2997), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(2879), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3015), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3014), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2865), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [434] = { - [sym__expression] = STATE(2606), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(913), - [sym_mutable_expression] = STATE(3349), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [sym__expression] = STATE(2823), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4531), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [435] = { - [sym__expression] = STATE(2782), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4481), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(435), + [sym_block_comment] = STATE(435), + [sym__expression] = STATE(2864), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4640), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [436] = { - [sym__expression] = STATE(2819), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4459), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(436), + [sym_block_comment] = STATE(436), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2995), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2981), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2869), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [437] = { - [sym__expression] = STATE(2821), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4432), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(437), + [sym_block_comment] = STATE(437), + [sym__expression] = STATE(2835), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [438] = { - [sym__expression] = STATE(2827), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4400), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(438), + [sym_block_comment] = STATE(438), + [sym__expression] = STATE(2825), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4552), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [439] = { - [sym__expression] = STATE(2834), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4406), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4586), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [440] = { - [sym__expression] = STATE(2842), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4427), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(440), + [sym_block_comment] = STATE(440), + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(1479), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [441] = { - [sym__expression] = STATE(2706), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(441), + [sym_block_comment] = STATE(441), + [sym__expression] = STATE(2866), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(467), + [sym_mutable_expression] = STATE(4568), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [442] = { - [sym__expression] = STATE(2851), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4448), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(442), + [sym_block_comment] = STATE(442), + [sym__expression] = STATE(2563), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(587), + [sym_mutable_expression] = STATE(3379), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [443] = { - [sym__expression] = STATE(2852), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4469), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(443), + [sym_block_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_EQ] = ACTIONS(2829), + [anon_sym___global] = ACTIONS(2829), + [anon_sym_type] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2829), + [anon_sym_BANG_EQ] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_pub] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2829), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2829), + [anon_sym_AMP_CARET] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_PIPE_PIPE] = ACTIONS(2829), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2829), + [anon_sym_POUND_LBRACK] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_else] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_STAR_EQ] = ACTIONS(2829), + [anon_sym_SLASH_EQ] = ACTIONS(2829), + [anon_sym_PERCENT_EQ] = ACTIONS(2829), + [anon_sym_LT_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_GT_EQ] = ACTIONS(2829), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2829), + [anon_sym_AMP_EQ] = ACTIONS(2829), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2829), + [anon_sym_PLUS_EQ] = ACTIONS(2829), + [anon_sym_DASH_EQ] = ACTIONS(2829), + [anon_sym_PIPE_EQ] = ACTIONS(2829), + [anon_sym_CARET_EQ] = ACTIONS(2829), + [anon_sym_COLON_EQ] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [anon_sym_assert] = ACTIONS(2829), + [anon_sym_defer] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_DOLLARfor] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_asm] = ACTIONS(2829), + [anon_sym_AT_LBRACK] = ACTIONS(2829), + [sym___double_quote] = ACTIONS(2829), + [sym___single_quote] = ACTIONS(2829), + [sym___c_double_quote] = ACTIONS(2829), + [sym___c_single_quote] = ACTIONS(2829), + [sym___r_double_quote] = ACTIONS(2829), + [sym___r_single_quote] = ACTIONS(2829), }, [444] = { - [sym__expression] = STATE(2767), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4490), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(444), + [sym_block_comment] = STATE(444), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3023), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3022), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(2873), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(2875), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [445] = { - [sym__expression] = STATE(2752), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(457), - [sym_mutable_expression] = STATE(4511), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(445), + [sym_block_comment] = STATE(445), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(960), + [sym_mutable_expression] = STATE(1135), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, [446] = { - [sym__expression] = STATE(1683), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), + [sym_line_comment] = STATE(446), + [sym_block_comment] = STATE(446), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, [447] = { - [sym__expression] = STATE(2789), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [448] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(447), + [sym_block_comment] = STATE(447), + [sym__expression] = STATE(1806), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4212), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(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), - }, - [449] = { - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [450] = { - [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), - [sym_comment] = ACTIONS(495), - [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_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(2893), [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), - }, - [451] = { - [ts_builtin_sym_end] = ACTIONS(2897), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2899), - [anon_sym_CR] = ACTIONS(2899), - [anon_sym_CR_LF] = ACTIONS(2899), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_as] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(2899), - [anon_sym_const] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(2899), - [anon_sym___global] = ACTIONS(2899), - [anon_sym_type] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [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(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_union] = ACTIONS(2899), - [anon_sym_pub] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_enum] = ACTIONS(2899), - [anon_sym_interface] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2899), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [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(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2899), - [anon_sym_POUND_LBRACK] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2899), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2899), - [anon_sym_match] = ACTIONS(2899), + [anon_sym_match] = ACTIONS(2897), [anon_sym_select] = ACTIONS(2899), - [anon_sym_STAR_EQ] = ACTIONS(2899), - [anon_sym_SLASH_EQ] = ACTIONS(2899), - [anon_sym_PERCENT_EQ] = ACTIONS(2899), - [anon_sym_LT_LT_EQ] = ACTIONS(2899), - [anon_sym_GT_GT_EQ] = ACTIONS(2899), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2899), - [anon_sym_AMP_EQ] = ACTIONS(2899), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2899), - [anon_sym_PLUS_EQ] = ACTIONS(2899), - [anon_sym_DASH_EQ] = ACTIONS(2899), - [anon_sym_PIPE_EQ] = ACTIONS(2899), - [anon_sym_CARET_EQ] = ACTIONS(2899), - [anon_sym_COLON_EQ] = ACTIONS(2899), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_sql] = ACTIONS(2899), - [sym_int_literal] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2899), - [sym_rune_literal] = ACTIONS(2899), - [sym_pseudo_compile_time_identifier] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2899), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [anon_sym_assert] = ACTIONS(2899), - [anon_sym_defer] = ACTIONS(2899), - [anon_sym_goto] = ACTIONS(2899), - [anon_sym_break] = ACTIONS(2899), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_return] = ACTIONS(2899), - [anon_sym_DOLLARfor] = ACTIONS(2899), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_asm] = ACTIONS(2899), - [anon_sym_AT_LBRACK] = ACTIONS(2899), - [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), - }, - [452] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [sym_identifier] = ACTIONS(2903), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_CR] = ACTIONS(2903), - [anon_sym_CR_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_EQ] = ACTIONS(2903), - [anon_sym___global] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [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(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_pub] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_interface] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2903), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2903), - [anon_sym_GT_GT] = ACTIONS(2903), - [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(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2903), - [anon_sym_POUND_LBRACK] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2903), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_STAR_EQ] = ACTIONS(2903), - [anon_sym_SLASH_EQ] = ACTIONS(2903), - [anon_sym_PERCENT_EQ] = ACTIONS(2903), - [anon_sym_LT_LT_EQ] = ACTIONS(2903), - [anon_sym_GT_GT_EQ] = ACTIONS(2903), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2903), - [anon_sym_AMP_EQ] = ACTIONS(2903), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2903), - [anon_sym_PLUS_EQ] = ACTIONS(2903), - [anon_sym_DASH_EQ] = ACTIONS(2903), - [anon_sym_PIPE_EQ] = ACTIONS(2903), - [anon_sym_CARET_EQ] = ACTIONS(2903), - [anon_sym_COLON_EQ] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - [sym_rune_literal] = ACTIONS(2903), - [sym_pseudo_compile_time_identifier] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2903), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [anon_sym_assert] = ACTIONS(2903), - [anon_sym_defer] = ACTIONS(2903), - [anon_sym_goto] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_DOLLARfor] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_asm] = ACTIONS(2903), - [anon_sym_AT_LBRACK] = ACTIONS(2903), - [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), + [anon_sym_sql] = ACTIONS(2905), + [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), }, - [453] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_identifier] = ACTIONS(2907), - [anon_sym_LF] = ACTIONS(2907), - [anon_sym_CR] = ACTIONS(2907), - [anon_sym_CR_LF] = ACTIONS(2907), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_const] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_EQ] = ACTIONS(2907), - [anon_sym___global] = ACTIONS(2907), - [anon_sym_type] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [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(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_union] = ACTIONS(2907), - [anon_sym_pub] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_enum] = ACTIONS(2907), - [anon_sym_interface] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2907), - [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(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_STAR_EQ] = ACTIONS(2907), - [anon_sym_SLASH_EQ] = ACTIONS(2907), - [anon_sym_PERCENT_EQ] = ACTIONS(2907), - [anon_sym_LT_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_GT_EQ] = ACTIONS(2907), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2907), - [anon_sym_AMP_EQ] = ACTIONS(2907), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2907), - [anon_sym_PLUS_EQ] = ACTIONS(2907), - [anon_sym_DASH_EQ] = ACTIONS(2907), - [anon_sym_PIPE_EQ] = ACTIONS(2907), - [anon_sym_CARET_EQ] = ACTIONS(2907), - [anon_sym_COLON_EQ] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [sym_pseudo_compile_time_identifier] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [anon_sym_assert] = ACTIONS(2907), - [anon_sym_defer] = ACTIONS(2907), - [anon_sym_goto] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_DOLLARfor] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_asm] = ACTIONS(2907), - [anon_sym_AT_LBRACK] = ACTIONS(2907), - [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), + [448] = { + [sym_line_comment] = STATE(448), + [sym_block_comment] = STATE(448), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2966), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2965), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [454] = { - [ts_builtin_sym_end] = ACTIONS(2909), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LF] = ACTIONS(2911), - [anon_sym_CR] = ACTIONS(2911), - [anon_sym_CR_LF] = ACTIONS(2911), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_EQ] = ACTIONS(2911), - [anon_sym___global] = ACTIONS(2911), - [anon_sym_type] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [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(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_pub] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2911), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2911), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2911), - [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(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2911), - [anon_sym_POUND_LBRACK] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_STAR_EQ] = ACTIONS(2911), - [anon_sym_SLASH_EQ] = ACTIONS(2911), - [anon_sym_PERCENT_EQ] = ACTIONS(2911), - [anon_sym_LT_LT_EQ] = ACTIONS(2911), - [anon_sym_GT_GT_EQ] = ACTIONS(2911), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2911), - [anon_sym_AMP_EQ] = ACTIONS(2911), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2911), - [anon_sym_PLUS_EQ] = ACTIONS(2911), - [anon_sym_DASH_EQ] = ACTIONS(2911), - [anon_sym_PIPE_EQ] = ACTIONS(2911), - [anon_sym_CARET_EQ] = ACTIONS(2911), - [anon_sym_COLON_EQ] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2911), - [sym_rune_literal] = ACTIONS(2911), - [sym_pseudo_compile_time_identifier] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2911), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [anon_sym_assert] = ACTIONS(2911), - [anon_sym_defer] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_DOLLARfor] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym_AT_LBRACK] = ACTIONS(2911), - [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), + [449] = { + [sym_line_comment] = STATE(449), + [sym_block_comment] = STATE(449), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2909), + [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_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), }, - [455] = { - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4378), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [450] = { + [sym_line_comment] = STATE(450), + [sym_block_comment] = STATE(450), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2913), + [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_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), }, - [456] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_EQ] = ACTIONS(2915), - [anon_sym___global] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), + [451] = { + [sym_line_comment] = STATE(451), + [sym_block_comment] = STATE(451), + [sym__expression] = STATE(2850), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [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(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_pub] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_interface] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [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(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2915), - [anon_sym_POUND_LBRACK] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2915), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_STAR_EQ] = ACTIONS(2915), - [anon_sym_SLASH_EQ] = ACTIONS(2915), - [anon_sym_PERCENT_EQ] = ACTIONS(2915), - [anon_sym_LT_LT_EQ] = ACTIONS(2915), - [anon_sym_GT_GT_EQ] = ACTIONS(2915), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2915), - [anon_sym_AMP_EQ] = ACTIONS(2915), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2915), - [anon_sym_PLUS_EQ] = ACTIONS(2915), - [anon_sym_DASH_EQ] = ACTIONS(2915), - [anon_sym_PIPE_EQ] = ACTIONS(2915), - [anon_sym_CARET_EQ] = ACTIONS(2915), - [anon_sym_COLON_EQ] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [sym_pseudo_compile_time_identifier] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [anon_sym_assert] = ACTIONS(2915), - [anon_sym_defer] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_DOLLARfor] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym_AT_LBRACK] = ACTIONS(2915), - [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), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [457] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [458] = { - [sym__expression] = STATE(2304), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), - }, - [459] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [452] = { + [sym_line_comment] = STATE(452), + [sym_block_comment] = STATE(452), + [sym__expression] = STATE(2396), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), + }, + [453] = { + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), + [sym__expression] = STATE(250), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), + }, + [454] = { + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), + [sym__expression] = STATE(251), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), + }, + [455] = { + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), + [sym__expression] = STATE(998), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), + }, + [456] = { + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), + [sym__expression] = STATE(2342), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4199), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), + }, + [457] = { + [sym_line_comment] = STATE(457), + [sym_block_comment] = STATE(457), + [ts_builtin_sym_end] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LF] = ACTIONS(2941), + [anon_sym_CR] = ACTIONS(2941), + [anon_sym_CR_LF] = ACTIONS(2941), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2941), + [anon_sym_DOT] = ACTIONS(2941), + [anon_sym_as] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2941), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2941), + [anon_sym___global] = ACTIONS(2941), + [anon_sym_type] = ACTIONS(2941), + [anon_sym_PIPE] = ACTIONS(2941), + [anon_sym_fn] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_PERCENT] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2941), + [anon_sym_GT] = ACTIONS(2941), + [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(2939), + [anon_sym_struct] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2941), + [anon_sym_pub] = ACTIONS(2941), + [anon_sym_mut] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2941), + [anon_sym_interface] = ACTIONS(2941), + [anon_sym_PLUS_PLUS] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2941), + [anon_sym_QMARK] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_go] = ACTIONS(2941), + [anon_sym_spawn] = ACTIONS(2941), + [anon_sym_json_DOTdecode] = ACTIONS(2941), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2941), + [anon_sym_CARET] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2941), + [anon_sym_LT_DASH] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2941), + [anon_sym_GT_GT] = ACTIONS(2941), + [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(2941), + [sym_none] = ACTIONS(2941), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [sym_nil] = ACTIONS(2941), + [anon_sym_QMARK_DOT] = ACTIONS(2941), + [anon_sym_POUND_LBRACK] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_DOLLARif] = ACTIONS(2941), + [anon_sym_is] = ACTIONS(2941), + [anon_sym_BANGis] = ACTIONS(2941), + [anon_sym_in] = ACTIONS(2941), + [anon_sym_BANGin] = ACTIONS(2941), + [anon_sym_match] = ACTIONS(2941), + [anon_sym_select] = ACTIONS(2941), + [anon_sym_STAR_EQ] = ACTIONS(2941), + [anon_sym_SLASH_EQ] = ACTIONS(2941), + [anon_sym_PERCENT_EQ] = ACTIONS(2941), + [anon_sym_LT_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_GT_EQ] = ACTIONS(2941), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2941), + [anon_sym_AMP_EQ] = ACTIONS(2941), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2941), + [anon_sym_PLUS_EQ] = ACTIONS(2941), + [anon_sym_DASH_EQ] = ACTIONS(2941), + [anon_sym_PIPE_EQ] = ACTIONS(2941), + [anon_sym_CARET_EQ] = ACTIONS(2941), + [anon_sym_COLON_EQ] = ACTIONS(2941), + [anon_sym_lock] = ACTIONS(2941), + [anon_sym_rlock] = ACTIONS(2941), + [anon_sym_unsafe] = ACTIONS(2941), + [anon_sym_sql] = ACTIONS(2941), + [sym_int_literal] = ACTIONS(2941), + [sym_float_literal] = ACTIONS(2941), + [sym_rune_literal] = ACTIONS(2941), + [sym_pseudo_compile_time_identifier] = ACTIONS(2941), + [anon_sym_shared] = ACTIONS(2941), + [anon_sym_map_LBRACK] = ACTIONS(2941), + [anon_sym_chan] = ACTIONS(2941), + [anon_sym_thread] = ACTIONS(2941), + [anon_sym_atomic] = ACTIONS(2941), + [anon_sym_assert] = ACTIONS(2941), + [anon_sym_defer] = ACTIONS(2941), + [anon_sym_goto] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_DOLLARfor] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_POUND] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2941), + [anon_sym_AT_LBRACK] = ACTIONS(2941), + [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), + }, + [458] = { + [sym_line_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [ts_builtin_sym_end] = ACTIONS(2943), + [sym_identifier] = ACTIONS(2945), + [anon_sym_LF] = ACTIONS(2945), + [anon_sym_CR] = ACTIONS(2945), + [anon_sym_CR_LF] = ACTIONS(2945), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(2945), + [anon_sym_as] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2945), + [anon_sym_COMMA] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_EQ] = ACTIONS(2945), + [anon_sym___global] = ACTIONS(2945), + [anon_sym_type] = ACTIONS(2945), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_fn] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_PERCENT] = ACTIONS(2945), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_GT] = ACTIONS(2945), + [anon_sym_EQ_EQ] = ACTIONS(2945), + [anon_sym_BANG_EQ] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2945), + [anon_sym_GT_EQ] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(2945), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_pub] = ACTIONS(2945), + [anon_sym_mut] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_interface] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2945), + [anon_sym_QMARK] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2945), + [anon_sym_go] = ACTIONS(2945), + [anon_sym_spawn] = ACTIONS(2945), + [anon_sym_json_DOTdecode] = ACTIONS(2945), + [anon_sym_LBRACK2] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_LT_DASH] = ACTIONS(2945), + [anon_sym_LT_LT] = ACTIONS(2945), + [anon_sym_GT_GT] = ACTIONS(2945), + [anon_sym_GT_GT_GT] = ACTIONS(2945), + [anon_sym_AMP_CARET] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2945), + [anon_sym_PIPE_PIPE] = ACTIONS(2945), + [anon_sym_or] = ACTIONS(2945), + [sym_none] = ACTIONS(2945), + [sym_true] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [sym_nil] = ACTIONS(2945), + [anon_sym_QMARK_DOT] = ACTIONS(2945), + [anon_sym_POUND_LBRACK] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_DOLLARif] = ACTIONS(2945), + [anon_sym_is] = ACTIONS(2945), + [anon_sym_BANGis] = ACTIONS(2945), + [anon_sym_in] = ACTIONS(2945), + [anon_sym_BANGin] = ACTIONS(2945), + [anon_sym_match] = ACTIONS(2945), + [anon_sym_select] = ACTIONS(2945), + [anon_sym_STAR_EQ] = ACTIONS(2945), + [anon_sym_SLASH_EQ] = ACTIONS(2945), + [anon_sym_PERCENT_EQ] = ACTIONS(2945), + [anon_sym_LT_LT_EQ] = ACTIONS(2945), + [anon_sym_GT_GT_EQ] = ACTIONS(2945), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2945), + [anon_sym_AMP_EQ] = ACTIONS(2945), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2945), + [anon_sym_PLUS_EQ] = ACTIONS(2945), + [anon_sym_DASH_EQ] = ACTIONS(2945), + [anon_sym_PIPE_EQ] = ACTIONS(2945), + [anon_sym_CARET_EQ] = ACTIONS(2945), + [anon_sym_COLON_EQ] = ACTIONS(2945), + [anon_sym_lock] = ACTIONS(2945), + [anon_sym_rlock] = ACTIONS(2945), + [anon_sym_unsafe] = ACTIONS(2945), + [anon_sym_sql] = ACTIONS(2945), + [sym_int_literal] = ACTIONS(2945), + [sym_float_literal] = ACTIONS(2945), + [sym_rune_literal] = ACTIONS(2945), + [sym_pseudo_compile_time_identifier] = ACTIONS(2945), + [anon_sym_shared] = ACTIONS(2945), + [anon_sym_map_LBRACK] = ACTIONS(2945), + [anon_sym_chan] = ACTIONS(2945), + [anon_sym_thread] = ACTIONS(2945), + [anon_sym_atomic] = ACTIONS(2945), + [anon_sym_assert] = ACTIONS(2945), + [anon_sym_defer] = ACTIONS(2945), + [anon_sym_goto] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_DOLLARfor] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_asm] = ACTIONS(2945), + [anon_sym_AT_LBRACK] = ACTIONS(2945), + [sym___double_quote] = ACTIONS(2945), + [sym___single_quote] = ACTIONS(2945), + [sym___c_double_quote] = ACTIONS(2945), + [sym___c_single_quote] = ACTIONS(2945), + [sym___r_double_quote] = ACTIONS(2945), + [sym___r_single_quote] = ACTIONS(2945), + }, + [459] = { + [sym_line_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [sym__expression] = STATE(2340), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [460] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(460), + [sym_block_comment] = STATE(460), + [ts_builtin_sym_end] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2949), + [anon_sym_LF] = ACTIONS(2949), + [anon_sym_CR] = ACTIONS(2949), + [anon_sym_CR_LF] = ACTIONS(2949), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_as] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_COMMA] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_LPAREN] = ACTIONS(2949), + [anon_sym_EQ] = ACTIONS(2949), + [anon_sym___global] = ACTIONS(2949), + [anon_sym_type] = ACTIONS(2949), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_fn] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_EQ_EQ] = ACTIONS(2949), + [anon_sym_BANG_EQ] = ACTIONS(2949), + [anon_sym_LT_EQ] = ACTIONS(2949), + [anon_sym_GT_EQ] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_pub] = ACTIONS(2949), + [anon_sym_mut] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_interface] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2949), + [anon_sym_DASH_DASH] = ACTIONS(2949), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_go] = ACTIONS(2949), + [anon_sym_spawn] = ACTIONS(2949), + [anon_sym_json_DOTdecode] = ACTIONS(2949), + [anon_sym_LBRACK2] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_CARET] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2949), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2949), + [anon_sym_AMP_CARET] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2949), + [anon_sym_PIPE_PIPE] = ACTIONS(2949), + [anon_sym_or] = ACTIONS(2949), + [sym_none] = ACTIONS(2949), + [sym_true] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [sym_nil] = ACTIONS(2949), + [anon_sym_QMARK_DOT] = ACTIONS(2949), + [anon_sym_POUND_LBRACK] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2949), + [anon_sym_is] = ACTIONS(2949), + [anon_sym_BANGis] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2949), + [anon_sym_BANGin] = ACTIONS(2949), + [anon_sym_match] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [anon_sym_STAR_EQ] = ACTIONS(2949), + [anon_sym_SLASH_EQ] = ACTIONS(2949), + [anon_sym_PERCENT_EQ] = ACTIONS(2949), + [anon_sym_LT_LT_EQ] = ACTIONS(2949), + [anon_sym_GT_GT_EQ] = ACTIONS(2949), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2949), + [anon_sym_AMP_EQ] = ACTIONS(2949), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2949), + [anon_sym_PLUS_EQ] = ACTIONS(2949), + [anon_sym_DASH_EQ] = ACTIONS(2949), + [anon_sym_PIPE_EQ] = ACTIONS(2949), + [anon_sym_CARET_EQ] = ACTIONS(2949), + [anon_sym_COLON_EQ] = ACTIONS(2949), + [anon_sym_lock] = ACTIONS(2949), + [anon_sym_rlock] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_sql] = ACTIONS(2949), + [sym_int_literal] = ACTIONS(2949), + [sym_float_literal] = ACTIONS(2949), + [sym_rune_literal] = ACTIONS(2949), + [sym_pseudo_compile_time_identifier] = ACTIONS(2949), + [anon_sym_shared] = ACTIONS(2949), + [anon_sym_map_LBRACK] = ACTIONS(2949), + [anon_sym_chan] = ACTIONS(2949), + [anon_sym_thread] = ACTIONS(2949), + [anon_sym_atomic] = ACTIONS(2949), + [anon_sym_assert] = ACTIONS(2949), + [anon_sym_defer] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_DOLLARfor] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_POUND] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym_AT_LBRACK] = ACTIONS(2949), + [sym___double_quote] = ACTIONS(2949), + [sym___single_quote] = ACTIONS(2949), + [sym___c_double_quote] = ACTIONS(2949), + [sym___c_single_quote] = ACTIONS(2949), + [sym___r_double_quote] = ACTIONS(2949), + [sym___r_single_quote] = ACTIONS(2949), }, [461] = { - [sym__expression] = STATE(2309), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [ts_builtin_sym_end] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LF] = ACTIONS(2953), + [anon_sym_CR] = ACTIONS(2953), + [anon_sym_CR_LF] = ACTIONS(2953), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_as] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2953), + [anon_sym_COMMA] = ACTIONS(2953), + [anon_sym_const] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2953), + [anon_sym_EQ] = ACTIONS(2953), + [anon_sym___global] = ACTIONS(2953), + [anon_sym_type] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_fn] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2953), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_EQ_EQ] = ACTIONS(2953), + [anon_sym_BANG_EQ] = ACTIONS(2953), + [anon_sym_LT_EQ] = ACTIONS(2953), + [anon_sym_GT_EQ] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2953), + [anon_sym_union] = ACTIONS(2953), + [anon_sym_pub] = ACTIONS(2953), + [anon_sym_mut] = ACTIONS(2953), + [anon_sym_enum] = ACTIONS(2953), + [anon_sym_interface] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_go] = ACTIONS(2953), + [anon_sym_spawn] = ACTIONS(2953), + [anon_sym_json_DOTdecode] = ACTIONS(2953), + [anon_sym_LBRACK2] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2953), + [anon_sym_CARET] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_LT_DASH] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2953), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2953), + [anon_sym_AMP_CARET] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2953), + [anon_sym_PIPE_PIPE] = ACTIONS(2953), + [anon_sym_or] = ACTIONS(2953), + [sym_none] = ACTIONS(2953), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [sym_nil] = ACTIONS(2953), + [anon_sym_QMARK_DOT] = ACTIONS(2953), + [anon_sym_POUND_LBRACK] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_DOLLARif] = ACTIONS(2953), + [anon_sym_is] = ACTIONS(2953), + [anon_sym_BANGis] = ACTIONS(2953), + [anon_sym_in] = ACTIONS(2953), + [anon_sym_BANGin] = ACTIONS(2953), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2953), + [anon_sym_STAR_EQ] = ACTIONS(2953), + [anon_sym_SLASH_EQ] = ACTIONS(2953), + [anon_sym_PERCENT_EQ] = ACTIONS(2953), + [anon_sym_LT_LT_EQ] = ACTIONS(2953), + [anon_sym_GT_GT_EQ] = ACTIONS(2953), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2953), + [anon_sym_AMP_EQ] = ACTIONS(2953), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2953), + [anon_sym_PLUS_EQ] = ACTIONS(2953), + [anon_sym_DASH_EQ] = ACTIONS(2953), + [anon_sym_PIPE_EQ] = ACTIONS(2953), + [anon_sym_CARET_EQ] = ACTIONS(2953), + [anon_sym_COLON_EQ] = ACTIONS(2953), + [anon_sym_lock] = ACTIONS(2953), + [anon_sym_rlock] = ACTIONS(2953), + [anon_sym_unsafe] = ACTIONS(2953), + [anon_sym_sql] = ACTIONS(2953), + [sym_int_literal] = ACTIONS(2953), + [sym_float_literal] = ACTIONS(2953), + [sym_rune_literal] = ACTIONS(2953), + [sym_pseudo_compile_time_identifier] = ACTIONS(2953), + [anon_sym_shared] = ACTIONS(2953), + [anon_sym_map_LBRACK] = ACTIONS(2953), + [anon_sym_chan] = ACTIONS(2953), + [anon_sym_thread] = ACTIONS(2953), + [anon_sym_atomic] = ACTIONS(2953), + [anon_sym_assert] = ACTIONS(2953), + [anon_sym_defer] = ACTIONS(2953), + [anon_sym_goto] = ACTIONS(2953), + [anon_sym_break] = ACTIONS(2953), + [anon_sym_continue] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2953), + [anon_sym_DOLLARfor] = ACTIONS(2953), + [anon_sym_for] = ACTIONS(2953), + [anon_sym_POUND] = ACTIONS(2953), + [anon_sym_asm] = ACTIONS(2953), + [anon_sym_AT_LBRACK] = ACTIONS(2953), + [sym___double_quote] = ACTIONS(2953), + [sym___single_quote] = ACTIONS(2953), + [sym___c_double_quote] = ACTIONS(2953), + [sym___c_single_quote] = ACTIONS(2953), + [sym___r_double_quote] = ACTIONS(2953), + [sym___r_single_quote] = ACTIONS(2953), }, [462] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3654), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [sym__expression] = STATE(1817), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), }, [463] = { - [sym__expression] = STATE(2837), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [sym__expression] = STATE(2483), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [464] = { - [sym__expression] = STATE(2333), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), }, [465] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2743), + [anon_sym_LF] = ACTIONS(2743), + [anon_sym_CR] = ACTIONS(2743), + [anon_sym_CR_LF] = ACTIONS(2743), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_as] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_EQ] = ACTIONS(2743), + [anon_sym___global] = ACTIONS(2743), + [anon_sym_type] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [anon_sym_EQ_EQ] = ACTIONS(2743), + [anon_sym_BANG_EQ] = ACTIONS(2743), + [anon_sym_LT_EQ] = ACTIONS(2743), + [anon_sym_GT_EQ] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_pub] = ACTIONS(2743), + [anon_sym_mut] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_interface] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_go] = ACTIONS(2743), + [anon_sym_spawn] = ACTIONS(2743), + [anon_sym_json_DOTdecode] = ACTIONS(2743), + [anon_sym_LBRACK2] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2743), + [anon_sym_LT_LT] = ACTIONS(2743), + [anon_sym_GT_GT] = ACTIONS(2743), + [anon_sym_GT_GT_GT] = ACTIONS(2743), + [anon_sym_AMP_CARET] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_PIPE_PIPE] = ACTIONS(2743), + [anon_sym_or] = ACTIONS(2743), + [sym_none] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_nil] = ACTIONS(2743), + [anon_sym_QMARK_DOT] = ACTIONS(2743), + [anon_sym_POUND_LBRACK] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_DOLLARif] = ACTIONS(2743), + [anon_sym_is] = ACTIONS(2743), + [anon_sym_BANGis] = ACTIONS(2743), + [anon_sym_in] = ACTIONS(2743), + [anon_sym_BANGin] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_select] = ACTIONS(2743), + [anon_sym_STAR_EQ] = ACTIONS(2743), + [anon_sym_SLASH_EQ] = ACTIONS(2743), + [anon_sym_PERCENT_EQ] = ACTIONS(2743), + [anon_sym_LT_LT_EQ] = ACTIONS(2743), + [anon_sym_GT_GT_EQ] = ACTIONS(2743), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2743), + [anon_sym_AMP_EQ] = ACTIONS(2743), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2743), + [anon_sym_PLUS_EQ] = ACTIONS(2743), + [anon_sym_DASH_EQ] = ACTIONS(2743), + [anon_sym_PIPE_EQ] = ACTIONS(2743), + [anon_sym_CARET_EQ] = ACTIONS(2743), + [anon_sym_COLON_EQ] = ACTIONS(2743), + [anon_sym_lock] = ACTIONS(2743), + [anon_sym_rlock] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_sql] = ACTIONS(2743), + [sym_int_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), + [sym_rune_literal] = ACTIONS(2743), + [sym_pseudo_compile_time_identifier] = ACTIONS(2743), + [anon_sym_shared] = ACTIONS(2743), + [anon_sym_map_LBRACK] = ACTIONS(2743), + [anon_sym_chan] = ACTIONS(2743), + [anon_sym_thread] = ACTIONS(2743), + [anon_sym_atomic] = ACTIONS(2743), + [anon_sym_assert] = ACTIONS(2743), + [anon_sym_defer] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_DOLLARfor] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym_AT_LBRACK] = ACTIONS(2743), + [sym___double_quote] = ACTIONS(2743), + [sym___single_quote] = ACTIONS(2743), + [sym___c_double_quote] = ACTIONS(2743), + [sym___c_single_quote] = ACTIONS(2743), + [sym___r_double_quote] = ACTIONS(2743), + [sym___r_single_quote] = ACTIONS(2743), }, [466] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2975), + [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_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(2975), + [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), }, [467] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [sym__expression] = STATE(2806), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [468] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2979), + [anon_sym_CR] = ACTIONS(2979), + [anon_sym_CR_LF] = ACTIONS(2979), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_const] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym___global] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_fn] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2979), + [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(2977), + [anon_sym_struct] = ACTIONS(2979), + [anon_sym_union] = ACTIONS(2979), + [anon_sym_pub] = ACTIONS(2979), + [anon_sym_mut] = ACTIONS(2979), + [anon_sym_enum] = ACTIONS(2979), + [anon_sym_interface] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_go] = ACTIONS(2979), + [anon_sym_spawn] = ACTIONS(2979), + [anon_sym_json_DOTdecode] = ACTIONS(2979), + [anon_sym_LBRACK2] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2979), + [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(2979), + [sym_none] = ACTIONS(2979), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [sym_nil] = ACTIONS(2979), + [anon_sym_QMARK_DOT] = ACTIONS(2979), + [anon_sym_POUND_LBRACK] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_DOLLARif] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_BANGis] = ACTIONS(2979), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_BANGin] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_select] = ACTIONS(2979), + [anon_sym_STAR_EQ] = ACTIONS(2979), + [anon_sym_SLASH_EQ] = ACTIONS(2979), + [anon_sym_PERCENT_EQ] = ACTIONS(2979), + [anon_sym_LT_LT_EQ] = ACTIONS(2979), + [anon_sym_GT_GT_EQ] = ACTIONS(2979), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2979), + [anon_sym_AMP_EQ] = ACTIONS(2979), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2979), + [anon_sym_PLUS_EQ] = ACTIONS(2979), + [anon_sym_DASH_EQ] = ACTIONS(2979), + [anon_sym_PIPE_EQ] = ACTIONS(2979), + [anon_sym_CARET_EQ] = ACTIONS(2979), + [anon_sym_COLON_EQ] = ACTIONS(2979), + [anon_sym_lock] = ACTIONS(2979), + [anon_sym_rlock] = ACTIONS(2979), + [anon_sym_unsafe] = ACTIONS(2979), + [anon_sym_sql] = ACTIONS(2979), + [sym_int_literal] = ACTIONS(2979), + [sym_float_literal] = ACTIONS(2979), + [sym_rune_literal] = ACTIONS(2979), + [sym_pseudo_compile_time_identifier] = ACTIONS(2979), + [anon_sym_shared] = ACTIONS(2979), + [anon_sym_map_LBRACK] = ACTIONS(2979), + [anon_sym_chan] = ACTIONS(2979), + [anon_sym_thread] = ACTIONS(2979), + [anon_sym_atomic] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_defer] = ACTIONS(2979), + [anon_sym_goto] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_DOLLARfor] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_POUND] = ACTIONS(2979), + [anon_sym_asm] = ACTIONS(2979), + [anon_sym_AT_LBRACK] = ACTIONS(2979), + [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), }, [469] = { - [sym__expression] = STATE(2301), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [sym__expression] = STATE(252), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, [470] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [sym__expression] = STATE(253), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, [471] = { - [sym__expression] = STATE(2822), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(471), + [sym_block_comment] = STATE(471), + [sym__expression] = STATE(982), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [472] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [sym__expression] = STATE(2742), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [473] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [sym__expression] = STATE(254), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, [474] = { - [sym__expression] = STATE(2769), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [sym__expression] = STATE(2409), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [475] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [sym__expression] = STATE(2342), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [476] = { - [sym__expression] = STATE(2877), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [sym__expression] = STATE(1001), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [477] = { - [sym__expression] = STATE(2854), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [sym__expression] = STATE(994), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [478] = { - [sym__expression] = STATE(2880), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [ts_builtin_sym_end] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LF] = ACTIONS(2983), + [anon_sym_CR] = ACTIONS(2983), + [anon_sym_CR_LF] = ACTIONS(2983), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2983), + [anon_sym_as] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_const] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_EQ] = ACTIONS(2983), + [anon_sym___global] = ACTIONS(2983), + [anon_sym_type] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2983), + [anon_sym_fn] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_GT] = ACTIONS(2983), + [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(2981), + [anon_sym_struct] = ACTIONS(2983), + [anon_sym_union] = ACTIONS(2983), + [anon_sym_pub] = ACTIONS(2983), + [anon_sym_mut] = ACTIONS(2983), + [anon_sym_enum] = ACTIONS(2983), + [anon_sym_interface] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_go] = ACTIONS(2983), + [anon_sym_spawn] = ACTIONS(2983), + [anon_sym_json_DOTdecode] = ACTIONS(2983), + [anon_sym_LBRACK2] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_LT_DASH] = ACTIONS(2983), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2983), + [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(2983), + [sym_none] = ACTIONS(2983), + [sym_true] = ACTIONS(2983), + [sym_false] = ACTIONS(2983), + [sym_nil] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(2983), + [anon_sym_POUND_LBRACK] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_DOLLARif] = ACTIONS(2983), + [anon_sym_is] = ACTIONS(2983), + [anon_sym_BANGis] = ACTIONS(2983), + [anon_sym_in] = ACTIONS(2983), + [anon_sym_BANGin] = ACTIONS(2983), + [anon_sym_match] = ACTIONS(2983), + [anon_sym_select] = ACTIONS(2983), + [anon_sym_STAR_EQ] = ACTIONS(2983), + [anon_sym_SLASH_EQ] = ACTIONS(2983), + [anon_sym_PERCENT_EQ] = ACTIONS(2983), + [anon_sym_LT_LT_EQ] = ACTIONS(2983), + [anon_sym_GT_GT_EQ] = ACTIONS(2983), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2983), + [anon_sym_AMP_EQ] = ACTIONS(2983), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2983), + [anon_sym_PLUS_EQ] = ACTIONS(2983), + [anon_sym_DASH_EQ] = ACTIONS(2983), + [anon_sym_PIPE_EQ] = ACTIONS(2983), + [anon_sym_CARET_EQ] = ACTIONS(2983), + [anon_sym_COLON_EQ] = ACTIONS(2983), + [anon_sym_lock] = ACTIONS(2983), + [anon_sym_rlock] = ACTIONS(2983), + [anon_sym_unsafe] = ACTIONS(2983), + [anon_sym_sql] = ACTIONS(2983), + [sym_int_literal] = ACTIONS(2983), + [sym_float_literal] = ACTIONS(2983), + [sym_rune_literal] = ACTIONS(2983), + [sym_pseudo_compile_time_identifier] = ACTIONS(2983), + [anon_sym_shared] = ACTIONS(2983), + [anon_sym_map_LBRACK] = ACTIONS(2983), + [anon_sym_chan] = ACTIONS(2983), + [anon_sym_thread] = ACTIONS(2983), + [anon_sym_atomic] = ACTIONS(2983), + [anon_sym_assert] = ACTIONS(2983), + [anon_sym_defer] = ACTIONS(2983), + [anon_sym_goto] = ACTIONS(2983), + [anon_sym_break] = ACTIONS(2983), + [anon_sym_continue] = ACTIONS(2983), + [anon_sym_return] = ACTIONS(2983), + [anon_sym_DOLLARfor] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2983), + [anon_sym_POUND] = ACTIONS(2983), + [anon_sym_asm] = ACTIONS(2983), + [anon_sym_AT_LBRACK] = ACTIONS(2983), + [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), }, [479] = { - [sym__expression] = STATE(2764), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [ts_builtin_sym_end] = ACTIONS(2985), + [sym_identifier] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2987), + [anon_sym_CR] = ACTIONS(2987), + [anon_sym_CR_LF] = ACTIONS(2987), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2987), + [anon_sym_DOT] = ACTIONS(2987), + [anon_sym_as] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_COMMA] = ACTIONS(2987), + [anon_sym_const] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(2987), + [anon_sym___global] = ACTIONS(2987), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_fn] = ACTIONS(2987), + [anon_sym_PLUS] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_PERCENT] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [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(2985), + [anon_sym_struct] = ACTIONS(2987), + [anon_sym_union] = ACTIONS(2987), + [anon_sym_pub] = ACTIONS(2987), + [anon_sym_mut] = ACTIONS(2987), + [anon_sym_enum] = ACTIONS(2987), + [anon_sym_interface] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_QMARK] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_go] = ACTIONS(2987), + [anon_sym_spawn] = ACTIONS(2987), + [anon_sym_json_DOTdecode] = ACTIONS(2987), + [anon_sym_LBRACK2] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_CARET] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2987), + [anon_sym_LT_DASH] = ACTIONS(2987), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2987), + [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(2987), + [sym_none] = ACTIONS(2987), + [sym_true] = ACTIONS(2987), + [sym_false] = ACTIONS(2987), + [sym_nil] = ACTIONS(2987), + [anon_sym_QMARK_DOT] = ACTIONS(2987), + [anon_sym_POUND_LBRACK] = ACTIONS(2987), + [anon_sym_if] = ACTIONS(2987), + [anon_sym_DOLLARif] = ACTIONS(2987), + [anon_sym_is] = ACTIONS(2987), + [anon_sym_BANGis] = ACTIONS(2987), + [anon_sym_in] = ACTIONS(2987), + [anon_sym_BANGin] = ACTIONS(2987), + [anon_sym_match] = ACTIONS(2987), + [anon_sym_select] = ACTIONS(2987), + [anon_sym_STAR_EQ] = ACTIONS(2987), + [anon_sym_SLASH_EQ] = ACTIONS(2987), + [anon_sym_PERCENT_EQ] = ACTIONS(2987), + [anon_sym_LT_LT_EQ] = ACTIONS(2987), + [anon_sym_GT_GT_EQ] = ACTIONS(2987), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2987), + [anon_sym_AMP_EQ] = ACTIONS(2987), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2987), + [anon_sym_PLUS_EQ] = ACTIONS(2987), + [anon_sym_DASH_EQ] = ACTIONS(2987), + [anon_sym_PIPE_EQ] = ACTIONS(2987), + [anon_sym_CARET_EQ] = ACTIONS(2987), + [anon_sym_COLON_EQ] = ACTIONS(2987), + [anon_sym_lock] = ACTIONS(2987), + [anon_sym_rlock] = ACTIONS(2987), + [anon_sym_unsafe] = ACTIONS(2987), + [anon_sym_sql] = ACTIONS(2987), + [sym_int_literal] = ACTIONS(2987), + [sym_float_literal] = ACTIONS(2987), + [sym_rune_literal] = ACTIONS(2987), + [sym_pseudo_compile_time_identifier] = ACTIONS(2987), + [anon_sym_shared] = ACTIONS(2987), + [anon_sym_map_LBRACK] = ACTIONS(2987), + [anon_sym_chan] = ACTIONS(2987), + [anon_sym_thread] = ACTIONS(2987), + [anon_sym_atomic] = ACTIONS(2987), + [anon_sym_assert] = ACTIONS(2987), + [anon_sym_defer] = ACTIONS(2987), + [anon_sym_goto] = ACTIONS(2987), + [anon_sym_break] = ACTIONS(2987), + [anon_sym_continue] = ACTIONS(2987), + [anon_sym_return] = ACTIONS(2987), + [anon_sym_DOLLARfor] = ACTIONS(2987), + [anon_sym_for] = ACTIONS(2987), + [anon_sym_POUND] = ACTIONS(2987), + [anon_sym_asm] = ACTIONS(2987), + [anon_sym_AT_LBRACK] = ACTIONS(2987), + [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), }, [480] = { - [sym__expression] = STATE(2874), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [ts_builtin_sym_end] = ACTIONS(2989), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LF] = ACTIONS(2991), + [anon_sym_CR] = ACTIONS(2991), + [anon_sym_CR_LF] = ACTIONS(2991), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2991), + [anon_sym_DOT] = ACTIONS(2991), + [anon_sym_as] = ACTIONS(2991), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2991), + [anon_sym_EQ] = ACTIONS(2991), + [anon_sym___global] = ACTIONS(2991), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(2991), + [anon_sym_fn] = ACTIONS(2991), + [anon_sym_PLUS] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_LT] = ACTIONS(2991), + [anon_sym_GT] = ACTIONS(2991), + [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(2989), + [anon_sym_struct] = ACTIONS(2991), + [anon_sym_union] = ACTIONS(2991), + [anon_sym_pub] = ACTIONS(2991), + [anon_sym_mut] = ACTIONS(2991), + [anon_sym_enum] = ACTIONS(2991), + [anon_sym_interface] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_go] = ACTIONS(2991), + [anon_sym_spawn] = ACTIONS(2991), + [anon_sym_json_DOTdecode] = ACTIONS(2991), + [anon_sym_LBRACK2] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2991), + [anon_sym_LT_DASH] = ACTIONS(2991), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2991), + [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(2991), + [sym_none] = ACTIONS(2991), + [sym_true] = ACTIONS(2991), + [sym_false] = ACTIONS(2991), + [sym_nil] = ACTIONS(2991), + [anon_sym_QMARK_DOT] = ACTIONS(2991), + [anon_sym_POUND_LBRACK] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2991), + [anon_sym_DOLLARif] = ACTIONS(2991), + [anon_sym_is] = ACTIONS(2991), + [anon_sym_BANGis] = ACTIONS(2991), + [anon_sym_in] = ACTIONS(2991), + [anon_sym_BANGin] = ACTIONS(2991), + [anon_sym_match] = ACTIONS(2991), + [anon_sym_select] = ACTIONS(2991), + [anon_sym_STAR_EQ] = ACTIONS(2991), + [anon_sym_SLASH_EQ] = ACTIONS(2991), + [anon_sym_PERCENT_EQ] = ACTIONS(2991), + [anon_sym_LT_LT_EQ] = ACTIONS(2991), + [anon_sym_GT_GT_EQ] = ACTIONS(2991), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2991), + [anon_sym_AMP_EQ] = ACTIONS(2991), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2991), + [anon_sym_PLUS_EQ] = ACTIONS(2991), + [anon_sym_DASH_EQ] = ACTIONS(2991), + [anon_sym_PIPE_EQ] = ACTIONS(2991), + [anon_sym_CARET_EQ] = ACTIONS(2991), + [anon_sym_COLON_EQ] = ACTIONS(2991), + [anon_sym_lock] = ACTIONS(2991), + [anon_sym_rlock] = ACTIONS(2991), + [anon_sym_unsafe] = ACTIONS(2991), + [anon_sym_sql] = ACTIONS(2991), + [sym_int_literal] = ACTIONS(2991), + [sym_float_literal] = ACTIONS(2991), + [sym_rune_literal] = ACTIONS(2991), + [sym_pseudo_compile_time_identifier] = ACTIONS(2991), + [anon_sym_shared] = ACTIONS(2991), + [anon_sym_map_LBRACK] = ACTIONS(2991), + [anon_sym_chan] = ACTIONS(2991), + [anon_sym_thread] = ACTIONS(2991), + [anon_sym_atomic] = ACTIONS(2991), + [anon_sym_assert] = ACTIONS(2991), + [anon_sym_defer] = ACTIONS(2991), + [anon_sym_goto] = ACTIONS(2991), + [anon_sym_break] = ACTIONS(2991), + [anon_sym_continue] = ACTIONS(2991), + [anon_sym_return] = ACTIONS(2991), + [anon_sym_DOLLARfor] = ACTIONS(2991), + [anon_sym_for] = ACTIONS(2991), + [anon_sym_POUND] = ACTIONS(2991), + [anon_sym_asm] = ACTIONS(2991), + [anon_sym_AT_LBRACK] = ACTIONS(2991), + [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), }, [481] = { - [sym__expression] = STATE(2856), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [ts_builtin_sym_end] = ACTIONS(2993), + [sym_identifier] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2995), + [anon_sym_CR] = ACTIONS(2995), + [anon_sym_CR_LF] = ACTIONS(2995), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_as] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym___global] = ACTIONS(2995), + [anon_sym_type] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_fn] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_PERCENT] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2995), + [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(2993), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [anon_sym_pub] = ACTIONS(2995), + [anon_sym_mut] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_interface] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_go] = ACTIONS(2995), + [anon_sym_spawn] = ACTIONS(2995), + [anon_sym_json_DOTdecode] = ACTIONS(2995), + [anon_sym_LBRACK2] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_CARET] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2995), + [anon_sym_LT_DASH] = ACTIONS(2995), + [anon_sym_LT_LT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2995), + [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(2995), + [sym_none] = ACTIONS(2995), + [sym_true] = ACTIONS(2995), + [sym_false] = ACTIONS(2995), + [sym_nil] = ACTIONS(2995), + [anon_sym_QMARK_DOT] = ACTIONS(2995), + [anon_sym_POUND_LBRACK] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_DOLLARif] = ACTIONS(2995), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2995), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_BANGin] = ACTIONS(2995), + [anon_sym_match] = ACTIONS(2995), + [anon_sym_select] = 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_lock] = ACTIONS(2995), + [anon_sym_rlock] = ACTIONS(2995), + [anon_sym_unsafe] = ACTIONS(2995), + [anon_sym_sql] = ACTIONS(2995), + [sym_int_literal] = ACTIONS(2995), + [sym_float_literal] = ACTIONS(2995), + [sym_rune_literal] = ACTIONS(2995), + [sym_pseudo_compile_time_identifier] = ACTIONS(2995), + [anon_sym_shared] = ACTIONS(2995), + [anon_sym_map_LBRACK] = ACTIONS(2995), + [anon_sym_chan] = ACTIONS(2995), + [anon_sym_thread] = ACTIONS(2995), + [anon_sym_atomic] = ACTIONS(2995), + [anon_sym_assert] = ACTIONS(2995), + [anon_sym_defer] = ACTIONS(2995), + [anon_sym_goto] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_DOLLARfor] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2995), + [anon_sym_POUND] = ACTIONS(2995), + [anon_sym_asm] = ACTIONS(2995), + [anon_sym_AT_LBRACK] = ACTIONS(2995), + [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), }, [482] = { - [sym__expression] = STATE(2881), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2999), + [anon_sym_LF] = ACTIONS(2999), + [anon_sym_CR] = ACTIONS(2999), + [anon_sym_CR_LF] = ACTIONS(2999), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2999), + [anon_sym_as] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_const] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(2999), + [anon_sym___global] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_PIPE] = ACTIONS(2999), + [anon_sym_fn] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2999), + [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(2997), + [anon_sym_struct] = ACTIONS(2999), + [anon_sym_union] = ACTIONS(2999), + [anon_sym_pub] = ACTIONS(2999), + [anon_sym_mut] = ACTIONS(2999), + [anon_sym_enum] = ACTIONS(2999), + [anon_sym_interface] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_QMARK] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_go] = ACTIONS(2999), + [anon_sym_spawn] = ACTIONS(2999), + [anon_sym_json_DOTdecode] = ACTIONS(2999), + [anon_sym_LBRACK2] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_CARET] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2999), + [anon_sym_LT_DASH] = ACTIONS(2999), + [anon_sym_LT_LT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(2999), + [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(2999), + [sym_none] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_nil] = ACTIONS(2999), + [anon_sym_QMARK_DOT] = ACTIONS(2999), + [anon_sym_POUND_LBRACK] = ACTIONS(2999), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_DOLLARif] = ACTIONS(2999), + [anon_sym_is] = ACTIONS(2999), + [anon_sym_BANGis] = ACTIONS(2999), + [anon_sym_in] = ACTIONS(2999), + [anon_sym_BANGin] = ACTIONS(2999), + [anon_sym_match] = ACTIONS(2999), + [anon_sym_select] = 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_lock] = ACTIONS(2999), + [anon_sym_rlock] = ACTIONS(2999), + [anon_sym_unsafe] = ACTIONS(2999), + [anon_sym_sql] = ACTIONS(2999), + [sym_int_literal] = ACTIONS(2999), + [sym_float_literal] = ACTIONS(2999), + [sym_rune_literal] = ACTIONS(2999), + [sym_pseudo_compile_time_identifier] = ACTIONS(2999), + [anon_sym_shared] = ACTIONS(2999), + [anon_sym_map_LBRACK] = ACTIONS(2999), + [anon_sym_chan] = ACTIONS(2999), + [anon_sym_thread] = ACTIONS(2999), + [anon_sym_atomic] = ACTIONS(2999), + [anon_sym_assert] = ACTIONS(2999), + [anon_sym_defer] = ACTIONS(2999), + [anon_sym_goto] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_DOLLARfor] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_POUND] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(2999), + [anon_sym_AT_LBRACK] = ACTIONS(2999), + [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), }, [483] = { - [sym__expression] = STATE(2866), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(483), + [sym_block_comment] = STATE(483), + [ts_builtin_sym_end] = ACTIONS(3001), + [sym_identifier] = ACTIONS(3003), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_CR] = ACTIONS(3003), + [anon_sym_CR_LF] = ACTIONS(3003), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3003), + [anon_sym_as] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_const] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_EQ] = ACTIONS(3003), + [anon_sym___global] = ACTIONS(3003), + [anon_sym_type] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_fn] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(3003), + [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(3001), + [anon_sym_struct] = ACTIONS(3003), + [anon_sym_union] = ACTIONS(3003), + [anon_sym_pub] = ACTIONS(3003), + [anon_sym_mut] = ACTIONS(3003), + [anon_sym_enum] = ACTIONS(3003), + [anon_sym_interface] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_QMARK] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_go] = ACTIONS(3003), + [anon_sym_spawn] = ACTIONS(3003), + [anon_sym_json_DOTdecode] = ACTIONS(3003), + [anon_sym_LBRACK2] = ACTIONS(3003), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_CARET] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_LT_DASH] = ACTIONS(3003), + [anon_sym_LT_LT] = ACTIONS(3003), + [anon_sym_GT_GT] = ACTIONS(3003), + [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(3003), + [sym_none] = ACTIONS(3003), + [sym_true] = ACTIONS(3003), + [sym_false] = ACTIONS(3003), + [sym_nil] = ACTIONS(3003), + [anon_sym_QMARK_DOT] = ACTIONS(3003), + [anon_sym_POUND_LBRACK] = ACTIONS(3003), + [anon_sym_if] = ACTIONS(3003), + [anon_sym_DOLLARif] = ACTIONS(3003), + [anon_sym_is] = ACTIONS(3003), + [anon_sym_BANGis] = ACTIONS(3003), + [anon_sym_in] = ACTIONS(3003), + [anon_sym_BANGin] = ACTIONS(3003), + [anon_sym_match] = ACTIONS(3003), + [anon_sym_select] = ACTIONS(3003), + [anon_sym_STAR_EQ] = ACTIONS(3003), + [anon_sym_SLASH_EQ] = ACTIONS(3003), + [anon_sym_PERCENT_EQ] = ACTIONS(3003), + [anon_sym_LT_LT_EQ] = ACTIONS(3003), + [anon_sym_GT_GT_EQ] = ACTIONS(3003), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3003), + [anon_sym_AMP_EQ] = ACTIONS(3003), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3003), + [anon_sym_PLUS_EQ] = ACTIONS(3003), + [anon_sym_DASH_EQ] = ACTIONS(3003), + [anon_sym_PIPE_EQ] = ACTIONS(3003), + [anon_sym_CARET_EQ] = ACTIONS(3003), + [anon_sym_COLON_EQ] = ACTIONS(3003), + [anon_sym_lock] = ACTIONS(3003), + [anon_sym_rlock] = ACTIONS(3003), + [anon_sym_unsafe] = ACTIONS(3003), + [anon_sym_sql] = ACTIONS(3003), + [sym_int_literal] = ACTIONS(3003), + [sym_float_literal] = ACTIONS(3003), + [sym_rune_literal] = ACTIONS(3003), + [sym_pseudo_compile_time_identifier] = ACTIONS(3003), + [anon_sym_shared] = ACTIONS(3003), + [anon_sym_map_LBRACK] = ACTIONS(3003), + [anon_sym_chan] = ACTIONS(3003), + [anon_sym_thread] = ACTIONS(3003), + [anon_sym_atomic] = ACTIONS(3003), + [anon_sym_assert] = ACTIONS(3003), + [anon_sym_defer] = ACTIONS(3003), + [anon_sym_goto] = ACTIONS(3003), + [anon_sym_break] = ACTIONS(3003), + [anon_sym_continue] = ACTIONS(3003), + [anon_sym_return] = ACTIONS(3003), + [anon_sym_DOLLARfor] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3003), + [anon_sym_POUND] = ACTIONS(3003), + [anon_sym_asm] = ACTIONS(3003), + [anon_sym_AT_LBRACK] = ACTIONS(3003), + [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), }, [484] = { - [sym__expression] = STATE(295), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_line_comment] = STATE(484), + [sym_block_comment] = STATE(484), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3007), + [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_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), }, [485] = { - [sym__expression] = STATE(2309), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [486] = { - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3017), - [anon_sym_LF] = ACTIONS(3017), - [anon_sym_CR] = ACTIONS(3017), - [anon_sym_CR_LF] = ACTIONS(3017), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3017), - [anon_sym_const] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3017), - [anon_sym___global] = ACTIONS(3017), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [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(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_union] = ACTIONS(3017), - [anon_sym_pub] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_enum] = ACTIONS(3017), - [anon_sym_interface] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_GT_GT] = ACTIONS(3017), - [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(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3017), - [anon_sym_POUND_LBRACK] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3017), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_STAR_EQ] = ACTIONS(3017), - [anon_sym_SLASH_EQ] = ACTIONS(3017), - [anon_sym_PERCENT_EQ] = ACTIONS(3017), - [anon_sym_LT_LT_EQ] = ACTIONS(3017), - [anon_sym_GT_GT_EQ] = ACTIONS(3017), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3017), - [anon_sym_AMP_EQ] = ACTIONS(3017), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3017), - [anon_sym_PLUS_EQ] = ACTIONS(3017), - [anon_sym_DASH_EQ] = ACTIONS(3017), - [anon_sym_PIPE_EQ] = ACTIONS(3017), - [anon_sym_CARET_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3017), - [sym_rune_literal] = ACTIONS(3017), - [sym_pseudo_compile_time_identifier] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3017), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_defer] = ACTIONS(3017), - [anon_sym_goto] = ACTIONS(3017), - [anon_sym_break] = ACTIONS(3017), - [anon_sym_continue] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_DOLLARfor] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_POUND] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3017), - [anon_sym_AT_LBRACK] = ACTIONS(3017), - [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_line_comment] = STATE(486), + [sym_block_comment] = STATE(486), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3011), + [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_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), }, [487] = { - [sym__expression] = STATE(242), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_line_comment] = STATE(487), + [sym_block_comment] = STATE(487), + [sym__expression] = STATE(2342), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4153), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [488] = { - [sym__expression] = STATE(2868), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(488), + [sym_block_comment] = STATE(488), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3015), + [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_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), }, [489] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3654), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(489), + [sym_block_comment] = STATE(489), + [sym__expression] = STATE(2822), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [490] = { - [sym__expression] = STATE(242), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4198), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_line_comment] = STATE(490), + [sym_block_comment] = STATE(490), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2994), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2993), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [491] = { - [sym__expression] = STATE(2473), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(491), + [sym_block_comment] = STATE(491), + [sym__expression] = STATE(2821), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [492] = { - [sym__expression] = STATE(2873), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(492), + [sym_block_comment] = STATE(492), + [sym__expression] = STATE(1654), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, [493] = { - [sym__expression] = STATE(2472), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(493), + [sym_block_comment] = STATE(493), + [sym__expression] = STATE(2342), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [494] = { - [sym__expression] = STATE(1836), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(494), + [sym_block_comment] = STATE(494), + [sym__expression] = STATE(2665), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [495] = { - [sym__expression] = STATE(2859), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(495), + [sym_block_comment] = STATE(495), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4280), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [496] = { - [sym__expression] = STATE(1941), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(496), + [sym_block_comment] = STATE(496), + [sym__expression] = STATE(256), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, [497] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(497), + [sym_block_comment] = STATE(497), + [sym__expression] = STATE(257), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, [498] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(498), + [sym_block_comment] = STATE(498), + [ts_builtin_sym_end] = ACTIONS(3021), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LF] = ACTIONS(3023), + [anon_sym_CR] = ACTIONS(3023), + [anon_sym_CR_LF] = ACTIONS(3023), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3023), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_as] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3023), + [anon_sym_const] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym___global] = ACTIONS(3023), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_fn] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT_EQ] = ACTIONS(3023), + [anon_sym_GT_EQ] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3023), + [anon_sym_union] = ACTIONS(3023), + [anon_sym_pub] = ACTIONS(3023), + [anon_sym_mut] = ACTIONS(3023), + [anon_sym_enum] = ACTIONS(3023), + [anon_sym_interface] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_go] = ACTIONS(3023), + [anon_sym_spawn] = ACTIONS(3023), + [anon_sym_json_DOTdecode] = ACTIONS(3023), + [anon_sym_LBRACK2] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_CARET] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(3023), + [anon_sym_GT_GT_GT] = ACTIONS(3023), + [anon_sym_AMP_CARET] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_or] = ACTIONS(3023), + [sym_none] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_nil] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(3023), + [anon_sym_POUND_LBRACK] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_DOLLARif] = ACTIONS(3023), + [anon_sym_is] = ACTIONS(3023), + [anon_sym_BANGis] = ACTIONS(3023), + [anon_sym_in] = ACTIONS(3023), + [anon_sym_BANGin] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_select] = ACTIONS(3023), + [anon_sym_STAR_EQ] = ACTIONS(3023), + [anon_sym_SLASH_EQ] = ACTIONS(3023), + [anon_sym_PERCENT_EQ] = ACTIONS(3023), + [anon_sym_LT_LT_EQ] = ACTIONS(3023), + [anon_sym_GT_GT_EQ] = ACTIONS(3023), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3023), + [anon_sym_AMP_EQ] = ACTIONS(3023), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3023), + [anon_sym_PLUS_EQ] = ACTIONS(3023), + [anon_sym_DASH_EQ] = ACTIONS(3023), + [anon_sym_PIPE_EQ] = ACTIONS(3023), + [anon_sym_CARET_EQ] = ACTIONS(3023), + [anon_sym_COLON_EQ] = ACTIONS(3023), + [anon_sym_lock] = ACTIONS(3023), + [anon_sym_rlock] = ACTIONS(3023), + [anon_sym_unsafe] = ACTIONS(3023), + [anon_sym_sql] = ACTIONS(3023), + [sym_int_literal] = ACTIONS(3023), + [sym_float_literal] = ACTIONS(3023), + [sym_rune_literal] = ACTIONS(3023), + [sym_pseudo_compile_time_identifier] = ACTIONS(3023), + [anon_sym_shared] = ACTIONS(3023), + [anon_sym_map_LBRACK] = ACTIONS(3023), + [anon_sym_chan] = ACTIONS(3023), + [anon_sym_thread] = ACTIONS(3023), + [anon_sym_atomic] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_defer] = ACTIONS(3023), + [anon_sym_goto] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_DOLLARfor] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_POUND] = ACTIONS(3023), + [anon_sym_asm] = ACTIONS(3023), + [anon_sym_AT_LBRACK] = ACTIONS(3023), + [sym___double_quote] = ACTIONS(3023), + [sym___single_quote] = ACTIONS(3023), + [sym___c_double_quote] = ACTIONS(3023), + [sym___c_single_quote] = ACTIONS(3023), + [sym___r_double_quote] = ACTIONS(3023), + [sym___r_single_quote] = ACTIONS(3023), }, [499] = { - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(499), + [sym_block_comment] = STATE(499), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [500] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3975), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(500), + [sym_block_comment] = STATE(500), + [sym__expression] = STATE(1818), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), }, [501] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3973), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), - }, - [502] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3968), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), - }, - [503] = { - [sym__expression] = STATE(2483), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), - }, - [504] = { - [sym__expression] = STATE(2594), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), - }, - [505] = { - [sym__expression] = STATE(2624), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), - }, - [506] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), - }, - [507] = { - [sym__expression] = STATE(2309), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [508] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3654), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [509] = { - [sym__expression] = STATE(2797), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [510] = { - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4138), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [511] = { - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [512] = { - [sym__expression] = STATE(1145), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [513] = { - [sym__expression] = STATE(2796), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [514] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3661), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [515] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [516] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [517] = { - [sym__expression] = STATE(2321), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), - }, - [518] = { - [sym__expression] = STATE(1287), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [519] = { - [sym__expression] = STATE(2158), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), - }, - [520] = { - [sym__expression] = STATE(1317), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [521] = { - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4153), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [522] = { - [sym__expression] = STATE(1318), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [523] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [524] = { - [sym__expression] = STATE(1297), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [525] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [526] = { - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [527] = { - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2651), - [anon_sym_LF] = ACTIONS(2651), - [anon_sym_CR] = ACTIONS(2651), - [anon_sym_CR_LF] = ACTIONS(2651), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_as] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2651), - [anon_sym___global] = ACTIONS(2651), - [anon_sym_type] = ACTIONS(2651), - [anon_sym_PIPE] = ACTIONS(2651), - [anon_sym_fn] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_SLASH] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2651), - [anon_sym_GT] = ACTIONS(2651), - [anon_sym_EQ_EQ] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2651), - [anon_sym_LT_EQ] = ACTIONS(2651), - [anon_sym_GT_EQ] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_pub] = ACTIONS(2651), - [anon_sym_mut] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_interface] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_go] = ACTIONS(2651), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_CARET] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_LT_LT] = ACTIONS(2651), - [anon_sym_GT_GT] = ACTIONS(2651), - [anon_sym_GT_GT_GT] = ACTIONS(2651), - [anon_sym_AMP_CARET] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_or] = ACTIONS(2651), - [sym_none] = ACTIONS(2651), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_nil] = ACTIONS(2651), - [anon_sym_QMARK_DOT] = ACTIONS(2651), - [anon_sym_POUND_LBRACK] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_DOLLARif] = ACTIONS(2651), - [anon_sym_is] = ACTIONS(2651), - [anon_sym_BANGis] = ACTIONS(2651), - [anon_sym_in] = ACTIONS(2651), - [anon_sym_BANGin] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_select] = ACTIONS(2651), - [anon_sym_STAR_EQ] = ACTIONS(2651), - [anon_sym_SLASH_EQ] = ACTIONS(2651), - [anon_sym_PERCENT_EQ] = ACTIONS(2651), - [anon_sym_LT_LT_EQ] = ACTIONS(2651), - [anon_sym_GT_GT_EQ] = ACTIONS(2651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2651), - [anon_sym_AMP_EQ] = ACTIONS(2651), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2651), - [anon_sym_PLUS_EQ] = ACTIONS(2651), - [anon_sym_DASH_EQ] = ACTIONS(2651), - [anon_sym_PIPE_EQ] = ACTIONS(2651), - [anon_sym_CARET_EQ] = ACTIONS(2651), - [anon_sym_COLON_EQ] = ACTIONS(2651), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(2651), - [anon_sym_sql] = ACTIONS(2651), - [sym_int_literal] = ACTIONS(2651), - [sym_float_literal] = ACTIONS(2651), - [sym_rune_literal] = ACTIONS(2651), - [sym_pseudo_compile_time_identifier] = ACTIONS(2651), - [anon_sym_shared] = ACTIONS(2651), - [anon_sym_map_LBRACK] = ACTIONS(2651), - [anon_sym_chan] = ACTIONS(2651), - [anon_sym_thread] = ACTIONS(2651), - [anon_sym_atomic] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_defer] = ACTIONS(2651), - [anon_sym_goto] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_DOLLARfor] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_POUND] = ACTIONS(2651), - [anon_sym_asm] = ACTIONS(2651), - [anon_sym_AT_LBRACK] = ACTIONS(2651), - [sym___double_quote] = ACTIONS(2651), - [sym___single_quote] = ACTIONS(2651), - [sym___c_double_quote] = ACTIONS(2651), - [sym___c_single_quote] = ACTIONS(2651), - [sym___r_double_quote] = ACTIONS(2651), - [sym___r_single_quote] = ACTIONS(2651), - }, - [528] = { - [sym__expression] = STATE(1135), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [529] = { - [sym__expression] = STATE(1141), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [530] = { - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4153), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [531] = { - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4138), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [532] = { - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [533] = { - [sym__expression] = STATE(2646), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [534] = { - [sym__expression] = STATE(1287), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), - }, - [535] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3654), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [536] = { - [sym__expression] = STATE(1136), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [537] = { - [sym__expression] = STATE(987), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), - }, - [538] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [539] = { - [sym__expression] = STATE(2295), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), - }, - [540] = { + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), [ts_builtin_sym_end] = ACTIONS(3025), [sym_identifier] = ACTIONS(3027), [anon_sym_LF] = ACTIONS(3027), [anon_sym_CR] = ACTIONS(3027), [anon_sym_CR_LF] = ACTIONS(3027), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3027), [anon_sym_DOT] = ACTIONS(3027), [anon_sym_as] = ACTIONS(3027), [anon_sym_LBRACE] = ACTIONS(3027), @@ -88172,7 +82279,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3027), [anon_sym_DASH] = ACTIONS(3027), [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3027), [anon_sym_PERCENT] = ACTIONS(3027), [anon_sym_LT] = ACTIONS(3027), [anon_sym_GT] = ACTIONS(3027), @@ -88264,8940 +82370,7209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3027), [sym___r_single_quote] = ACTIONS(3027), }, - [541] = { - [sym__expression] = STATE(2793), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [542] = { - [sym__expression] = STATE(1002), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), + [502] = { + [sym_line_comment] = STATE(502), + [sym_block_comment] = STATE(502), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3031), + [anon_sym_LF] = ACTIONS(3031), + [anon_sym_CR] = ACTIONS(3031), + [anon_sym_CR_LF] = ACTIONS(3031), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_as] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3031), + [anon_sym___global] = ACTIONS(3031), + [anon_sym_type] = ACTIONS(3031), + [anon_sym_PIPE] = ACTIONS(3031), + [anon_sym_fn] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), - }, - [543] = { - [sym__expression] = STATE(2790), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [544] = { - [sym__expression] = STATE(2787), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [545] = { - [sym__expression] = STATE(2786), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [546] = { - [sym__expression] = STATE(2781), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [547] = { - [sym__expression] = STATE(2302), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [548] = { - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [549] = { - [sym__expression] = STATE(1899), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), - }, - [550] = { - [sym__expression] = STATE(1921), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), - }, - [551] = { - [sym__expression] = STATE(1934), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), - }, - [552] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3661), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [553] = { - [sym__expression] = STATE(298), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), - }, - [554] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [555] = { - [sym__expression] = STATE(1932), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), - }, - [556] = { - [ts_builtin_sym_end] = ACTIONS(3047), - [sym_identifier] = ACTIONS(3049), - [anon_sym_LF] = ACTIONS(3049), - [anon_sym_CR] = ACTIONS(3049), - [anon_sym_CR_LF] = ACTIONS(3049), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym___global] = ACTIONS(3049), - [anon_sym_type] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [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(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_pub] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_interface] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3049), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3049), - [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(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_LT_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_GT_EQ] = ACTIONS(3049), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3049), - [anon_sym_AMP_EQ] = ACTIONS(3049), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3049), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_PIPE_EQ] = ACTIONS(3049), - [anon_sym_CARET_EQ] = ACTIONS(3049), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3049), - [sym_rune_literal] = ACTIONS(3049), - [sym_pseudo_compile_time_identifier] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [anon_sym_assert] = ACTIONS(3049), - [anon_sym_defer] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_DOLLARfor] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_POUND] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym_AT_LBRACK] = ACTIONS(3049), - [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), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3031), + [anon_sym_EQ_EQ] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3031), + [anon_sym_LT_EQ] = ACTIONS(3031), + [anon_sym_GT_EQ] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), + [anon_sym_pub] = ACTIONS(3031), + [anon_sym_mut] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_interface] = ACTIONS(3031), + [anon_sym_PLUS_PLUS] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3031), + [anon_sym_go] = ACTIONS(3031), + [anon_sym_spawn] = ACTIONS(3031), + [anon_sym_json_DOTdecode] = ACTIONS(3031), + [anon_sym_LBRACK2] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_CARET] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_LT_LT] = ACTIONS(3031), + [anon_sym_GT_GT] = ACTIONS(3031), + [anon_sym_GT_GT_GT] = ACTIONS(3031), + [anon_sym_AMP_CARET] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_or] = ACTIONS(3031), + [sym_none] = ACTIONS(3031), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [sym_nil] = ACTIONS(3031), + [anon_sym_QMARK_DOT] = ACTIONS(3031), + [anon_sym_POUND_LBRACK] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_DOLLARif] = ACTIONS(3031), + [anon_sym_is] = ACTIONS(3031), + [anon_sym_BANGis] = ACTIONS(3031), + [anon_sym_in] = ACTIONS(3031), + [anon_sym_BANGin] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_select] = ACTIONS(3031), + [anon_sym_STAR_EQ] = ACTIONS(3031), + [anon_sym_SLASH_EQ] = ACTIONS(3031), + [anon_sym_PERCENT_EQ] = ACTIONS(3031), + [anon_sym_LT_LT_EQ] = ACTIONS(3031), + [anon_sym_GT_GT_EQ] = ACTIONS(3031), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3031), + [anon_sym_AMP_EQ] = ACTIONS(3031), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3031), + [anon_sym_PLUS_EQ] = ACTIONS(3031), + [anon_sym_DASH_EQ] = ACTIONS(3031), + [anon_sym_PIPE_EQ] = ACTIONS(3031), + [anon_sym_CARET_EQ] = ACTIONS(3031), + [anon_sym_COLON_EQ] = ACTIONS(3031), + [anon_sym_lock] = ACTIONS(3031), + [anon_sym_rlock] = ACTIONS(3031), + [anon_sym_unsafe] = ACTIONS(3031), + [anon_sym_sql] = ACTIONS(3031), + [sym_int_literal] = ACTIONS(3031), + [sym_float_literal] = ACTIONS(3031), + [sym_rune_literal] = ACTIONS(3031), + [sym_pseudo_compile_time_identifier] = ACTIONS(3031), + [anon_sym_shared] = ACTIONS(3031), + [anon_sym_map_LBRACK] = ACTIONS(3031), + [anon_sym_chan] = ACTIONS(3031), + [anon_sym_thread] = ACTIONS(3031), + [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_defer] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_DOLLARfor] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_POUND] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), + [anon_sym_AT_LBRACK] = ACTIONS(3031), + [sym___double_quote] = ACTIONS(3031), + [sym___single_quote] = ACTIONS(3031), + [sym___c_double_quote] = ACTIONS(3031), + [sym___c_single_quote] = ACTIONS(3031), + [sym___r_double_quote] = ACTIONS(3031), + [sym___r_single_quote] = ACTIONS(3031), }, - [557] = { - [ts_builtin_sym_end] = ACTIONS(3051), - [sym_identifier] = ACTIONS(3053), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_CR] = ACTIONS(3053), - [anon_sym_CR_LF] = ACTIONS(3053), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_EQ] = ACTIONS(3053), - [anon_sym___global] = ACTIONS(3053), - [anon_sym_type] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [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(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_pub] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_interface] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3053), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3053), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [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(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3053), - [anon_sym_POUND_LBRACK] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3053), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_LT_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_GT_EQ] = ACTIONS(3053), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3053), - [anon_sym_AMP_EQ] = ACTIONS(3053), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3053), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_PIPE_EQ] = ACTIONS(3053), - [anon_sym_CARET_EQ] = ACTIONS(3053), - [anon_sym_COLON_EQ] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3053), - [sym_rune_literal] = ACTIONS(3053), - [sym_pseudo_compile_time_identifier] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3053), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [anon_sym_assert] = ACTIONS(3053), - [anon_sym_defer] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_DOLLARfor] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym_AT_LBRACK] = ACTIONS(3053), - [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), + [503] = { + [sym_line_comment] = STATE(503), + [sym_block_comment] = STATE(503), + [sym__expression] = STATE(987), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [558] = { - [sym__expression] = STATE(1929), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [504] = { + [sym_line_comment] = STATE(504), + [sym_block_comment] = STATE(504), + [sym__expression] = STATE(2731), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [559] = { - [sym__expression] = STATE(1800), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [505] = { + [sym_line_comment] = STATE(505), + [sym_block_comment] = STATE(505), + [sym__expression] = STATE(2699), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [560] = { - [sym__expression] = STATE(1927), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [506] = { + [sym_line_comment] = STATE(506), + [sym_block_comment] = STATE(506), + [sym__expression] = STATE(1007), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [561] = { - [sym__expression] = STATE(2551), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [507] = { + [sym_line_comment] = STATE(507), + [sym_block_comment] = STATE(507), + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [562] = { - [sym__expression] = STATE(2553), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [508] = { + [sym_line_comment] = STATE(508), + [sym_block_comment] = STATE(508), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3025), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3024), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [563] = { - [sym__expression] = STATE(2554), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [509] = { + [sym_line_comment] = STATE(509), + [sym_block_comment] = STATE(509), + [ts_builtin_sym_end] = ACTIONS(3033), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3035), + [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_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(3033), + [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), }, - [564] = { - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [510] = { + [sym_line_comment] = STATE(510), + [sym_block_comment] = STATE(510), + [sym__expression] = STATE(2695), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [565] = { - [ts_builtin_sym_end] = ACTIONS(3055), - [sym_identifier] = ACTIONS(3057), - [anon_sym_LF] = ACTIONS(3057), - [anon_sym_CR] = ACTIONS(3057), - [anon_sym_CR_LF] = ACTIONS(3057), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(3057), - [anon_sym___global] = ACTIONS(3057), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_EQ_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3057), - [anon_sym_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_EQ] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_pub] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_interface] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3057), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3057), - [anon_sym_LT_LT] = ACTIONS(3057), - [anon_sym_GT_GT] = ACTIONS(3057), - [anon_sym_GT_GT_GT] = ACTIONS(3057), - [anon_sym_AMP_CARET] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_PIPE_PIPE] = ACTIONS(3057), - [anon_sym_or] = ACTIONS(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3057), - [anon_sym_POUND_LBRACK] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3057), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_STAR_EQ] = ACTIONS(3057), - [anon_sym_SLASH_EQ] = ACTIONS(3057), - [anon_sym_PERCENT_EQ] = ACTIONS(3057), - [anon_sym_LT_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_GT_EQ] = ACTIONS(3057), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3057), - [anon_sym_AMP_EQ] = ACTIONS(3057), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(3057), - [anon_sym_DASH_EQ] = ACTIONS(3057), - [anon_sym_PIPE_EQ] = ACTIONS(3057), - [anon_sym_CARET_EQ] = ACTIONS(3057), - [anon_sym_COLON_EQ] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3057), - [sym_rune_literal] = ACTIONS(3057), - [sym_pseudo_compile_time_identifier] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3057), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [anon_sym_assert] = ACTIONS(3057), - [anon_sym_defer] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_DOLLARfor] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_POUND] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym_AT_LBRACK] = ACTIONS(3057), - [sym___double_quote] = ACTIONS(3057), - [sym___single_quote] = ACTIONS(3057), - [sym___c_double_quote] = ACTIONS(3057), - [sym___c_single_quote] = ACTIONS(3057), - [sym___r_double_quote] = ACTIONS(3057), - [sym___r_single_quote] = ACTIONS(3057), + [511] = { + [sym_line_comment] = STATE(511), + [sym_block_comment] = STATE(511), + [sym__expression] = STATE(2507), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, - [566] = { - [ts_builtin_sym_end] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3061), - [anon_sym_CR] = ACTIONS(3061), - [anon_sym_CR_LF] = ACTIONS(3061), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_EQ] = ACTIONS(3061), - [anon_sym___global] = ACTIONS(3061), - [anon_sym_type] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_EQ] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_pub] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_interface] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3061), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_CARET] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3061), - [anon_sym_POUND_LBRACK] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3061), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_STAR_EQ] = ACTIONS(3061), - [anon_sym_SLASH_EQ] = ACTIONS(3061), - [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [anon_sym_LT_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_GT_EQ] = ACTIONS(3061), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3061), - [anon_sym_AMP_EQ] = ACTIONS(3061), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3061), - [anon_sym_PLUS_EQ] = ACTIONS(3061), - [anon_sym_DASH_EQ] = ACTIONS(3061), - [anon_sym_PIPE_EQ] = ACTIONS(3061), - [anon_sym_CARET_EQ] = ACTIONS(3061), - [anon_sym_COLON_EQ] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3061), - [sym_rune_literal] = ACTIONS(3061), - [sym_pseudo_compile_time_identifier] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3061), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [anon_sym_assert] = ACTIONS(3061), - [anon_sym_defer] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_DOLLARfor] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_POUND] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym_AT_LBRACK] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3061), - [sym___single_quote] = ACTIONS(3061), - [sym___c_double_quote] = ACTIONS(3061), - [sym___c_single_quote] = ACTIONS(3061), - [sym___r_double_quote] = ACTIONS(3061), - [sym___r_single_quote] = ACTIONS(3061), + [512] = { + [sym_line_comment] = STATE(512), + [sym_block_comment] = STATE(512), + [sym__expression] = STATE(2509), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, - [567] = { - [sym__expression] = STATE(2555), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [513] = { + [sym_line_comment] = STATE(513), + [sym_block_comment] = STATE(513), + [ts_builtin_sym_end] = ACTIONS(3037), + [sym_identifier] = ACTIONS(3039), + [anon_sym_LF] = ACTIONS(3039), + [anon_sym_CR] = ACTIONS(3039), + [anon_sym_CR_LF] = ACTIONS(3039), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3039), + [anon_sym___global] = ACTIONS(3039), + [anon_sym_type] = ACTIONS(3039), + [anon_sym_PIPE] = ACTIONS(3039), + [anon_sym_fn] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3039), + [anon_sym_GT] = ACTIONS(3039), + [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(3037), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_pub] = ACTIONS(3039), + [anon_sym_mut] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_interface] = ACTIONS(3039), + [anon_sym_PLUS_PLUS] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_go] = ACTIONS(3039), + [anon_sym_spawn] = ACTIONS(3039), + [anon_sym_json_DOTdecode] = ACTIONS(3039), + [anon_sym_LBRACK2] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3039), + [anon_sym_CARET] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_LT_LT] = ACTIONS(3039), + [anon_sym_GT_GT] = ACTIONS(3039), + [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(3039), + [sym_none] = ACTIONS(3039), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_nil] = ACTIONS(3039), + [anon_sym_QMARK_DOT] = ACTIONS(3039), + [anon_sym_POUND_LBRACK] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_DOLLARif] = ACTIONS(3039), + [anon_sym_is] = ACTIONS(3039), + [anon_sym_BANGis] = ACTIONS(3039), + [anon_sym_in] = ACTIONS(3039), + [anon_sym_BANGin] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_select] = ACTIONS(3039), + [anon_sym_STAR_EQ] = ACTIONS(3039), + [anon_sym_SLASH_EQ] = ACTIONS(3039), + [anon_sym_PERCENT_EQ] = ACTIONS(3039), + [anon_sym_LT_LT_EQ] = ACTIONS(3039), + [anon_sym_GT_GT_EQ] = ACTIONS(3039), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3039), + [anon_sym_AMP_EQ] = ACTIONS(3039), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3039), + [anon_sym_PLUS_EQ] = ACTIONS(3039), + [anon_sym_DASH_EQ] = ACTIONS(3039), + [anon_sym_PIPE_EQ] = ACTIONS(3039), + [anon_sym_CARET_EQ] = ACTIONS(3039), + [anon_sym_COLON_EQ] = ACTIONS(3039), + [anon_sym_lock] = ACTIONS(3039), + [anon_sym_rlock] = ACTIONS(3039), + [anon_sym_unsafe] = ACTIONS(3039), + [anon_sym_sql] = ACTIONS(3039), + [sym_int_literal] = ACTIONS(3039), + [sym_float_literal] = ACTIONS(3039), + [sym_rune_literal] = ACTIONS(3039), + [sym_pseudo_compile_time_identifier] = ACTIONS(3039), + [anon_sym_shared] = ACTIONS(3039), + [anon_sym_map_LBRACK] = ACTIONS(3039), + [anon_sym_chan] = ACTIONS(3039), + [anon_sym_thread] = ACTIONS(3039), + [anon_sym_atomic] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_defer] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_DOLLARfor] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_POUND] = ACTIONS(3039), + [anon_sym_asm] = ACTIONS(3039), + [anon_sym_AT_LBRACK] = ACTIONS(3039), + [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), }, - [568] = { - [sym__expression] = STATE(2303), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [514] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), + [ts_builtin_sym_end] = ACTIONS(3041), + [sym_identifier] = ACTIONS(3043), + [anon_sym_LF] = ACTIONS(3043), + [anon_sym_CR] = ACTIONS(3043), + [anon_sym_CR_LF] = ACTIONS(3043), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_as] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3043), + [anon_sym___global] = ACTIONS(3043), + [anon_sym_type] = ACTIONS(3043), + [anon_sym_PIPE] = ACTIONS(3043), + [anon_sym_fn] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3043), + [anon_sym_GT] = ACTIONS(3043), + [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(3041), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_pub] = ACTIONS(3043), + [anon_sym_mut] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_interface] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_go] = ACTIONS(3043), + [anon_sym_spawn] = ACTIONS(3043), + [anon_sym_json_DOTdecode] = ACTIONS(3043), + [anon_sym_LBRACK2] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3043), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_LT_LT] = ACTIONS(3043), + [anon_sym_GT_GT] = ACTIONS(3043), + [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(3043), + [sym_none] = ACTIONS(3043), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [sym_nil] = ACTIONS(3043), + [anon_sym_QMARK_DOT] = ACTIONS(3043), + [anon_sym_POUND_LBRACK] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_DOLLARif] = ACTIONS(3043), + [anon_sym_is] = ACTIONS(3043), + [anon_sym_BANGis] = ACTIONS(3043), + [anon_sym_in] = ACTIONS(3043), + [anon_sym_BANGin] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_STAR_EQ] = ACTIONS(3043), + [anon_sym_SLASH_EQ] = ACTIONS(3043), + [anon_sym_PERCENT_EQ] = ACTIONS(3043), + [anon_sym_LT_LT_EQ] = ACTIONS(3043), + [anon_sym_GT_GT_EQ] = ACTIONS(3043), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3043), + [anon_sym_AMP_EQ] = ACTIONS(3043), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3043), + [anon_sym_PLUS_EQ] = ACTIONS(3043), + [anon_sym_DASH_EQ] = ACTIONS(3043), + [anon_sym_PIPE_EQ] = ACTIONS(3043), + [anon_sym_CARET_EQ] = ACTIONS(3043), + [anon_sym_COLON_EQ] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3043), + [anon_sym_rlock] = ACTIONS(3043), + [anon_sym_unsafe] = ACTIONS(3043), + [anon_sym_sql] = ACTIONS(3043), + [sym_int_literal] = ACTIONS(3043), + [sym_float_literal] = ACTIONS(3043), + [sym_rune_literal] = ACTIONS(3043), + [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_shared] = ACTIONS(3043), + [anon_sym_map_LBRACK] = ACTIONS(3043), + [anon_sym_chan] = ACTIONS(3043), + [anon_sym_thread] = ACTIONS(3043), + [anon_sym_atomic] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_defer] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_DOLLARfor] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_POUND] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym_AT_LBRACK] = ACTIONS(3043), + [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), }, - [569] = { - [sym__expression] = STATE(1144), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [515] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), + [sym__expression] = STATE(2514), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, - [570] = { - [sym__expression] = STATE(2556), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [516] = { + [sym_line_comment] = STATE(516), + [sym_block_comment] = STATE(516), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, - [571] = { - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [517] = { + [sym_line_comment] = STATE(517), + [sym_block_comment] = STATE(517), + [ts_builtin_sym_end] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LF] = ACTIONS(3047), + [anon_sym_CR] = ACTIONS(3047), + [anon_sym_CR_LF] = ACTIONS(3047), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3047), + [anon_sym_as] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3047), + [anon_sym_COMMA] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3047), + [anon_sym_EQ] = ACTIONS(3047), + [anon_sym___global] = ACTIONS(3047), + [anon_sym_type] = ACTIONS(3047), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_fn] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_PERCENT] = ACTIONS(3047), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_EQ_EQ] = ACTIONS(3047), + [anon_sym_BANG_EQ] = ACTIONS(3047), + [anon_sym_LT_EQ] = ACTIONS(3047), + [anon_sym_GT_EQ] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3045), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_pub] = ACTIONS(3047), + [anon_sym_mut] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_interface] = ACTIONS(3047), + [anon_sym_PLUS_PLUS] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3047), + [anon_sym_QMARK] = ACTIONS(3047), + [anon_sym_BANG] = ACTIONS(3047), + [anon_sym_go] = ACTIONS(3047), + [anon_sym_spawn] = ACTIONS(3047), + [anon_sym_json_DOTdecode] = ACTIONS(3047), + [anon_sym_LBRACK2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3047), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_LT_DASH] = ACTIONS(3047), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(3047), + [anon_sym_GT_GT_GT] = ACTIONS(3047), + [anon_sym_AMP_CARET] = ACTIONS(3047), + [anon_sym_AMP_AMP] = ACTIONS(3047), + [anon_sym_PIPE_PIPE] = ACTIONS(3047), + [anon_sym_or] = ACTIONS(3047), + [sym_none] = ACTIONS(3047), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [sym_nil] = ACTIONS(3047), + [anon_sym_QMARK_DOT] = ACTIONS(3047), + [anon_sym_POUND_LBRACK] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_DOLLARif] = ACTIONS(3047), + [anon_sym_is] = ACTIONS(3047), + [anon_sym_BANGis] = ACTIONS(3047), + [anon_sym_in] = ACTIONS(3047), + [anon_sym_BANGin] = ACTIONS(3047), + [anon_sym_match] = ACTIONS(3047), + [anon_sym_select] = ACTIONS(3047), + [anon_sym_STAR_EQ] = ACTIONS(3047), + [anon_sym_SLASH_EQ] = ACTIONS(3047), + [anon_sym_PERCENT_EQ] = ACTIONS(3047), + [anon_sym_LT_LT_EQ] = ACTIONS(3047), + [anon_sym_GT_GT_EQ] = ACTIONS(3047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3047), + [anon_sym_AMP_EQ] = ACTIONS(3047), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3047), + [anon_sym_PLUS_EQ] = ACTIONS(3047), + [anon_sym_DASH_EQ] = ACTIONS(3047), + [anon_sym_PIPE_EQ] = ACTIONS(3047), + [anon_sym_CARET_EQ] = ACTIONS(3047), + [anon_sym_COLON_EQ] = ACTIONS(3047), + [anon_sym_lock] = ACTIONS(3047), + [anon_sym_rlock] = ACTIONS(3047), + [anon_sym_unsafe] = ACTIONS(3047), + [anon_sym_sql] = ACTIONS(3047), + [sym_int_literal] = ACTIONS(3047), + [sym_float_literal] = ACTIONS(3047), + [sym_rune_literal] = ACTIONS(3047), + [sym_pseudo_compile_time_identifier] = ACTIONS(3047), + [anon_sym_shared] = ACTIONS(3047), + [anon_sym_map_LBRACK] = ACTIONS(3047), + [anon_sym_chan] = ACTIONS(3047), + [anon_sym_thread] = ACTIONS(3047), + [anon_sym_atomic] = ACTIONS(3047), + [anon_sym_assert] = ACTIONS(3047), + [anon_sym_defer] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_DOLLARfor] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_POUND] = ACTIONS(3047), + [anon_sym_asm] = ACTIONS(3047), + [anon_sym_AT_LBRACK] = ACTIONS(3047), + [sym___double_quote] = ACTIONS(3047), + [sym___single_quote] = ACTIONS(3047), + [sym___c_double_quote] = ACTIONS(3047), + [sym___c_single_quote] = ACTIONS(3047), + [sym___r_double_quote] = ACTIONS(3047), + [sym___r_single_quote] = ACTIONS(3047), }, - [572] = { - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [518] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), + [sym__expression] = STATE(2660), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [573] = { - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [519] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), + [sym__expression] = STATE(1002), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [574] = { - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [520] = { + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), + [sym__expression] = STATE(2836), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [575] = { - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [521] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), + [sym__expression] = STATE(996), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [576] = { - [sym__expression] = STATE(2396), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [522] = { + [sym_line_comment] = STATE(522), + [sym_block_comment] = STATE(522), + [sym__expression] = STATE(997), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [577] = { - [sym__expression] = STATE(2589), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [523] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), + [sym__expression] = STATE(2513), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, - [578] = { - [sym__expression] = STATE(2325), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [524] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2990), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2961), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [579] = { - [sym__expression] = STATE(2591), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [525] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), + [sym__expression] = STATE(2718), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [580] = { - [sym__expression] = STATE(2302), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [526] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), + [sym__expression] = STATE(2510), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, - [581] = { - [sym__expression] = STATE(2271), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [527] = { + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), + [sym__expression] = STATE(2516), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, - [582] = { - [sym__expression] = STATE(2400), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [528] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3051), + [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_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), }, - [583] = { - [sym__expression] = STATE(2403), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [529] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), + [sym__expression] = STATE(2482), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, - [584] = { - [sym__expression] = STATE(2592), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [530] = { + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), + [sym__expression] = STATE(1314), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [585] = { - [sym__expression] = STATE(2279), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [531] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3055), + [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_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), }, - [586] = { - [sym__expression] = STATE(2283), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [532] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), + [sym__expression] = STATE(1318), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2404), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [533] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), + [ts_builtin_sym_end] = ACTIONS(3057), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_CR] = ACTIONS(3059), + [anon_sym_CR_LF] = ACTIONS(3059), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(3059), + [anon_sym_as] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_EQ] = ACTIONS(3059), + [anon_sym___global] = ACTIONS(3059), + [anon_sym_type] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3059), + [anon_sym_fn] = ACTIONS(3059), + [anon_sym_PLUS] = ACTIONS(3059), + [anon_sym_DASH] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_PERCENT] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(3059), + [anon_sym_GT] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [anon_sym_pub] = ACTIONS(3059), + [anon_sym_mut] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_interface] = ACTIONS(3059), + [anon_sym_PLUS_PLUS] = ACTIONS(3059), + [anon_sym_DASH_DASH] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3059), + [anon_sym_BANG] = ACTIONS(3059), + [anon_sym_go] = ACTIONS(3059), + [anon_sym_spawn] = ACTIONS(3059), + [anon_sym_json_DOTdecode] = ACTIONS(3059), + [anon_sym_LBRACK2] = ACTIONS(3059), + [anon_sym_TILDE] = ACTIONS(3059), + [anon_sym_CARET] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_LT_DASH] = ACTIONS(3059), + [anon_sym_LT_LT] = ACTIONS(3059), + [anon_sym_GT_GT] = ACTIONS(3059), + [anon_sym_GT_GT_GT] = ACTIONS(3059), + [anon_sym_AMP_CARET] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_or] = ACTIONS(3059), + [sym_none] = ACTIONS(3059), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [sym_nil] = ACTIONS(3059), + [anon_sym_QMARK_DOT] = ACTIONS(3059), + [anon_sym_POUND_LBRACK] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_DOLLARif] = ACTIONS(3059), + [anon_sym_is] = ACTIONS(3059), + [anon_sym_BANGis] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(3059), + [anon_sym_match] = ACTIONS(3059), + [anon_sym_select] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_LT_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_GT_EQ] = ACTIONS(3059), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3059), + [anon_sym_AMP_EQ] = ACTIONS(3059), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3059), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_PIPE_EQ] = ACTIONS(3059), + [anon_sym_CARET_EQ] = ACTIONS(3059), + [anon_sym_COLON_EQ] = ACTIONS(3059), + [anon_sym_lock] = ACTIONS(3059), + [anon_sym_rlock] = ACTIONS(3059), + [anon_sym_unsafe] = ACTIONS(3059), + [anon_sym_sql] = ACTIONS(3059), + [sym_int_literal] = ACTIONS(3059), + [sym_float_literal] = ACTIONS(3059), + [sym_rune_literal] = ACTIONS(3059), + [sym_pseudo_compile_time_identifier] = ACTIONS(3059), + [anon_sym_shared] = ACTIONS(3059), + [anon_sym_map_LBRACK] = ACTIONS(3059), + [anon_sym_chan] = ACTIONS(3059), + [anon_sym_thread] = ACTIONS(3059), + [anon_sym_atomic] = ACTIONS(3059), + [anon_sym_assert] = ACTIONS(3059), + [anon_sym_defer] = ACTIONS(3059), + [anon_sym_goto] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_DOLLARfor] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3059), + [anon_sym_POUND] = ACTIONS(3059), + [anon_sym_asm] = ACTIONS(3059), + [anon_sym_AT_LBRACK] = ACTIONS(3059), + [sym___double_quote] = ACTIONS(3059), + [sym___single_quote] = ACTIONS(3059), + [sym___c_double_quote] = ACTIONS(3059), + [sym___c_single_quote] = ACTIONS(3059), + [sym___r_double_quote] = ACTIONS(3059), + [sym___r_single_quote] = ACTIONS(3059), }, - [588] = { - [sym__expression] = STATE(2840), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [534] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), + [sym__expression] = STATE(2334), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [589] = { - [ts_builtin_sym_end] = ACTIONS(3081), - [sym_identifier] = ACTIONS(3083), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_CR] = ACTIONS(3083), - [anon_sym_CR_LF] = ACTIONS(3083), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_as] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3083), - [anon_sym___global] = ACTIONS(3083), - [anon_sym_type] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3083), - [anon_sym_fn] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_mut] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_interface] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_BANG] = ACTIONS(3083), - [anon_sym_go] = ACTIONS(3083), - [anon_sym_spawn] = ACTIONS(3083), - [anon_sym_json_DOTdecode] = ACTIONS(3083), - [anon_sym_LBRACK2] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3083), - [anon_sym_GT_GT_GT] = ACTIONS(3083), - [anon_sym_AMP_CARET] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_or] = ACTIONS(3083), - [sym_none] = ACTIONS(3083), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [sym_nil] = ACTIONS(3083), - [anon_sym_QMARK_DOT] = ACTIONS(3083), - [anon_sym_POUND_LBRACK] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_DOLLARif] = ACTIONS(3083), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_BANGis] = ACTIONS(3083), - [anon_sym_in] = ACTIONS(3083), - [anon_sym_BANGin] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_select] = ACTIONS(3083), - [anon_sym_STAR_EQ] = ACTIONS(3083), - [anon_sym_SLASH_EQ] = ACTIONS(3083), - [anon_sym_PERCENT_EQ] = ACTIONS(3083), - [anon_sym_LT_LT_EQ] = ACTIONS(3083), - [anon_sym_GT_GT_EQ] = ACTIONS(3083), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3083), - [anon_sym_AMP_EQ] = ACTIONS(3083), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3083), - [anon_sym_PLUS_EQ] = ACTIONS(3083), - [anon_sym_DASH_EQ] = ACTIONS(3083), - [anon_sym_PIPE_EQ] = ACTIONS(3083), - [anon_sym_CARET_EQ] = ACTIONS(3083), - [anon_sym_COLON_EQ] = ACTIONS(3083), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(3083), - [anon_sym_sql] = ACTIONS(3083), - [sym_int_literal] = ACTIONS(3083), - [sym_float_literal] = ACTIONS(3083), - [sym_rune_literal] = ACTIONS(3083), - [sym_pseudo_compile_time_identifier] = ACTIONS(3083), - [anon_sym_shared] = ACTIONS(3083), - [anon_sym_map_LBRACK] = ACTIONS(3083), - [anon_sym_chan] = ACTIONS(3083), - [anon_sym_thread] = ACTIONS(3083), - [anon_sym_atomic] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_defer] = ACTIONS(3083), - [anon_sym_goto] = ACTIONS(3083), - [anon_sym_break] = ACTIONS(3083), - [anon_sym_continue] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_DOLLARfor] = ACTIONS(3083), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_POUND] = ACTIONS(3083), - [anon_sym_asm] = ACTIONS(3083), - [anon_sym_AT_LBRACK] = ACTIONS(3083), - [sym___double_quote] = ACTIONS(3083), - [sym___single_quote] = ACTIONS(3083), - [sym___c_double_quote] = ACTIONS(3083), - [sym___c_single_quote] = ACTIONS(3083), - [sym___r_double_quote] = ACTIONS(3083), - [sym___r_single_quote] = ACTIONS(3083), + [535] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), + [sym__expression] = STATE(999), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [590] = { - [sym__expression] = STATE(2274), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [536] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), + [sym__expression] = STATE(2872), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [591] = { - [sym__expression] = STATE(2427), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [537] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), + [sym__expression] = STATE(2879), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [592] = { - [sym__expression] = STATE(2294), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [538] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), + [sym__expression] = STATE(1656), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, - [593] = { - [sym__expression] = STATE(2158), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [539] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), + [sym__expression] = STATE(2677), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [594] = { - [sym__expression] = STATE(2292), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [540] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), + [sym__expression] = STATE(2880), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [595] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [541] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), + [sym__expression] = STATE(2802), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [596] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [542] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [543] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), + [sym__expression] = STATE(2179), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4313), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), [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), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [597] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [544] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), + [sym__expression] = STATE(2875), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [598] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(3661), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [545] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), + [sym__expression] = STATE(2873), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [599] = { - [sym__expression] = STATE(2600), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [546] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), + [ts_builtin_sym_end] = ACTIONS(3123), + [sym_identifier] = ACTIONS(3125), + [anon_sym_LF] = ACTIONS(3125), + [anon_sym_CR] = ACTIONS(3125), + [anon_sym_CR_LF] = ACTIONS(3125), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3125), + [anon_sym_as] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_const] = ACTIONS(3125), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym___global] = ACTIONS(3125), + [anon_sym_type] = ACTIONS(3125), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_PERCENT] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_GT] = ACTIONS(3125), + [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(3123), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_union] = ACTIONS(3125), + [anon_sym_pub] = ACTIONS(3125), + [anon_sym_mut] = ACTIONS(3125), + [anon_sym_enum] = ACTIONS(3125), + [anon_sym_interface] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3125), + [anon_sym_DASH_DASH] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_go] = ACTIONS(3125), + [anon_sym_spawn] = ACTIONS(3125), + [anon_sym_json_DOTdecode] = ACTIONS(3125), + [anon_sym_LBRACK2] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_CARET] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT_DASH] = ACTIONS(3125), + [anon_sym_LT_LT] = ACTIONS(3125), + [anon_sym_GT_GT] = ACTIONS(3125), + [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(3125), + [sym_none] = ACTIONS(3125), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [sym_nil] = ACTIONS(3125), + [anon_sym_QMARK_DOT] = ACTIONS(3125), + [anon_sym_POUND_LBRACK] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_DOLLARif] = ACTIONS(3125), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3125), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_BANGin] = ACTIONS(3125), + [anon_sym_match] = ACTIONS(3125), + [anon_sym_select] = ACTIONS(3125), + [anon_sym_STAR_EQ] = ACTIONS(3125), + [anon_sym_SLASH_EQ] = ACTIONS(3125), + [anon_sym_PERCENT_EQ] = ACTIONS(3125), + [anon_sym_LT_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3125), + [anon_sym_AMP_EQ] = ACTIONS(3125), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3125), + [anon_sym_PLUS_EQ] = ACTIONS(3125), + [anon_sym_DASH_EQ] = ACTIONS(3125), + [anon_sym_PIPE_EQ] = ACTIONS(3125), + [anon_sym_CARET_EQ] = ACTIONS(3125), + [anon_sym_COLON_EQ] = ACTIONS(3125), + [anon_sym_lock] = ACTIONS(3125), + [anon_sym_rlock] = ACTIONS(3125), + [anon_sym_unsafe] = ACTIONS(3125), + [anon_sym_sql] = ACTIONS(3125), + [sym_int_literal] = ACTIONS(3125), + [sym_float_literal] = ACTIONS(3125), + [sym_rune_literal] = ACTIONS(3125), + [sym_pseudo_compile_time_identifier] = ACTIONS(3125), + [anon_sym_shared] = ACTIONS(3125), + [anon_sym_map_LBRACK] = ACTIONS(3125), + [anon_sym_chan] = ACTIONS(3125), + [anon_sym_thread] = ACTIONS(3125), + [anon_sym_atomic] = ACTIONS(3125), + [anon_sym_assert] = ACTIONS(3125), + [anon_sym_defer] = ACTIONS(3125), + [anon_sym_goto] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_DOLLARfor] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3125), + [anon_sym_POUND] = ACTIONS(3125), + [anon_sym_asm] = ACTIONS(3125), + [anon_sym_AT_LBRACK] = ACTIONS(3125), + [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), }, - [600] = { - [ts_builtin_sym_end] = ACTIONS(3089), - [sym_identifier] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_CR] = ACTIONS(3091), - [anon_sym_CR_LF] = ACTIONS(3091), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_as] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(3091), - [anon_sym___global] = ACTIONS(3091), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3091), - [anon_sym_fn] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_SLASH] = ACTIONS(3091), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3091), - [anon_sym_GT] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_union] = ACTIONS(3091), - [anon_sym_pub] = ACTIONS(3091), - [anon_sym_mut] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_interface] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_BANG] = ACTIONS(3091), - [anon_sym_go] = ACTIONS(3091), - [anon_sym_spawn] = ACTIONS(3091), - [anon_sym_json_DOTdecode] = ACTIONS(3091), - [anon_sym_LBRACK2] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_LT_LT] = ACTIONS(3091), - [anon_sym_GT_GT] = ACTIONS(3091), - [anon_sym_GT_GT_GT] = ACTIONS(3091), - [anon_sym_AMP_CARET] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_or] = ACTIONS(3091), + [547] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), + [sym__expression] = STATE(2179), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4314), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), [sym_none] = ACTIONS(3091), [sym_true] = ACTIONS(3091), [sym_false] = ACTIONS(3091), [sym_nil] = ACTIONS(3091), - [anon_sym_QMARK_DOT] = ACTIONS(3091), - [anon_sym_POUND_LBRACK] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_DOLLARif] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3091), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_in] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_select] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_LT_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_GT_EQ] = ACTIONS(3091), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3091), - [anon_sym_AMP_EQ] = ACTIONS(3091), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3091), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_PIPE_EQ] = ACTIONS(3091), - [anon_sym_CARET_EQ] = ACTIONS(3091), - [anon_sym_COLON_EQ] = ACTIONS(3091), - [anon_sym_lock] = ACTIONS(3091), - [anon_sym_rlock] = ACTIONS(3091), - [anon_sym_unsafe] = ACTIONS(3091), - [anon_sym_sql] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), [sym_int_literal] = ACTIONS(3091), - [sym_float_literal] = ACTIONS(3091), - [sym_rune_literal] = ACTIONS(3091), - [sym_pseudo_compile_time_identifier] = ACTIONS(3091), - [anon_sym_shared] = ACTIONS(3091), - [anon_sym_map_LBRACK] = ACTIONS(3091), - [anon_sym_chan] = ACTIONS(3091), - [anon_sym_thread] = ACTIONS(3091), - [anon_sym_atomic] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_defer] = ACTIONS(3091), - [anon_sym_goto] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_DOLLARfor] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_asm] = ACTIONS(3091), - [anon_sym_AT_LBRACK] = ACTIONS(3091), - [sym___double_quote] = ACTIONS(3091), - [sym___single_quote] = ACTIONS(3091), - [sym___c_double_quote] = ACTIONS(3091), - [sym___c_single_quote] = ACTIONS(3091), - [sym___r_double_quote] = ACTIONS(3091), - [sym___r_single_quote] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [601] = { - [ts_builtin_sym_end] = ACTIONS(3093), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_CR] = ACTIONS(3095), - [anon_sym_CR_LF] = ACTIONS(3095), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_as] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym___global] = ACTIONS(3095), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_fn] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_SLASH] = ACTIONS(3095), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_union] = ACTIONS(3095), - [anon_sym_pub] = ACTIONS(3095), - [anon_sym_mut] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_interface] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3095), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3095), - [anon_sym_json_DOTdecode] = ACTIONS(3095), - [anon_sym_LBRACK2] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_GT_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_CARET] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3095), - [sym_none] = ACTIONS(3095), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [sym_nil] = ACTIONS(3095), - [anon_sym_QMARK_DOT] = ACTIONS(3095), - [anon_sym_POUND_LBRACK] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), + [548] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), + [sym__expression] = STATE(2179), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4320), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), [anon_sym_DOLLARif] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_BANGis] = ACTIONS(3095), - [anon_sym_in] = ACTIONS(3095), - [anon_sym_BANGin] = ACTIONS(3095), - [anon_sym_match] = ACTIONS(3095), - [anon_sym_select] = ACTIONS(3095), - [anon_sym_STAR_EQ] = ACTIONS(3095), - [anon_sym_SLASH_EQ] = ACTIONS(3095), - [anon_sym_PERCENT_EQ] = ACTIONS(3095), - [anon_sym_LT_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_GT_EQ] = ACTIONS(3095), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3095), - [anon_sym_AMP_EQ] = ACTIONS(3095), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(3095), - [anon_sym_DASH_EQ] = ACTIONS(3095), - [anon_sym_PIPE_EQ] = ACTIONS(3095), - [anon_sym_CARET_EQ] = ACTIONS(3095), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_lock] = ACTIONS(3095), - [anon_sym_rlock] = ACTIONS(3095), - [anon_sym_unsafe] = ACTIONS(3095), - [anon_sym_sql] = ACTIONS(3095), - [sym_int_literal] = ACTIONS(3095), - [sym_float_literal] = ACTIONS(3095), - [sym_rune_literal] = ACTIONS(3095), - [sym_pseudo_compile_time_identifier] = ACTIONS(3095), - [anon_sym_shared] = ACTIONS(3095), - [anon_sym_map_LBRACK] = ACTIONS(3095), - [anon_sym_chan] = ACTIONS(3095), - [anon_sym_thread] = ACTIONS(3095), - [anon_sym_atomic] = ACTIONS(3095), - [anon_sym_assert] = ACTIONS(3095), - [anon_sym_defer] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_DOLLARfor] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_POUND] = ACTIONS(3095), - [anon_sym_asm] = ACTIONS(3095), - [anon_sym_AT_LBRACK] = ACTIONS(3095), - [sym___double_quote] = ACTIONS(3095), - [sym___single_quote] = ACTIONS(3095), - [sym___c_double_quote] = ACTIONS(3095), - [sym___c_single_quote] = ACTIONS(3095), - [sym___r_double_quote] = ACTIONS(3095), - [sym___r_single_quote] = ACTIONS(3095), - }, - [602] = { - [ts_builtin_sym_end] = ACTIONS(3097), - [sym_identifier] = ACTIONS(3099), - [anon_sym_LF] = ACTIONS(3099), - [anon_sym_CR] = ACTIONS(3099), - [anon_sym_CR_LF] = ACTIONS(3099), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_as] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_const] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(3099), - [anon_sym___global] = ACTIONS(3099), - [anon_sym_type] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_fn] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_SLASH] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_union] = ACTIONS(3099), - [anon_sym_pub] = ACTIONS(3099), - [anon_sym_mut] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_interface] = ACTIONS(3099), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(3099), - [anon_sym_go] = ACTIONS(3099), - [anon_sym_spawn] = ACTIONS(3099), - [anon_sym_json_DOTdecode] = ACTIONS(3099), - [anon_sym_LBRACK2] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_GT_GT_GT] = ACTIONS(3099), - [anon_sym_AMP_CARET] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_or] = ACTIONS(3099), - [sym_none] = ACTIONS(3099), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_nil] = ACTIONS(3099), - [anon_sym_QMARK_DOT] = ACTIONS(3099), - [anon_sym_POUND_LBRACK] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_DOLLARif] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_BANGis] = ACTIONS(3099), - [anon_sym_in] = ACTIONS(3099), - [anon_sym_BANGin] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), + [anon_sym_match] = ACTIONS(3097), [anon_sym_select] = ACTIONS(3099), - [anon_sym_STAR_EQ] = ACTIONS(3099), - [anon_sym_SLASH_EQ] = ACTIONS(3099), - [anon_sym_PERCENT_EQ] = ACTIONS(3099), - [anon_sym_LT_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_GT_EQ] = ACTIONS(3099), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3099), - [anon_sym_AMP_EQ] = ACTIONS(3099), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3099), - [anon_sym_PLUS_EQ] = ACTIONS(3099), - [anon_sym_DASH_EQ] = ACTIONS(3099), - [anon_sym_PIPE_EQ] = ACTIONS(3099), - [anon_sym_CARET_EQ] = ACTIONS(3099), - [anon_sym_COLON_EQ] = ACTIONS(3099), - [anon_sym_lock] = ACTIONS(3099), - [anon_sym_rlock] = ACTIONS(3099), - [anon_sym_unsafe] = ACTIONS(3099), - [anon_sym_sql] = ACTIONS(3099), - [sym_int_literal] = ACTIONS(3099), - [sym_float_literal] = ACTIONS(3099), - [sym_rune_literal] = ACTIONS(3099), - [sym_pseudo_compile_time_identifier] = ACTIONS(3099), - [anon_sym_shared] = ACTIONS(3099), - [anon_sym_map_LBRACK] = ACTIONS(3099), - [anon_sym_chan] = ACTIONS(3099), - [anon_sym_thread] = ACTIONS(3099), - [anon_sym_atomic] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_defer] = ACTIONS(3099), - [anon_sym_goto] = ACTIONS(3099), - [anon_sym_break] = ACTIONS(3099), - [anon_sym_continue] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_DOLLARfor] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_POUND] = ACTIONS(3099), - [anon_sym_asm] = ACTIONS(3099), - [anon_sym_AT_LBRACK] = ACTIONS(3099), - [sym___double_quote] = ACTIONS(3099), - [sym___single_quote] = ACTIONS(3099), - [sym___c_double_quote] = ACTIONS(3099), - [sym___c_single_quote] = ACTIONS(3099), - [sym___r_double_quote] = ACTIONS(3099), - [sym___r_single_quote] = ACTIONS(3099), - }, - [603] = { - [sym__expression] = STATE(2601), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [604] = { - [ts_builtin_sym_end] = ACTIONS(3101), - [sym_identifier] = ACTIONS(3103), - [anon_sym_LF] = ACTIONS(3103), - [anon_sym_CR] = ACTIONS(3103), - [anon_sym_CR_LF] = ACTIONS(3103), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym___global] = ACTIONS(3103), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3103), - [anon_sym_EQ_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_union] = ACTIONS(3103), - [anon_sym_pub] = ACTIONS(3103), - [anon_sym_mut] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_interface] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_go] = ACTIONS(3103), - [anon_sym_spawn] = ACTIONS(3103), - [anon_sym_json_DOTdecode] = ACTIONS(3103), - [anon_sym_LBRACK2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LT_DASH] = ACTIONS(3103), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_GT_GT_GT] = ACTIONS(3103), - [anon_sym_AMP_CARET] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3103), - [sym_none] = ACTIONS(3103), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [sym_nil] = ACTIONS(3103), - [anon_sym_QMARK_DOT] = ACTIONS(3103), - [anon_sym_POUND_LBRACK] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_DOLLARif] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_BANGis] = ACTIONS(3103), - [anon_sym_in] = ACTIONS(3103), - [anon_sym_BANGin] = ACTIONS(3103), - [anon_sym_match] = ACTIONS(3103), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_LT_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_GT_EQ] = ACTIONS(3103), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3103), - [anon_sym_AMP_EQ] = ACTIONS(3103), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_PIPE_EQ] = ACTIONS(3103), - [anon_sym_CARET_EQ] = ACTIONS(3103), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3103), - [anon_sym_rlock] = ACTIONS(3103), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), [anon_sym_unsafe] = ACTIONS(3103), - [anon_sym_sql] = ACTIONS(3103), - [sym_int_literal] = ACTIONS(3103), - [sym_float_literal] = ACTIONS(3103), - [sym_rune_literal] = ACTIONS(3103), - [sym_pseudo_compile_time_identifier] = ACTIONS(3103), - [anon_sym_shared] = ACTIONS(3103), - [anon_sym_map_LBRACK] = ACTIONS(3103), - [anon_sym_chan] = ACTIONS(3103), - [anon_sym_thread] = ACTIONS(3103), - [anon_sym_atomic] = ACTIONS(3103), - [anon_sym_assert] = ACTIONS(3103), - [anon_sym_defer] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_DOLLARfor] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_POUND] = ACTIONS(3103), - [anon_sym_asm] = ACTIONS(3103), - [anon_sym_AT_LBRACK] = ACTIONS(3103), - [sym___double_quote] = ACTIONS(3103), - [sym___single_quote] = ACTIONS(3103), - [sym___c_double_quote] = ACTIONS(3103), - [sym___c_single_quote] = ACTIONS(3103), - [sym___r_double_quote] = ACTIONS(3103), - [sym___r_single_quote] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [605] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(3654), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [549] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), + [sym__expression] = STATE(2176), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [606] = { - [sym__expression] = STATE(2309), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [550] = { + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), + [sym__expression] = STATE(2205), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [607] = { - [sym__expression] = STATE(2861), - [sym__expression_without_blocks] = STATE(2928), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2928), - [sym_dec_expression] = STATE(2928), - [sym_or_block_expression] = STATE(2928), - [sym_option_propagation_expression] = STATE(2928), - [sym_result_propagation_expression] = STATE(2928), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2928), - [sym_spawn_expression] = STATE(2928), - [sym_parenthesized_expression] = STATE(2928), - [sym_call_expression] = STATE(2928), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2928), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2928), - [sym_receive_expression] = STATE(2928), - [sym_binary_expression] = STATE(2928), - [sym_as_type_cast_expression] = STATE(2928), - [sym__max_group] = STATE(2928), - [sym_literal] = STATE(2928), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2928), - [sym_fixed_array_creation] = STATE(2928), - [sym_selector_expression] = STATE(2928), - [sym_index_expression] = STATE(2928), - [sym_slice_expression] = STATE(2928), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2928), - [sym_not_is_expression] = STATE(2928), - [sym_in_expression] = STATE(2928), - [sym_not_in_expression] = STATE(2928), - [sym_enum_fetch] = STATE(2928), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [551] = { + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), + [sym__expression] = STATE(2207), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [608] = { - [sym__expression] = STATE(2451), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [552] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), + [sym__expression] = STATE(2179), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [609] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [553] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), + [sym__expression] = STATE(1820), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), }, - [610] = { - [sym__expression] = STATE(2359), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [554] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), + [sym__expression] = STATE(275), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, - [611] = { - [sym__expression] = STATE(2362), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [555] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), + [sym__expression] = STATE(275), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4165), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, - [612] = { - [sym__expression] = STATE(2332), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [556] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), + [sym__expression] = STATE(2340), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [613] = { - [sym__expression] = STATE(2365), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [557] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), + [sym__expression] = STATE(2342), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4199), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [614] = { - [sym__expression] = STATE(2325), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [558] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), + [sym__expression] = STATE(2410), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [615] = { - [sym__expression] = STATE(2367), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [559] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), + [sym__expression] = STATE(2907), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [616] = { - [sym__expression] = STATE(2305), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [560] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), + [sym__expression] = STATE(2416), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [617] = { - [sym__expression] = STATE(2865), - [sym__expression_without_blocks] = STATE(2160), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2160), - [sym_dec_expression] = STATE(2160), - [sym_or_block_expression] = STATE(2160), - [sym_option_propagation_expression] = STATE(2160), - [sym_result_propagation_expression] = STATE(2160), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2160), - [sym_spawn_expression] = STATE(2160), - [sym_parenthesized_expression] = STATE(2160), - [sym_call_expression] = STATE(2160), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2160), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2160), - [sym_receive_expression] = STATE(2160), - [sym_binary_expression] = STATE(2160), - [sym_as_type_cast_expression] = STATE(2160), - [sym__max_group] = STATE(2160), - [sym_literal] = STATE(2160), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2160), - [sym_fixed_array_creation] = STATE(2160), - [sym_selector_expression] = STATE(2160), - [sym_index_expression] = STATE(2160), - [sym_slice_expression] = STATE(2160), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2160), - [sym_not_is_expression] = STATE(2160), - [sym_in_expression] = STATE(2160), - [sym_not_in_expression] = STATE(2160), - [sym_enum_fetch] = STATE(2160), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [561] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), + [sym__expression] = STATE(2342), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [618] = { - [sym__expression] = STATE(2297), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [562] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), + [sym__expression] = STATE(2342), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4153), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [619] = { - [sym__expression] = STATE(1147), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [563] = { + [sym_line_comment] = STATE(563), + [sym_block_comment] = STATE(563), + [sym__expression] = STATE(2342), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [620] = { + [564] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), [ts_builtin_sym_end] = ACTIONS(3127), [sym_identifier] = ACTIONS(3129), [anon_sym_LF] = ACTIONS(3129), [anon_sym_CR] = ACTIONS(3129), [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3129), [anon_sym_DOT] = ACTIONS(3129), [anon_sym_as] = ACTIONS(3129), [anon_sym_LBRACE] = ACTIONS(3129), @@ -97212,7 +89587,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3129), [anon_sym_DASH] = ACTIONS(3129), [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), [anon_sym_PERCENT] = ACTIONS(3129), [anon_sym_LT] = ACTIONS(3129), [anon_sym_GT] = ACTIONS(3129), @@ -97304,239 +89678,481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3129), [sym___r_single_quote] = ACTIONS(3129), }, - [621] = { - [sym__expression] = STATE(2412), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [565] = { + [sym_line_comment] = STATE(565), + [sym_block_comment] = STATE(565), + [sym__expression] = STATE(1156), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), }, - [622] = { - [sym__expression] = STATE(2299), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [566] = { + [sym_line_comment] = STATE(566), + [sym_block_comment] = STATE(566), + [sym__expression] = STATE(982), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [623] = { + [567] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4280), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), + }, + [568] = { + [sym_line_comment] = STATE(568), + [sym_block_comment] = STATE(568), + [sym__expression] = STATE(1000), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), + }, + [569] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), [ts_builtin_sym_end] = ACTIONS(3131), [sym_identifier] = ACTIONS(3133), [anon_sym_LF] = ACTIONS(3133), [anon_sym_CR] = ACTIONS(3133), [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3133), [anon_sym_DOT] = ACTIONS(3133), [anon_sym_as] = ACTIONS(3133), [anon_sym_LBRACE] = ACTIONS(3133), @@ -97551,7 +90167,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3133), [anon_sym_DASH] = ACTIONS(3133), [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), [anon_sym_PERCENT] = ACTIONS(3133), [anon_sym_LT] = ACTIONS(3133), [anon_sym_GT] = ACTIONS(3133), @@ -97643,465 +90258,481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3133), [sym___r_single_quote] = ACTIONS(3133), }, - [624] = { - [sym__expression] = STATE(2300), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [570] = { + [sym_line_comment] = STATE(570), + [sym_block_comment] = STATE(570), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [625] = { - [sym__expression] = STATE(241), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [571] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), + [sym__expression] = STATE(1953), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, - [626] = { - [sym__expression] = STATE(986), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [572] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), + [sym__expression] = STATE(1005), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [627] = { - [sym__expression] = STATE(1647), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), + [573] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), + [ts_builtin_sym_end] = ACTIONS(3135), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LF] = ACTIONS(3137), + [anon_sym_CR] = ACTIONS(3137), + [anon_sym_CR_LF] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_as] = ACTIONS(3137), [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym___global] = ACTIONS(3137), + [anon_sym_type] = ACTIONS(3137), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_fn] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3137), + [anon_sym_PERCENT] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3137), + [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(3135), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_union] = ACTIONS(3137), + [anon_sym_pub] = ACTIONS(3137), + [anon_sym_mut] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_go] = ACTIONS(3137), + [anon_sym_spawn] = ACTIONS(3137), + [anon_sym_json_DOTdecode] = ACTIONS(3137), + [anon_sym_LBRACK2] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_CARET] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_LT_DASH] = ACTIONS(3137), + [anon_sym_LT_LT] = ACTIONS(3137), + [anon_sym_GT_GT] = ACTIONS(3137), + [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(3137), + [sym_none] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_nil] = ACTIONS(3137), + [anon_sym_QMARK_DOT] = ACTIONS(3137), + [anon_sym_POUND_LBRACK] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_DOLLARif] = ACTIONS(3137), + [anon_sym_is] = ACTIONS(3137), + [anon_sym_BANGis] = ACTIONS(3137), + [anon_sym_in] = ACTIONS(3137), + [anon_sym_BANGin] = ACTIONS(3137), + [anon_sym_match] = ACTIONS(3137), + [anon_sym_select] = ACTIONS(3137), + [anon_sym_STAR_EQ] = ACTIONS(3137), + [anon_sym_SLASH_EQ] = ACTIONS(3137), + [anon_sym_PERCENT_EQ] = ACTIONS(3137), + [anon_sym_LT_LT_EQ] = ACTIONS(3137), + [anon_sym_GT_GT_EQ] = ACTIONS(3137), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3137), + [anon_sym_AMP_EQ] = ACTIONS(3137), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3137), + [anon_sym_PLUS_EQ] = ACTIONS(3137), + [anon_sym_DASH_EQ] = ACTIONS(3137), + [anon_sym_PIPE_EQ] = ACTIONS(3137), + [anon_sym_CARET_EQ] = ACTIONS(3137), + [anon_sym_COLON_EQ] = ACTIONS(3137), + [anon_sym_lock] = ACTIONS(3137), + [anon_sym_rlock] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(3137), + [anon_sym_sql] = ACTIONS(3137), + [sym_int_literal] = ACTIONS(3137), + [sym_float_literal] = ACTIONS(3137), + [sym_rune_literal] = ACTIONS(3137), + [sym_pseudo_compile_time_identifier] = ACTIONS(3137), + [anon_sym_shared] = ACTIONS(3137), + [anon_sym_map_LBRACK] = ACTIONS(3137), + [anon_sym_chan] = ACTIONS(3137), + [anon_sym_thread] = ACTIONS(3137), + [anon_sym_atomic] = ACTIONS(3137), + [anon_sym_assert] = ACTIONS(3137), + [anon_sym_defer] = ACTIONS(3137), + [anon_sym_goto] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_DOLLARfor] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_POUND] = ACTIONS(3137), + [anon_sym_asm] = ACTIONS(3137), + [anon_sym_AT_LBRACK] = ACTIONS(3137), + [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), }, - [628] = { + [574] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), [ts_builtin_sym_end] = ACTIONS(3139), [sym_identifier] = ACTIONS(3141), [anon_sym_LF] = ACTIONS(3141), [anon_sym_CR] = ACTIONS(3141), [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3141), [anon_sym_DOT] = ACTIONS(3141), [anon_sym_as] = ACTIONS(3141), [anon_sym_LBRACE] = ACTIONS(3141), @@ -98116,7 +90747,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), [anon_sym_PERCENT] = ACTIONS(3141), [anon_sym_LT] = ACTIONS(3141), [anon_sym_GT] = ACTIONS(3141), @@ -98208,239 +90838,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3141), [sym___r_single_quote] = ACTIONS(3141), }, - [629] = { - [sym__expression] = STATE(1003), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [575] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4255), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [630] = { - [sym__expression] = STATE(1142), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [576] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4236), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [631] = { + [577] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), [ts_builtin_sym_end] = ACTIONS(3143), [sym_identifier] = ACTIONS(3145), [anon_sym_LF] = ACTIONS(3145), [anon_sym_CR] = ACTIONS(3145), [anon_sym_CR_LF] = ACTIONS(3145), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3145), [anon_sym_DOT] = ACTIONS(3145), [anon_sym_as] = ACTIONS(3145), [anon_sym_LBRACE] = ACTIONS(3145), @@ -98455,7 +91095,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3145), [anon_sym_DASH] = ACTIONS(3145), [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), [anon_sym_PERCENT] = ACTIONS(3145), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3145), @@ -98547,4985 +91186,6977 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3145), [sym___r_single_quote] = ACTIONS(3145), }, - [632] = { - [sym__expression] = STATE(1140), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [578] = { + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, - [633] = { - [sym__expression] = STATE(1641), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [579] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), + [sym__expression] = STATE(2345), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [634] = { - [sym__expression] = STATE(1139), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [580] = { + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), + [sym__expression] = STATE(2360), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [635] = { - [sym__expression] = STATE(1004), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [581] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), + [ts_builtin_sym_end] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3149), + [anon_sym_LF] = ACTIONS(3149), + [anon_sym_CR] = ACTIONS(3149), + [anon_sym_CR_LF] = ACTIONS(3149), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(2835), + [anon_sym_as] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym___global] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_fn] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_PERCENT] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_GT] = ACTIONS(3149), + [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(3147), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_pub] = ACTIONS(3149), + [anon_sym_mut] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_QMARK] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_go] = ACTIONS(3149), + [anon_sym_spawn] = ACTIONS(3149), + [anon_sym_json_DOTdecode] = ACTIONS(3149), + [anon_sym_LBRACK2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_LT_DASH] = ACTIONS(3149), + [anon_sym_LT_LT] = ACTIONS(3149), + [anon_sym_GT_GT] = ACTIONS(3149), + [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(3149), + [sym_none] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_nil] = ACTIONS(3149), + [anon_sym_QMARK_DOT] = ACTIONS(3149), + [anon_sym_POUND_LBRACK] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_DOLLARif] = ACTIONS(3149), + [anon_sym_is] = ACTIONS(3149), + [anon_sym_BANGis] = ACTIONS(3149), + [anon_sym_in] = ACTIONS(3149), + [anon_sym_BANGin] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_STAR_EQ] = ACTIONS(3149), + [anon_sym_SLASH_EQ] = ACTIONS(3149), + [anon_sym_PERCENT_EQ] = ACTIONS(3149), + [anon_sym_LT_LT_EQ] = ACTIONS(3149), + [anon_sym_GT_GT_EQ] = ACTIONS(3149), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3149), + [anon_sym_AMP_EQ] = ACTIONS(3149), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3149), + [anon_sym_PLUS_EQ] = ACTIONS(3149), + [anon_sym_DASH_EQ] = ACTIONS(3149), + [anon_sym_PIPE_EQ] = ACTIONS(3149), + [anon_sym_CARET_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_rlock] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_sql] = ACTIONS(3149), + [sym_int_literal] = ACTIONS(3149), + [sym_float_literal] = ACTIONS(3149), + [sym_rune_literal] = ACTIONS(3149), + [sym_pseudo_compile_time_identifier] = ACTIONS(3149), + [anon_sym_shared] = ACTIONS(3149), + [anon_sym_map_LBRACK] = ACTIONS(3149), + [anon_sym_chan] = ACTIONS(3149), + [anon_sym_thread] = ACTIONS(3149), + [anon_sym_atomic] = ACTIONS(3149), + [anon_sym_assert] = ACTIONS(3149), + [anon_sym_defer] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_DOLLARfor] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_POUND] = ACTIONS(3149), + [anon_sym_asm] = ACTIONS(3149), + [anon_sym_AT_LBRACK] = ACTIONS(3149), + [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), }, - [636] = { - [sym__expression] = STATE(1005), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [582] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), + [ts_builtin_sym_end] = ACTIONS(3151), + [sym_identifier] = ACTIONS(3153), + [anon_sym_LF] = ACTIONS(3153), + [anon_sym_CR] = ACTIONS(3153), + [anon_sym_CR_LF] = ACTIONS(3153), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3153), + [anon_sym_as] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3153), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym___global] = ACTIONS(3153), + [anon_sym_type] = ACTIONS(3153), + [anon_sym_PIPE] = ACTIONS(3153), + [anon_sym_fn] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_PERCENT] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_GT] = ACTIONS(3153), + [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(3151), + [anon_sym_struct] = ACTIONS(3153), + [anon_sym_union] = ACTIONS(3153), + [anon_sym_pub] = ACTIONS(3153), + [anon_sym_mut] = ACTIONS(3153), + [anon_sym_enum] = ACTIONS(3153), + [anon_sym_interface] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_go] = ACTIONS(3153), + [anon_sym_spawn] = ACTIONS(3153), + [anon_sym_json_DOTdecode] = ACTIONS(3153), + [anon_sym_LBRACK2] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_CARET] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3153), + [anon_sym_LT_DASH] = ACTIONS(3153), + [anon_sym_LT_LT] = ACTIONS(3153), + [anon_sym_GT_GT] = ACTIONS(3153), + [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(3153), + [sym_none] = ACTIONS(3153), + [sym_true] = ACTIONS(3153), + [sym_false] = ACTIONS(3153), + [sym_nil] = ACTIONS(3153), + [anon_sym_QMARK_DOT] = ACTIONS(3153), + [anon_sym_POUND_LBRACK] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3153), + [anon_sym_is] = ACTIONS(3153), + [anon_sym_BANGis] = ACTIONS(3153), + [anon_sym_in] = ACTIONS(3153), + [anon_sym_BANGin] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(3153), + [anon_sym_select] = ACTIONS(3153), + [anon_sym_STAR_EQ] = ACTIONS(3153), + [anon_sym_SLASH_EQ] = ACTIONS(3153), + [anon_sym_PERCENT_EQ] = ACTIONS(3153), + [anon_sym_LT_LT_EQ] = ACTIONS(3153), + [anon_sym_GT_GT_EQ] = ACTIONS(3153), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3153), + [anon_sym_AMP_EQ] = ACTIONS(3153), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3153), + [anon_sym_PLUS_EQ] = ACTIONS(3153), + [anon_sym_DASH_EQ] = ACTIONS(3153), + [anon_sym_PIPE_EQ] = ACTIONS(3153), + [anon_sym_CARET_EQ] = ACTIONS(3153), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_lock] = ACTIONS(3153), + [anon_sym_rlock] = ACTIONS(3153), + [anon_sym_unsafe] = ACTIONS(3153), + [anon_sym_sql] = ACTIONS(3153), + [sym_int_literal] = ACTIONS(3153), + [sym_float_literal] = ACTIONS(3153), + [sym_rune_literal] = ACTIONS(3153), + [sym_pseudo_compile_time_identifier] = ACTIONS(3153), + [anon_sym_shared] = ACTIONS(3153), + [anon_sym_map_LBRACK] = ACTIONS(3153), + [anon_sym_chan] = ACTIONS(3153), + [anon_sym_thread] = ACTIONS(3153), + [anon_sym_atomic] = ACTIONS(3153), + [anon_sym_assert] = ACTIONS(3153), + [anon_sym_defer] = ACTIONS(3153), + [anon_sym_goto] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_DOLLARfor] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_POUND] = ACTIONS(3153), + [anon_sym_asm] = ACTIONS(3153), + [anon_sym_AT_LBRACK] = ACTIONS(3153), + [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), }, - [637] = { - [sym__expression] = STATE(993), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [583] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), + [ts_builtin_sym_end] = ACTIONS(3155), + [sym_identifier] = ACTIONS(3157), + [anon_sym_LF] = ACTIONS(3157), + [anon_sym_CR] = ACTIONS(3157), + [anon_sym_CR_LF] = ACTIONS(3157), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3157), + [anon_sym_as] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym___global] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_PIPE] = ACTIONS(3157), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_PERCENT] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_GT] = ACTIONS(3157), + [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(3155), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_union] = ACTIONS(3157), + [anon_sym_pub] = ACTIONS(3157), + [anon_sym_mut] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_go] = ACTIONS(3157), + [anon_sym_spawn] = ACTIONS(3157), + [anon_sym_json_DOTdecode] = ACTIONS(3157), + [anon_sym_LBRACK2] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_CARET] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_LT_DASH] = ACTIONS(3157), + [anon_sym_LT_LT] = ACTIONS(3157), + [anon_sym_GT_GT] = ACTIONS(3157), + [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(3157), + [sym_none] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_nil] = ACTIONS(3157), + [anon_sym_QMARK_DOT] = ACTIONS(3157), + [anon_sym_POUND_LBRACK] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_DOLLARif] = ACTIONS(3157), + [anon_sym_is] = ACTIONS(3157), + [anon_sym_BANGis] = ACTIONS(3157), + [anon_sym_in] = ACTIONS(3157), + [anon_sym_BANGin] = ACTIONS(3157), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3157), + [anon_sym_STAR_EQ] = ACTIONS(3157), + [anon_sym_SLASH_EQ] = ACTIONS(3157), + [anon_sym_PERCENT_EQ] = ACTIONS(3157), + [anon_sym_LT_LT_EQ] = ACTIONS(3157), + [anon_sym_GT_GT_EQ] = ACTIONS(3157), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3157), + [anon_sym_AMP_EQ] = ACTIONS(3157), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3157), + [anon_sym_PLUS_EQ] = ACTIONS(3157), + [anon_sym_DASH_EQ] = ACTIONS(3157), + [anon_sym_PIPE_EQ] = ACTIONS(3157), + [anon_sym_CARET_EQ] = ACTIONS(3157), + [anon_sym_COLON_EQ] = ACTIONS(3157), + [anon_sym_lock] = ACTIONS(3157), + [anon_sym_rlock] = ACTIONS(3157), + [anon_sym_unsafe] = ACTIONS(3157), + [anon_sym_sql] = ACTIONS(3157), + [sym_int_literal] = ACTIONS(3157), + [sym_float_literal] = ACTIONS(3157), + [sym_rune_literal] = ACTIONS(3157), + [sym_pseudo_compile_time_identifier] = ACTIONS(3157), + [anon_sym_shared] = ACTIONS(3157), + [anon_sym_map_LBRACK] = ACTIONS(3157), + [anon_sym_chan] = ACTIONS(3157), + [anon_sym_thread] = ACTIONS(3157), + [anon_sym_atomic] = ACTIONS(3157), + [anon_sym_assert] = ACTIONS(3157), + [anon_sym_defer] = ACTIONS(3157), + [anon_sym_goto] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_DOLLARfor] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_POUND] = ACTIONS(3157), + [anon_sym_asm] = ACTIONS(3157), + [anon_sym_AT_LBRACK] = ACTIONS(3157), + [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), }, - [638] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3661), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [584] = { + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), + [sym__expression] = STATE(2358), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [639] = { - [sym__expression] = STATE(1001), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [585] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), + [sym__expression] = STATE(2325), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [640] = { - [sym__expression] = STATE(979), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [586] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), + [sym__expression] = STATE(2722), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [641] = { - [sym__expression] = STATE(1000), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [587] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), + [sym__expression] = STATE(2651), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [642] = { - [sym__expression] = STATE(2463), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [588] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), + [sym__expression] = STATE(2889), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [643] = { - [sym__expression] = STATE(1651), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [589] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), + [sym__expression] = STATE(2353), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [644] = { - [sym__expression] = STATE(1657), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), + [590] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), + [sym__expression] = STATE(2357), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [645] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [591] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3179), + [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_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), }, - [646] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [592] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2969), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2970), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [647] = { - [sym__expression] = STATE(1795), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4284), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [593] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_as] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_COMMA] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_EQ] = ACTIONS(3183), + [anon_sym___global] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_PIPE] = ACTIONS(3183), + [anon_sym_fn] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_PERCENT] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT_EQ] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3181), + [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(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_go] = ACTIONS(3183), + [anon_sym_spawn] = ACTIONS(3183), + [anon_sym_json_DOTdecode] = ACTIONS(3183), + [anon_sym_LBRACK2] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_LT_DASH] = ACTIONS(3183), + [anon_sym_LT_LT] = ACTIONS(3183), + [anon_sym_GT_GT] = ACTIONS(3183), + [anon_sym_GT_GT_GT] = ACTIONS(3183), + [anon_sym_AMP_CARET] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_PIPE_PIPE] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [sym_none] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_nil] = ACTIONS(3183), + [anon_sym_QMARK_DOT] = ACTIONS(3183), + [anon_sym_POUND_LBRACK] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_DOLLARif] = ACTIONS(3183), + [anon_sym_is] = ACTIONS(3183), + [anon_sym_BANGis] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_BANGin] = ACTIONS(3183), + [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), }, - [648] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2999), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(3000), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [594] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), + [sym__expression] = STATE(2321), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [649] = { - [sym__expression] = STATE(1790), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [595] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(3678), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [650] = { - [sym__expression] = STATE(2867), - [sym__expression_without_blocks] = STATE(2976), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2976), - [sym_dec_expression] = STATE(2976), - [sym_or_block_expression] = STATE(2976), - [sym_option_propagation_expression] = STATE(2976), - [sym_result_propagation_expression] = STATE(2976), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2976), - [sym_spawn_expression] = STATE(2976), - [sym_parenthesized_expression] = STATE(2976), - [sym_call_expression] = STATE(2976), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2976), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2976), - [sym_receive_expression] = STATE(2976), - [sym_binary_expression] = STATE(2976), - [sym_as_type_cast_expression] = STATE(2976), - [sym__max_group] = STATE(2976), - [sym_literal] = STATE(2976), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2976), - [sym_fixed_array_creation] = STATE(2976), - [sym_selector_expression] = STATE(2976), - [sym_index_expression] = STATE(2976), - [sym_slice_expression] = STATE(2976), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2976), - [sym_not_is_expression] = STATE(2976), - [sym_in_expression] = STATE(2976), - [sym_not_in_expression] = STATE(2976), - [sym_enum_fetch] = STATE(2976), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(3169), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [596] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [sym__expression] = STATE(1144), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), }, - [651] = { - [sym__expression] = STATE(1795), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4282), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [597] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [sym__expression] = STATE(1148), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), }, - [652] = { - [ts_builtin_sym_end] = ACTIONS(3171), - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym___global] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [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(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_pub] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [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(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_STAR_EQ] = ACTIONS(3173), - [anon_sym_SLASH_EQ] = ACTIONS(3173), - [anon_sym_PERCENT_EQ] = ACTIONS(3173), - [anon_sym_LT_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_GT_EQ] = ACTIONS(3173), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3173), - [anon_sym_AMP_EQ] = ACTIONS(3173), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3173), - [anon_sym_PLUS_EQ] = ACTIONS(3173), - [anon_sym_DASH_EQ] = ACTIONS(3173), - [anon_sym_PIPE_EQ] = ACTIONS(3173), - [anon_sym_CARET_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [sym_pseudo_compile_time_identifier] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_defer] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_DOLLARfor] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_asm] = ACTIONS(3173), - [anon_sym_AT_LBRACK] = ACTIONS(3173), - [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), + [598] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [653] = { - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3177), - [anon_sym___global] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [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(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_pub] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3177), - [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(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_STAR_EQ] = ACTIONS(3177), - [anon_sym_SLASH_EQ] = ACTIONS(3177), - [anon_sym_PERCENT_EQ] = ACTIONS(3177), - [anon_sym_LT_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_GT_EQ] = ACTIONS(3177), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3177), - [anon_sym_AMP_EQ] = ACTIONS(3177), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3177), - [anon_sym_PLUS_EQ] = ACTIONS(3177), - [anon_sym_DASH_EQ] = ACTIONS(3177), - [anon_sym_PIPE_EQ] = ACTIONS(3177), - [anon_sym_CARET_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [sym_pseudo_compile_time_identifier] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_defer] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_DOLLARfor] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym_AT_LBRACK] = ACTIONS(3177), - [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), + [599] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), }, - [654] = { - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3181), - [anon_sym_LF] = ACTIONS(3181), - [anon_sym_CR] = ACTIONS(3181), - [anon_sym_CR_LF] = ACTIONS(3181), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_const] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym___global] = ACTIONS(3181), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_EQ_EQ] = ACTIONS(3181), - [anon_sym_BANG_EQ] = ACTIONS(3181), - [anon_sym_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_EQ] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_union] = ACTIONS(3181), - [anon_sym_pub] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_enum] = ACTIONS(3181), - [anon_sym_interface] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(3181), - [anon_sym_GT_GT] = ACTIONS(3181), - [anon_sym_GT_GT_GT] = ACTIONS(3181), - [anon_sym_AMP_CARET] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3181), - [anon_sym_POUND_LBRACK] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_STAR_EQ] = ACTIONS(3181), - [anon_sym_SLASH_EQ] = ACTIONS(3181), - [anon_sym_PERCENT_EQ] = ACTIONS(3181), - [anon_sym_LT_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_GT_EQ] = ACTIONS(3181), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3181), - [anon_sym_AMP_EQ] = ACTIONS(3181), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3181), - [anon_sym_PLUS_EQ] = ACTIONS(3181), - [anon_sym_DASH_EQ] = ACTIONS(3181), - [anon_sym_PIPE_EQ] = ACTIONS(3181), - [anon_sym_CARET_EQ] = ACTIONS(3181), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [sym_pseudo_compile_time_identifier] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [anon_sym_assert] = ACTIONS(3181), - [anon_sym_defer] = ACTIONS(3181), - [anon_sym_goto] = ACTIONS(3181), - [anon_sym_break] = ACTIONS(3181), - [anon_sym_continue] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3181), - [anon_sym_DOLLARfor] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_asm] = ACTIONS(3181), - [anon_sym_AT_LBRACK] = ACTIONS(3181), - [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), + [600] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), + [sym__expression] = STATE(1821), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), }, - [655] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [601] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4225), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [656] = { - [ts_builtin_sym_end] = ACTIONS(3183), - [sym_identifier] = ACTIONS(3185), - [anon_sym_LF] = ACTIONS(3185), - [anon_sym_CR] = ACTIONS(3185), - [anon_sym_CR_LF] = ACTIONS(3185), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3185), - [anon_sym___global] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [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(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_union] = ACTIONS(3185), - [anon_sym_pub] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3185), - [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(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_STAR_EQ] = ACTIONS(3185), - [anon_sym_SLASH_EQ] = ACTIONS(3185), - [anon_sym_PERCENT_EQ] = ACTIONS(3185), - [anon_sym_LT_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_GT_EQ] = ACTIONS(3185), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3185), - [anon_sym_AMP_EQ] = ACTIONS(3185), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3185), - [anon_sym_PLUS_EQ] = ACTIONS(3185), - [anon_sym_DASH_EQ] = ACTIONS(3185), - [anon_sym_PIPE_EQ] = ACTIONS(3185), - [anon_sym_CARET_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [sym_pseudo_compile_time_identifier] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_defer] = ACTIONS(3185), - [anon_sym_goto] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_DOLLARfor] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_asm] = ACTIONS(3185), - [anon_sym_AT_LBRACK] = ACTIONS(3185), - [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), + [602] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), + [sym__expression] = STATE(1139), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), + }, + [603] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), + [sym__expression] = STATE(2640), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [604] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), + [sym__expression] = STATE(2908), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [605] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [606] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3187), + [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_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), + }, + [607] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), + [sym__expression] = STATE(2639), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [608] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4216), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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_block_comment] = STATE(609), + [sym__expression] = STATE(2626), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [610] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), + [sym__expression] = STATE(2625), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [611] = { + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), + [sym__expression] = STATE(2599), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [612] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), + [sym__expression] = STATE(2598), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [613] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), + [ts_builtin_sym_end] = ACTIONS(3189), + [sym_identifier] = ACTIONS(3191), + [anon_sym_LF] = ACTIONS(3191), + [anon_sym_CR] = ACTIONS(3191), + [anon_sym_CR_LF] = ACTIONS(3191), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_as] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_COMMA] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_EQ] = ACTIONS(3191), + [anon_sym___global] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_PIPE] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_PERCENT] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3191), + [anon_sym_BANG_EQ] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_pub] = ACTIONS(3191), + [anon_sym_mut] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_go] = ACTIONS(3191), + [anon_sym_spawn] = ACTIONS(3191), + [anon_sym_json_DOTdecode] = ACTIONS(3191), + [anon_sym_LBRACK2] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_LT_DASH] = ACTIONS(3191), + [anon_sym_LT_LT] = ACTIONS(3191), + [anon_sym_GT_GT] = ACTIONS(3191), + [anon_sym_GT_GT_GT] = ACTIONS(3191), + [anon_sym_AMP_CARET] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_PIPE_PIPE] = ACTIONS(3191), + [anon_sym_or] = ACTIONS(3191), + [sym_none] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_nil] = ACTIONS(3191), + [anon_sym_QMARK_DOT] = ACTIONS(3191), + [anon_sym_POUND_LBRACK] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_DOLLARif] = ACTIONS(3191), + [anon_sym_is] = ACTIONS(3191), + [anon_sym_BANGis] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_BANGin] = ACTIONS(3191), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_select] = ACTIONS(3191), + [anon_sym_STAR_EQ] = ACTIONS(3191), + [anon_sym_SLASH_EQ] = ACTIONS(3191), + [anon_sym_PERCENT_EQ] = ACTIONS(3191), + [anon_sym_LT_LT_EQ] = ACTIONS(3191), + [anon_sym_GT_GT_EQ] = ACTIONS(3191), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3191), + [anon_sym_AMP_EQ] = ACTIONS(3191), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3191), + [anon_sym_PLUS_EQ] = ACTIONS(3191), + [anon_sym_DASH_EQ] = ACTIONS(3191), + [anon_sym_PIPE_EQ] = ACTIONS(3191), + [anon_sym_CARET_EQ] = ACTIONS(3191), + [anon_sym_COLON_EQ] = ACTIONS(3191), + [anon_sym_lock] = ACTIONS(3191), + [anon_sym_rlock] = ACTIONS(3191), + [anon_sym_unsafe] = ACTIONS(3191), + [anon_sym_sql] = ACTIONS(3191), + [sym_int_literal] = ACTIONS(3191), + [sym_float_literal] = ACTIONS(3191), + [sym_rune_literal] = ACTIONS(3191), + [sym_pseudo_compile_time_identifier] = ACTIONS(3191), + [anon_sym_shared] = ACTIONS(3191), + [anon_sym_map_LBRACK] = ACTIONS(3191), + [anon_sym_chan] = ACTIONS(3191), + [anon_sym_thread] = ACTIONS(3191), + [anon_sym_atomic] = ACTIONS(3191), + [anon_sym_assert] = ACTIONS(3191), + [anon_sym_defer] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_DOLLARfor] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_POUND] = ACTIONS(3191), + [anon_sym_asm] = ACTIONS(3191), + [anon_sym_AT_LBRACK] = ACTIONS(3191), + [sym___double_quote] = ACTIONS(3191), + [sym___single_quote] = ACTIONS(3191), + [sym___c_double_quote] = ACTIONS(3191), + [sym___c_single_quote] = ACTIONS(3191), + [sym___r_double_quote] = ACTIONS(3191), + [sym___r_single_quote] = ACTIONS(3191), + }, + [614] = { + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), + [sym__expression] = STATE(1146), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), + }, + [615] = { + [sym_line_comment] = STATE(615), + [sym_block_comment] = STATE(615), + [sym__expression] = STATE(2334), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [616] = { + [sym_line_comment] = STATE(616), + [sym_block_comment] = STATE(616), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3195), + [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_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), + }, + [617] = { + [sym_line_comment] = STATE(617), + [sym_block_comment] = STATE(617), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3199), + [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_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), }, - [657] = { - [sym__expression] = STATE(1685), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), + [618] = { + [sym_line_comment] = STATE(618), + [sym_block_comment] = STATE(618), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3203), + [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_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), }, - [658] = { - [ts_builtin_sym_end] = ACTIONS(3187), - [sym_identifier] = ACTIONS(3189), - [anon_sym_LF] = ACTIONS(3189), - [anon_sym_CR] = ACTIONS(3189), - [anon_sym_CR_LF] = ACTIONS(3189), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym___global] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [anon_sym_pub] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_interface] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3189), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3189), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_AMP_CARET] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3189), - [anon_sym_POUND_LBRACK] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_STAR_EQ] = ACTIONS(3189), - [anon_sym_SLASH_EQ] = ACTIONS(3189), - [anon_sym_PERCENT_EQ] = ACTIONS(3189), - [anon_sym_LT_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_AMP_EQ] = ACTIONS(3189), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3189), - [anon_sym_PLUS_EQ] = ACTIONS(3189), - [anon_sym_DASH_EQ] = ACTIONS(3189), - [anon_sym_PIPE_EQ] = ACTIONS(3189), - [anon_sym_CARET_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3189), - [sym_rune_literal] = ACTIONS(3189), - [sym_pseudo_compile_time_identifier] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3189), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_defer] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_DOLLARfor] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_asm] = ACTIONS(3189), - [anon_sym_AT_LBRACK] = ACTIONS(3189), - [sym___double_quote] = ACTIONS(3189), - [sym___single_quote] = ACTIONS(3189), - [sym___c_double_quote] = ACTIONS(3189), - [sym___c_single_quote] = ACTIONS(3189), - [sym___r_double_quote] = ACTIONS(3189), - [sym___r_single_quote] = ACTIONS(3189), + [619] = { + [sym_line_comment] = STATE(619), + [sym_block_comment] = STATE(619), + [sym__expression] = STATE(2851), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [659] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4213), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [620] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), + [sym__expression] = STATE(1319), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3193), - [anon_sym_LF] = ACTIONS(3193), - [anon_sym_CR] = ACTIONS(3193), - [anon_sym_CR_LF] = ACTIONS(3193), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym___global] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [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(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_pub] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3193), - [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(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_STAR_EQ] = ACTIONS(3193), - [anon_sym_SLASH_EQ] = ACTIONS(3193), - [anon_sym_PERCENT_EQ] = ACTIONS(3193), - [anon_sym_LT_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_GT_EQ] = ACTIONS(3193), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3193), - [anon_sym_AMP_EQ] = ACTIONS(3193), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3193), - [anon_sym_PLUS_EQ] = ACTIONS(3193), - [anon_sym_DASH_EQ] = ACTIONS(3193), - [anon_sym_PIPE_EQ] = ACTIONS(3193), - [anon_sym_CARET_EQ] = ACTIONS(3193), - [anon_sym_COLON_EQ] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [sym_pseudo_compile_time_identifier] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [anon_sym_assert] = ACTIONS(3193), - [anon_sym_defer] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_DOLLARfor] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym_AT_LBRACK] = ACTIONS(3193), - [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), + [621] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3207), + [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_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), }, - [661] = { - [ts_builtin_sym_end] = ACTIONS(3195), - [sym_identifier] = ACTIONS(3197), - [anon_sym_LF] = ACTIONS(3197), - [anon_sym_CR] = ACTIONS(3197), - [anon_sym_CR_LF] = ACTIONS(3197), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3197), - [anon_sym___global] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [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(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_pub] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_interface] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3197), - [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(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_STAR_EQ] = ACTIONS(3197), - [anon_sym_SLASH_EQ] = ACTIONS(3197), - [anon_sym_PERCENT_EQ] = ACTIONS(3197), - [anon_sym_LT_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_GT_EQ] = ACTIONS(3197), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3197), - [anon_sym_AMP_EQ] = ACTIONS(3197), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3197), - [anon_sym_PLUS_EQ] = ACTIONS(3197), - [anon_sym_DASH_EQ] = ACTIONS(3197), - [anon_sym_PIPE_EQ] = ACTIONS(3197), - [anon_sym_CARET_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [sym_pseudo_compile_time_identifier] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_defer] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_DOLLARfor] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym_AT_LBRACK] = ACTIONS(3197), - [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), + [622] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), + [sym__expression] = STATE(2328), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [662] = { - [sym__expression] = STATE(1313), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [623] = { + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), + [sym__expression] = STATE(2330), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [663] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4216), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [624] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), + [sym__expression] = STATE(2318), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [664] = { - [sym__expression] = STATE(1314), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [625] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2991), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2992), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [665] = { - [sym__expression] = STATE(1315), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [626] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), + [sym__expression] = STATE(2317), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [666] = { - [sym__expression] = STATE(1320), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [627] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), + [sym__expression] = STATE(2332), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [667] = { - [sym__expression] = STATE(1293), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [628] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), + [sym__expression] = STATE(2714), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [668] = { - [ts_builtin_sym_end] = ACTIONS(3199), - [sym_identifier] = ACTIONS(3201), - [anon_sym_LF] = ACTIONS(3201), - [anon_sym_CR] = ACTIONS(3201), - [anon_sym_CR_LF] = ACTIONS(3201), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_EQ] = ACTIONS(3201), - [anon_sym___global] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_fn] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3201), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3201), - [anon_sym_GT] = ACTIONS(3201), - [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(3199), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_pub] = ACTIONS(3201), - [anon_sym_mut] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_interface] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_go] = ACTIONS(3201), - [anon_sym_spawn] = ACTIONS(3201), - [anon_sym_json_DOTdecode] = ACTIONS(3201), - [anon_sym_LBRACK2] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_LT_DASH] = ACTIONS(3201), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3201), - [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(3201), - [sym_none] = ACTIONS(3201), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [sym_nil] = ACTIONS(3201), - [anon_sym_QMARK_DOT] = ACTIONS(3201), - [anon_sym_POUND_LBRACK] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_DOLLARif] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_BANGis] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_BANGin] = ACTIONS(3201), - [anon_sym_match] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_STAR_EQ] = ACTIONS(3201), - [anon_sym_SLASH_EQ] = ACTIONS(3201), - [anon_sym_PERCENT_EQ] = ACTIONS(3201), - [anon_sym_LT_LT_EQ] = ACTIONS(3201), - [anon_sym_GT_GT_EQ] = ACTIONS(3201), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3201), - [anon_sym_AMP_EQ] = ACTIONS(3201), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3201), - [anon_sym_PLUS_EQ] = ACTIONS(3201), - [anon_sym_DASH_EQ] = ACTIONS(3201), - [anon_sym_PIPE_EQ] = ACTIONS(3201), - [anon_sym_CARET_EQ] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3201), - [anon_sym_lock] = ACTIONS(3201), - [anon_sym_rlock] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_sql] = ACTIONS(3201), - [sym_int_literal] = ACTIONS(3201), - [sym_float_literal] = ACTIONS(3201), - [sym_rune_literal] = ACTIONS(3201), - [sym_pseudo_compile_time_identifier] = ACTIONS(3201), - [anon_sym_shared] = ACTIONS(3201), - [anon_sym_map_LBRACK] = ACTIONS(3201), - [anon_sym_chan] = ACTIONS(3201), - [anon_sym_thread] = ACTIONS(3201), - [anon_sym_atomic] = ACTIONS(3201), - [anon_sym_assert] = ACTIONS(3201), - [anon_sym_defer] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_DOLLARfor] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_asm] = ACTIONS(3201), - [anon_sym_AT_LBRACK] = ACTIONS(3201), - [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), + [629] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), + [sym__expression] = STATE(2335), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [669] = { - [sym__expression] = STATE(1282), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [630] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), + [sym__expression] = STATE(2177), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [670] = { - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_go] = ACTIONS(1771), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_LT_DASH] = ACTIONS(1777), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [631] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), + [sym__expression] = STATE(2352), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, - [671] = { - [sym__expression] = STATE(1149), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [632] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), + [sym__expression] = STATE(2908), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3209), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [672] = { - [ts_builtin_sym_end] = ACTIONS(3203), - [sym_identifier] = ACTIONS(3205), - [anon_sym_LF] = ACTIONS(3205), - [anon_sym_CR] = ACTIONS(3205), - [anon_sym_CR_LF] = ACTIONS(3205), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3205), - [anon_sym_as] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_EQ] = ACTIONS(3205), - [anon_sym___global] = ACTIONS(3205), - [anon_sym_type] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3205), - [anon_sym_fn] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3205), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_GT] = ACTIONS(3205), - [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(3203), - [anon_sym_struct] = ACTIONS(3205), - [anon_sym_union] = ACTIONS(3205), - [anon_sym_pub] = ACTIONS(3205), - [anon_sym_mut] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_QMARK] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_go] = ACTIONS(3205), - [anon_sym_spawn] = ACTIONS(3205), - [anon_sym_json_DOTdecode] = ACTIONS(3205), - [anon_sym_LBRACK2] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3205), - [anon_sym_LT_DASH] = ACTIONS(3205), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3205), - [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(3205), - [sym_none] = ACTIONS(3205), - [sym_true] = ACTIONS(3205), - [sym_false] = ACTIONS(3205), - [sym_nil] = ACTIONS(3205), - [anon_sym_QMARK_DOT] = ACTIONS(3205), - [anon_sym_POUND_LBRACK] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_DOLLARif] = ACTIONS(3205), - [anon_sym_is] = ACTIONS(3205), - [anon_sym_BANGis] = ACTIONS(3205), - [anon_sym_in] = ACTIONS(3205), - [anon_sym_BANGin] = ACTIONS(3205), - [anon_sym_match] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [anon_sym_STAR_EQ] = ACTIONS(3205), - [anon_sym_SLASH_EQ] = ACTIONS(3205), - [anon_sym_PERCENT_EQ] = ACTIONS(3205), - [anon_sym_LT_LT_EQ] = ACTIONS(3205), - [anon_sym_GT_GT_EQ] = ACTIONS(3205), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3205), - [anon_sym_AMP_EQ] = ACTIONS(3205), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3205), - [anon_sym_PLUS_EQ] = ACTIONS(3205), - [anon_sym_DASH_EQ] = ACTIONS(3205), - [anon_sym_PIPE_EQ] = ACTIONS(3205), - [anon_sym_CARET_EQ] = ACTIONS(3205), - [anon_sym_COLON_EQ] = ACTIONS(3205), - [anon_sym_lock] = ACTIONS(3205), - [anon_sym_rlock] = ACTIONS(3205), - [anon_sym_unsafe] = ACTIONS(3205), - [anon_sym_sql] = ACTIONS(3205), - [sym_int_literal] = ACTIONS(3205), - [sym_float_literal] = ACTIONS(3205), - [sym_rune_literal] = ACTIONS(3205), - [sym_pseudo_compile_time_identifier] = ACTIONS(3205), - [anon_sym_shared] = ACTIONS(3205), - [anon_sym_map_LBRACK] = ACTIONS(3205), - [anon_sym_chan] = ACTIONS(3205), - [anon_sym_thread] = ACTIONS(3205), - [anon_sym_atomic] = ACTIONS(3205), - [anon_sym_assert] = ACTIONS(3205), - [anon_sym_defer] = ACTIONS(3205), - [anon_sym_goto] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_DOLLARfor] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_POUND] = ACTIONS(3205), - [anon_sym_asm] = ACTIONS(3205), - [anon_sym_AT_LBRACK] = ACTIONS(3205), - [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), + [633] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(989), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [634] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), + [sym__expression] = STATE(1320), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [674] = { - [ts_builtin_sym_end] = ACTIONS(3207), - [sym_identifier] = ACTIONS(3209), - [anon_sym_LF] = ACTIONS(3209), - [anon_sym_CR] = ACTIONS(3209), - [anon_sym_CR_LF] = ACTIONS(3209), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3209), - [anon_sym_as] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_COMMA] = ACTIONS(3209), - [anon_sym_const] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(3209), - [anon_sym_EQ] = ACTIONS(3209), - [anon_sym___global] = ACTIONS(3209), - [anon_sym_type] = ACTIONS(3209), - [anon_sym_PIPE] = ACTIONS(3209), - [anon_sym_fn] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_PERCENT] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_GT] = ACTIONS(3209), - [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(3207), - [anon_sym_struct] = ACTIONS(3209), - [anon_sym_union] = ACTIONS(3209), - [anon_sym_pub] = ACTIONS(3209), - [anon_sym_mut] = ACTIONS(3209), - [anon_sym_enum] = ACTIONS(3209), - [anon_sym_interface] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_QMARK] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_go] = ACTIONS(3209), - [anon_sym_spawn] = ACTIONS(3209), - [anon_sym_json_DOTdecode] = ACTIONS(3209), - [anon_sym_LBRACK2] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_CARET] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3209), - [anon_sym_LT_DASH] = ACTIONS(3209), - [anon_sym_LT_LT] = ACTIONS(3209), - [anon_sym_GT_GT] = ACTIONS(3209), - [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(3209), - [sym_none] = ACTIONS(3209), - [sym_true] = ACTIONS(3209), - [sym_false] = ACTIONS(3209), - [sym_nil] = ACTIONS(3209), - [anon_sym_QMARK_DOT] = ACTIONS(3209), - [anon_sym_POUND_LBRACK] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_DOLLARif] = ACTIONS(3209), - [anon_sym_is] = ACTIONS(3209), - [anon_sym_BANGis] = ACTIONS(3209), - [anon_sym_in] = ACTIONS(3209), - [anon_sym_BANGin] = ACTIONS(3209), - [anon_sym_match] = ACTIONS(3209), - [anon_sym_select] = ACTIONS(3209), - [anon_sym_STAR_EQ] = ACTIONS(3209), - [anon_sym_SLASH_EQ] = ACTIONS(3209), - [anon_sym_PERCENT_EQ] = ACTIONS(3209), - [anon_sym_LT_LT_EQ] = ACTIONS(3209), - [anon_sym_GT_GT_EQ] = ACTIONS(3209), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3209), - [anon_sym_AMP_EQ] = ACTIONS(3209), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3209), - [anon_sym_PLUS_EQ] = ACTIONS(3209), - [anon_sym_DASH_EQ] = ACTIONS(3209), - [anon_sym_PIPE_EQ] = ACTIONS(3209), - [anon_sym_CARET_EQ] = ACTIONS(3209), - [anon_sym_COLON_EQ] = ACTIONS(3209), - [anon_sym_lock] = ACTIONS(3209), - [anon_sym_rlock] = ACTIONS(3209), - [anon_sym_unsafe] = ACTIONS(3209), - [anon_sym_sql] = ACTIONS(3209), - [sym_int_literal] = ACTIONS(3209), - [sym_float_literal] = ACTIONS(3209), - [sym_rune_literal] = ACTIONS(3209), - [sym_pseudo_compile_time_identifier] = ACTIONS(3209), - [anon_sym_shared] = ACTIONS(3209), - [anon_sym_map_LBRACK] = ACTIONS(3209), - [anon_sym_chan] = ACTIONS(3209), - [anon_sym_thread] = ACTIONS(3209), - [anon_sym_atomic] = ACTIONS(3209), - [anon_sym_assert] = ACTIONS(3209), - [anon_sym_defer] = ACTIONS(3209), - [anon_sym_goto] = ACTIONS(3209), - [anon_sym_break] = ACTIONS(3209), - [anon_sym_continue] = ACTIONS(3209), - [anon_sym_return] = ACTIONS(3209), - [anon_sym_DOLLARfor] = ACTIONS(3209), - [anon_sym_for] = ACTIONS(3209), - [anon_sym_POUND] = ACTIONS(3209), - [anon_sym_asm] = ACTIONS(3209), - [anon_sym_AT_LBRACK] = ACTIONS(3209), - [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), + [635] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), + [sym__expression] = STATE(2884), + [sym__expression_without_blocks] = STATE(2178), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1261), + [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(1271), + [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(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [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), }, - [675] = { - [sym__expression] = STATE(2799), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [636] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4211), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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] = { + [637] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [638] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(3211), [sym_identifier] = ACTIONS(3213), [anon_sym_LF] = ACTIONS(3213), [anon_sym_CR] = ACTIONS(3213), [anon_sym_CR_LF] = ACTIONS(3213), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3213), [anon_sym_DOT] = ACTIONS(3213), [anon_sym_as] = ACTIONS(3213), [anon_sym_LBRACE] = ACTIONS(3213), @@ -103540,7 +98171,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3213), [anon_sym_DASH] = ACTIONS(3213), [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_SLASH] = ACTIONS(3213), [anon_sym_PERCENT] = ACTIONS(3213), [anon_sym_LT] = ACTIONS(3213), [anon_sym_GT] = ACTIONS(3213), @@ -103632,88 +98262,671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3213), [sym___r_single_quote] = ACTIONS(3213), }, - [677] = { + [639] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), + [sym__expression] = STATE(1142), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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_block_comment] = STATE(640), + [sym__expression] = STATE(2652), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [641] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), + [sym__expression] = STATE(1145), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), + }, + [642] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), + [sym__expression] = STATE(2351), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), + }, + [643] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), + [sym__expression] = STATE(2556), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [644] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(3215), [sym_identifier] = ACTIONS(3217), [anon_sym_LF] = ACTIONS(3217), [anon_sym_CR] = ACTIONS(3217), [anon_sym_CR_LF] = ACTIONS(3217), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_DOT] = ACTIONS(3217), + [anon_sym_as] = ACTIONS(3217), [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3217), [anon_sym_const] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_EQ] = ACTIONS(3217), [anon_sym___global] = ACTIONS(3217), [anon_sym_type] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3217), [anon_sym_fn] = ACTIONS(3217), - [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(3222), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_PERCENT] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_GT] = ACTIONS(3217), + [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(3215), [anon_sym_struct] = ACTIONS(3217), [anon_sym_union] = ACTIONS(3217), [anon_sym_pub] = ACTIONS(3217), [anon_sym_mut] = ACTIONS(3217), [anon_sym_enum] = ACTIONS(3217), [anon_sym_interface] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_QMARK] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), [anon_sym_go] = ACTIONS(3217), [anon_sym_spawn] = ACTIONS(3217), [anon_sym_json_DOTdecode] = ACTIONS(3217), - [anon_sym_LBRACK2] = ACTIONS(3219), + [anon_sym_LBRACK2] = ACTIONS(3217), [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_CARET] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3217), [anon_sym_LT_DASH] = ACTIONS(3217), - [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), + [anon_sym_LT_LT] = ACTIONS(3217), + [anon_sym_GT_GT] = ACTIONS(3217), + [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(3217), [sym_none] = ACTIONS(3217), [sym_true] = ACTIONS(3217), [sym_false] = ACTIONS(3217), [sym_nil] = ACTIONS(3217), - [anon_sym_QMARK_DOT] = ACTIONS(3219), - [anon_sym_POUND_LBRACK] = ACTIONS(3219), + [anon_sym_QMARK_DOT] = ACTIONS(3217), + [anon_sym_POUND_LBRACK] = ACTIONS(3217), [anon_sym_if] = ACTIONS(3217), [anon_sym_DOLLARif] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3219), + [anon_sym_is] = ACTIONS(3217), + [anon_sym_BANGis] = ACTIONS(3217), + [anon_sym_in] = ACTIONS(3217), + [anon_sym_BANGin] = ACTIONS(3217), [anon_sym_match] = ACTIONS(3217), [anon_sym_select] = ACTIONS(3217), - [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_STAR_EQ] = ACTIONS(3217), + [anon_sym_SLASH_EQ] = ACTIONS(3217), + [anon_sym_PERCENT_EQ] = ACTIONS(3217), + [anon_sym_LT_LT_EQ] = ACTIONS(3217), + [anon_sym_GT_GT_EQ] = ACTIONS(3217), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3217), + [anon_sym_AMP_EQ] = ACTIONS(3217), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3217), + [anon_sym_PLUS_EQ] = ACTIONS(3217), + [anon_sym_DASH_EQ] = ACTIONS(3217), + [anon_sym_PIPE_EQ] = ACTIONS(3217), + [anon_sym_CARET_EQ] = ACTIONS(3217), + [anon_sym_COLON_EQ] = ACTIONS(3217), [anon_sym_lock] = ACTIONS(3217), [anon_sym_rlock] = ACTIONS(3217), [anon_sym_unsafe] = ACTIONS(3217), @@ -103745,28 +98958,495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3217), [sym___r_single_quote] = ACTIONS(3217), }, - [678] = { - [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), - [sym_comment] = ACTIONS(495), + [645] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), + [sym__expression] = STATE(2388), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), + }, + [646] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [anon_sym_LF] = ACTIONS(3221), + [anon_sym_CR] = ACTIONS(3221), + [anon_sym_CR_LF] = ACTIONS(3221), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_as] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3221), + [anon_sym_const] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3221), + [anon_sym___global] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_fn] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT] = ACTIONS(3221), + [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(3219), + [anon_sym_struct] = ACTIONS(3221), + [anon_sym_union] = ACTIONS(3221), + [anon_sym_pub] = ACTIONS(3221), + [anon_sym_mut] = ACTIONS(3221), + [anon_sym_enum] = ACTIONS(3221), + [anon_sym_interface] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_go] = ACTIONS(3221), + [anon_sym_spawn] = ACTIONS(3221), + [anon_sym_json_DOTdecode] = ACTIONS(3221), + [anon_sym_LBRACK2] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_CARET] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_LT_LT] = ACTIONS(3221), + [anon_sym_GT_GT] = ACTIONS(3221), + [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(3221), + [sym_none] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_nil] = ACTIONS(3221), + [anon_sym_QMARK_DOT] = ACTIONS(3221), + [anon_sym_POUND_LBRACK] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_DOLLARif] = ACTIONS(3221), + [anon_sym_is] = ACTIONS(3221), + [anon_sym_BANGis] = ACTIONS(3221), + [anon_sym_in] = ACTIONS(3221), + [anon_sym_BANGin] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_STAR_EQ] = ACTIONS(3221), + [anon_sym_SLASH_EQ] = ACTIONS(3221), + [anon_sym_PERCENT_EQ] = ACTIONS(3221), + [anon_sym_LT_LT_EQ] = ACTIONS(3221), + [anon_sym_GT_GT_EQ] = ACTIONS(3221), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3221), + [anon_sym_AMP_EQ] = ACTIONS(3221), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3221), + [anon_sym_PLUS_EQ] = ACTIONS(3221), + [anon_sym_DASH_EQ] = ACTIONS(3221), + [anon_sym_PIPE_EQ] = ACTIONS(3221), + [anon_sym_CARET_EQ] = ACTIONS(3221), + [anon_sym_COLON_EQ] = ACTIONS(3221), + [anon_sym_lock] = ACTIONS(3221), + [anon_sym_rlock] = ACTIONS(3221), + [anon_sym_unsafe] = ACTIONS(3221), + [anon_sym_sql] = ACTIONS(3221), + [sym_int_literal] = ACTIONS(3221), + [sym_float_literal] = ACTIONS(3221), + [sym_rune_literal] = ACTIONS(3221), + [sym_pseudo_compile_time_identifier] = ACTIONS(3221), + [anon_sym_shared] = ACTIONS(3221), + [anon_sym_map_LBRACK] = ACTIONS(3221), + [anon_sym_chan] = ACTIONS(3221), + [anon_sym_thread] = ACTIONS(3221), + [anon_sym_atomic] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_defer] = ACTIONS(3221), + [anon_sym_goto] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_DOLLARfor] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_POUND] = ACTIONS(3221), + [anon_sym_asm] = ACTIONS(3221), + [anon_sym_AT_LBRACK] = ACTIONS(3221), + [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), + }, + [647] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(3223), + [sym_identifier] = ACTIONS(3225), + [anon_sym_LF] = ACTIONS(3225), + [anon_sym_CR] = ACTIONS(3225), + [anon_sym_CR_LF] = ACTIONS(3225), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_DOT] = ACTIONS(3225), + [anon_sym_as] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_COMMA] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_EQ] = ACTIONS(3225), + [anon_sym___global] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_PIPE] = ACTIONS(3225), + [anon_sym_fn] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_PERCENT] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_GT] = ACTIONS(3225), + [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(3223), + [anon_sym_struct] = ACTIONS(3225), + [anon_sym_union] = ACTIONS(3225), + [anon_sym_pub] = ACTIONS(3225), + [anon_sym_mut] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_go] = ACTIONS(3225), + [anon_sym_spawn] = ACTIONS(3225), + [anon_sym_json_DOTdecode] = ACTIONS(3225), + [anon_sym_LBRACK2] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_CARET] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_LT_DASH] = ACTIONS(3225), + [anon_sym_LT_LT] = ACTIONS(3225), + [anon_sym_GT_GT] = ACTIONS(3225), + [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(3225), + [sym_none] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_nil] = ACTIONS(3225), + [anon_sym_QMARK_DOT] = ACTIONS(3225), + [anon_sym_POUND_LBRACK] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_DOLLARif] = ACTIONS(3225), + [anon_sym_is] = ACTIONS(3225), + [anon_sym_BANGis] = ACTIONS(3225), + [anon_sym_in] = ACTIONS(3225), + [anon_sym_BANGin] = ACTIONS(3225), + [anon_sym_match] = ACTIONS(3225), + [anon_sym_select] = ACTIONS(3225), + [anon_sym_STAR_EQ] = ACTIONS(3225), + [anon_sym_SLASH_EQ] = ACTIONS(3225), + [anon_sym_PERCENT_EQ] = ACTIONS(3225), + [anon_sym_LT_LT_EQ] = ACTIONS(3225), + [anon_sym_GT_GT_EQ] = ACTIONS(3225), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3225), + [anon_sym_AMP_EQ] = ACTIONS(3225), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3225), + [anon_sym_PLUS_EQ] = ACTIONS(3225), + [anon_sym_DASH_EQ] = ACTIONS(3225), + [anon_sym_PIPE_EQ] = ACTIONS(3225), + [anon_sym_CARET_EQ] = ACTIONS(3225), + [anon_sym_COLON_EQ] = ACTIONS(3225), + [anon_sym_lock] = ACTIONS(3225), + [anon_sym_rlock] = ACTIONS(3225), + [anon_sym_unsafe] = ACTIONS(3225), + [anon_sym_sql] = ACTIONS(3225), + [sym_int_literal] = ACTIONS(3225), + [sym_float_literal] = ACTIONS(3225), + [sym_rune_literal] = ACTIONS(3225), + [sym_pseudo_compile_time_identifier] = ACTIONS(3225), + [anon_sym_shared] = ACTIONS(3225), + [anon_sym_map_LBRACK] = ACTIONS(3225), + [anon_sym_chan] = ACTIONS(3225), + [anon_sym_thread] = ACTIONS(3225), + [anon_sym_atomic] = ACTIONS(3225), + [anon_sym_assert] = ACTIONS(3225), + [anon_sym_defer] = ACTIONS(3225), + [anon_sym_goto] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_DOLLARfor] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_POUND] = ACTIONS(3225), + [anon_sym_asm] = ACTIONS(3225), + [anon_sym_AT_LBRACK] = ACTIONS(3225), + [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), + }, + [648] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), + [sym__expression] = STATE(2321), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [649] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(3227), + [sym_identifier] = ACTIONS(3229), + [anon_sym_LF] = ACTIONS(3229), + [anon_sym_CR] = ACTIONS(3229), + [anon_sym_CR_LF] = ACTIONS(3229), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3229), [anon_sym_DOT] = ACTIONS(3229), [anon_sym_as] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3229), [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3229), [anon_sym_LPAREN] = ACTIONS(3229), [anon_sym_EQ] = ACTIONS(3229), - [anon_sym___global] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), + [anon_sym___global] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_fn] = ACTIONS(3227), + [anon_sym_fn] = ACTIONS(3229), [anon_sym_PLUS] = ACTIONS(3229), [anon_sym_DASH] = ACTIONS(3229), [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), [anon_sym_PERCENT] = ACTIONS(3229), [anon_sym_LT] = ACTIONS(3229), [anon_sym_GT] = ACTIONS(3229), @@ -103774,25 +99454,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3229), [anon_sym_LT_EQ] = ACTIONS(3229), [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3232), - [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_LBRACK] = ACTIONS(3227), + [anon_sym_struct] = ACTIONS(3229), + [anon_sym_union] = ACTIONS(3229), + [anon_sym_pub] = ACTIONS(3229), + [anon_sym_mut] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), [anon_sym_PLUS_PLUS] = ACTIONS(3229), [anon_sym_DASH_DASH] = ACTIONS(3229), [anon_sym_QMARK] = ACTIONS(3229), [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3227), + [anon_sym_go] = ACTIONS(3229), + [anon_sym_spawn] = ACTIONS(3229), + [anon_sym_json_DOTdecode] = ACTIONS(3229), [anon_sym_LBRACK2] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3229), [anon_sym_CARET] = ACTIONS(3229), [anon_sym_AMP] = ACTIONS(3229), - [anon_sym_LT_DASH] = ACTIONS(3227), + [anon_sym_LT_DASH] = ACTIONS(3229), [anon_sym_LT_LT] = ACTIONS(3229), [anon_sym_GT_GT] = ACTIONS(3229), [anon_sym_GT_GT_GT] = ACTIONS(3229), @@ -103800,20 +99480,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3229), [anon_sym_PIPE_PIPE] = ACTIONS(3229), [anon_sym_or] = ACTIONS(3229), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), + [sym_none] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_nil] = ACTIONS(3229), [anon_sym_QMARK_DOT] = ACTIONS(3229), [anon_sym_POUND_LBRACK] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_DOLLARif] = ACTIONS(3229), [anon_sym_is] = ACTIONS(3229), [anon_sym_BANGis] = ACTIONS(3229), [anon_sym_in] = ACTIONS(3229), [anon_sym_BANGin] = ACTIONS(3229), - [anon_sym_match] = ACTIONS(3227), - [anon_sym_select] = ACTIONS(3227), + [anon_sym_match] = ACTIONS(3229), + [anon_sym_select] = ACTIONS(3229), [anon_sym_STAR_EQ] = ACTIONS(3229), [anon_sym_SLASH_EQ] = ACTIONS(3229), [anon_sym_PERCENT_EQ] = ACTIONS(3229), @@ -103827,44 +99507,744 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(3229), [anon_sym_CARET_EQ] = ACTIONS(3229), [anon_sym_COLON_EQ] = ACTIONS(3229), - [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), + [anon_sym_lock] = ACTIONS(3229), + [anon_sym_rlock] = ACTIONS(3229), + [anon_sym_unsafe] = ACTIONS(3229), + [anon_sym_sql] = ACTIONS(3229), + [sym_int_literal] = ACTIONS(3229), + [sym_float_literal] = ACTIONS(3229), + [sym_rune_literal] = ACTIONS(3229), + [sym_pseudo_compile_time_identifier] = ACTIONS(3229), + [anon_sym_shared] = ACTIONS(3229), + [anon_sym_map_LBRACK] = ACTIONS(3229), + [anon_sym_chan] = ACTIONS(3229), + [anon_sym_thread] = ACTIONS(3229), + [anon_sym_atomic] = ACTIONS(3229), + [anon_sym_assert] = ACTIONS(3229), + [anon_sym_defer] = ACTIONS(3229), + [anon_sym_goto] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_DOLLARfor] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_POUND] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(3229), + [anon_sym_AT_LBRACK] = ACTIONS(3229), + [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), }, - [679] = { + [650] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), + [sym__expression] = STATE(993), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), + }, + [651] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), + [sym__expression] = STATE(1657), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), + }, + [652] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(3231), + [sym_identifier] = ACTIONS(3233), + [anon_sym_LF] = ACTIONS(3233), + [anon_sym_CR] = ACTIONS(3233), + [anon_sym_CR_LF] = ACTIONS(3233), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_DOT] = ACTIONS(3233), + [anon_sym_as] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym___global] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_PIPE] = ACTIONS(3233), + [anon_sym_fn] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_PERCENT] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_GT] = ACTIONS(3233), + [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(3231), + [anon_sym_struct] = ACTIONS(3233), + [anon_sym_union] = ACTIONS(3233), + [anon_sym_pub] = ACTIONS(3233), + [anon_sym_mut] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [anon_sym_QMARK] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_go] = ACTIONS(3233), + [anon_sym_spawn] = ACTIONS(3233), + [anon_sym_json_DOTdecode] = ACTIONS(3233), + [anon_sym_LBRACK2] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_CARET] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_LT_DASH] = ACTIONS(3233), + [anon_sym_LT_LT] = ACTIONS(3233), + [anon_sym_GT_GT] = ACTIONS(3233), + [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(3233), + [sym_none] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_nil] = ACTIONS(3233), + [anon_sym_QMARK_DOT] = ACTIONS(3233), + [anon_sym_POUND_LBRACK] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_DOLLARif] = ACTIONS(3233), + [anon_sym_is] = ACTIONS(3233), + [anon_sym_BANGis] = ACTIONS(3233), + [anon_sym_in] = ACTIONS(3233), + [anon_sym_BANGin] = ACTIONS(3233), + [anon_sym_match] = ACTIONS(3233), + [anon_sym_select] = ACTIONS(3233), + [anon_sym_STAR_EQ] = ACTIONS(3233), + [anon_sym_SLASH_EQ] = ACTIONS(3233), + [anon_sym_PERCENT_EQ] = ACTIONS(3233), + [anon_sym_LT_LT_EQ] = ACTIONS(3233), + [anon_sym_GT_GT_EQ] = ACTIONS(3233), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3233), + [anon_sym_AMP_EQ] = ACTIONS(3233), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3233), + [anon_sym_PLUS_EQ] = ACTIONS(3233), + [anon_sym_DASH_EQ] = ACTIONS(3233), + [anon_sym_PIPE_EQ] = ACTIONS(3233), + [anon_sym_CARET_EQ] = ACTIONS(3233), + [anon_sym_COLON_EQ] = ACTIONS(3233), + [anon_sym_lock] = ACTIONS(3233), + [anon_sym_rlock] = ACTIONS(3233), + [anon_sym_unsafe] = ACTIONS(3233), + [anon_sym_sql] = ACTIONS(3233), + [sym_int_literal] = ACTIONS(3233), + [sym_float_literal] = ACTIONS(3233), + [sym_rune_literal] = ACTIONS(3233), + [sym_pseudo_compile_time_identifier] = ACTIONS(3233), + [anon_sym_shared] = ACTIONS(3233), + [anon_sym_map_LBRACK] = ACTIONS(3233), + [anon_sym_chan] = ACTIONS(3233), + [anon_sym_thread] = ACTIONS(3233), + [anon_sym_atomic] = ACTIONS(3233), + [anon_sym_assert] = ACTIONS(3233), + [anon_sym_defer] = ACTIONS(3233), + [anon_sym_goto] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_DOLLARfor] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_POUND] = ACTIONS(3233), + [anon_sym_asm] = ACTIONS(3233), + [anon_sym_AT_LBRACK] = ACTIONS(3233), + [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), + }, + [653] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), + [sym__expression] = STATE(2682), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [654] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [sym__expression] = STATE(1936), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), + }, + [655] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [sym__expression] = STATE(2854), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [656] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), [ts_builtin_sym_end] = ACTIONS(3235), [sym_identifier] = ACTIONS(3237), [anon_sym_LF] = ACTIONS(3237), [anon_sym_CR] = ACTIONS(3237), [anon_sym_CR_LF] = ACTIONS(3237), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3237), [anon_sym_DOT] = ACTIONS(3237), [anon_sym_as] = ACTIONS(3237), [anon_sym_LBRACE] = ACTIONS(3237), @@ -103879,7 +100259,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3237), [anon_sym_DASH] = ACTIONS(3237), [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), [anon_sym_PERCENT] = ACTIONS(3237), [anon_sym_LT] = ACTIONS(3237), [anon_sym_GT] = ACTIONS(3237), @@ -103971,13 +100350,1525 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3237), [sym___r_single_quote] = ACTIONS(3237), }, - [680] = { + [657] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [sym__expression] = STATE(2460), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), + }, + [658] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3678), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [659] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [sym__expression] = STATE(2861), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [660] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [sym__expression] = STATE(2856), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [661] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [sym__expression] = STATE(2551), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [662] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [sym__expression] = STATE(2893), + [sym__expression_without_blocks] = STATE(2934), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [663] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [sym__expression] = STATE(275), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4176), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), + }, + [664] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [sym__expression] = STATE(1168), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), + }, + [665] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [sym__expression] = STATE(1301), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [666] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(3685), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [667] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3030), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3029), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [668] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(3672), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [669] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), + [sym__expression] = STATE(2894), + [sym__expression_without_blocks] = STATE(3028), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [670] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(3239), [sym_identifier] = ACTIONS(3241), [anon_sym_LF] = ACTIONS(3241), [anon_sym_CR] = ACTIONS(3241), [anon_sym_CR_LF] = ACTIONS(3241), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3241), [anon_sym_DOT] = ACTIONS(3241), [anon_sym_as] = ACTIONS(3241), [anon_sym_LBRACE] = ACTIONS(3241), @@ -103992,7 +101883,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3241), [anon_sym_DASH] = ACTIONS(3241), [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), [anon_sym_PERCENT] = ACTIONS(3241), [anon_sym_LT] = ACTIONS(3241), [anon_sym_GT] = ACTIONS(3241), @@ -104084,578 +101974,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3241), [sym___r_single_quote] = ACTIONS(3241), }, - [681] = { - [sym__expression] = STATE(1691), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), - }, - [682] = { - [sym__expression] = STATE(2862), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [683] = { - [sym__expression] = STATE(1795), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4280), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), - }, - [684] = { - [sym__expression] = STATE(1937), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), - }, - [685] = { - [sym__expression] = STATE(990), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), - }, - [686] = { + [671] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), [ts_builtin_sym_end] = ACTIONS(3243), [sym_identifier] = ACTIONS(3245), [anon_sym_LF] = ACTIONS(3245), [anon_sym_CR] = ACTIONS(3245), [anon_sym_CR_LF] = ACTIONS(3245), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3245), [anon_sym_DOT] = ACTIONS(3245), [anon_sym_as] = ACTIONS(3245), [anon_sym_LBRACE] = ACTIONS(3245), @@ -104670,7 +101999,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3245), [anon_sym_DASH] = ACTIONS(3245), [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), [anon_sym_PERCENT] = ACTIONS(3245), [anon_sym_LT] = ACTIONS(3245), [anon_sym_GT] = ACTIONS(3245), @@ -104762,1030 +102090,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3245), [sym___r_single_quote] = ACTIONS(3245), }, - [687] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), - }, - [688] = { - [sym__expression] = STATE(242), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4152), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), - }, - [689] = { - [sym__expression] = STATE(235), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), - }, - [690] = { - [sym__expression] = STATE(1642), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), - }, - [691] = { - [sym__expression] = STATE(240), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), - }, - [692] = { - [sym__expression] = STATE(1808), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), - }, - [693] = { - [sym__expression] = STATE(242), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4099), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [672] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3672), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [694] = { - [sym__expression] = STATE(1805), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [673] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [695] = { - [sym__expression] = STATE(236), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [674] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), + [sym__expression] = STATE(1815), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), }, - [696] = { + [675] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(3247), [sym_identifier] = ACTIONS(3249), [anon_sym_LF] = ACTIONS(3249), [anon_sym_CR] = ACTIONS(3249), [anon_sym_CR_LF] = ACTIONS(3249), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3249), [anon_sym_DOT] = ACTIONS(3249), [anon_sym_as] = ACTIONS(3249), [anon_sym_LBRACE] = ACTIONS(3249), @@ -105800,7 +102463,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3249), [anon_sym_DASH] = ACTIONS(3249), [anon_sym_STAR] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), [anon_sym_PERCENT] = ACTIONS(3249), [anon_sym_LT] = ACTIONS(3249), [anon_sym_GT] = ACTIONS(3249), @@ -105892,1030 +102554,481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3249), [sym___r_single_quote] = ACTIONS(3249), }, - [697] = { - [sym__expression] = STATE(982), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), - }, - [698] = { - [sym__expression] = STATE(2461), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), - }, - [699] = { - [sym__expression] = STATE(2659), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [700] = { - [sym__expression] = STATE(2660), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [701] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2947), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2948), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [702] = { - [sym__expression] = STATE(2850), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [676] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), + [sym__expression] = STATE(1310), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [703] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [677] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), + [sym__expression] = STATE(1651), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4330), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, - [704] = { - [sym__expression] = STATE(1804), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [678] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), + [sym__expression] = STATE(283), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, - [705] = { - [sym__expression] = STATE(1152), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [679] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), + [sym__expression] = STATE(280), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, - [706] = { + [680] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), [ts_builtin_sym_end] = ACTIONS(3251), [sym_identifier] = ACTIONS(3253), [anon_sym_LF] = ACTIONS(3253), [anon_sym_CR] = ACTIONS(3253), [anon_sym_CR_LF] = ACTIONS(3253), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3253), [anon_sym_DOT] = ACTIONS(3253), [anon_sym_as] = ACTIONS(3253), [anon_sym_LBRACE] = ACTIONS(3253), @@ -106930,7 +103043,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3253), [anon_sym_DASH] = ACTIONS(3253), [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_SLASH] = ACTIONS(3253), [anon_sym_PERCENT] = ACTIONS(3253), [anon_sym_LT] = ACTIONS(3253), [anon_sym_GT] = ACTIONS(3253), @@ -107022,465 +103134,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3253), [sym___r_single_quote] = ACTIONS(3253), }, - [707] = { - [sym__expression] = STATE(1803), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), - }, - [708] = { - [sym__expression] = STATE(998), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), - }, - [709] = { - [sym__expression] = STATE(2655), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [710] = { - [sym__expression] = STATE(2677), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [711] = { + [681] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), [ts_builtin_sym_end] = ACTIONS(3255), [sym_identifier] = ACTIONS(3257), [anon_sym_LF] = ACTIONS(3257), [anon_sym_CR] = ACTIONS(3257), [anon_sym_CR_LF] = ACTIONS(3257), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3257), [anon_sym_DOT] = ACTIONS(3257), [anon_sym_as] = ACTIONS(3257), [anon_sym_LBRACE] = ACTIONS(3257), @@ -107495,7 +103159,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3257), [anon_sym_DASH] = ACTIONS(3257), [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3257), [anon_sym_PERCENT] = ACTIONS(3257), [anon_sym_LT] = ACTIONS(3257), [anon_sym_GT] = ACTIONS(3257), @@ -107587,465 +103250,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3257), [sym___r_single_quote] = ACTIONS(3257), }, - [712] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(3654), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [713] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2965), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2962), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [714] = { - [sym__expression] = STATE(2689), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [682] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), + [sym__expression] = STATE(2177), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [715] = { - [sym__expression] = STATE(2459), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [683] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), + [sym__expression] = STATE(2285), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [716] = { + [684] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), [ts_builtin_sym_end] = ACTIONS(3259), [sym_identifier] = ACTIONS(3261), [anon_sym_LF] = ACTIONS(3261), [anon_sym_CR] = ACTIONS(3261), [anon_sym_CR_LF] = ACTIONS(3261), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3261), [anon_sym_DOT] = ACTIONS(3261), [anon_sym_as] = ACTIONS(3261), [anon_sym_LBRACE] = ACTIONS(3261), @@ -108060,7 +103507,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3261), [anon_sym_DASH] = ACTIONS(3261), [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_SLASH] = ACTIONS(3261), [anon_sym_PERCENT] = ACTIONS(3261), [anon_sym_LT] = ACTIONS(3261), [anon_sym_GT] = ACTIONS(3261), @@ -108152,126 +103598,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3261), [sym___r_single_quote] = ACTIONS(3261), }, - [717] = { - [sym__expression] = STATE(991), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), - }, - [718] = { + [685] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), [ts_builtin_sym_end] = ACTIONS(3263), [sym_identifier] = ACTIONS(3265), [anon_sym_LF] = ACTIONS(3265), [anon_sym_CR] = ACTIONS(3265), [anon_sym_CR_LF] = ACTIONS(3265), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3265), [anon_sym_DOT] = ACTIONS(3265), [anon_sym_as] = ACTIONS(3265), [anon_sym_LBRACE] = ACTIONS(3265), @@ -108286,7 +103623,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3265), [anon_sym_DASH] = ACTIONS(3265), [anon_sym_STAR] = ACTIONS(3265), - [anon_sym_SLASH] = ACTIONS(3265), [anon_sym_PERCENT] = ACTIONS(3265), [anon_sym_LT] = ACTIONS(3265), [anon_sym_GT] = ACTIONS(3265), @@ -108378,879 +103714,1251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3265), [sym___r_single_quote] = ACTIONS(3265), }, - [719] = { - [sym__expression] = STATE(1802), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [686] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), + [sym__expression] = STATE(2278), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), + }, + [687] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [720] = { - [sym__expression] = STATE(2633), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [688] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), + [sym__expression] = STATE(2276), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, - [721] = { - [sym__expression] = STATE(1800), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [689] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), + [sym__expression] = STATE(2685), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, - [722] = { - [sym__expression] = STATE(1799), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [690] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4016), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), }, - [723] = { - [sym__expression] = STATE(2695), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [691] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), + [sym__expression] = STATE(275), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4189), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, - [724] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2982), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2963), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [692] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), }, - [725] = { - [sym__expression] = STATE(2739), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [693] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [sym__expression] = STATE(269), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, - [726] = { + [694] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4009), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), + }, + [695] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [sym__expression] = STATE(2500), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [696] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), [ts_builtin_sym_end] = ACTIONS(3267), [sym_identifier] = ACTIONS(3269), [anon_sym_LF] = ACTIONS(3269), [anon_sym_CR] = ACTIONS(3269), [anon_sym_CR_LF] = ACTIONS(3269), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3269), - [anon_sym_as] = ACTIONS(3269), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_DOT] = ACTIONS(3271), + [anon_sym_as] = ACTIONS(3271), [anon_sym_LBRACE] = ACTIONS(3269), - [anon_sym_COMMA] = ACTIONS(3269), + [anon_sym_COMMA] = ACTIONS(3271), [anon_sym_const] = ACTIONS(3269), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_EQ] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_EQ] = ACTIONS(3271), [anon_sym___global] = ACTIONS(3269), [anon_sym_type] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3271), [anon_sym_fn] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_PERCENT] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [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(3267), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_STAR] = 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(3274), [anon_sym_struct] = ACTIONS(3269), [anon_sym_union] = ACTIONS(3269), [anon_sym_pub] = ACTIONS(3269), [anon_sym_mut] = ACTIONS(3269), [anon_sym_enum] = ACTIONS(3269), [anon_sym_interface] = ACTIONS(3269), - [anon_sym_PLUS_PLUS] = ACTIONS(3269), - [anon_sym_DASH_DASH] = ACTIONS(3269), - [anon_sym_QMARK] = ACTIONS(3269), + [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(3269), [anon_sym_spawn] = ACTIONS(3269), [anon_sym_json_DOTdecode] = ACTIONS(3269), - [anon_sym_LBRACK2] = ACTIONS(3269), + [anon_sym_LBRACK2] = ACTIONS(3271), [anon_sym_TILDE] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3271), + [anon_sym_AMP] = ACTIONS(3271), [anon_sym_LT_DASH] = ACTIONS(3269), - [anon_sym_LT_LT] = ACTIONS(3269), - [anon_sym_GT_GT] = ACTIONS(3269), - [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(3269), + [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(3269), [sym_true] = ACTIONS(3269), [sym_false] = ACTIONS(3269), [sym_nil] = ACTIONS(3269), - [anon_sym_QMARK_DOT] = ACTIONS(3269), - [anon_sym_POUND_LBRACK] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3271), + [anon_sym_POUND_LBRACK] = ACTIONS(3271), [anon_sym_if] = ACTIONS(3269), [anon_sym_DOLLARif] = ACTIONS(3269), - [anon_sym_is] = ACTIONS(3269), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3269), - [anon_sym_BANGin] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3271), + [anon_sym_BANGis] = ACTIONS(3271), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3271), [anon_sym_match] = ACTIONS(3269), [anon_sym_select] = ACTIONS(3269), - [anon_sym_STAR_EQ] = ACTIONS(3269), - [anon_sym_SLASH_EQ] = ACTIONS(3269), - [anon_sym_PERCENT_EQ] = ACTIONS(3269), - [anon_sym_LT_LT_EQ] = ACTIONS(3269), - [anon_sym_GT_GT_EQ] = ACTIONS(3269), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3269), - [anon_sym_AMP_EQ] = ACTIONS(3269), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3269), - [anon_sym_PLUS_EQ] = ACTIONS(3269), - [anon_sym_DASH_EQ] = ACTIONS(3269), - [anon_sym_PIPE_EQ] = ACTIONS(3269), - [anon_sym_CARET_EQ] = ACTIONS(3269), - [anon_sym_COLON_EQ] = ACTIONS(3269), + [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(3269), [anon_sym_rlock] = ACTIONS(3269), [anon_sym_unsafe] = ACTIONS(3269), @@ -109282,27724 +104990,32495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3269), [sym___r_single_quote] = ACTIONS(3269), }, + [697] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3281), + [anon_sym___global] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [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(3284), + [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(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3279), + [anon_sym_spawn] = ACTIONS(3279), + [anon_sym_json_DOTdecode] = ACTIONS(3279), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3279), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [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(3281), + [sym_none] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_nil] = ACTIONS(3279), + [anon_sym_QMARK_DOT] = ACTIONS(3281), + [anon_sym_POUND_LBRACK] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_DOLLARif] = ACTIONS(3279), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3281), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3279), + [anon_sym_select] = ACTIONS(3279), + [anon_sym_STAR_EQ] = ACTIONS(3281), + [anon_sym_SLASH_EQ] = ACTIONS(3281), + [anon_sym_PERCENT_EQ] = ACTIONS(3281), + [anon_sym_LT_LT_EQ] = ACTIONS(3281), + [anon_sym_GT_GT_EQ] = ACTIONS(3281), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3281), + [anon_sym_AMP_EQ] = ACTIONS(3281), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3281), + [anon_sym_PLUS_EQ] = ACTIONS(3281), + [anon_sym_DASH_EQ] = ACTIONS(3281), + [anon_sym_PIPE_EQ] = ACTIONS(3281), + [anon_sym_CARET_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3281), + [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), + }, + [698] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3289), + [anon_sym_LF] = ACTIONS(3289), + [anon_sym_CR] = ACTIONS(3289), + [anon_sym_CR_LF] = ACTIONS(3289), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_as] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_COMMA] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3289), + [anon_sym___global] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_fn] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [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(3287), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_union] = ACTIONS(3289), + [anon_sym_pub] = ACTIONS(3289), + [anon_sym_mut] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_go] = ACTIONS(3289), + [anon_sym_spawn] = ACTIONS(3289), + [anon_sym_json_DOTdecode] = ACTIONS(3289), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_LT_DASH] = ACTIONS(3289), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(3289), + [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(3289), + [sym_none] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_nil] = ACTIONS(3289), + [anon_sym_QMARK_DOT] = ACTIONS(3289), + [anon_sym_POUND_LBRACK] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_DOLLARif] = ACTIONS(3289), + [anon_sym_is] = ACTIONS(3289), + [anon_sym_BANGis] = ACTIONS(3289), + [anon_sym_in] = ACTIONS(3289), + [anon_sym_BANGin] = ACTIONS(3289), + [anon_sym_match] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_STAR_EQ] = ACTIONS(3289), + [anon_sym_SLASH_EQ] = ACTIONS(3289), + [anon_sym_PERCENT_EQ] = ACTIONS(3289), + [anon_sym_LT_LT_EQ] = ACTIONS(3289), + [anon_sym_GT_GT_EQ] = ACTIONS(3289), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3289), + [anon_sym_AMP_EQ] = ACTIONS(3289), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3289), + [anon_sym_PLUS_EQ] = ACTIONS(3289), + [anon_sym_DASH_EQ] = ACTIONS(3289), + [anon_sym_PIPE_EQ] = ACTIONS(3289), + [anon_sym_CARET_EQ] = ACTIONS(3289), + [anon_sym_COLON_EQ] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_rlock] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_sql] = ACTIONS(3289), + [sym_int_literal] = ACTIONS(3289), + [sym_float_literal] = ACTIONS(3289), + [sym_rune_literal] = ACTIONS(3289), + [sym_pseudo_compile_time_identifier] = ACTIONS(3289), + [anon_sym_shared] = ACTIONS(3289), + [anon_sym_map_LBRACK] = ACTIONS(3289), + [anon_sym_chan] = ACTIONS(3289), + [anon_sym_thread] = ACTIONS(3289), + [anon_sym_atomic] = ACTIONS(3289), + [anon_sym_assert] = ACTIONS(3289), + [anon_sym_defer] = ACTIONS(3289), + [anon_sym_goto] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_DOLLARfor] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(3289), + [anon_sym_asm] = ACTIONS(3289), + [anon_sym_AT_LBRACK] = ACTIONS(3289), + [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), + }, + [699] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(3291), + [sym_identifier] = ACTIONS(3293), + [anon_sym_LF] = ACTIONS(3293), + [anon_sym_CR] = ACTIONS(3293), + [anon_sym_CR_LF] = ACTIONS(3293), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_DOT] = ACTIONS(3293), + [anon_sym_as] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(3293), + [anon_sym___global] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3293), + [anon_sym_fn] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_PERCENT] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_GT] = ACTIONS(3293), + [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(3291), + [anon_sym_struct] = ACTIONS(3293), + [anon_sym_union] = ACTIONS(3293), + [anon_sym_pub] = ACTIONS(3293), + [anon_sym_mut] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_QMARK] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_go] = ACTIONS(3293), + [anon_sym_spawn] = ACTIONS(3293), + [anon_sym_json_DOTdecode] = ACTIONS(3293), + [anon_sym_LBRACK2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_LT_DASH] = ACTIONS(3293), + [anon_sym_LT_LT] = ACTIONS(3293), + [anon_sym_GT_GT] = ACTIONS(3293), + [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(3293), + [sym_none] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_nil] = ACTIONS(3293), + [anon_sym_QMARK_DOT] = ACTIONS(3293), + [anon_sym_POUND_LBRACK] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_DOLLARif] = ACTIONS(3293), + [anon_sym_is] = ACTIONS(3293), + [anon_sym_BANGis] = ACTIONS(3293), + [anon_sym_in] = ACTIONS(3293), + [anon_sym_BANGin] = ACTIONS(3293), + [anon_sym_match] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_STAR_EQ] = ACTIONS(3293), + [anon_sym_SLASH_EQ] = ACTIONS(3293), + [anon_sym_PERCENT_EQ] = ACTIONS(3293), + [anon_sym_LT_LT_EQ] = ACTIONS(3293), + [anon_sym_GT_GT_EQ] = ACTIONS(3293), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3293), + [anon_sym_AMP_EQ] = ACTIONS(3293), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3293), + [anon_sym_PLUS_EQ] = ACTIONS(3293), + [anon_sym_DASH_EQ] = ACTIONS(3293), + [anon_sym_PIPE_EQ] = ACTIONS(3293), + [anon_sym_CARET_EQ] = ACTIONS(3293), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_rlock] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_sql] = ACTIONS(3293), + [sym_int_literal] = ACTIONS(3293), + [sym_float_literal] = ACTIONS(3293), + [sym_rune_literal] = ACTIONS(3293), + [sym_pseudo_compile_time_identifier] = ACTIONS(3293), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3293), + [anon_sym_chan] = ACTIONS(3293), + [anon_sym_thread] = ACTIONS(3293), + [anon_sym_atomic] = ACTIONS(3293), + [anon_sym_assert] = ACTIONS(3293), + [anon_sym_defer] = ACTIONS(3293), + [anon_sym_goto] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_DOLLARfor] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_asm] = ACTIONS(3293), + [anon_sym_AT_LBRACK] = ACTIONS(3293), + [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), + }, + [700] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(3295), + [sym_identifier] = ACTIONS(3297), + [anon_sym_LF] = ACTIONS(3297), + [anon_sym_CR] = ACTIONS(3297), + [anon_sym_CR_LF] = ACTIONS(3297), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3297), + [anon_sym_as] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym___global] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_fn] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_PERCENT] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_GT] = ACTIONS(3297), + [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(3295), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_union] = ACTIONS(3297), + [anon_sym_pub] = ACTIONS(3297), + [anon_sym_mut] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_go] = ACTIONS(3297), + [anon_sym_spawn] = ACTIONS(3297), + [anon_sym_json_DOTdecode] = ACTIONS(3297), + [anon_sym_LBRACK2] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_LT_DASH] = ACTIONS(3297), + [anon_sym_LT_LT] = ACTIONS(3297), + [anon_sym_GT_GT] = ACTIONS(3297), + [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(3297), + [sym_none] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_nil] = ACTIONS(3297), + [anon_sym_QMARK_DOT] = ACTIONS(3297), + [anon_sym_POUND_LBRACK] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_DOLLARif] = ACTIONS(3297), + [anon_sym_is] = ACTIONS(3297), + [anon_sym_BANGis] = ACTIONS(3297), + [anon_sym_in] = ACTIONS(3297), + [anon_sym_BANGin] = ACTIONS(3297), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_STAR_EQ] = ACTIONS(3297), + [anon_sym_SLASH_EQ] = ACTIONS(3297), + [anon_sym_PERCENT_EQ] = ACTIONS(3297), + [anon_sym_LT_LT_EQ] = ACTIONS(3297), + [anon_sym_GT_GT_EQ] = ACTIONS(3297), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3297), + [anon_sym_AMP_EQ] = ACTIONS(3297), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3297), + [anon_sym_PLUS_EQ] = ACTIONS(3297), + [anon_sym_DASH_EQ] = ACTIONS(3297), + [anon_sym_PIPE_EQ] = ACTIONS(3297), + [anon_sym_CARET_EQ] = ACTIONS(3297), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_rlock] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_sql] = ACTIONS(3297), + [sym_int_literal] = ACTIONS(3297), + [sym_float_literal] = ACTIONS(3297), + [sym_rune_literal] = ACTIONS(3297), + [sym_pseudo_compile_time_identifier] = ACTIONS(3297), + [anon_sym_shared] = ACTIONS(3297), + [anon_sym_map_LBRACK] = ACTIONS(3297), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3297), + [anon_sym_atomic] = ACTIONS(3297), + [anon_sym_assert] = ACTIONS(3297), + [anon_sym_defer] = ACTIONS(3297), + [anon_sym_goto] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_DOLLARfor] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_POUND] = ACTIONS(3297), + [anon_sym_asm] = ACTIONS(3297), + [anon_sym_AT_LBRACK] = ACTIONS(3297), + [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), + }, + [701] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), + [sym__expression] = STATE(2274), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), + }, + [702] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(3299), + [sym_identifier] = ACTIONS(3301), + [anon_sym_LF] = ACTIONS(3301), + [anon_sym_CR] = ACTIONS(3301), + [anon_sym_CR_LF] = ACTIONS(3301), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_COMMA] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(3301), + [anon_sym___global] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [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(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_union] = ACTIONS(3301), + [anon_sym_pub] = ACTIONS(3301), + [anon_sym_mut] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_go] = ACTIONS(3301), + [anon_sym_spawn] = ACTIONS(3301), + [anon_sym_json_DOTdecode] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_DASH] = ACTIONS(3301), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3301), + [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(3301), + [sym_none] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_nil] = ACTIONS(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3301), + [anon_sym_POUND_LBRACK] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_DOLLARif] = ACTIONS(3301), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3301), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = ACTIONS(3301), + [anon_sym_match] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_STAR_EQ] = ACTIONS(3301), + [anon_sym_SLASH_EQ] = ACTIONS(3301), + [anon_sym_PERCENT_EQ] = ACTIONS(3301), + [anon_sym_LT_LT_EQ] = ACTIONS(3301), + [anon_sym_GT_GT_EQ] = ACTIONS(3301), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3301), + [anon_sym_AMP_EQ] = ACTIONS(3301), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3301), + [anon_sym_PLUS_EQ] = ACTIONS(3301), + [anon_sym_DASH_EQ] = ACTIONS(3301), + [anon_sym_PIPE_EQ] = ACTIONS(3301), + [anon_sym_CARET_EQ] = ACTIONS(3301), + [anon_sym_COLON_EQ] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_rlock] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_sql] = ACTIONS(3301), + [sym_int_literal] = ACTIONS(3301), + [sym_float_literal] = ACTIONS(3301), + [sym_rune_literal] = ACTIONS(3301), + [sym_pseudo_compile_time_identifier] = ACTIONS(3301), + [anon_sym_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3301), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + [anon_sym_assert] = ACTIONS(3301), + [anon_sym_defer] = ACTIONS(3301), + [anon_sym_goto] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_DOLLARfor] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_POUND] = ACTIONS(3301), + [anon_sym_asm] = ACTIONS(3301), + [anon_sym_AT_LBRACK] = ACTIONS(3301), + [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), + }, + [703] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3305), + [anon_sym_LF] = ACTIONS(3305), + [anon_sym_CR] = ACTIONS(3305), + [anon_sym_CR_LF] = ACTIONS(3305), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_COMMA] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_EQ] = ACTIONS(3305), + [anon_sym___global] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [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(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_union] = ACTIONS(3305), + [anon_sym_pub] = ACTIONS(3305), + [anon_sym_mut] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_go] = ACTIONS(3305), + [anon_sym_spawn] = ACTIONS(3305), + [anon_sym_json_DOTdecode] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3305), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3305), + [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(3305), + [sym_none] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_nil] = ACTIONS(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3305), + [anon_sym_POUND_LBRACK] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_DOLLARif] = ACTIONS(3305), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3305), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_STAR_EQ] = ACTIONS(3305), + [anon_sym_SLASH_EQ] = ACTIONS(3305), + [anon_sym_PERCENT_EQ] = ACTIONS(3305), + [anon_sym_LT_LT_EQ] = ACTIONS(3305), + [anon_sym_GT_GT_EQ] = ACTIONS(3305), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3305), + [anon_sym_AMP_EQ] = ACTIONS(3305), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3305), + [anon_sym_PLUS_EQ] = ACTIONS(3305), + [anon_sym_DASH_EQ] = ACTIONS(3305), + [anon_sym_PIPE_EQ] = ACTIONS(3305), + [anon_sym_CARET_EQ] = ACTIONS(3305), + [anon_sym_COLON_EQ] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_rlock] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_sql] = ACTIONS(3305), + [sym_int_literal] = ACTIONS(3305), + [sym_float_literal] = ACTIONS(3305), + [sym_rune_literal] = ACTIONS(3305), + [sym_pseudo_compile_time_identifier] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3305), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_defer] = ACTIONS(3305), + [anon_sym_goto] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_DOLLARfor] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_POUND] = ACTIONS(3305), + [anon_sym_asm] = ACTIONS(3305), + [anon_sym_AT_LBRACK] = ACTIONS(3305), + [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), + }, + [704] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), + [sym__expression] = STATE(2272), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), + }, + [705] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), + [sym__expression] = STATE(1815), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4334), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), + }, + [706] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4016), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), + }, + [707] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), + [ts_builtin_sym_end] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3309), + [anon_sym_LF] = ACTIONS(3309), + [anon_sym_CR] = ACTIONS(3309), + [anon_sym_CR_LF] = ACTIONS(3309), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_DOT] = ACTIONS(3309), + [anon_sym_as] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_EQ] = ACTIONS(3309), + [anon_sym___global] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_fn] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [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(3307), + [anon_sym_struct] = ACTIONS(3309), + [anon_sym_union] = ACTIONS(3309), + [anon_sym_pub] = ACTIONS(3309), + [anon_sym_mut] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_QMARK] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_go] = ACTIONS(3309), + [anon_sym_spawn] = ACTIONS(3309), + [anon_sym_json_DOTdecode] = ACTIONS(3309), + [anon_sym_LBRACK2] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_LT_DASH] = ACTIONS(3309), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3309), + [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(3309), + [sym_none] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_nil] = ACTIONS(3309), + [anon_sym_QMARK_DOT] = ACTIONS(3309), + [anon_sym_POUND_LBRACK] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_DOLLARif] = ACTIONS(3309), + [anon_sym_is] = ACTIONS(3309), + [anon_sym_BANGis] = ACTIONS(3309), + [anon_sym_in] = ACTIONS(3309), + [anon_sym_BANGin] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_STAR_EQ] = ACTIONS(3309), + [anon_sym_SLASH_EQ] = ACTIONS(3309), + [anon_sym_PERCENT_EQ] = ACTIONS(3309), + [anon_sym_LT_LT_EQ] = ACTIONS(3309), + [anon_sym_GT_GT_EQ] = ACTIONS(3309), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3309), + [anon_sym_AMP_EQ] = ACTIONS(3309), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3309), + [anon_sym_PLUS_EQ] = ACTIONS(3309), + [anon_sym_DASH_EQ] = ACTIONS(3309), + [anon_sym_PIPE_EQ] = ACTIONS(3309), + [anon_sym_CARET_EQ] = ACTIONS(3309), + [anon_sym_COLON_EQ] = ACTIONS(3309), + [anon_sym_lock] = ACTIONS(3309), + [anon_sym_rlock] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_sql] = ACTIONS(3309), + [sym_int_literal] = ACTIONS(3309), + [sym_float_literal] = ACTIONS(3309), + [sym_rune_literal] = ACTIONS(3309), + [sym_pseudo_compile_time_identifier] = ACTIONS(3309), + [anon_sym_shared] = ACTIONS(3309), + [anon_sym_map_LBRACK] = ACTIONS(3309), + [anon_sym_chan] = ACTIONS(3309), + [anon_sym_thread] = ACTIONS(3309), + [anon_sym_atomic] = ACTIONS(3309), + [anon_sym_assert] = ACTIONS(3309), + [anon_sym_defer] = ACTIONS(3309), + [anon_sym_goto] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_DOLLARfor] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_POUND] = ACTIONS(3309), + [anon_sym_asm] = ACTIONS(3309), + [anon_sym_AT_LBRACK] = ACTIONS(3309), + [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), + }, + [708] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4009), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), + }, + [709] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), + [sym__expression] = STATE(1815), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4325), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), + }, + [710] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), + [sym__expression] = STATE(2265), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), + }, + [711] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), + [sym__expression] = STATE(1824), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), + }, + [712] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), + [sym__expression] = STATE(2881), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [713] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), + [sym__expression] = STATE(1825), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), + }, + [714] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3315), + [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_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), + }, + [715] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), + [sym__expression] = STATE(2179), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4313), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), + }, + [716] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), + [sym__expression] = STATE(2179), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4314), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), + }, + [717] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), + [sym__expression] = STATE(2179), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4320), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), + }, + [718] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), + [sym__expression] = STATE(1924), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), + }, + [719] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), + [sym__expression] = STATE(2868), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [720] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), + [sym__expression] = STATE(1926), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), + }, + [721] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), + [sym__expression] = STATE(1293), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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_block_comment] = STATE(722), + [sym__expression] = STATE(2515), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), + }, + [723] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), + [sym__expression] = STATE(1667), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4410), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), + }, + [724] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), + [sym__expression] = STATE(1815), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), + }, + [725] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), + [sym__expression] = STATE(2512), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), + }, + [726] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), + [sym__expression] = STATE(1928), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), + }, [727] = { - [sym__expression] = STATE(1164), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4349), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), + [sym__expression] = STATE(1810), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), }, [728] = { - [sym__expression] = STATE(2656), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), + [sym__expression] = STATE(2511), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, [729] = { - [sym__expression] = STATE(2809), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), + [sym__expression] = STATE(1667), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4411), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [730] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(3002), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(3001), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), + [sym__expression] = STATE(2501), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [731] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), + [sym__expression] = STATE(1702), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [732] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), + [sym__expression] = STATE(1667), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4414), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [733] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), + [sym__expression] = STATE(1651), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4309), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, [734] = { - [sym__expression] = STATE(2630), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), + [sym__expression] = STATE(1308), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [735] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), + [sym__expression] = STATE(2502), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [736] = { - [sym__expression] = STATE(1792), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(736), + [sym_block_comment] = STATE(736), + [sym__expression] = STATE(2482), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), }, [737] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2960), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2961), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(737), + [sym_block_comment] = STATE(737), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2983), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2984), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [738] = { - [sym__expression] = STATE(296), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), + [sym__expression] = STATE(2657), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [739] = { - [sym__expression] = STATE(1692), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), + [sym_line_comment] = STATE(739), + [sym_block_comment] = STATE(739), + [sym__expression] = STATE(2176), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, [740] = { - [sym__expression] = STATE(1793), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(740), + [sym_block_comment] = STATE(740), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3678), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [741] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(741), + [sym_block_comment] = STATE(741), + [sym__expression] = STATE(2320), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, [742] = { - [sym__expression] = STATE(2839), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(742), + [sym_block_comment] = STATE(742), + [sym__expression] = STATE(2323), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, [743] = { - [sym__expression] = STATE(2170), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(743), + [sym_block_comment] = STATE(743), + [sym__expression] = STATE(1651), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4355), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, [744] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4291), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(744), + [sym_block_comment] = STATE(744), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3672), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [745] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4304), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(745), + [sym_block_comment] = STATE(745), + [sym__expression] = STATE(2179), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, [746] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(746), + [sym_block_comment] = STATE(746), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3319), + [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_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), }, [747] = { - [sym__expression] = STATE(1643), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(747), + [sym_block_comment] = STATE(747), + [sym__expression] = STATE(2839), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [748] = { - [sym__expression] = STATE(1785), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(748), + [sym_block_comment] = STATE(748), + [sym__expression] = STATE(2580), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), }, [749] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(749), + [sym_block_comment] = STATE(749), + [sym__expression] = STATE(2574), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), }, [750] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(750), + [sym_block_comment] = STATE(750), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3323), + [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_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), }, [751] = { - [sym__expression] = STATE(1783), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(751), + [sym_block_comment] = STATE(751), + [sym__expression] = STATE(1651), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, [752] = { - [sym__expression] = STATE(2337), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(752), + [sym_block_comment] = STATE(752), + [sym__expression] = STATE(1705), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [753] = { - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(753), + [sym_block_comment] = STATE(753), + [sym__expression] = STATE(1806), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4376), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [754] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(754), + [sym_block_comment] = STATE(754), + [sym__expression] = STATE(1691), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [755] = { - [sym__expression] = STATE(2671), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(755), + [sym_block_comment] = STATE(755), + [sym__expression] = STATE(2680), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [756] = { - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(756), + [sym_block_comment] = STATE(756), + [sym__expression] = STATE(1689), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [757] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4305), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(757), + [sym_block_comment] = STATE(757), + [sym__expression] = STATE(2506), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [758] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4255), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [759] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(759), + [sym_block_comment] = STATE(759), + [sym__expression] = STATE(2554), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), }, [760] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2934), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2959), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(760), + [sym_block_comment] = STATE(760), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3327), + [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_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), }, [761] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(761), + [sym_block_comment] = STATE(761), + [sym__expression] = STATE(1806), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4371), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [762] = { - [sym__expression] = STATE(1784), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(762), + [sym_block_comment] = STATE(762), + [sym__expression] = STATE(2195), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, [763] = { - [sym__expression] = STATE(2648), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1811), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_LT_DASH] = ACTIONS(1817), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1819), - [anon_sym_lock] = ACTIONS(1821), - [anon_sym_rlock] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), + [sym__expression] = STATE(1806), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4394), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [764] = { - [sym__expression] = STATE(999), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(764), + [sym_block_comment] = STATE(764), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3331), + [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_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), }, [765] = { - [sym__expression] = STATE(2828), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(765), + [sym_block_comment] = STATE(765), + [sym__expression] = STATE(2336), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_go] = ACTIONS(3079), + [anon_sym_spawn] = ACTIONS(3081), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3089), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3101), + [anon_sym_rlock] = ACTIONS(3101), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, [766] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(766), + [sym_block_comment] = STATE(766), + [sym__expression] = STATE(1667), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [767] = { - [sym__expression] = STATE(1669), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), + [sym_line_comment] = STATE(767), + [sym_block_comment] = STATE(767), + [sym__expression] = STATE(2537), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), }, [768] = { - [sym__expression] = STATE(2674), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(768), + [sym_block_comment] = STATE(768), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [769] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3313), - [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_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), + [sym__expression] = STATE(2534), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), }, [770] = { - [sym__expression] = STATE(2645), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(770), + [sym_block_comment] = STATE(770), + [sym__expression] = STATE(2909), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [771] = { - [sym__expression] = STATE(1938), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(771), + [sym_block_comment] = STATE(771), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3335), + [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_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), }, [772] = { - [sym__expression] = STATE(2636), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(772), + [sym_block_comment] = STATE(772), + [sym__expression] = STATE(1931), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [773] = { - [sym__expression] = STATE(2681), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(773), + [sym_block_comment] = STATE(773), + [sym__expression] = STATE(2550), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), }, [774] = { - [sym__expression] = STATE(2835), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(774), + [sym_block_comment] = STATE(774), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4236), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [775] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2964), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2958), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(775), + [sym_block_comment] = STATE(775), + [sym__expression] = STATE(2504), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [776] = { - [sym__expression] = STATE(2848), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(776), + [sym_block_comment] = STATE(776), + [sym__expression] = STATE(1946), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [777] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(777), + [sym_block_comment] = STATE(777), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3339), + [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_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), }, [778] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3343), + [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_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), }, [779] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(779), + [sym_block_comment] = STATE(779), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [780] = { - [sym__expression] = STATE(2421), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(780), + [sym_block_comment] = STATE(780), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3347), + [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_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), }, [781] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4291), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(781), + [sym_block_comment] = STATE(781), + [sym__expression] = STATE(2505), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [782] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4304), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(782), + [sym_block_comment] = STATE(782), + [sym__expression] = STATE(2672), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [783] = { - [sym__expression] = STATE(2650), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(783), + [sym_block_comment] = STATE(783), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3007), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3008), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [784] = { - [sym__expression] = STATE(985), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(784), + [sym_block_comment] = STATE(784), + [sym__expression] = STATE(2785), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [785] = { - [sym__expression] = STATE(2761), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(785), + [sym_block_comment] = STATE(785), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3351), + [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_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), }, [786] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2973), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(786), + [sym_block_comment] = STATE(786), + [sym__expression] = STATE(2334), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [787] = { - [sym__expression] = STATE(2702), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(787), + [sym_block_comment] = STATE(787), + [sym__expression] = STATE(1823), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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__expression] = STATE(1897), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(788), + [sym_block_comment] = STATE(788), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3355), + [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_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), }, [789] = { - [sym__expression] = STATE(1648), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(789), + [sym_block_comment] = STATE(789), + [sym__expression] = STATE(2524), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [790] = { - [sym__expression] = STATE(1640), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4336), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(790), + [sym_block_comment] = STATE(790), + [sym__expression] = STATE(980), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [791] = { - [sym__expression] = STATE(1894), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(791), + [sym_block_comment] = STATE(791), + [sym__expression] = STATE(981), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [792] = { - [sym__expression] = STATE(2867), - [sym__expression_without_blocks] = STATE(2994), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2994), - [sym_dec_expression] = STATE(2994), - [sym_or_block_expression] = STATE(2994), - [sym_option_propagation_expression] = STATE(2994), - [sym_result_propagation_expression] = STATE(2994), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2994), - [sym_spawn_expression] = STATE(2994), - [sym_parenthesized_expression] = STATE(2994), - [sym_call_expression] = STATE(2994), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2994), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2994), - [sym_receive_expression] = STATE(2994), - [sym_binary_expression] = STATE(2994), - [sym_as_type_cast_expression] = STATE(2994), - [sym__max_group] = STATE(2994), - [sym_literal] = STATE(2994), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2994), - [sym_fixed_array_creation] = STATE(2994), - [sym_selector_expression] = STATE(2994), - [sym_index_expression] = STATE(2994), - [sym_slice_expression] = STATE(2994), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2994), - [sym_not_is_expression] = STATE(2994), - [sym_in_expression] = STATE(2994), - [sym_not_in_expression] = STATE(2994), - [sym_enum_fetch] = STATE(2994), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(3324), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(792), + [sym_block_comment] = STATE(792), + [sym__expression] = STATE(1006), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [793] = { - [sym__expression] = STATE(1649), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(793), + [sym_block_comment] = STATE(793), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3359), + [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_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), }, [794] = { - [sym__expression] = STATE(1650), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(794), + [sym_block_comment] = STATE(794), + [sym__expression] = STATE(2334), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [795] = { - [sym__expression] = STATE(1640), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4361), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(795), + [sym_block_comment] = STATE(795), + [sym__expression] = STATE(2807), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [796] = { - [sym__expression] = STATE(2688), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(796), + [sym_block_comment] = STATE(796), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3363), + [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_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), }, [797] = { - [sym__expression] = STATE(1304), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(797), + [sym_block_comment] = STATE(797), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3367), + [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_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), }, [798] = { - [sym__expression] = STATE(1640), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4365), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(798), + [sym_block_comment] = STATE(798), + [sym__expression] = STATE(2715), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [799] = { - [sym__expression] = STATE(1640), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(799), + [sym_block_comment] = STATE(799), + [sym__expression] = STATE(2803), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [800] = { - [sym__expression] = STATE(297), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_line_comment] = STATE(800), + [sym_block_comment] = STATE(800), + [sym__expression] = STATE(1805), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4212), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [801] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(801), + [sym_block_comment] = STATE(801), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3371), + [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_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), }, [802] = { - [sym__expression] = STATE(1282), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(802), + [sym_block_comment] = STATE(802), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(3678), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [803] = { - [sym__expression] = STATE(2715), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(803), + [sym_block_comment] = STATE(803), + [sym__expression] = STATE(1798), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4212), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [804] = { - [sym__expression] = STATE(2302), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(804), + [sym_block_comment] = STATE(804), + [sym__expression] = STATE(1799), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4212), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [805] = { - [sym__expression] = STATE(2719), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(805), + [sym_block_comment] = STATE(805), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(3685), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [806] = { - [sym__expression] = STATE(1292), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(806), + [sym_block_comment] = STATE(806), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(3672), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [807] = { - [sym__expression] = STATE(1303), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(807), + [sym_block_comment] = STATE(807), + [sym__expression] = STATE(2833), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [808] = { - [sym__expression] = STATE(1810), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(808), + [sym_block_comment] = STATE(808), + [sym__expression] = STATE(2495), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [809] = { - [ts_builtin_sym_end] = ACTIONS(3326), - [sym_identifier] = ACTIONS(3328), - [anon_sym_LF] = ACTIONS(3328), - [anon_sym_CR] = ACTIONS(3328), - [anon_sym_CR_LF] = ACTIONS(3328), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym___global] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_PERCENT] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_GT] = ACTIONS(3328), - [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(3326), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [anon_sym_pub] = ACTIONS(3328), - [anon_sym_mut] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [anon_sym_QMARK] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_go] = ACTIONS(3328), - [anon_sym_spawn] = ACTIONS(3328), - [anon_sym_json_DOTdecode] = ACTIONS(3328), - [anon_sym_LBRACK2] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_LT_DASH] = ACTIONS(3328), - [anon_sym_LT_LT] = ACTIONS(3328), - [anon_sym_GT_GT] = ACTIONS(3328), - [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(3328), - [sym_none] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_nil] = ACTIONS(3328), - [anon_sym_QMARK_DOT] = ACTIONS(3328), - [anon_sym_POUND_LBRACK] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_DOLLARif] = ACTIONS(3328), - [anon_sym_is] = ACTIONS(3328), - [anon_sym_BANGis] = ACTIONS(3328), - [anon_sym_in] = ACTIONS(3328), - [anon_sym_BANGin] = ACTIONS(3328), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3328), - [anon_sym_STAR_EQ] = ACTIONS(3328), - [anon_sym_SLASH_EQ] = ACTIONS(3328), - [anon_sym_PERCENT_EQ] = ACTIONS(3328), - [anon_sym_LT_LT_EQ] = ACTIONS(3328), - [anon_sym_GT_GT_EQ] = ACTIONS(3328), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3328), - [anon_sym_AMP_EQ] = ACTIONS(3328), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3328), - [anon_sym_PLUS_EQ] = ACTIONS(3328), - [anon_sym_DASH_EQ] = ACTIONS(3328), - [anon_sym_PIPE_EQ] = ACTIONS(3328), - [anon_sym_CARET_EQ] = ACTIONS(3328), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_lock] = ACTIONS(3328), - [anon_sym_rlock] = ACTIONS(3328), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3328), - [sym_int_literal] = ACTIONS(3328), - [sym_float_literal] = ACTIONS(3328), - [sym_rune_literal] = ACTIONS(3328), - [sym_pseudo_compile_time_identifier] = ACTIONS(3328), - [anon_sym_shared] = ACTIONS(3328), - [anon_sym_map_LBRACK] = ACTIONS(3328), - [anon_sym_chan] = ACTIONS(3328), - [anon_sym_thread] = ACTIONS(3328), - [anon_sym_atomic] = ACTIONS(3328), - [anon_sym_assert] = ACTIONS(3328), - [anon_sym_defer] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_DOLLARfor] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_POUND] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - [anon_sym_AT_LBRACK] = ACTIONS(3328), - [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), + [sym_line_comment] = STATE(809), + [sym_block_comment] = STATE(809), + [sym__expression] = STATE(991), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [810] = { - [ts_builtin_sym_end] = ACTIONS(3330), - [sym_identifier] = ACTIONS(3332), - [anon_sym_LF] = ACTIONS(3332), - [anon_sym_CR] = ACTIONS(3332), - [anon_sym_CR_LF] = ACTIONS(3332), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3332), - [anon_sym_as] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym___global] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_PIPE] = ACTIONS(3332), - [anon_sym_fn] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_PERCENT] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_GT] = ACTIONS(3332), - [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(3330), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_pub] = ACTIONS(3332), - [anon_sym_mut] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [anon_sym_QMARK] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_go] = ACTIONS(3332), - [anon_sym_spawn] = ACTIONS(3332), - [anon_sym_json_DOTdecode] = ACTIONS(3332), - [anon_sym_LBRACK2] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_CARET] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_LT_DASH] = ACTIONS(3332), - [anon_sym_LT_LT] = ACTIONS(3332), - [anon_sym_GT_GT] = ACTIONS(3332), - [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(3332), - [sym_none] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_nil] = ACTIONS(3332), - [anon_sym_QMARK_DOT] = ACTIONS(3332), - [anon_sym_POUND_LBRACK] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_DOLLARif] = ACTIONS(3332), - [anon_sym_is] = ACTIONS(3332), - [anon_sym_BANGis] = ACTIONS(3332), - [anon_sym_in] = ACTIONS(3332), - [anon_sym_BANGin] = ACTIONS(3332), - [anon_sym_match] = ACTIONS(3332), - [anon_sym_select] = ACTIONS(3332), - [anon_sym_STAR_EQ] = ACTIONS(3332), - [anon_sym_SLASH_EQ] = ACTIONS(3332), - [anon_sym_PERCENT_EQ] = ACTIONS(3332), - [anon_sym_LT_LT_EQ] = ACTIONS(3332), - [anon_sym_GT_GT_EQ] = ACTIONS(3332), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3332), - [anon_sym_AMP_EQ] = ACTIONS(3332), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3332), - [anon_sym_PLUS_EQ] = ACTIONS(3332), - [anon_sym_DASH_EQ] = ACTIONS(3332), - [anon_sym_PIPE_EQ] = ACTIONS(3332), - [anon_sym_CARET_EQ] = ACTIONS(3332), - [anon_sym_COLON_EQ] = ACTIONS(3332), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3332), - [anon_sym_sql] = ACTIONS(3332), - [sym_int_literal] = ACTIONS(3332), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3332), - [anon_sym_shared] = ACTIONS(3332), - [anon_sym_map_LBRACK] = ACTIONS(3332), - [anon_sym_chan] = ACTIONS(3332), - [anon_sym_thread] = ACTIONS(3332), - [anon_sym_atomic] = ACTIONS(3332), - [anon_sym_assert] = ACTIONS(3332), - [anon_sym_defer] = ACTIONS(3332), - [anon_sym_goto] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_DOLLARfor] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_POUND] = ACTIONS(3332), - [anon_sym_asm] = ACTIONS(3332), - [anon_sym_AT_LBRACK] = ACTIONS(3332), - [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), + [sym_line_comment] = STATE(810), + [sym_block_comment] = STATE(810), + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [811] = { - [sym__expression] = STATE(2794), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(811), + [sym_block_comment] = STATE(811), + [sym__expression] = STATE(2894), + [sym__expression_without_blocks] = STATE(3013), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [812] = { - [ts_builtin_sym_end] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_CR] = ACTIONS(3336), - [anon_sym_CR_LF] = ACTIONS(3336), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_as] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_COMMA] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_EQ] = ACTIONS(3336), - [anon_sym___global] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_PERCENT] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_GT] = ACTIONS(3336), - [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(3334), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_pub] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3336), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3336), - [anon_sym_LT_LT] = ACTIONS(3336), - [anon_sym_GT_GT] = ACTIONS(3336), - [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(3336), - [sym_none] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_nil] = ACTIONS(3336), - [anon_sym_QMARK_DOT] = ACTIONS(3336), - [anon_sym_POUND_LBRACK] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_DOLLARif] = ACTIONS(3336), - [anon_sym_is] = ACTIONS(3336), - [anon_sym_BANGis] = ACTIONS(3336), - [anon_sym_in] = ACTIONS(3336), - [anon_sym_BANGin] = ACTIONS(3336), - [anon_sym_match] = ACTIONS(3336), - [anon_sym_select] = ACTIONS(3336), - [anon_sym_STAR_EQ] = ACTIONS(3336), - [anon_sym_SLASH_EQ] = ACTIONS(3336), - [anon_sym_PERCENT_EQ] = ACTIONS(3336), - [anon_sym_LT_LT_EQ] = ACTIONS(3336), - [anon_sym_GT_GT_EQ] = ACTIONS(3336), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3336), - [anon_sym_AMP_EQ] = ACTIONS(3336), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3336), - [anon_sym_PLUS_EQ] = ACTIONS(3336), - [anon_sym_DASH_EQ] = ACTIONS(3336), - [anon_sym_PIPE_EQ] = ACTIONS(3336), - [anon_sym_CARET_EQ] = ACTIONS(3336), - [anon_sym_COLON_EQ] = ACTIONS(3336), - [anon_sym_lock] = ACTIONS(3336), - [anon_sym_rlock] = ACTIONS(3336), - [anon_sym_unsafe] = ACTIONS(3336), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3336), - [sym_float_literal] = ACTIONS(3336), - [sym_rune_literal] = ACTIONS(3336), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(3336), - [anon_sym_map_LBRACK] = ACTIONS(3336), - [anon_sym_chan] = ACTIONS(3336), - [anon_sym_thread] = ACTIONS(3336), - [anon_sym_atomic] = ACTIONS(3336), - [anon_sym_assert] = ACTIONS(3336), - [anon_sym_defer] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_DOLLARfor] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_POUND] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), - [anon_sym_AT_LBRACK] = ACTIONS(3336), - [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), + [sym_line_comment] = STATE(812), + [sym_block_comment] = STATE(812), + [sym__expression] = STATE(992), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [813] = { - [ts_builtin_sym_end] = ACTIONS(3338), - [sym_identifier] = ACTIONS(3340), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_CR] = ACTIONS(3340), - [anon_sym_CR_LF] = ACTIONS(3340), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_COMMA] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym___global] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_fn] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [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(3338), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_union] = ACTIONS(3340), - [anon_sym_pub] = ACTIONS(3340), - [anon_sym_mut] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [anon_sym_QMARK] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_go] = ACTIONS(3340), - [anon_sym_spawn] = ACTIONS(3340), - [anon_sym_json_DOTdecode] = ACTIONS(3340), - [anon_sym_LBRACK2] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_CARET] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_LT_DASH] = ACTIONS(3340), - [anon_sym_LT_LT] = ACTIONS(3340), - [anon_sym_GT_GT] = ACTIONS(3340), - [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(3340), - [sym_none] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_nil] = ACTIONS(3340), - [anon_sym_QMARK_DOT] = ACTIONS(3340), - [anon_sym_POUND_LBRACK] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_DOLLARif] = ACTIONS(3340), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_BANGin] = ACTIONS(3340), - [anon_sym_match] = ACTIONS(3340), - [anon_sym_select] = ACTIONS(3340), - [anon_sym_STAR_EQ] = ACTIONS(3340), - [anon_sym_SLASH_EQ] = ACTIONS(3340), - [anon_sym_PERCENT_EQ] = ACTIONS(3340), - [anon_sym_LT_LT_EQ] = ACTIONS(3340), - [anon_sym_GT_GT_EQ] = ACTIONS(3340), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3340), - [anon_sym_AMP_EQ] = ACTIONS(3340), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3340), - [anon_sym_PLUS_EQ] = ACTIONS(3340), - [anon_sym_DASH_EQ] = ACTIONS(3340), - [anon_sym_PIPE_EQ] = ACTIONS(3340), - [anon_sym_CARET_EQ] = ACTIONS(3340), - [anon_sym_COLON_EQ] = ACTIONS(3340), - [anon_sym_lock] = ACTIONS(3340), - [anon_sym_rlock] = ACTIONS(3340), - [anon_sym_unsafe] = ACTIONS(3340), - [anon_sym_sql] = ACTIONS(3340), - [sym_int_literal] = ACTIONS(3340), - [sym_float_literal] = ACTIONS(3340), - [sym_rune_literal] = ACTIONS(3340), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(3340), - [anon_sym_map_LBRACK] = ACTIONS(3340), - [anon_sym_chan] = ACTIONS(3340), - [anon_sym_thread] = ACTIONS(3340), - [anon_sym_atomic] = ACTIONS(3340), - [anon_sym_assert] = ACTIONS(3340), - [anon_sym_defer] = ACTIONS(3340), - [anon_sym_goto] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_DOLLARfor] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_POUND] = ACTIONS(3340), - [anon_sym_asm] = ACTIONS(3340), - [anon_sym_AT_LBRACK] = ACTIONS(3340), - [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), + [sym_line_comment] = STATE(813), + [sym_block_comment] = STATE(813), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2996), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2997), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [814] = { - [sym__expression] = STATE(1787), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(814), + [sym_block_comment] = STATE(814), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3375), + [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_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), }, [815] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2952), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2950), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(815), + [sym_block_comment] = STATE(815), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [816] = { - [sym__expression] = STATE(1812), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(816), + [sym_block_comment] = STATE(816), + [sym__expression] = STATE(2904), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [817] = { - [sym__expression] = STATE(1813), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(817), + [sym_block_comment] = STATE(817), + [sym__expression] = STATE(2758), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [818] = { - [sym__expression] = STATE(1811), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(818), + [sym_block_comment] = STATE(818), + [sym__expression] = STATE(2749), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [819] = { - [sym__expression] = STATE(2669), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(819), + [sym_block_comment] = STATE(819), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [820] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4305), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(820), + [sym_block_comment] = STATE(820), + [sym__expression] = STATE(2526), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [821] = { - [sym__expression] = STATE(2467), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(821), + [sym_block_comment] = STATE(821), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3379), + [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_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), }, [822] = { - [sym__expression] = STATE(1784), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2665), - [anon_sym_spawn] = ACTIONS(2667), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2673), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2675), - [anon_sym_lock] = ACTIONS(2677), - [anon_sym_rlock] = ACTIONS(2677), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(822), + [sym_block_comment] = STATE(822), + [sym__expression] = STATE(990), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [823] = { - [sym__expression] = STATE(1807), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(823), + [sym_block_comment] = STATE(823), + [sym__expression] = STATE(989), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [824] = { - [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), - [sym_comment] = ACTIONS(495), - [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_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), + [sym_line_comment] = STATE(824), + [sym_block_comment] = STATE(824), + [sym__expression] = STATE(987), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [825] = { - [sym__expression] = STATE(2302), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(825), + [sym_block_comment] = STATE(825), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3383), + [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_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), }, [826] = { - [sym__expression] = STATE(2651), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(826), + [sym_block_comment] = STATE(826), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3387), + [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_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), }, [827] = { - [sym__expression] = STATE(2468), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(827), + [sym_block_comment] = STATE(827), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3672), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [828] = { - [ts_builtin_sym_end] = ACTIONS(3342), - [sym_identifier] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_CR] = ACTIONS(3344), - [anon_sym_CR_LF] = ACTIONS(3344), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_COMMA] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym___global] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_PIPE] = ACTIONS(3344), - [anon_sym_fn] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [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(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3344), - [anon_sym_pub] = ACTIONS(3344), - [anon_sym_mut] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [anon_sym_QMARK] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_go] = ACTIONS(3344), - [anon_sym_spawn] = ACTIONS(3344), - [anon_sym_json_DOTdecode] = ACTIONS(3344), - [anon_sym_LBRACK2] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_CARET] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), - [anon_sym_LT_DASH] = ACTIONS(3344), - [anon_sym_LT_LT] = ACTIONS(3344), - [anon_sym_GT_GT] = ACTIONS(3344), - [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(3344), - [sym_none] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_nil] = ACTIONS(3344), - [anon_sym_QMARK_DOT] = ACTIONS(3344), - [anon_sym_POUND_LBRACK] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_DOLLARif] = ACTIONS(3344), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_BANGin] = ACTIONS(3344), - [anon_sym_match] = ACTIONS(3344), - [anon_sym_select] = ACTIONS(3344), - [anon_sym_STAR_EQ] = ACTIONS(3344), - [anon_sym_SLASH_EQ] = ACTIONS(3344), - [anon_sym_PERCENT_EQ] = ACTIONS(3344), - [anon_sym_LT_LT_EQ] = ACTIONS(3344), - [anon_sym_GT_GT_EQ] = ACTIONS(3344), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3344), - [anon_sym_AMP_EQ] = ACTIONS(3344), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3344), - [anon_sym_PLUS_EQ] = ACTIONS(3344), - [anon_sym_DASH_EQ] = ACTIONS(3344), - [anon_sym_PIPE_EQ] = ACTIONS(3344), - [anon_sym_CARET_EQ] = ACTIONS(3344), - [anon_sym_COLON_EQ] = ACTIONS(3344), - [anon_sym_lock] = ACTIONS(3344), - [anon_sym_rlock] = ACTIONS(3344), - [anon_sym_unsafe] = ACTIONS(3344), - [anon_sym_sql] = ACTIONS(3344), - [sym_int_literal] = ACTIONS(3344), - [sym_float_literal] = ACTIONS(3344), - [sym_rune_literal] = ACTIONS(3344), - [sym_pseudo_compile_time_identifier] = ACTIONS(3344), - [anon_sym_shared] = ACTIONS(3344), - [anon_sym_map_LBRACK] = ACTIONS(3344), - [anon_sym_chan] = ACTIONS(3344), - [anon_sym_thread] = ACTIONS(3344), - [anon_sym_atomic] = ACTIONS(3344), - [anon_sym_assert] = ACTIONS(3344), - [anon_sym_defer] = ACTIONS(3344), - [anon_sym_goto] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_DOLLARfor] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_POUND] = ACTIONS(3344), - [anon_sym_asm] = ACTIONS(3344), - [anon_sym_AT_LBRACK] = ACTIONS(3344), - [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), + [sym_line_comment] = STATE(828), + [sym_block_comment] = STATE(828), + [sym__expression] = STATE(2848), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [829] = { - [sym__expression] = STATE(1806), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(829), + [sym_block_comment] = STATE(829), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3685), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [830] = { - [sym__expression] = STATE(2785), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(830), + [sym_block_comment] = STATE(830), + [sym__expression] = STATE(2527), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [831] = { - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4377), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(831), + [sym_block_comment] = STATE(831), + [sym__expression] = STATE(2899), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [832] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2966), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2969), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(832), + [sym_block_comment] = STATE(832), + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2757), + [anon_sym_LF] = ACTIONS(2757), + [anon_sym_CR] = ACTIONS(2757), + [anon_sym_CR_LF] = ACTIONS(2757), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2757), + [anon_sym_DOT] = ACTIONS(2757), + [anon_sym_as] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2757), + [anon_sym_COMMA] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_LPAREN] = ACTIONS(2757), + [anon_sym_EQ] = ACTIONS(2757), + [anon_sym___global] = ACTIONS(2757), + [anon_sym_type] = ACTIONS(2757), + [anon_sym_PIPE] = ACTIONS(2757), + [anon_sym_fn] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_PERCENT] = ACTIONS(2757), + [anon_sym_LT] = ACTIONS(2757), + [anon_sym_GT] = ACTIONS(2757), + [anon_sym_EQ_EQ] = ACTIONS(2757), + [anon_sym_BANG_EQ] = ACTIONS(2757), + [anon_sym_LT_EQ] = ACTIONS(2757), + [anon_sym_GT_EQ] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_pub] = ACTIONS(2757), + [anon_sym_mut] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_interface] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_QMARK] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_go] = ACTIONS(2757), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2757), + [anon_sym_LBRACK2] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [anon_sym_CARET] = ACTIONS(2757), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_LT_DASH] = ACTIONS(2757), + [anon_sym_LT_LT] = ACTIONS(2757), + [anon_sym_GT_GT] = ACTIONS(2757), + [anon_sym_GT_GT_GT] = ACTIONS(2757), + [anon_sym_AMP_CARET] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2757), + [anon_sym_PIPE_PIPE] = ACTIONS(2757), + [anon_sym_or] = ACTIONS(2757), + [sym_none] = ACTIONS(2757), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_nil] = ACTIONS(2757), + [anon_sym_QMARK_DOT] = ACTIONS(2757), + [anon_sym_POUND_LBRACK] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_DOLLARif] = ACTIONS(2757), + [anon_sym_is] = ACTIONS(2757), + [anon_sym_BANGis] = ACTIONS(2757), + [anon_sym_in] = ACTIONS(2757), + [anon_sym_BANGin] = ACTIONS(2757), + [anon_sym_match] = ACTIONS(2757), + [anon_sym_select] = ACTIONS(2757), + [anon_sym_STAR_EQ] = ACTIONS(2757), + [anon_sym_SLASH_EQ] = ACTIONS(2757), + [anon_sym_PERCENT_EQ] = ACTIONS(2757), + [anon_sym_LT_LT_EQ] = ACTIONS(2757), + [anon_sym_GT_GT_EQ] = ACTIONS(2757), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2757), + [anon_sym_AMP_EQ] = ACTIONS(2757), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2757), + [anon_sym_PLUS_EQ] = ACTIONS(2757), + [anon_sym_DASH_EQ] = ACTIONS(2757), + [anon_sym_PIPE_EQ] = ACTIONS(2757), + [anon_sym_CARET_EQ] = ACTIONS(2757), + [anon_sym_COLON_EQ] = ACTIONS(2757), + [anon_sym_lock] = ACTIONS(2757), + [anon_sym_rlock] = ACTIONS(2757), + [anon_sym_unsafe] = ACTIONS(2757), + [anon_sym_sql] = ACTIONS(2757), + [sym_int_literal] = ACTIONS(2757), + [sym_float_literal] = ACTIONS(2757), + [sym_rune_literal] = ACTIONS(2757), + [sym_pseudo_compile_time_identifier] = ACTIONS(2757), + [anon_sym_shared] = ACTIONS(2757), + [anon_sym_map_LBRACK] = ACTIONS(2757), + [anon_sym_chan] = ACTIONS(2757), + [anon_sym_thread] = ACTIONS(2757), + [anon_sym_atomic] = ACTIONS(2757), + [anon_sym_assert] = ACTIONS(2757), + [anon_sym_defer] = ACTIONS(2757), + [anon_sym_goto] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_DOLLARfor] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_POUND] = ACTIONS(2757), + [anon_sym_asm] = ACTIONS(2757), + [anon_sym_AT_LBRACK] = ACTIONS(2757), + [sym___double_quote] = ACTIONS(2757), + [sym___single_quote] = ACTIONS(2757), + [sym___c_double_quote] = ACTIONS(2757), + [sym___c_single_quote] = ACTIONS(2757), + [sym___r_double_quote] = ACTIONS(2757), + [sym___r_single_quote] = ACTIONS(2757), }, [833] = { - [sym__expression] = STATE(2824), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(833), + [sym_block_comment] = STATE(833), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [834] = { - [ts_builtin_sym_end] = ACTIONS(3346), - [sym_identifier] = ACTIONS(3348), - [anon_sym_LF] = ACTIONS(3348), - [anon_sym_CR] = ACTIONS(3348), - [anon_sym_CR_LF] = ACTIONS(3348), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym___global] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_PIPE] = ACTIONS(3348), - [anon_sym_fn] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [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(3346), - [anon_sym_struct] = ACTIONS(3348), - [anon_sym_union] = ACTIONS(3348), - [anon_sym_pub] = ACTIONS(3348), - [anon_sym_mut] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_QMARK] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_go] = ACTIONS(3348), - [anon_sym_spawn] = ACTIONS(3348), - [anon_sym_json_DOTdecode] = ACTIONS(3348), - [anon_sym_LBRACK2] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_CARET] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3348), - [anon_sym_LT_DASH] = ACTIONS(3348), - [anon_sym_LT_LT] = ACTIONS(3348), - [anon_sym_GT_GT] = ACTIONS(3348), - [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(3348), - [sym_none] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_nil] = ACTIONS(3348), - [anon_sym_QMARK_DOT] = ACTIONS(3348), - [anon_sym_POUND_LBRACK] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_DOLLARif] = ACTIONS(3348), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_BANGin] = ACTIONS(3348), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3348), - [anon_sym_STAR_EQ] = ACTIONS(3348), - [anon_sym_SLASH_EQ] = ACTIONS(3348), - [anon_sym_PERCENT_EQ] = ACTIONS(3348), - [anon_sym_LT_LT_EQ] = ACTIONS(3348), - [anon_sym_GT_GT_EQ] = ACTIONS(3348), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3348), - [anon_sym_AMP_EQ] = ACTIONS(3348), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3348), - [anon_sym_PLUS_EQ] = ACTIONS(3348), - [anon_sym_DASH_EQ] = ACTIONS(3348), - [anon_sym_PIPE_EQ] = ACTIONS(3348), - [anon_sym_CARET_EQ] = ACTIONS(3348), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_lock] = ACTIONS(3348), - [anon_sym_rlock] = ACTIONS(3348), - [anon_sym_unsafe] = ACTIONS(3348), - [anon_sym_sql] = ACTIONS(3348), - [sym_int_literal] = ACTIONS(3348), - [sym_float_literal] = ACTIONS(3348), - [sym_rune_literal] = ACTIONS(3348), - [sym_pseudo_compile_time_identifier] = ACTIONS(3348), - [anon_sym_shared] = ACTIONS(3348), - [anon_sym_map_LBRACK] = ACTIONS(3348), - [anon_sym_chan] = ACTIONS(3348), - [anon_sym_thread] = ACTIONS(3348), - [anon_sym_atomic] = ACTIONS(3348), - [anon_sym_assert] = ACTIONS(3348), - [anon_sym_defer] = ACTIONS(3348), - [anon_sym_goto] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_DOLLARfor] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(3348), - [anon_sym_asm] = ACTIONS(3348), - [anon_sym_AT_LBRACK] = ACTIONS(3348), - [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), + [sym_line_comment] = STATE(834), + [sym_block_comment] = STATE(834), + [sym__expression] = STATE(2518), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [835] = { - [sym__expression] = STATE(1302), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(835), + [sym_block_comment] = STATE(835), + [sym__expression] = STATE(2492), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [836] = { - [ts_builtin_sym_end] = ACTIONS(3350), - [sym_identifier] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_CR] = ACTIONS(3352), - [anon_sym_CR_LF] = ACTIONS(3352), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3352), - [anon_sym_as] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym___global] = ACTIONS(3352), - [anon_sym_type] = ACTIONS(3352), - [anon_sym_PIPE] = ACTIONS(3352), - [anon_sym_fn] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3352), - [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(3350), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_union] = ACTIONS(3352), - [anon_sym_pub] = ACTIONS(3352), - [anon_sym_mut] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [anon_sym_interface] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_QMARK] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_go] = ACTIONS(3352), - [anon_sym_spawn] = ACTIONS(3352), - [anon_sym_json_DOTdecode] = ACTIONS(3352), - [anon_sym_LBRACK2] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(3352), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3352), - [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(3352), - [sym_none] = ACTIONS(3352), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [sym_nil] = ACTIONS(3352), - [anon_sym_QMARK_DOT] = ACTIONS(3352), - [anon_sym_POUND_LBRACK] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_DOLLARif] = ACTIONS(3352), - [anon_sym_is] = ACTIONS(3352), - [anon_sym_BANGis] = ACTIONS(3352), - [anon_sym_in] = ACTIONS(3352), - [anon_sym_BANGin] = ACTIONS(3352), - [anon_sym_match] = ACTIONS(3352), - [anon_sym_select] = ACTIONS(3352), - [anon_sym_STAR_EQ] = ACTIONS(3352), - [anon_sym_SLASH_EQ] = ACTIONS(3352), - [anon_sym_PERCENT_EQ] = ACTIONS(3352), - [anon_sym_LT_LT_EQ] = ACTIONS(3352), - [anon_sym_GT_GT_EQ] = ACTIONS(3352), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3352), - [anon_sym_AMP_EQ] = ACTIONS(3352), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3352), - [anon_sym_PLUS_EQ] = ACTIONS(3352), - [anon_sym_DASH_EQ] = ACTIONS(3352), - [anon_sym_PIPE_EQ] = ACTIONS(3352), - [anon_sym_CARET_EQ] = ACTIONS(3352), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3352), - [anon_sym_sql] = ACTIONS(3352), - [sym_int_literal] = ACTIONS(3352), - [sym_float_literal] = ACTIONS(3352), - [sym_rune_literal] = ACTIONS(3352), - [sym_pseudo_compile_time_identifier] = ACTIONS(3352), - [anon_sym_shared] = ACTIONS(3352), - [anon_sym_map_LBRACK] = ACTIONS(3352), - [anon_sym_chan] = ACTIONS(3352), - [anon_sym_thread] = ACTIONS(3352), - [anon_sym_atomic] = ACTIONS(3352), - [anon_sym_assert] = ACTIONS(3352), - [anon_sym_defer] = ACTIONS(3352), - [anon_sym_goto] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_DOLLARfor] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_POUND] = ACTIONS(3352), - [anon_sym_asm] = ACTIONS(3352), - [anon_sym_AT_LBRACK] = ACTIONS(3352), - [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), + [sym_line_comment] = STATE(836), + [sym_block_comment] = STATE(836), + [sym__expression] = STATE(2614), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [837] = { - [sym__expression] = STATE(1301), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(837), + [sym_block_comment] = STATE(837), + [sym__expression] = STATE(2691), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [838] = { - [sym__expression] = STATE(1834), - [sym__expression_without_blocks] = STATE(2052), - [sym__expression_with_blocks] = STATE(2052), - [sym_inc_expression] = STATE(2052), - [sym_dec_expression] = STATE(2052), - [sym_or_block_expression] = STATE(2052), - [sym_option_propagation_expression] = STATE(2052), - [sym_result_propagation_expression] = STATE(2052), - [sym_anon_struct_value_expression] = STATE(2053), - [sym_go_expression] = STATE(2052), - [sym_spawn_expression] = STATE(2052), - [sym_parenthesized_expression] = STATE(2052), - [sym_call_expression] = STATE(2052), - [sym_type_initializer] = STATE(2053), - [sym_function_literal] = STATE(2052), - [sym_reference_expression] = STATE(1972), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2052), - [sym_receive_expression] = STATE(2052), - [sym_binary_expression] = STATE(2052), - [sym_as_type_cast_expression] = STATE(2052), - [sym__max_group] = STATE(2052), - [sym_literal] = STATE(2052), - [sym_map_init_expression] = STATE(2053), - [sym_array_creation] = STATE(2052), - [sym_fixed_array_creation] = STATE(2052), - [sym_selector_expression] = STATE(2052), - [sym_index_expression] = STATE(2052), - [sym_slice_expression] = STATE(2052), - [sym_if_expression] = STATE(2053), - [sym_compile_time_if_expression] = STATE(2053), - [sym_is_expression] = STATE(2052), - [sym_not_is_expression] = STATE(2052), - [sym_in_expression] = STATE(2052), - [sym_not_in_expression] = STATE(2052), - [sym_enum_fetch] = STATE(2052), - [sym_match_expression] = STATE(2053), - [sym_select_expression] = STATE(2053), - [sym_lock_expression] = STATE(2053), - [sym_unsafe_expression] = STATE(2053), - [sym_sql_expression] = STATE(2053), - [sym_c_string_literal] = STATE(2040), - [sym_raw_string_literal] = STATE(2040), - [sym_interpreted_string_literal] = STATE(2040), - [sym_mutability_modifiers] = STATE(488), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym_line_comment] = STATE(838), + [sym_block_comment] = STATE(838), + [sym__expression] = STATE(985), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_CARET] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_LT_DASH] = ACTIONS(2093), + [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(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [839] = { - [sym__expression] = STATE(2469), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(839), + [sym_block_comment] = STATE(839), + [sym__expression] = STATE(2666), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [840] = { - [ts_builtin_sym_end] = ACTIONS(3354), - [sym_identifier] = ACTIONS(3356), - [anon_sym_LF] = ACTIONS(3356), - [anon_sym_CR] = ACTIONS(3356), - [anon_sym_CR_LF] = ACTIONS(3356), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_as] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3356), - [anon_sym___global] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_PIPE] = ACTIONS(3356), - [anon_sym_fn] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_STAR] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_GT] = ACTIONS(3356), - [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(3354), - [anon_sym_struct] = ACTIONS(3356), - [anon_sym_union] = ACTIONS(3356), - [anon_sym_pub] = ACTIONS(3356), - [anon_sym_mut] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(3356), - [anon_sym_spawn] = ACTIONS(3356), - [anon_sym_json_DOTdecode] = ACTIONS(3356), - [anon_sym_LBRACK2] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_CARET] = ACTIONS(3356), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_LT_LT] = ACTIONS(3356), - [anon_sym_GT_GT] = ACTIONS(3356), - [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(3356), - [sym_none] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_nil] = ACTIONS(3356), - [anon_sym_QMARK_DOT] = ACTIONS(3356), - [anon_sym_POUND_LBRACK] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_DOLLARif] = ACTIONS(3356), - [anon_sym_is] = ACTIONS(3356), - [anon_sym_BANGis] = ACTIONS(3356), - [anon_sym_in] = ACTIONS(3356), - [anon_sym_BANGin] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_select] = ACTIONS(3356), - [anon_sym_STAR_EQ] = ACTIONS(3356), - [anon_sym_SLASH_EQ] = ACTIONS(3356), - [anon_sym_PERCENT_EQ] = ACTIONS(3356), - [anon_sym_LT_LT_EQ] = ACTIONS(3356), - [anon_sym_GT_GT_EQ] = ACTIONS(3356), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3356), - [anon_sym_AMP_EQ] = ACTIONS(3356), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3356), - [anon_sym_PLUS_EQ] = ACTIONS(3356), - [anon_sym_DASH_EQ] = ACTIONS(3356), - [anon_sym_PIPE_EQ] = ACTIONS(3356), - [anon_sym_CARET_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3356), - [anon_sym_lock] = ACTIONS(3356), - [anon_sym_rlock] = ACTIONS(3356), - [anon_sym_unsafe] = ACTIONS(3356), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(3356), - [sym_float_literal] = ACTIONS(3356), - [sym_rune_literal] = ACTIONS(3356), - [sym_pseudo_compile_time_identifier] = ACTIONS(3356), - [anon_sym_shared] = ACTIONS(3356), - [anon_sym_map_LBRACK] = ACTIONS(3356), - [anon_sym_chan] = ACTIONS(3356), - [anon_sym_thread] = ACTIONS(3356), - [anon_sym_atomic] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_defer] = ACTIONS(3356), - [anon_sym_goto] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_DOLLARfor] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_POUND] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3356), - [anon_sym_AT_LBRACK] = ACTIONS(3356), - [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), + [sym_line_comment] = STATE(840), + [sym_block_comment] = STATE(840), + [sym__expression] = STATE(2653), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [841] = { - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4374), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(841), + [sym_block_comment] = STATE(841), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [842] = { - [sym__expression] = STATE(2666), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2693), - [anon_sym_spawn] = ACTIONS(2695), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_LT_DASH] = ACTIONS(2699), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2701), - [anon_sym_lock] = ACTIONS(2703), - [anon_sym_rlock] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(842), + [sym_block_comment] = STATE(842), + [sym__expression] = STATE(2897), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [843] = { - [sym__expression] = STATE(2470), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(843), + [sym_block_comment] = STATE(843), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), }, [844] = { - [sym__expression] = STATE(1300), - [sym__expression_without_blocks] = STATE(1345), - [sym__expression_with_blocks] = STATE(1345), - [sym_inc_expression] = STATE(1345), - [sym_dec_expression] = STATE(1345), - [sym_or_block_expression] = STATE(1345), - [sym_option_propagation_expression] = STATE(1345), - [sym_result_propagation_expression] = STATE(1345), - [sym_anon_struct_value_expression] = STATE(1412), - [sym_go_expression] = STATE(1345), - [sym_spawn_expression] = STATE(1345), - [sym_parenthesized_expression] = STATE(1345), - [sym_call_expression] = STATE(1345), - [sym_type_initializer] = STATE(1412), - [sym_function_literal] = STATE(1345), - [sym_reference_expression] = STATE(1384), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1345), - [sym_receive_expression] = STATE(1345), - [sym_binary_expression] = STATE(1345), - [sym_as_type_cast_expression] = STATE(1345), - [sym__max_group] = STATE(1345), - [sym_literal] = STATE(1345), - [sym_map_init_expression] = STATE(1412), - [sym_array_creation] = STATE(1345), - [sym_fixed_array_creation] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym_index_expression] = STATE(1345), - [sym_slice_expression] = STATE(1345), - [sym_if_expression] = STATE(1412), - [sym_compile_time_if_expression] = STATE(1412), - [sym_is_expression] = STATE(1345), - [sym_not_is_expression] = STATE(1345), - [sym_in_expression] = STATE(1345), - [sym_not_in_expression] = STATE(1345), - [sym_enum_fetch] = STATE(1345), - [sym_match_expression] = STATE(1412), - [sym_select_expression] = STATE(1412), - [sym_lock_expression] = STATE(1412), - [sym_unsafe_expression] = STATE(1412), - [sym_sql_expression] = STATE(1412), - [sym_c_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_interpreted_string_literal] = STATE(1295), - [sym_mutability_modifiers] = STATE(495), - [sym_plain_type] = STATE(4102), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_go] = ACTIONS(1396), - [anon_sym_spawn] = ACTIONS(1398), - [anon_sym_json_DOTdecode] = ACTIONS(1400), - [anon_sym_LBRACK2] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_LT_DASH] = ACTIONS(1406), - [sym_none] = ACTIONS(1408), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_nil] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_select] = ACTIONS(1416), - [anon_sym_lock] = ACTIONS(1418), - [anon_sym_rlock] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1422), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1426), - [sym_rune_literal] = ACTIONS(1426), - [sym_pseudo_compile_time_identifier] = ACTIONS(1428), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1430), - [sym___single_quote] = ACTIONS(1432), - [sym___c_double_quote] = ACTIONS(1434), - [sym___c_single_quote] = ACTIONS(1436), - [sym___r_double_quote] = ACTIONS(1438), - [sym___r_single_quote] = ACTIONS(1440), + [sym_line_comment] = STATE(844), + [sym_block_comment] = STATE(844), + [sym__expression] = STATE(1814), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4212), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [845] = { - [sym__expression] = STATE(2877), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(845), + [sym_block_comment] = STATE(845), + [ts_builtin_sym_end] = ACTIONS(3274), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3271), + [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_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(3274), + [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), }, [846] = { - [sym__expression] = STATE(2161), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(846), + [sym_block_comment] = STATE(846), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4225), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [847] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(847), + [sym_block_comment] = STATE(847), + [sym__expression] = STATE(1801), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4212), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [848] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3638), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(848), + [sym_block_comment] = STATE(848), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4216), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2161), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4188), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(849), + [sym_block_comment] = STATE(849), + [sym__expression] = STATE(2345), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [850] = { - [sym__expression] = STATE(2161), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4189), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(850), + [sym_block_comment] = STATE(850), + [sym__expression] = STATE(2890), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [851] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(851), + [sym_block_comment] = STATE(851), + [sym__expression] = STATE(2486), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [852] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(852), + [sym_block_comment] = STATE(852), + [ts_builtin_sym_end] = ACTIONS(3284), + [sym_identifier] = ACTIONS(3281), + [anon_sym_LF] = ACTIONS(3281), + [anon_sym_CR] = ACTIONS(3281), + [anon_sym_CR_LF] = ACTIONS(3281), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3281), + [anon_sym___global] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [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(3284), + [anon_sym_struct] = ACTIONS(3281), + [anon_sym_union] = ACTIONS(3281), + [anon_sym_pub] = ACTIONS(3281), + [anon_sym_mut] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3281), + [anon_sym_spawn] = ACTIONS(3281), + [anon_sym_json_DOTdecode] = ACTIONS(3281), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [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(3281), + [sym_none] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_nil] = ACTIONS(3281), + [anon_sym_QMARK_DOT] = ACTIONS(3281), + [anon_sym_POUND_LBRACK] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_DOLLARif] = ACTIONS(3281), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3281), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_select] = ACTIONS(3281), + [anon_sym_STAR_EQ] = ACTIONS(3281), + [anon_sym_SLASH_EQ] = ACTIONS(3281), + [anon_sym_PERCENT_EQ] = ACTIONS(3281), + [anon_sym_LT_LT_EQ] = ACTIONS(3281), + [anon_sym_GT_GT_EQ] = ACTIONS(3281), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3281), + [anon_sym_AMP_EQ] = ACTIONS(3281), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3281), + [anon_sym_PLUS_EQ] = ACTIONS(3281), + [anon_sym_DASH_EQ] = ACTIONS(3281), + [anon_sym_PIPE_EQ] = ACTIONS(3281), + [anon_sym_CARET_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3281), + [anon_sym_lock] = ACTIONS(3281), + [anon_sym_rlock] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(3281), + [anon_sym_sql] = ACTIONS(3281), + [sym_int_literal] = ACTIONS(3281), + [sym_float_literal] = ACTIONS(3281), + [sym_rune_literal] = ACTIONS(3281), + [sym_pseudo_compile_time_identifier] = ACTIONS(3281), + [anon_sym_shared] = ACTIONS(3281), + [anon_sym_map_LBRACK] = ACTIONS(3281), + [anon_sym_chan] = ACTIONS(3281), + [anon_sym_thread] = ACTIONS(3281), + [anon_sym_atomic] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_defer] = ACTIONS(3281), + [anon_sym_goto] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_DOLLARfor] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_POUND] = ACTIONS(3281), + [anon_sym_asm] = ACTIONS(3281), + [anon_sym_AT_LBRACK] = ACTIONS(3281), + [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), }, [853] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(853), + [sym_block_comment] = STATE(853), + [sym__expression] = STATE(2420), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [854] = { - [ts_builtin_sym_end] = ACTIONS(3232), - [sym_identifier] = ACTIONS(3229), - [anon_sym_LF] = ACTIONS(3229), - [anon_sym_CR] = ACTIONS(3229), - [anon_sym_CR_LF] = ACTIONS(3229), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3229), - [anon_sym___global] = ACTIONS(3229), - [anon_sym_type] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_fn] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [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(3232), - [anon_sym_struct] = ACTIONS(3229), - [anon_sym_union] = ACTIONS(3229), - [anon_sym_pub] = ACTIONS(3229), - [anon_sym_mut] = ACTIONS(3229), - [anon_sym_enum] = ACTIONS(3229), - [anon_sym_interface] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_go] = ACTIONS(3229), - [anon_sym_spawn] = ACTIONS(3229), - [anon_sym_json_DOTdecode] = ACTIONS(3229), - [anon_sym_LBRACK2] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [anon_sym_LT_DASH] = ACTIONS(3229), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [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(3229), - [sym_none] = ACTIONS(3229), - [sym_true] = ACTIONS(3229), - [sym_false] = ACTIONS(3229), - [sym_nil] = ACTIONS(3229), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_DOLLARif] = ACTIONS(3229), - [anon_sym_is] = ACTIONS(3229), - [anon_sym_BANGis] = ACTIONS(3229), - [anon_sym_in] = ACTIONS(3229), - [anon_sym_BANGin] = ACTIONS(3229), - [anon_sym_match] = ACTIONS(3229), - [anon_sym_select] = ACTIONS(3229), - [anon_sym_STAR_EQ] = ACTIONS(3229), - [anon_sym_SLASH_EQ] = ACTIONS(3229), - [anon_sym_PERCENT_EQ] = ACTIONS(3229), - [anon_sym_LT_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_GT_EQ] = ACTIONS(3229), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3229), - [anon_sym_AMP_EQ] = ACTIONS(3229), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_PIPE_EQ] = ACTIONS(3229), - [anon_sym_CARET_EQ] = ACTIONS(3229), - [anon_sym_COLON_EQ] = ACTIONS(3229), - [anon_sym_lock] = ACTIONS(3229), - [anon_sym_rlock] = ACTIONS(3229), - [anon_sym_unsafe] = ACTIONS(3229), - [anon_sym_sql] = ACTIONS(3229), - [sym_int_literal] = ACTIONS(3229), - [sym_float_literal] = ACTIONS(3229), - [sym_rune_literal] = ACTIONS(3229), - [sym_pseudo_compile_time_identifier] = ACTIONS(3229), - [anon_sym_shared] = ACTIONS(3229), - [anon_sym_map_LBRACK] = ACTIONS(3229), - [anon_sym_chan] = ACTIONS(3229), - [anon_sym_thread] = ACTIONS(3229), - [anon_sym_atomic] = ACTIONS(3229), - [anon_sym_assert] = ACTIONS(3229), - [anon_sym_defer] = ACTIONS(3229), - [anon_sym_goto] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_DOLLARfor] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_POUND] = ACTIONS(3229), - [anon_sym_asm] = ACTIONS(3229), - [anon_sym_AT_LBRACK] = ACTIONS(3229), - [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), + [sym_line_comment] = STATE(854), + [sym_block_comment] = STATE(854), + [sym__expression] = STATE(1655), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, [855] = { - [sym__expression] = STATE(2161), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4193), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(855), + [sym_block_comment] = STATE(855), + [sym__expression] = STATE(1327), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [856] = { - [sym__expression] = STATE(2159), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(856), + [sym_block_comment] = STATE(856), + [sym__expression] = STATE(2321), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [857] = { - [sym__expression] = STATE(2243), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(857), + [sym_block_comment] = STATE(857), + [sym__expression] = STATE(1149), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4235), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), }, [858] = { - [sym__expression] = STATE(2268), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(858), + [sym_block_comment] = STATE(858), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [859] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(859), + [sym_block_comment] = STATE(859), + [sym__expression] = STATE(2590), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [860] = { - [sym__expression] = STATE(2161), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3071), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3075), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3079), - [anon_sym_rlock] = ACTIONS(3079), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(860), + [sym_block_comment] = STATE(860), + [sym__expression] = STATE(1149), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4231), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), }, [861] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(861), + [sym_block_comment] = STATE(861), + [sym__expression] = STATE(1149), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4276), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), }, [862] = { - [sym__expression] = STATE(2321), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(862), + [sym_block_comment] = STATE(862), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, [863] = { - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4378), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(863), + [sym_block_comment] = STATE(863), + [sym__expression] = STATE(2427), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [864] = { - [sym__expression] = STATE(2360), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(864), + [sym_block_comment] = STATE(864), + [sym__expression] = STATE(2429), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [865] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(865), + [sym_block_comment] = STATE(865), + [sym__expression] = STATE(1658), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, [866] = { - [sym__expression] = STATE(2352), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(866), + [sym_block_comment] = STATE(866), + [sym__expression] = STATE(2430), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [867] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LF] = ACTIONS(3219), - [anon_sym_CR] = ACTIONS(3219), - [anon_sym_CR_LF] = ACTIONS(3219), - [sym_comment] = ACTIONS(495), - [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(3222), - [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_line_comment] = STATE(867), + [sym_block_comment] = STATE(867), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_go] = ACTIONS(2291), + [anon_sym_spawn] = ACTIONS(2293), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_LT_DASH] = ACTIONS(2299), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2301), + [anon_sym_lock] = ACTIONS(2303), + [anon_sym_rlock] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [868] = { - [sym__expression] = STATE(2867), - [sym__expression_without_blocks] = STATE(2993), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2993), - [sym_dec_expression] = STATE(2993), - [sym_or_block_expression] = STATE(2993), - [sym_option_propagation_expression] = STATE(2993), - [sym_result_propagation_expression] = STATE(2993), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2993), - [sym_spawn_expression] = STATE(2993), - [sym_parenthesized_expression] = STATE(2993), - [sym_call_expression] = STATE(2993), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2993), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2993), - [sym_receive_expression] = STATE(2993), - [sym_binary_expression] = STATE(2993), - [sym_as_type_cast_expression] = STATE(2993), - [sym__max_group] = STATE(2993), - [sym_literal] = STATE(2993), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2993), - [sym_fixed_array_creation] = STATE(2993), - [sym_selector_expression] = STATE(2993), - [sym_index_expression] = STATE(2993), - [sym_slice_expression] = STATE(2993), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2993), - [sym_not_is_expression] = STATE(2993), - [sym_in_expression] = STATE(2993), - [sym_not_in_expression] = STATE(2993), - [sym_enum_fetch] = STATE(2993), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(3384), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(868), + [sym_block_comment] = STATE(868), + [sym__expression] = STATE(1328), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [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__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4377), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(869), + [sym_block_comment] = STATE(869), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4211), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [870] = { - [sym__expression] = STATE(2471), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(870), + [sym_block_comment] = STATE(870), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3391), + [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_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), }, [871] = { - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4374), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(871), + [sym_block_comment] = STATE(871), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3395), + [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_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), }, [872] = { - [ts_builtin_sym_end] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3388), - [anon_sym_LF] = ACTIONS(3388), - [anon_sym_CR] = ACTIONS(3388), - [anon_sym_CR_LF] = ACTIONS(3388), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3388), - [anon_sym_as] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_COMMA] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_LPAREN] = ACTIONS(3388), - [anon_sym_EQ] = ACTIONS(3388), - [anon_sym___global] = ACTIONS(3388), - [anon_sym_type] = ACTIONS(3388), - [anon_sym_PIPE] = ACTIONS(3388), - [anon_sym_fn] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_SLASH] = ACTIONS(3388), - [anon_sym_PERCENT] = ACTIONS(3388), - [anon_sym_LT] = ACTIONS(3388), - [anon_sym_GT] = ACTIONS(3388), - [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(3386), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_pub] = ACTIONS(3388), - [anon_sym_mut] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_interface] = ACTIONS(3388), - [anon_sym_PLUS_PLUS] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3388), - [anon_sym_QMARK] = ACTIONS(3388), - [anon_sym_BANG] = ACTIONS(3388), - [anon_sym_go] = ACTIONS(3388), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(3388), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3388), - [anon_sym_CARET] = ACTIONS(3388), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_LT_DASH] = ACTIONS(3388), - [anon_sym_LT_LT] = ACTIONS(3388), - [anon_sym_GT_GT] = ACTIONS(3388), - [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(3388), - [sym_none] = ACTIONS(3388), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [sym_nil] = ACTIONS(3388), - [anon_sym_QMARK_DOT] = ACTIONS(3388), - [anon_sym_POUND_LBRACK] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_DOLLARif] = ACTIONS(3388), - [anon_sym_is] = ACTIONS(3388), - [anon_sym_BANGis] = ACTIONS(3388), - [anon_sym_in] = ACTIONS(3388), - [anon_sym_BANGin] = ACTIONS(3388), - [anon_sym_match] = ACTIONS(3388), - [anon_sym_select] = ACTIONS(3388), - [anon_sym_STAR_EQ] = ACTIONS(3388), - [anon_sym_SLASH_EQ] = ACTIONS(3388), - [anon_sym_PERCENT_EQ] = ACTIONS(3388), - [anon_sym_LT_LT_EQ] = ACTIONS(3388), - [anon_sym_GT_GT_EQ] = ACTIONS(3388), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3388), - [anon_sym_AMP_EQ] = ACTIONS(3388), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3388), - [anon_sym_PLUS_EQ] = ACTIONS(3388), - [anon_sym_DASH_EQ] = ACTIONS(3388), - [anon_sym_PIPE_EQ] = ACTIONS(3388), - [anon_sym_CARET_EQ] = ACTIONS(3388), - [anon_sym_COLON_EQ] = ACTIONS(3388), - [anon_sym_lock] = ACTIONS(3388), - [anon_sym_rlock] = ACTIONS(3388), - [anon_sym_unsafe] = ACTIONS(3388), - [anon_sym_sql] = ACTIONS(3388), - [sym_int_literal] = ACTIONS(3388), - [sym_float_literal] = ACTIONS(3388), - [sym_rune_literal] = ACTIONS(3388), - [sym_pseudo_compile_time_identifier] = ACTIONS(3388), - [anon_sym_shared] = ACTIONS(3388), - [anon_sym_map_LBRACK] = ACTIONS(3388), - [anon_sym_chan] = ACTIONS(3388), - [anon_sym_thread] = ACTIONS(3388), - [anon_sym_atomic] = ACTIONS(3388), - [anon_sym_assert] = ACTIONS(3388), - [anon_sym_defer] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_DOLLARfor] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_POUND] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym_AT_LBRACK] = ACTIONS(3388), - [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), + [sym_line_comment] = STATE(872), + [sym_block_comment] = STATE(872), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1777), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1781), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1785), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [873] = { - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3115), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(873), + [sym_block_comment] = STATE(873), + [sym__expression] = STATE(2431), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [874] = { - [sym__expression] = STATE(2308), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(874), + [sym_block_comment] = STATE(874), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [875] = { - [sym__expression] = STATE(2310), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), - }, - [876] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym___global] = ACTIONS(2649), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), + [sym_line_comment] = STATE(875), + [sym_block_comment] = STATE(875), + [sym__expression] = STATE(1696), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), [anon_sym_PLUS] = ACTIONS(2649), [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_pub] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), [anon_sym_TILDE] = ACTIONS(2649), [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_AMP_CARET] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2649), - [anon_sym_POUND_LBRACK] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_STAR_EQ] = ACTIONS(2649), - [anon_sym_SLASH_EQ] = ACTIONS(2649), - [anon_sym_PERCENT_EQ] = ACTIONS(2649), - [anon_sym_LT_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_GT_EQ] = ACTIONS(2649), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2649), - [anon_sym_AMP_EQ] = ACTIONS(2649), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2649), - [anon_sym_PLUS_EQ] = ACTIONS(2649), - [anon_sym_DASH_EQ] = ACTIONS(2649), - [anon_sym_PIPE_EQ] = ACTIONS(2649), - [anon_sym_CARET_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [anon_sym_assert] = ACTIONS(2649), - [anon_sym_defer] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_DOLLARfor] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym_AT_LBRACK] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), + }, + [876] = { + [sym_line_comment] = STATE(876), + [sym_block_comment] = STATE(876), + [sym__expression] = STATE(2334), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(816), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1807), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_LT_DASH] = ACTIONS(1815), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1817), + [anon_sym_lock] = ACTIONS(1819), + [anon_sym_rlock] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [877] = { - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3392), - [anon_sym_LF] = ACTIONS(3392), - [anon_sym_CR] = ACTIONS(3392), - [anon_sym_CR_LF] = ACTIONS(3392), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3392), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3392), - [anon_sym_COMMA] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3392), - [anon_sym___global] = ACTIONS(3392), - [anon_sym_type] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3392), - [anon_sym_fn] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3392), - [anon_sym_SLASH] = ACTIONS(3392), - [anon_sym_PERCENT] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(3392), - [anon_sym_GT] = ACTIONS(3392), - [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(3390), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_union] = ACTIONS(3392), - [anon_sym_pub] = ACTIONS(3392), - [anon_sym_mut] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), - [anon_sym_interface] = ACTIONS(3392), - [anon_sym_PLUS_PLUS] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3392), - [anon_sym_QMARK] = ACTIONS(3392), - [anon_sym_BANG] = ACTIONS(3392), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3392), - [anon_sym_json_DOTdecode] = ACTIONS(3392), - [anon_sym_LBRACK2] = ACTIONS(3392), - [anon_sym_TILDE] = ACTIONS(3392), - [anon_sym_CARET] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym_LT_DASH] = ACTIONS(3392), - [anon_sym_LT_LT] = ACTIONS(3392), - [anon_sym_GT_GT] = ACTIONS(3392), - [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(3392), - [sym_none] = ACTIONS(3392), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [sym_nil] = ACTIONS(3392), - [anon_sym_QMARK_DOT] = ACTIONS(3392), - [anon_sym_POUND_LBRACK] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_DOLLARif] = ACTIONS(3392), - [anon_sym_is] = ACTIONS(3392), - [anon_sym_BANGis] = ACTIONS(3392), - [anon_sym_in] = ACTIONS(3392), - [anon_sym_BANGin] = ACTIONS(3392), - [anon_sym_match] = ACTIONS(3392), - [anon_sym_select] = ACTIONS(3392), - [anon_sym_STAR_EQ] = ACTIONS(3392), - [anon_sym_SLASH_EQ] = ACTIONS(3392), - [anon_sym_PERCENT_EQ] = ACTIONS(3392), - [anon_sym_LT_LT_EQ] = ACTIONS(3392), - [anon_sym_GT_GT_EQ] = ACTIONS(3392), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3392), - [anon_sym_AMP_EQ] = ACTIONS(3392), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3392), - [anon_sym_PLUS_EQ] = ACTIONS(3392), - [anon_sym_DASH_EQ] = ACTIONS(3392), - [anon_sym_PIPE_EQ] = ACTIONS(3392), - [anon_sym_CARET_EQ] = ACTIONS(3392), - [anon_sym_COLON_EQ] = ACTIONS(3392), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3392), - [anon_sym_sql] = ACTIONS(3392), - [sym_int_literal] = ACTIONS(3392), - [sym_float_literal] = ACTIONS(3392), - [sym_rune_literal] = ACTIONS(3392), - [sym_pseudo_compile_time_identifier] = ACTIONS(3392), - [anon_sym_shared] = ACTIONS(3392), - [anon_sym_map_LBRACK] = ACTIONS(3392), - [anon_sym_chan] = ACTIONS(3392), - [anon_sym_thread] = ACTIONS(3392), - [anon_sym_atomic] = ACTIONS(3392), - [anon_sym_assert] = ACTIONS(3392), - [anon_sym_defer] = ACTIONS(3392), - [anon_sym_goto] = ACTIONS(3392), - [anon_sym_break] = ACTIONS(3392), - [anon_sym_continue] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3392), - [anon_sym_DOLLARfor] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3392), - [anon_sym_POUND] = ACTIONS(3392), - [anon_sym_asm] = ACTIONS(3392), - [anon_sym_AT_LBRACK] = ACTIONS(3392), - [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), + [sym_line_comment] = STATE(877), + [sym_block_comment] = STATE(877), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, [878] = { - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2715), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_CR] = ACTIONS(2715), - [anon_sym_CR_LF] = ACTIONS(2715), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_as] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_COMMA] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_EQ] = ACTIONS(2715), - [anon_sym___global] = ACTIONS(2715), - [anon_sym_type] = ACTIONS(2715), - [anon_sym_PIPE] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_SLASH] = ACTIONS(2715), - [anon_sym_PERCENT] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2715), - [anon_sym_GT] = ACTIONS(2715), - [anon_sym_EQ_EQ] = ACTIONS(2715), - [anon_sym_BANG_EQ] = ACTIONS(2715), - [anon_sym_LT_EQ] = ACTIONS(2715), - [anon_sym_GT_EQ] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_pub] = ACTIONS(2715), - [anon_sym_mut] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_interface] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_QMARK] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_go] = ACTIONS(2715), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(2715), - [anon_sym_LBRACK2] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_CARET] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_LT_DASH] = ACTIONS(2715), - [anon_sym_LT_LT] = ACTIONS(2715), - [anon_sym_GT_GT] = ACTIONS(2715), - [anon_sym_GT_GT_GT] = ACTIONS(2715), - [anon_sym_AMP_CARET] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_PIPE_PIPE] = ACTIONS(2715), - [anon_sym_or] = ACTIONS(2715), - [sym_none] = ACTIONS(2715), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [sym_nil] = ACTIONS(2715), - [anon_sym_QMARK_DOT] = ACTIONS(2715), - [anon_sym_POUND_LBRACK] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_DOLLARif] = ACTIONS(2715), - [anon_sym_is] = ACTIONS(2715), - [anon_sym_BANGis] = ACTIONS(2715), - [anon_sym_in] = ACTIONS(2715), - [anon_sym_BANGin] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_select] = ACTIONS(2715), - [anon_sym_STAR_EQ] = ACTIONS(2715), - [anon_sym_SLASH_EQ] = ACTIONS(2715), - [anon_sym_PERCENT_EQ] = ACTIONS(2715), - [anon_sym_LT_LT_EQ] = ACTIONS(2715), - [anon_sym_GT_GT_EQ] = ACTIONS(2715), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2715), - [anon_sym_AMP_EQ] = ACTIONS(2715), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2715), - [anon_sym_PLUS_EQ] = ACTIONS(2715), - [anon_sym_DASH_EQ] = ACTIONS(2715), - [anon_sym_PIPE_EQ] = ACTIONS(2715), - [anon_sym_CARET_EQ] = ACTIONS(2715), - [anon_sym_COLON_EQ] = ACTIONS(2715), - [anon_sym_lock] = ACTIONS(2715), - [anon_sym_rlock] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_sql] = ACTIONS(2715), - [sym_int_literal] = ACTIONS(2715), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(2715), - [anon_sym_shared] = ACTIONS(2715), - [anon_sym_map_LBRACK] = ACTIONS(2715), - [anon_sym_chan] = ACTIONS(2715), - [anon_sym_thread] = ACTIONS(2715), - [anon_sym_atomic] = ACTIONS(2715), - [anon_sym_assert] = ACTIONS(2715), - [anon_sym_defer] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_DOLLARfor] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_POUND] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym_AT_LBRACK] = ACTIONS(2715), - [sym___double_quote] = ACTIONS(2715), - [sym___single_quote] = ACTIONS(2715), - [sym___c_double_quote] = ACTIONS(2715), - [sym___c_single_quote] = ACTIONS(2715), - [sym___r_double_quote] = ACTIONS(2715), - [sym___r_single_quote] = ACTIONS(2715), + [sym_line_comment] = STATE(878), + [sym_block_comment] = STATE(878), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3399), + [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_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), }, [879] = { - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3396), - [anon_sym_LF] = ACTIONS(3396), - [anon_sym_CR] = ACTIONS(3396), - [anon_sym_CR_LF] = ACTIONS(3396), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3396), - [anon_sym_as] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3396), - [anon_sym_COMMA] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_LPAREN] = ACTIONS(3396), - [anon_sym_EQ] = ACTIONS(3396), - [anon_sym___global] = ACTIONS(3396), - [anon_sym_type] = ACTIONS(3396), - [anon_sym_PIPE] = ACTIONS(3396), - [anon_sym_fn] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_SLASH] = ACTIONS(3396), - [anon_sym_PERCENT] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(3396), - [anon_sym_GT] = ACTIONS(3396), - [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(3394), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [anon_sym_pub] = ACTIONS(3396), - [anon_sym_mut] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_interface] = ACTIONS(3396), - [anon_sym_PLUS_PLUS] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3396), - [anon_sym_QMARK] = ACTIONS(3396), - [anon_sym_BANG] = ACTIONS(3396), - [anon_sym_go] = ACTIONS(3396), - [anon_sym_spawn] = ACTIONS(3396), - [anon_sym_json_DOTdecode] = ACTIONS(3396), - [anon_sym_LBRACK2] = ACTIONS(3396), - [anon_sym_TILDE] = ACTIONS(3396), - [anon_sym_CARET] = ACTIONS(3396), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3396), - [anon_sym_LT_LT] = ACTIONS(3396), - [anon_sym_GT_GT] = ACTIONS(3396), - [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(3396), - [sym_none] = ACTIONS(3396), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [sym_nil] = ACTIONS(3396), - [anon_sym_QMARK_DOT] = ACTIONS(3396), - [anon_sym_POUND_LBRACK] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_DOLLARif] = ACTIONS(3396), - [anon_sym_is] = ACTIONS(3396), - [anon_sym_BANGis] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3396), - [anon_sym_BANGin] = ACTIONS(3396), - [anon_sym_match] = ACTIONS(3396), - [anon_sym_select] = ACTIONS(3396), - [anon_sym_STAR_EQ] = ACTIONS(3396), - [anon_sym_SLASH_EQ] = ACTIONS(3396), - [anon_sym_PERCENT_EQ] = ACTIONS(3396), - [anon_sym_LT_LT_EQ] = ACTIONS(3396), - [anon_sym_GT_GT_EQ] = ACTIONS(3396), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3396), - [anon_sym_AMP_EQ] = ACTIONS(3396), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3396), - [anon_sym_PLUS_EQ] = ACTIONS(3396), - [anon_sym_DASH_EQ] = ACTIONS(3396), - [anon_sym_PIPE_EQ] = ACTIONS(3396), - [anon_sym_CARET_EQ] = ACTIONS(3396), - [anon_sym_COLON_EQ] = ACTIONS(3396), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(3396), - [anon_sym_sql] = ACTIONS(3396), - [sym_int_literal] = ACTIONS(3396), - [sym_float_literal] = ACTIONS(3396), - [sym_rune_literal] = ACTIONS(3396), - [sym_pseudo_compile_time_identifier] = ACTIONS(3396), - [anon_sym_shared] = ACTIONS(3396), - [anon_sym_map_LBRACK] = ACTIONS(3396), - [anon_sym_chan] = ACTIONS(3396), - [anon_sym_thread] = ACTIONS(3396), - [anon_sym_atomic] = ACTIONS(3396), - [anon_sym_assert] = ACTIONS(3396), - [anon_sym_defer] = ACTIONS(3396), - [anon_sym_goto] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_DOLLARfor] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_POUND] = ACTIONS(3396), - [anon_sym_asm] = ACTIONS(3396), - [anon_sym_AT_LBRACK] = ACTIONS(3396), - [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), + [sym_line_comment] = STATE(879), + [sym_block_comment] = STATE(879), + [sym__expression] = STATE(1649), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, [880] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(3654), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(880), + [sym_block_comment] = STATE(880), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3672), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [881] = { - [sym__expression] = STATE(2484), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(881), + [sym_block_comment] = STATE(881), + [sym__expression] = STATE(1695), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [882] = { - [sym__expression] = STATE(2159), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(882), + [sym_block_comment] = STATE(882), + [sym__expression] = STATE(1694), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [883] = { - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3400), - [anon_sym_LF] = ACTIONS(3400), - [anon_sym_CR] = ACTIONS(3400), - [anon_sym_CR_LF] = ACTIONS(3400), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3400), - [anon_sym_as] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3400), - [anon_sym_COMMA] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_LPAREN] = ACTIONS(3400), - [anon_sym_EQ] = ACTIONS(3400), - [anon_sym___global] = ACTIONS(3400), - [anon_sym_type] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_fn] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_SLASH] = ACTIONS(3400), - [anon_sym_PERCENT] = ACTIONS(3400), - [anon_sym_LT] = ACTIONS(3400), - [anon_sym_GT] = ACTIONS(3400), - [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(3398), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_pub] = ACTIONS(3400), - [anon_sym_mut] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_interface] = ACTIONS(3400), - [anon_sym_PLUS_PLUS] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3400), - [anon_sym_QMARK] = ACTIONS(3400), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3400), - [anon_sym_json_DOTdecode] = ACTIONS(3400), - [anon_sym_LBRACK2] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(3400), - [anon_sym_CARET] = ACTIONS(3400), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_LT_DASH] = ACTIONS(3400), - [anon_sym_LT_LT] = ACTIONS(3400), - [anon_sym_GT_GT] = ACTIONS(3400), - [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(3400), - [sym_none] = ACTIONS(3400), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [sym_nil] = ACTIONS(3400), - [anon_sym_QMARK_DOT] = ACTIONS(3400), - [anon_sym_POUND_LBRACK] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_DOLLARif] = ACTIONS(3400), - [anon_sym_is] = ACTIONS(3400), - [anon_sym_BANGis] = ACTIONS(3400), - [anon_sym_in] = ACTIONS(3400), - [anon_sym_BANGin] = ACTIONS(3400), - [anon_sym_match] = ACTIONS(3400), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_STAR_EQ] = ACTIONS(3400), - [anon_sym_SLASH_EQ] = ACTIONS(3400), - [anon_sym_PERCENT_EQ] = ACTIONS(3400), - [anon_sym_LT_LT_EQ] = ACTIONS(3400), - [anon_sym_GT_GT_EQ] = ACTIONS(3400), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3400), - [anon_sym_AMP_EQ] = ACTIONS(3400), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3400), - [anon_sym_PLUS_EQ] = ACTIONS(3400), - [anon_sym_DASH_EQ] = ACTIONS(3400), - [anon_sym_PIPE_EQ] = ACTIONS(3400), - [anon_sym_CARET_EQ] = ACTIONS(3400), - [anon_sym_COLON_EQ] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3400), - [anon_sym_rlock] = ACTIONS(3400), - [anon_sym_unsafe] = ACTIONS(3400), - [anon_sym_sql] = ACTIONS(3400), - [sym_int_literal] = ACTIONS(3400), - [sym_float_literal] = ACTIONS(3400), - [sym_rune_literal] = ACTIONS(3400), - [sym_pseudo_compile_time_identifier] = ACTIONS(3400), - [anon_sym_shared] = ACTIONS(3400), - [anon_sym_map_LBRACK] = ACTIONS(3400), - [anon_sym_chan] = ACTIONS(3400), - [anon_sym_thread] = ACTIONS(3400), - [anon_sym_atomic] = ACTIONS(3400), - [anon_sym_assert] = ACTIONS(3400), - [anon_sym_defer] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_DOLLARfor] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_POUND] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym_AT_LBRACK] = ACTIONS(3400), - [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), + [sym_line_comment] = STATE(883), + [sym_block_comment] = STATE(883), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3685), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [884] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(884), + [sym_block_comment] = STATE(884), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3403), + [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_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), }, [885] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(3661), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(885), + [sym_block_comment] = STATE(885), + [sym__expression] = STATE(2319), + [sym__expression_without_blocks] = STATE(2219), + [sym__expression_with_blocks] = STATE(2219), + [sym_inc_expression] = STATE(2218), + [sym_dec_expression] = STATE(2218), + [sym_or_block_expression] = STATE(2218), + [sym_option_propagation_expression] = STATE(2218), + [sym_result_propagation_expression] = STATE(2218), + [sym_anon_struct_value_expression] = STATE(2216), + [sym_go_expression] = STATE(2218), + [sym_spawn_expression] = STATE(2218), + [sym_parenthesized_expression] = STATE(2218), + [sym_call_expression] = STATE(2218), + [sym_type_initializer] = STATE(2216), + [sym_function_literal] = STATE(2218), + [sym_reference_expression] = STATE(2215), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2218), + [sym_receive_expression] = STATE(2218), + [sym_binary_expression] = STATE(2218), + [sym_as_type_cast_expression] = STATE(2218), + [sym__max_group] = STATE(2218), + [sym_literal] = STATE(2220), + [sym_map_init_expression] = STATE(2216), + [sym_array_creation] = STATE(2218), + [sym_fixed_array_creation] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym_index_expression] = STATE(2218), + [sym_slice_expression] = STATE(2218), + [sym_if_expression] = STATE(2216), + [sym_compile_time_if_expression] = STATE(2216), + [sym_is_expression] = STATE(2218), + [sym_not_is_expression] = STATE(2218), + [sym_in_expression] = STATE(2218), + [sym_not_in_expression] = STATE(2218), + [sym_enum_fetch] = STATE(2218), + [sym_match_expression] = STATE(2216), + [sym_select_expression] = STATE(2216), + [sym_lock_expression] = STATE(2216), + [sym_unsafe_expression] = STATE(2216), + [sym_sql_expression] = STATE(2216), + [sym_c_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_interpreted_string_literal] = STATE(2222), + [sym_mutability_modifiers] = STATE(770), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3061), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3165), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_LT_DASH] = ACTIONS(3171), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3097), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3105), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3107), + [sym_rune_literal] = ACTIONS(3107), + [sym_pseudo_compile_time_identifier] = ACTIONS(3109), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(3111), + [sym___single_quote] = ACTIONS(3113), + [sym___c_double_quote] = ACTIONS(3115), + [sym___c_single_quote] = ACTIONS(3117), + [sym___r_double_quote] = ACTIONS(3119), + [sym___r_single_quote] = ACTIONS(3121), }, [886] = { - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(886), + [sym_block_comment] = STATE(886), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3407), + [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_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), }, [887] = { - [sym__expression] = STATE(982), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(887), + [sym_block_comment] = STATE(887), + [sym__expression] = STATE(2894), + [sym__expression_without_blocks] = STATE(3012), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [888] = { - [sym__expression] = STATE(1657), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4244), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), + [sym_line_comment] = STATE(888), + [sym_block_comment] = STATE(888), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2833), + [anon_sym___global] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_pub] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_STAR_EQ] = ACTIONS(2833), + [anon_sym_SLASH_EQ] = ACTIONS(2833), + [anon_sym_PERCENT_EQ] = ACTIONS(2833), + [anon_sym_LT_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_AMP_EQ] = ACTIONS(2833), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2833), + [anon_sym_PLUS_EQ] = ACTIONS(2833), + [anon_sym_DASH_EQ] = ACTIONS(2833), + [anon_sym_PIPE_EQ] = ACTIONS(2833), + [anon_sym_CARET_EQ] = ACTIONS(2833), + [anon_sym_COLON_EQ] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), + [anon_sym_AT_LBRACK] = ACTIONS(2833), + [sym___double_quote] = ACTIONS(2833), + [sym___single_quote] = ACTIONS(2833), + [sym___c_double_quote] = ACTIONS(2833), + [sym___c_single_quote] = ACTIONS(2833), + [sym___r_double_quote] = ACTIONS(2833), + [sym___r_single_quote] = ACTIONS(2833), }, [889] = { - [sym__expression] = STATE(1657), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4242), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), + [sym_line_comment] = STATE(889), + [sym_block_comment] = STATE(889), + [sym__expression] = STATE(2444), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_go] = ACTIONS(1633), + [anon_sym_spawn] = ACTIONS(1635), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_LT_DASH] = ACTIONS(2597), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1653), + [anon_sym_lock] = ACTIONS(1655), + [anon_sym_rlock] = ACTIONS(1655), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [890] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(890), + [sym_block_comment] = STATE(890), + [sym__expression] = STATE(1693), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [891] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(891), + [sym_block_comment] = STATE(891), + [sym__expression] = STATE(1796), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4212), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [892] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(892), + [sym_block_comment] = STATE(892), + [sym__expression] = STATE(1692), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [893] = { - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_CR] = ACTIONS(3404), - [anon_sym_CR_LF] = ACTIONS(3404), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3404), - [anon_sym_as] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_COMMA] = ACTIONS(3404), - [anon_sym_const] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(3404), - [anon_sym_EQ] = ACTIONS(3404), - [anon_sym___global] = ACTIONS(3404), - [anon_sym_type] = ACTIONS(3404), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_fn] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3404), - [anon_sym_SLASH] = ACTIONS(3404), - [anon_sym_PERCENT] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [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(3402), - [anon_sym_struct] = ACTIONS(3404), - [anon_sym_union] = ACTIONS(3404), - [anon_sym_pub] = ACTIONS(3404), - [anon_sym_mut] = ACTIONS(3404), - [anon_sym_enum] = ACTIONS(3404), - [anon_sym_interface] = ACTIONS(3404), - [anon_sym_PLUS_PLUS] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3404), - [anon_sym_QMARK] = ACTIONS(3404), - [anon_sym_BANG] = ACTIONS(3404), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3404), - [anon_sym_json_DOTdecode] = ACTIONS(3404), - [anon_sym_LBRACK2] = ACTIONS(3404), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3404), - [anon_sym_LT_LT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [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(3404), - [sym_none] = ACTIONS(3404), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [sym_nil] = ACTIONS(3404), - [anon_sym_QMARK_DOT] = ACTIONS(3404), - [anon_sym_POUND_LBRACK] = ACTIONS(3404), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_DOLLARif] = ACTIONS(3404), - [anon_sym_is] = ACTIONS(3404), - [anon_sym_BANGis] = ACTIONS(3404), - [anon_sym_in] = ACTIONS(3404), - [anon_sym_BANGin] = ACTIONS(3404), - [anon_sym_match] = ACTIONS(3404), - [anon_sym_select] = ACTIONS(3404), - [anon_sym_STAR_EQ] = ACTIONS(3404), - [anon_sym_SLASH_EQ] = ACTIONS(3404), - [anon_sym_PERCENT_EQ] = ACTIONS(3404), - [anon_sym_LT_LT_EQ] = ACTIONS(3404), - [anon_sym_GT_GT_EQ] = ACTIONS(3404), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3404), - [anon_sym_AMP_EQ] = ACTIONS(3404), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3404), - [anon_sym_PLUS_EQ] = ACTIONS(3404), - [anon_sym_DASH_EQ] = ACTIONS(3404), - [anon_sym_PIPE_EQ] = ACTIONS(3404), - [anon_sym_CARET_EQ] = ACTIONS(3404), - [anon_sym_COLON_EQ] = ACTIONS(3404), - [anon_sym_lock] = ACTIONS(3404), - [anon_sym_rlock] = ACTIONS(3404), - [anon_sym_unsafe] = ACTIONS(3404), - [anon_sym_sql] = ACTIONS(3404), - [sym_int_literal] = ACTIONS(3404), - [sym_float_literal] = ACTIONS(3404), - [sym_rune_literal] = ACTIONS(3404), - [sym_pseudo_compile_time_identifier] = ACTIONS(3404), - [anon_sym_shared] = ACTIONS(3404), - [anon_sym_map_LBRACK] = ACTIONS(3404), - [anon_sym_chan] = ACTIONS(3404), - [anon_sym_thread] = ACTIONS(3404), - [anon_sym_atomic] = ACTIONS(3404), - [anon_sym_assert] = ACTIONS(3404), - [anon_sym_defer] = ACTIONS(3404), - [anon_sym_goto] = ACTIONS(3404), - [anon_sym_break] = ACTIONS(3404), - [anon_sym_continue] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3404), - [anon_sym_DOLLARfor] = ACTIONS(3404), - [anon_sym_for] = ACTIONS(3404), - [anon_sym_POUND] = ACTIONS(3404), - [anon_sym_asm] = ACTIONS(3404), - [anon_sym_AT_LBRACK] = ACTIONS(3404), - [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), + [sym_line_comment] = STATE(893), + [sym_block_comment] = STATE(893), + [sym__expression] = STATE(1808), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4212), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [894] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), + [sym__expression] = STATE(1804), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4212), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [895] = { - [sym__expression] = STATE(995), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [sym__expression] = STATE(2705), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [896] = { - [sym__expression] = STATE(997), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), + [sym__expression] = STATE(2700), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [897] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4216), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [898] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4213), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3678), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [899] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(899), + [sym_block_comment] = STATE(899), + [sym__expression] = STATE(1803), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4212), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), }, [900] = { - [sym__expression] = STATE(996), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3035), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(3043), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(900), + [sym_block_comment] = STATE(900), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, [901] = { - [sym__expression] = STATE(1646), - [sym__expression_without_blocks] = STATE(1776), - [sym__expression_with_blocks] = STATE(1776), - [sym_inc_expression] = STATE(1776), - [sym_dec_expression] = STATE(1776), - [sym_or_block_expression] = STATE(1776), - [sym_option_propagation_expression] = STATE(1776), - [sym_result_propagation_expression] = STATE(1776), - [sym_anon_struct_value_expression] = STATE(1774), - [sym_go_expression] = STATE(1776), - [sym_spawn_expression] = STATE(1776), - [sym_parenthesized_expression] = STATE(1776), - [sym_call_expression] = STATE(1776), - [sym_type_initializer] = STATE(1774), - [sym_function_literal] = STATE(1776), - [sym_reference_expression] = STATE(1772), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1776), - [sym_receive_expression] = STATE(1776), - [sym_binary_expression] = STATE(1776), - [sym_as_type_cast_expression] = STATE(1776), - [sym__max_group] = STATE(1776), - [sym_literal] = STATE(1776), - [sym_map_init_expression] = STATE(1774), - [sym_array_creation] = STATE(1776), - [sym_fixed_array_creation] = STATE(1776), - [sym_selector_expression] = STATE(1776), - [sym_index_expression] = STATE(1776), - [sym_slice_expression] = STATE(1776), - [sym_if_expression] = STATE(1774), - [sym_compile_time_if_expression] = STATE(1774), - [sym_is_expression] = STATE(1776), - [sym_not_is_expression] = STATE(1776), - [sym_in_expression] = STATE(1776), - [sym_not_in_expression] = STATE(1776), - [sym_enum_fetch] = STATE(1776), - [sym_match_expression] = STATE(1774), - [sym_select_expression] = STATE(1774), - [sym_lock_expression] = STATE(1774), - [sym_unsafe_expression] = STATE(1774), - [sym_sql_expression] = STATE(1774), - [sym_c_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_interpreted_string_literal] = STATE(1778), - [sym_mutability_modifiers] = STATE(483), - [sym_plain_type] = STATE(4382), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3411), + [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_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), }, [902] = { - [sym__expression] = STATE(1795), - [sym__expression_without_blocks] = STATE(1954), - [sym__expression_with_blocks] = STATE(1954), - [sym_inc_expression] = STATE(1954), - [sym_dec_expression] = STATE(1954), - [sym_or_block_expression] = STATE(1954), - [sym_option_propagation_expression] = STATE(1954), - [sym_result_propagation_expression] = STATE(1954), - [sym_anon_struct_value_expression] = STATE(1953), - [sym_go_expression] = STATE(1954), - [sym_spawn_expression] = STATE(1954), - [sym_parenthesized_expression] = STATE(1954), - [sym_call_expression] = STATE(1954), - [sym_type_initializer] = STATE(1953), - [sym_function_literal] = STATE(1954), - [sym_reference_expression] = STATE(2126), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1954), - [sym_receive_expression] = STATE(1954), - [sym_binary_expression] = STATE(1954), - [sym_as_type_cast_expression] = STATE(1954), - [sym__max_group] = STATE(1954), - [sym_literal] = STATE(1954), - [sym_map_init_expression] = STATE(1953), - [sym_array_creation] = STATE(1954), - [sym_fixed_array_creation] = STATE(1954), - [sym_selector_expression] = STATE(1954), - [sym_index_expression] = STATE(1954), - [sym_slice_expression] = STATE(1954), - [sym_if_expression] = STATE(1953), - [sym_compile_time_if_expression] = STATE(1953), - [sym_is_expression] = STATE(1954), - [sym_not_is_expression] = STATE(1954), - [sym_in_expression] = STATE(1954), - [sym_not_in_expression] = STATE(1954), - [sym_enum_fetch] = STATE(1954), - [sym_match_expression] = STATE(1953), - [sym_select_expression] = STATE(1953), - [sym_lock_expression] = STATE(1953), - [sym_unsafe_expression] = STATE(1953), - [sym_sql_expression] = STATE(1953), - [sym_c_string_literal] = STATE(2024), - [sym_raw_string_literal] = STATE(2024), - [sym_interpreted_string_literal] = STATE(2024), - [sym_mutability_modifiers] = STATE(476), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), + [sym__expression] = STATE(1650), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), }, [903] = { - [sym__expression] = STATE(2309), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3026), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3027), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [904] = { - [sym__expression] = STATE(2478), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3279), + [anon_sym___global] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [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(3284), + [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(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3279), + [anon_sym_spawn] = ACTIONS(3279), + [anon_sym_json_DOTdecode] = ACTIONS(3279), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3279), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [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(3281), + [sym_none] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_nil] = ACTIONS(3279), + [anon_sym_QMARK_DOT] = ACTIONS(3281), + [anon_sym_POUND_LBRACK] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_DOLLARif] = ACTIONS(3279), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3281), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3281), + [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), }, [905] = { - [ts_builtin_sym_end] = ACTIONS(3406), - [sym_identifier] = ACTIONS(3408), - [anon_sym_LF] = ACTIONS(3408), - [anon_sym_CR] = ACTIONS(3408), - [anon_sym_CR_LF] = ACTIONS(3408), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3408), - [anon_sym_as] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_COMMA] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_LPAREN] = ACTIONS(3408), - [anon_sym_EQ] = ACTIONS(3408), - [anon_sym___global] = ACTIONS(3408), - [anon_sym_type] = ACTIONS(3408), - [anon_sym_PIPE] = ACTIONS(3408), - [anon_sym_fn] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_SLASH] = ACTIONS(3408), - [anon_sym_PERCENT] = ACTIONS(3408), - [anon_sym_LT] = ACTIONS(3408), - [anon_sym_GT] = ACTIONS(3408), - [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(3406), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_pub] = ACTIONS(3408), - [anon_sym_mut] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_interface] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_QMARK] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3408), - [anon_sym_spawn] = ACTIONS(3408), - [anon_sym_json_DOTdecode] = ACTIONS(3408), - [anon_sym_LBRACK2] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3408), - [anon_sym_LT_LT] = ACTIONS(3408), - [anon_sym_GT_GT] = ACTIONS(3408), - [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(3408), - [sym_none] = ACTIONS(3408), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [sym_nil] = ACTIONS(3408), - [anon_sym_QMARK_DOT] = ACTIONS(3408), - [anon_sym_POUND_LBRACK] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_DOLLARif] = ACTIONS(3408), - [anon_sym_is] = ACTIONS(3408), - [anon_sym_BANGis] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3408), - [anon_sym_BANGin] = ACTIONS(3408), - [anon_sym_match] = ACTIONS(3408), - [anon_sym_select] = ACTIONS(3408), - [anon_sym_STAR_EQ] = ACTIONS(3408), - [anon_sym_SLASH_EQ] = ACTIONS(3408), - [anon_sym_PERCENT_EQ] = ACTIONS(3408), - [anon_sym_LT_LT_EQ] = ACTIONS(3408), - [anon_sym_GT_GT_EQ] = ACTIONS(3408), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3408), - [anon_sym_AMP_EQ] = ACTIONS(3408), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3408), - [anon_sym_DASH_EQ] = ACTIONS(3408), - [anon_sym_PIPE_EQ] = ACTIONS(3408), - [anon_sym_CARET_EQ] = ACTIONS(3408), - [anon_sym_COLON_EQ] = ACTIONS(3408), - [anon_sym_lock] = ACTIONS(3408), - [anon_sym_rlock] = ACTIONS(3408), - [anon_sym_unsafe] = ACTIONS(3408), - [anon_sym_sql] = ACTIONS(3408), - [sym_int_literal] = ACTIONS(3408), - [sym_float_literal] = ACTIONS(3408), - [sym_rune_literal] = ACTIONS(3408), - [sym_pseudo_compile_time_identifier] = ACTIONS(3408), - [anon_sym_shared] = ACTIONS(3408), - [anon_sym_map_LBRACK] = ACTIONS(3408), - [anon_sym_chan] = ACTIONS(3408), - [anon_sym_thread] = ACTIONS(3408), - [anon_sym_atomic] = ACTIONS(3408), - [anon_sym_assert] = ACTIONS(3408), - [anon_sym_defer] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_DOLLARfor] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_POUND] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym_AT_LBRACK] = ACTIONS(3408), - [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), - }, - [906] = { - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), - }, - [907] = { - [sym__expression] = STATE(1144), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4346), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [908] = { - [sym__expression] = STATE(2872), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [909] = { - [sym__expression] = STATE(1670), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), - }, - [910] = { - [sym__expression] = STATE(1144), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [911] = { - [sym__expression] = STATE(1666), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), - }, - [912] = { - [sym__expression] = STATE(1144), - [sym__expression_without_blocks] = STATE(1207), - [sym__expression_with_blocks] = STATE(1207), - [sym_inc_expression] = STATE(1207), - [sym_dec_expression] = STATE(1207), - [sym_or_block_expression] = STATE(1207), - [sym_option_propagation_expression] = STATE(1207), - [sym_result_propagation_expression] = STATE(1207), - [sym_anon_struct_value_expression] = STATE(1205), - [sym_go_expression] = STATE(1207), - [sym_spawn_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_type_initializer] = STATE(1205), - [sym_function_literal] = STATE(1207), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1207), - [sym_receive_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_as_type_cast_expression] = STATE(1207), - [sym__max_group] = STATE(1207), - [sym_literal] = STATE(1207), - [sym_map_init_expression] = STATE(1205), - [sym_array_creation] = STATE(1207), - [sym_fixed_array_creation] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_slice_expression] = STATE(1207), - [sym_if_expression] = STATE(1205), - [sym_compile_time_if_expression] = STATE(1205), - [sym_is_expression] = STATE(1207), - [sym_not_is_expression] = STATE(1207), - [sym_in_expression] = STATE(1207), - [sym_not_in_expression] = STATE(1207), - [sym_enum_fetch] = STATE(1207), - [sym_match_expression] = STATE(1205), - [sym_select_expression] = STATE(1205), - [sym_lock_expression] = STATE(1205), - [sym_unsafe_expression] = STATE(1205), - [sym_sql_expression] = STATE(1205), - [sym_c_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_interpreted_string_literal] = STATE(1208), - [sym_mutability_modifiers] = STATE(481), - [sym_plain_type] = STATE(4339), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [913] = { - [sym__expression] = STATE(2643), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [914] = { - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_CR] = ACTIONS(3412), - [anon_sym_CR_LF] = ACTIONS(3412), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3412), - [anon_sym_as] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_COMMA] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3412), - [anon_sym_EQ] = ACTIONS(3412), - [anon_sym___global] = ACTIONS(3412), - [anon_sym_type] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_fn] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_SLASH] = ACTIONS(3412), - [anon_sym_PERCENT] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [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(3410), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_union] = ACTIONS(3412), - [anon_sym_pub] = ACTIONS(3412), - [anon_sym_mut] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_interface] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_QMARK] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_go] = ACTIONS(3412), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3412), - [anon_sym_LBRACK2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_CARET] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [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(3412), - [sym_none] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_nil] = ACTIONS(3412), - [anon_sym_QMARK_DOT] = ACTIONS(3412), - [anon_sym_POUND_LBRACK] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOLLARif] = ACTIONS(3412), - [anon_sym_is] = ACTIONS(3412), - [anon_sym_BANGis] = ACTIONS(3412), - [anon_sym_in] = ACTIONS(3412), - [anon_sym_BANGin] = ACTIONS(3412), - [anon_sym_match] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_STAR_EQ] = ACTIONS(3412), - [anon_sym_SLASH_EQ] = ACTIONS(3412), - [anon_sym_PERCENT_EQ] = ACTIONS(3412), - [anon_sym_LT_LT_EQ] = ACTIONS(3412), - [anon_sym_GT_GT_EQ] = ACTIONS(3412), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3412), - [anon_sym_AMP_EQ] = ACTIONS(3412), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3412), - [anon_sym_PLUS_EQ] = ACTIONS(3412), - [anon_sym_DASH_EQ] = ACTIONS(3412), - [anon_sym_PIPE_EQ] = ACTIONS(3412), - [anon_sym_CARET_EQ] = ACTIONS(3412), - [anon_sym_COLON_EQ] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_rlock] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_sql] = ACTIONS(3412), - [sym_int_literal] = ACTIONS(3412), - [sym_float_literal] = ACTIONS(3412), - [sym_rune_literal] = ACTIONS(3412), - [sym_pseudo_compile_time_identifier] = ACTIONS(3412), - [anon_sym_shared] = ACTIONS(3412), - [anon_sym_map_LBRACK] = ACTIONS(3412), - [anon_sym_chan] = ACTIONS(3412), - [anon_sym_thread] = ACTIONS(3412), - [anon_sym_atomic] = ACTIONS(3412), - [anon_sym_assert] = ACTIONS(3412), - [anon_sym_defer] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_DOLLARfor] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_POUND] = ACTIONS(3412), - [anon_sym_asm] = ACTIONS(3412), - [anon_sym_AT_LBRACK] = ACTIONS(3412), - [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), - }, - [915] = { - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3416), - [anon_sym_LF] = ACTIONS(3416), - [anon_sym_CR] = ACTIONS(3416), - [anon_sym_CR_LF] = ACTIONS(3416), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3416), - [anon_sym_as] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_COMMA] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_LPAREN] = ACTIONS(3416), - [anon_sym_EQ] = ACTIONS(3416), - [anon_sym___global] = ACTIONS(3416), - [anon_sym_type] = ACTIONS(3416), - [anon_sym_PIPE] = ACTIONS(3416), - [anon_sym_fn] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_PERCENT] = ACTIONS(3416), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_GT] = ACTIONS(3416), - [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(3414), - [anon_sym_struct] = ACTIONS(3416), - [anon_sym_union] = ACTIONS(3416), - [anon_sym_pub] = ACTIONS(3416), - [anon_sym_mut] = ACTIONS(3416), - [anon_sym_enum] = ACTIONS(3416), - [anon_sym_interface] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3416), - [anon_sym_QMARK] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_go] = ACTIONS(3416), - [anon_sym_spawn] = ACTIONS(3416), - [anon_sym_json_DOTdecode] = ACTIONS(3416), - [anon_sym_LBRACK2] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_CARET] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(3416), - [anon_sym_LT_LT] = ACTIONS(3416), - [anon_sym_GT_GT] = ACTIONS(3416), - [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(3416), - [sym_none] = ACTIONS(3416), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [sym_nil] = ACTIONS(3416), - [anon_sym_QMARK_DOT] = ACTIONS(3416), - [anon_sym_POUND_LBRACK] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_DOLLARif] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3416), - [anon_sym_BANGis] = ACTIONS(3416), - [anon_sym_in] = ACTIONS(3416), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_match] = ACTIONS(3416), - [anon_sym_select] = ACTIONS(3416), - [anon_sym_STAR_EQ] = ACTIONS(3416), - [anon_sym_SLASH_EQ] = ACTIONS(3416), - [anon_sym_PERCENT_EQ] = ACTIONS(3416), - [anon_sym_LT_LT_EQ] = ACTIONS(3416), - [anon_sym_GT_GT_EQ] = ACTIONS(3416), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3416), - [anon_sym_AMP_EQ] = ACTIONS(3416), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3416), - [anon_sym_PLUS_EQ] = ACTIONS(3416), - [anon_sym_DASH_EQ] = ACTIONS(3416), - [anon_sym_PIPE_EQ] = ACTIONS(3416), - [anon_sym_CARET_EQ] = ACTIONS(3416), - [anon_sym_COLON_EQ] = ACTIONS(3416), - [anon_sym_lock] = ACTIONS(3416), - [anon_sym_rlock] = ACTIONS(3416), - [anon_sym_unsafe] = ACTIONS(3416), - [anon_sym_sql] = ACTIONS(3416), - [sym_int_literal] = ACTIONS(3416), - [sym_float_literal] = ACTIONS(3416), - [sym_rune_literal] = ACTIONS(3416), - [sym_pseudo_compile_time_identifier] = ACTIONS(3416), - [anon_sym_shared] = ACTIONS(3416), - [anon_sym_map_LBRACK] = ACTIONS(3416), - [anon_sym_chan] = ACTIONS(3416), - [anon_sym_thread] = ACTIONS(3416), - [anon_sym_atomic] = ACTIONS(3416), - [anon_sym_assert] = ACTIONS(3416), - [anon_sym_defer] = ACTIONS(3416), - [anon_sym_goto] = ACTIONS(3416), - [anon_sym_break] = ACTIONS(3416), - [anon_sym_continue] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3416), - [anon_sym_DOLLARfor] = ACTIONS(3416), - [anon_sym_for] = ACTIONS(3416), - [anon_sym_POUND] = ACTIONS(3416), - [anon_sym_asm] = ACTIONS(3416), - [anon_sym_AT_LBRACK] = ACTIONS(3416), - [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), - }, - [916] = { - [sym__expression] = STATE(1663), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), - }, - [917] = { - [sym__expression] = STATE(248), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), - }, - [918] = { - [sym__expression] = STATE(1690), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), - }, - [919] = { - [sym__expression] = STATE(2569), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), - }, - [920] = { - [ts_builtin_sym_end] = ACTIONS(3418), - [sym_identifier] = ACTIONS(3420), - [anon_sym_LF] = ACTIONS(3420), - [anon_sym_CR] = ACTIONS(3420), - [anon_sym_CR_LF] = ACTIONS(3420), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_COMMA] = ACTIONS(3420), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_LPAREN] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym___global] = ACTIONS(3420), - [anon_sym_type] = ACTIONS(3420), - [anon_sym_PIPE] = ACTIONS(3420), - [anon_sym_fn] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [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(3418), - [anon_sym_struct] = ACTIONS(3420), - [anon_sym_union] = ACTIONS(3420), - [anon_sym_pub] = ACTIONS(3420), - [anon_sym_mut] = ACTIONS(3420), - [anon_sym_enum] = ACTIONS(3420), - [anon_sym_interface] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_QMARK] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(3420), - [anon_sym_spawn] = ACTIONS(3420), - [anon_sym_json_DOTdecode] = ACTIONS(3420), - [anon_sym_LBRACK2] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_CARET] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_LT_DASH] = ACTIONS(3420), - [anon_sym_LT_LT] = ACTIONS(3420), - [anon_sym_GT_GT] = ACTIONS(3420), - [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(3420), - [sym_none] = ACTIONS(3420), - [sym_true] = ACTIONS(3420), - [sym_false] = ACTIONS(3420), - [sym_nil] = ACTIONS(3420), - [anon_sym_QMARK_DOT] = ACTIONS(3420), - [anon_sym_POUND_LBRACK] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_DOLLARif] = ACTIONS(3420), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_BANGin] = ACTIONS(3420), - [anon_sym_match] = ACTIONS(3420), - [anon_sym_select] = ACTIONS(3420), - [anon_sym_STAR_EQ] = ACTIONS(3420), - [anon_sym_SLASH_EQ] = ACTIONS(3420), - [anon_sym_PERCENT_EQ] = ACTIONS(3420), - [anon_sym_LT_LT_EQ] = ACTIONS(3420), - [anon_sym_GT_GT_EQ] = ACTIONS(3420), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3420), - [anon_sym_AMP_EQ] = ACTIONS(3420), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3420), - [anon_sym_PLUS_EQ] = ACTIONS(3420), - [anon_sym_DASH_EQ] = ACTIONS(3420), - [anon_sym_PIPE_EQ] = ACTIONS(3420), - [anon_sym_CARET_EQ] = ACTIONS(3420), - [anon_sym_COLON_EQ] = ACTIONS(3420), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3420), - [anon_sym_sql] = ACTIONS(3420), - [sym_int_literal] = ACTIONS(3420), - [sym_float_literal] = ACTIONS(3420), - [sym_rune_literal] = ACTIONS(3420), - [sym_pseudo_compile_time_identifier] = ACTIONS(3420), - [anon_sym_shared] = ACTIONS(3420), - [anon_sym_map_LBRACK] = ACTIONS(3420), - [anon_sym_chan] = ACTIONS(3420), - [anon_sym_thread] = ACTIONS(3420), - [anon_sym_atomic] = ACTIONS(3420), - [anon_sym_assert] = ACTIONS(3420), - [anon_sym_defer] = ACTIONS(3420), - [anon_sym_goto] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_DOLLARfor] = ACTIONS(3420), - [anon_sym_for] = ACTIONS(3420), - [anon_sym_POUND] = ACTIONS(3420), - [anon_sym_asm] = ACTIONS(3420), - [anon_sym_AT_LBRACK] = ACTIONS(3420), - [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), - }, - [921] = { - [sym__expression] = STATE(1674), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), - }, - [922] = { - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_CR] = ACTIONS(3424), - [anon_sym_CR_LF] = ACTIONS(3424), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3424), - [anon_sym_as] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_COMMA] = ACTIONS(3424), - [anon_sym_const] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym_EQ] = ACTIONS(3424), - [anon_sym___global] = ACTIONS(3424), - [anon_sym_type] = ACTIONS(3424), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_fn] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_SLASH] = ACTIONS(3424), - [anon_sym_PERCENT] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [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(3422), - [anon_sym_struct] = ACTIONS(3424), - [anon_sym_union] = ACTIONS(3424), - [anon_sym_pub] = ACTIONS(3424), - [anon_sym_mut] = ACTIONS(3424), - [anon_sym_enum] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [anon_sym_QMARK] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_go] = ACTIONS(3424), - [anon_sym_spawn] = ACTIONS(3424), - [anon_sym_json_DOTdecode] = ACTIONS(3424), - [anon_sym_LBRACK2] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_CARET] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - [anon_sym_LT_DASH] = ACTIONS(3424), - [anon_sym_LT_LT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [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(3424), - [sym_none] = ACTIONS(3424), - [sym_true] = ACTIONS(3424), - [sym_false] = ACTIONS(3424), - [sym_nil] = ACTIONS(3424), - [anon_sym_QMARK_DOT] = ACTIONS(3424), - [anon_sym_POUND_LBRACK] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_DOLLARif] = ACTIONS(3424), - [anon_sym_is] = ACTIONS(3424), - [anon_sym_BANGis] = ACTIONS(3424), - [anon_sym_in] = ACTIONS(3424), - [anon_sym_BANGin] = ACTIONS(3424), - [anon_sym_match] = ACTIONS(3424), - [anon_sym_select] = ACTIONS(3424), - [anon_sym_STAR_EQ] = ACTIONS(3424), - [anon_sym_SLASH_EQ] = ACTIONS(3424), - [anon_sym_PERCENT_EQ] = ACTIONS(3424), - [anon_sym_LT_LT_EQ] = ACTIONS(3424), - [anon_sym_GT_GT_EQ] = ACTIONS(3424), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3424), - [anon_sym_AMP_EQ] = ACTIONS(3424), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3424), - [anon_sym_PLUS_EQ] = ACTIONS(3424), - [anon_sym_DASH_EQ] = ACTIONS(3424), - [anon_sym_PIPE_EQ] = ACTIONS(3424), - [anon_sym_CARET_EQ] = ACTIONS(3424), - [anon_sym_COLON_EQ] = ACTIONS(3424), - [anon_sym_lock] = ACTIONS(3424), - [anon_sym_rlock] = ACTIONS(3424), - [anon_sym_unsafe] = ACTIONS(3424), - [anon_sym_sql] = ACTIONS(3424), - [sym_int_literal] = ACTIONS(3424), - [sym_float_literal] = ACTIONS(3424), - [sym_rune_literal] = ACTIONS(3424), - [sym_pseudo_compile_time_identifier] = ACTIONS(3424), - [anon_sym_shared] = ACTIONS(3424), - [anon_sym_map_LBRACK] = ACTIONS(3424), - [anon_sym_chan] = ACTIONS(3424), - [anon_sym_thread] = ACTIONS(3424), - [anon_sym_atomic] = ACTIONS(3424), - [anon_sym_assert] = ACTIONS(3424), - [anon_sym_defer] = ACTIONS(3424), - [anon_sym_goto] = ACTIONS(3424), - [anon_sym_break] = ACTIONS(3424), - [anon_sym_continue] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3424), - [anon_sym_DOLLARfor] = ACTIONS(3424), - [anon_sym_for] = ACTIONS(3424), - [anon_sym_POUND] = ACTIONS(3424), - [anon_sym_asm] = ACTIONS(3424), - [anon_sym_AT_LBRACK] = ACTIONS(3424), - [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), - }, - [923] = { - [ts_builtin_sym_end] = ACTIONS(3215), - [sym_identifier] = ACTIONS(3217), - [anon_sym_LF] = ACTIONS(3217), - [anon_sym_CR] = ACTIONS(3217), - [anon_sym_CR_LF] = ACTIONS(3217), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3217), - [anon_sym___global] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3217), - [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(3222), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_union] = ACTIONS(3217), - [anon_sym_pub] = ACTIONS(3217), - [anon_sym_mut] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [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(3217), - [anon_sym_spawn] = ACTIONS(3217), - [anon_sym_json_DOTdecode] = ACTIONS(3217), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3217), - [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(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_nil] = ACTIONS(3217), - [anon_sym_QMARK_DOT] = ACTIONS(3219), - [anon_sym_POUND_LBRACK] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_DOLLARif] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3217), - [anon_sym_select] = ACTIONS(3217), - [anon_sym_STAR_EQ] = ACTIONS(3217), - [anon_sym_SLASH_EQ] = ACTIONS(3217), - [anon_sym_PERCENT_EQ] = ACTIONS(3217), - [anon_sym_LT_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_GT_EQ] = ACTIONS(3217), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3217), - [anon_sym_AMP_EQ] = ACTIONS(3217), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3217), - [anon_sym_PLUS_EQ] = ACTIONS(3217), - [anon_sym_DASH_EQ] = ACTIONS(3217), - [anon_sym_PIPE_EQ] = ACTIONS(3217), - [anon_sym_CARET_EQ] = ACTIONS(3217), - [anon_sym_COLON_EQ] = ACTIONS(3217), - [anon_sym_lock] = ACTIONS(3217), - [anon_sym_rlock] = ACTIONS(3217), - [anon_sym_unsafe] = ACTIONS(3217), - [anon_sym_sql] = ACTIONS(3217), - [sym_int_literal] = ACTIONS(3217), - [sym_float_literal] = ACTIONS(3217), - [sym_rune_literal] = ACTIONS(3217), - [sym_pseudo_compile_time_identifier] = ACTIONS(3217), - [anon_sym_shared] = ACTIONS(3217), - [anon_sym_map_LBRACK] = ACTIONS(3217), - [anon_sym_chan] = ACTIONS(3217), - [anon_sym_thread] = ACTIONS(3217), - [anon_sym_atomic] = ACTIONS(3217), - [anon_sym_assert] = ACTIONS(3217), - [anon_sym_defer] = ACTIONS(3217), - [anon_sym_goto] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_DOLLARfor] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_POUND] = ACTIONS(3217), - [anon_sym_asm] = ACTIONS(3217), - [anon_sym_AT_LBRACK] = ACTIONS(3217), - [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), + [sym_line_comment] = STATE(905), + [sym_block_comment] = STATE(905), + [ts_builtin_sym_end] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LF] = ACTIONS(3269), + [anon_sym_CR] = ACTIONS(3269), + [anon_sym_CR_LF] = ACTIONS(3269), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_DOT] = ACTIONS(3271), + [anon_sym_as] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_COMMA] = ACTIONS(3269), + [anon_sym_const] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_EQ] = ACTIONS(3269), + [anon_sym___global] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_STAR] = 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(3274), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_union] = ACTIONS(3269), + [anon_sym_pub] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3269), + [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(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3269), + [anon_sym_LBRACK2] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3271), + [anon_sym_AMP] = ACTIONS(3271), + [anon_sym_LT_DASH] = ACTIONS(3269), + [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(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3271), + [anon_sym_POUND_LBRACK] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3271), + [anon_sym_BANGis] = ACTIONS(3271), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3271), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_STAR_EQ] = ACTIONS(3269), + [anon_sym_SLASH_EQ] = ACTIONS(3269), + [anon_sym_PERCENT_EQ] = ACTIONS(3269), + [anon_sym_LT_LT_EQ] = ACTIONS(3269), + [anon_sym_GT_GT_EQ] = ACTIONS(3269), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3269), + [anon_sym_AMP_EQ] = ACTIONS(3269), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3269), + [anon_sym_DASH_EQ] = ACTIONS(3269), + [anon_sym_PIPE_EQ] = ACTIONS(3269), + [anon_sym_CARET_EQ] = ACTIONS(3269), + [anon_sym_COLON_EQ] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3269), + [sym_rune_literal] = ACTIONS(3269), + [sym_pseudo_compile_time_identifier] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3269), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [anon_sym_assert] = ACTIONS(3269), + [anon_sym_defer] = ACTIONS(3269), + [anon_sym_goto] = ACTIONS(3269), + [anon_sym_break] = ACTIONS(3269), + [anon_sym_continue] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_DOLLARfor] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_POUND] = ACTIONS(3269), + [anon_sym_asm] = ACTIONS(3269), + [anon_sym_AT_LBRACK] = ACTIONS(3269), + [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), + }, + [906] = { + [sym_line_comment] = STATE(906), + [sym_block_comment] = STATE(906), + [sym__expression] = STATE(1690), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), + }, + [907] = { + [sym_line_comment] = STATE(907), + [sym_block_comment] = STATE(907), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3415), + [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_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), + }, + [908] = { + [sym_line_comment] = STATE(908), + [sym_block_comment] = STATE(908), + [sym__expression] = STATE(2321), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [909] = { + [sym_line_comment] = STATE(909), + [sym_block_comment] = STATE(909), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3678), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [910] = { + [sym_line_comment] = STATE(910), + [sym_block_comment] = STATE(910), + [sym__expression] = STATE(1660), + [sym__expression_without_blocks] = STATE(1747), + [sym__expression_with_blocks] = STATE(1747), + [sym_inc_expression] = STATE(1748), + [sym_dec_expression] = STATE(1748), + [sym_or_block_expression] = STATE(1748), + [sym_option_propagation_expression] = STATE(1748), + [sym_result_propagation_expression] = STATE(1748), + [sym_anon_struct_value_expression] = STATE(1762), + [sym_go_expression] = STATE(1748), + [sym_spawn_expression] = STATE(1748), + [sym_parenthesized_expression] = STATE(1748), + [sym_call_expression] = STATE(1748), + [sym_type_initializer] = STATE(1762), + [sym_function_literal] = STATE(1748), + [sym_reference_expression] = STATE(1766), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1748), + [sym_receive_expression] = STATE(1748), + [sym_binary_expression] = STATE(1748), + [sym_as_type_cast_expression] = STATE(1748), + [sym__max_group] = STATE(1748), + [sym_literal] = STATE(1744), + [sym_map_init_expression] = STATE(1762), + [sym_array_creation] = STATE(1748), + [sym_fixed_array_creation] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym_index_expression] = STATE(1748), + [sym_slice_expression] = STATE(1748), + [sym_if_expression] = STATE(1762), + [sym_compile_time_if_expression] = STATE(1762), + [sym_is_expression] = STATE(1748), + [sym_not_is_expression] = STATE(1748), + [sym_in_expression] = STATE(1748), + [sym_not_in_expression] = STATE(1748), + [sym_enum_fetch] = STATE(1748), + [sym_match_expression] = STATE(1762), + [sym_select_expression] = STATE(1762), + [sym_lock_expression] = STATE(1762), + [sym_unsafe_expression] = STATE(1762), + [sym_sql_expression] = STATE(1762), + [sym_c_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_interpreted_string_literal] = STATE(1741), + [sym_mutability_modifiers] = STATE(926), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3019), + [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), + }, + [911] = { + [sym_line_comment] = STATE(911), + [sym_block_comment] = STATE(911), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3419), + [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_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), + }, + [912] = { + [sym_line_comment] = STATE(912), + [sym_block_comment] = STATE(912), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(1979), + [sym__expression_with_blocks] = STATE(1979), + [sym_inc_expression] = STATE(2063), + [sym_dec_expression] = STATE(2063), + [sym_or_block_expression] = STATE(2063), + [sym_option_propagation_expression] = STATE(2063), + [sym_result_propagation_expression] = STATE(2063), + [sym_anon_struct_value_expression] = STATE(1980), + [sym_go_expression] = STATE(2063), + [sym_spawn_expression] = STATE(2063), + [sym_parenthesized_expression] = STATE(2063), + [sym_call_expression] = STATE(2063), + [sym_type_initializer] = STATE(1980), + [sym_function_literal] = STATE(2063), + [sym_reference_expression] = STATE(1988), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2063), + [sym_receive_expression] = STATE(2063), + [sym_binary_expression] = STATE(2063), + [sym_as_type_cast_expression] = STATE(2063), + [sym__max_group] = STATE(2063), + [sym_literal] = STATE(2058), + [sym_map_init_expression] = STATE(1980), + [sym_array_creation] = STATE(2063), + [sym_fixed_array_creation] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym_index_expression] = STATE(2063), + [sym_slice_expression] = STATE(2063), + [sym_if_expression] = STATE(1980), + [sym_compile_time_if_expression] = STATE(1980), + [sym_is_expression] = STATE(2063), + [sym_not_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2063), + [sym_not_in_expression] = STATE(2063), + [sym_enum_fetch] = STATE(2063), + [sym_match_expression] = STATE(1980), + [sym_select_expression] = STATE(1980), + [sym_lock_expression] = STATE(1980), + [sym_unsafe_expression] = STATE(1980), + [sym_sql_expression] = STATE(1980), + [sym_c_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_interpreted_string_literal] = STATE(2057), + [sym_mutability_modifiers] = STATE(604), + [sym_plain_type] = STATE(4212), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(2889), + [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(2891), + [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(2893), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2897), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2905), + [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), + }, + [913] = { + [sym_line_comment] = STATE(913), + [sym_block_comment] = STATE(913), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), + }, + [914] = { + [sym_line_comment] = STATE(914), + [sym_block_comment] = STATE(914), + [sym__expression] = STATE(2528), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), + }, + [915] = { + [sym_line_comment] = STATE(915), + [sym_block_comment] = STATE(915), + [sym__expression] = STATE(2874), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [916] = { + [sym_line_comment] = STATE(916), + [sym_block_comment] = STATE(916), + [sym__expression] = STATE(2572), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), + }, + [917] = { + [sym_line_comment] = STATE(917), + [sym_block_comment] = STATE(917), + [sym__expression] = STATE(1143), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), + }, + [918] = { + [sym_line_comment] = STATE(918), + [sym_block_comment] = STATE(918), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3678), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [919] = { + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), + [sym__expression] = STATE(1141), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), + }, + [920] = { + [sym_line_comment] = STATE(920), + [sym_block_comment] = STATE(920), + [ts_builtin_sym_end] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3149), + [anon_sym_LF] = ACTIONS(3149), + [anon_sym_CR] = ACTIONS(3149), + [anon_sym_CR_LF] = ACTIONS(3149), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3149), + [anon_sym_as] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym___global] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_fn] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_PERCENT] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_GT] = ACTIONS(3149), + [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(3147), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_pub] = ACTIONS(3149), + [anon_sym_mut] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_QMARK] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_go] = ACTIONS(3149), + [anon_sym_spawn] = ACTIONS(3149), + [anon_sym_json_DOTdecode] = ACTIONS(3149), + [anon_sym_LBRACK2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_LT_DASH] = ACTIONS(3149), + [anon_sym_LT_LT] = ACTIONS(3149), + [anon_sym_GT_GT] = ACTIONS(3149), + [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(3149), + [sym_none] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_nil] = ACTIONS(3149), + [anon_sym_QMARK_DOT] = ACTIONS(3149), + [anon_sym_POUND_LBRACK] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_DOLLARif] = ACTIONS(3149), + [anon_sym_is] = ACTIONS(3149), + [anon_sym_BANGis] = ACTIONS(3149), + [anon_sym_in] = ACTIONS(3149), + [anon_sym_BANGin] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_STAR_EQ] = ACTIONS(3149), + [anon_sym_SLASH_EQ] = ACTIONS(3149), + [anon_sym_PERCENT_EQ] = ACTIONS(3149), + [anon_sym_LT_LT_EQ] = ACTIONS(3149), + [anon_sym_GT_GT_EQ] = ACTIONS(3149), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3149), + [anon_sym_AMP_EQ] = ACTIONS(3149), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3149), + [anon_sym_PLUS_EQ] = ACTIONS(3149), + [anon_sym_DASH_EQ] = ACTIONS(3149), + [anon_sym_PIPE_EQ] = ACTIONS(3149), + [anon_sym_CARET_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_rlock] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_sql] = ACTIONS(3149), + [sym_int_literal] = ACTIONS(3149), + [sym_float_literal] = ACTIONS(3149), + [sym_rune_literal] = ACTIONS(3149), + [sym_pseudo_compile_time_identifier] = ACTIONS(3149), + [anon_sym_shared] = ACTIONS(3149), + [anon_sym_map_LBRACK] = ACTIONS(3149), + [anon_sym_chan] = ACTIONS(3149), + [anon_sym_thread] = ACTIONS(3149), + [anon_sym_atomic] = ACTIONS(3149), + [anon_sym_assert] = ACTIONS(3149), + [anon_sym_defer] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_DOLLARfor] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_POUND] = ACTIONS(3149), + [anon_sym_asm] = ACTIONS(3149), + [anon_sym_AT_LBRACK] = ACTIONS(3149), + [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), + }, + [921] = { + [sym_line_comment] = STATE(921), + [sym_block_comment] = STATE(921), + [sym__expression] = STATE(2321), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), + }, + [922] = { + [sym_line_comment] = STATE(922), + [sym_block_comment] = STATE(922), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3423), + [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_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), + }, + [923] = { + [sym_line_comment] = STATE(923), + [sym_block_comment] = STATE(923), + [sym__expression] = STATE(2515), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2849), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(1095), + [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2855), + [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(2857), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [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), }, [924] = { - [sym__expression] = STATE(294), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_line_comment] = STATE(924), + [sym_block_comment] = STATE(924), + [sym__expression] = STATE(1003), + [sym__expression_without_blocks] = STATE(1096), + [sym__expression_with_blocks] = STATE(1096), + [sym_inc_expression] = STATE(1022), + [sym_dec_expression] = STATE(1022), + [sym_or_block_expression] = STATE(1022), + [sym_option_propagation_expression] = STATE(1022), + [sym_result_propagation_expression] = STATE(1022), + [sym_anon_struct_value_expression] = STATE(1023), + [sym_go_expression] = STATE(1022), + [sym_spawn_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_type_initializer] = STATE(1023), + [sym_function_literal] = STATE(1022), + [sym_reference_expression] = STATE(1077), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1022), + [sym_receive_expression] = STATE(1022), + [sym_binary_expression] = STATE(1022), + [sym_as_type_cast_expression] = STATE(1022), + [sym__max_group] = STATE(1022), + [sym_literal] = STATE(1072), + [sym_map_init_expression] = STATE(1023), + [sym_array_creation] = STATE(1022), + [sym_fixed_array_creation] = STATE(1022), + [sym_selector_expression] = STATE(1022), + [sym_index_expression] = STATE(1022), + [sym_slice_expression] = STATE(1022), + [sym_if_expression] = STATE(1023), + [sym_compile_time_if_expression] = STATE(1023), + [sym_is_expression] = STATE(1022), + [sym_not_is_expression] = STATE(1022), + [sym_in_expression] = STATE(1022), + [sym_not_in_expression] = STATE(1022), + [sym_enum_fetch] = STATE(1022), + [sym_match_expression] = STATE(1023), + [sym_select_expression] = STATE(1023), + [sym_lock_expression] = STATE(1023), + [sym_unsafe_expression] = STATE(1023), + [sym_sql_expression] = STATE(1023), + [sym_c_string_literal] = STATE(1079), + [sym_raw_string_literal] = STATE(1079), + [sym_interpreted_string_literal] = STATE(1079), + [sym_mutability_modifiers] = STATE(942), + [sym_plain_type] = STATE(4227), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2933), + [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(2935), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [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(2097), + [sym___single_quote] = ACTIONS(2099), + [sym___c_double_quote] = ACTIONS(2101), + [sym___c_single_quote] = ACTIONS(2103), + [sym___r_double_quote] = ACTIONS(2105), + [sym___r_single_quote] = ACTIONS(2107), }, [925] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3227), - [anon_sym___global] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_fn] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [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(3232), - [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(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3227), - [anon_sym_LBRACK2] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [anon_sym_LT_DASH] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [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(3229), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), - [anon_sym_is] = ACTIONS(3229), - [anon_sym_BANGis] = ACTIONS(3229), - [anon_sym_in] = ACTIONS(3229), - [anon_sym_BANGin] = ACTIONS(3229), - [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_line_comment] = STATE(925), + [sym_block_comment] = STATE(925), + [sym__expression] = STATE(1815), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [926] = { - [sym__expression] = STATE(2479), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(926), + [sym_block_comment] = STATE(926), + [sym__expression] = STATE(2892), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [927] = { - [ts_builtin_sym_end] = ACTIONS(3426), - [sym_identifier] = ACTIONS(3428), - [anon_sym_LF] = ACTIONS(3428), - [anon_sym_CR] = ACTIONS(3428), - [anon_sym_CR_LF] = ACTIONS(3428), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_as] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3428), - [anon_sym___global] = ACTIONS(3428), - [anon_sym_type] = ACTIONS(3428), - [anon_sym_PIPE] = ACTIONS(3428), - [anon_sym_fn] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3428), - [anon_sym_SLASH] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(3428), - [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(3426), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_union] = ACTIONS(3428), - [anon_sym_pub] = ACTIONS(3428), - [anon_sym_mut] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_go] = ACTIONS(3428), - [anon_sym_spawn] = ACTIONS(3428), - [anon_sym_json_DOTdecode] = ACTIONS(3428), - [anon_sym_LBRACK2] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3428), - [anon_sym_CARET] = ACTIONS(3428), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_LT_LT] = ACTIONS(3428), - [anon_sym_GT_GT] = ACTIONS(3428), - [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(3428), - [sym_none] = ACTIONS(3428), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [sym_nil] = ACTIONS(3428), - [anon_sym_QMARK_DOT] = ACTIONS(3428), - [anon_sym_POUND_LBRACK] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_DOLLARif] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3428), - [anon_sym_BANGis] = ACTIONS(3428), - [anon_sym_in] = ACTIONS(3428), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), - [anon_sym_STAR_EQ] = ACTIONS(3428), - [anon_sym_SLASH_EQ] = ACTIONS(3428), - [anon_sym_PERCENT_EQ] = ACTIONS(3428), - [anon_sym_LT_LT_EQ] = ACTIONS(3428), - [anon_sym_GT_GT_EQ] = ACTIONS(3428), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3428), - [anon_sym_AMP_EQ] = ACTIONS(3428), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3428), - [anon_sym_PLUS_EQ] = ACTIONS(3428), - [anon_sym_DASH_EQ] = ACTIONS(3428), - [anon_sym_PIPE_EQ] = ACTIONS(3428), - [anon_sym_CARET_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3428), - [anon_sym_lock] = ACTIONS(3428), - [anon_sym_rlock] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_sql] = ACTIONS(3428), - [sym_int_literal] = ACTIONS(3428), - [sym_float_literal] = ACTIONS(3428), - [sym_rune_literal] = ACTIONS(3428), - [sym_pseudo_compile_time_identifier] = ACTIONS(3428), - [anon_sym_shared] = ACTIONS(3428), - [anon_sym_map_LBRACK] = ACTIONS(3428), - [anon_sym_chan] = ACTIONS(3428), - [anon_sym_thread] = ACTIONS(3428), - [anon_sym_atomic] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_defer] = ACTIONS(3428), - [anon_sym_goto] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_DOLLARfor] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_POUND] = ACTIONS(3428), - [anon_sym_asm] = ACTIONS(3428), - [anon_sym_AT_LBRACK] = ACTIONS(3428), - [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), + [sym_line_comment] = STATE(927), + [sym_block_comment] = STATE(927), + [sym__expression] = STATE(1140), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), }, [928] = { - [sym__expression] = STATE(1657), - [sym__expression_without_blocks] = STATE(1861), - [sym__expression_with_blocks] = STATE(1861), - [sym_inc_expression] = STATE(1861), - [sym_dec_expression] = STATE(1861), - [sym_or_block_expression] = STATE(1861), - [sym_option_propagation_expression] = STATE(1861), - [sym_result_propagation_expression] = STATE(1861), - [sym_anon_struct_value_expression] = STATE(1860), - [sym_go_expression] = STATE(1861), - [sym_spawn_expression] = STATE(1861), - [sym_parenthesized_expression] = STATE(1861), - [sym_call_expression] = STATE(1861), - [sym_type_initializer] = STATE(1860), - [sym_function_literal] = STATE(1861), - [sym_reference_expression] = STATE(1933), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1861), - [sym_receive_expression] = STATE(1861), - [sym_binary_expression] = STATE(1861), - [sym_as_type_cast_expression] = STATE(1861), - [sym__max_group] = STATE(1861), - [sym_literal] = STATE(1861), - [sym_map_init_expression] = STATE(1860), - [sym_array_creation] = STATE(1861), - [sym_fixed_array_creation] = STATE(1861), - [sym_selector_expression] = STATE(1861), - [sym_index_expression] = STATE(1861), - [sym_slice_expression] = STATE(1861), - [sym_if_expression] = STATE(1860), - [sym_compile_time_if_expression] = STATE(1860), - [sym_is_expression] = STATE(1861), - [sym_not_is_expression] = STATE(1861), - [sym_in_expression] = STATE(1861), - [sym_not_in_expression] = STATE(1861), - [sym_enum_fetch] = STATE(1861), - [sym_match_expression] = STATE(1860), - [sym_select_expression] = STATE(1860), - [sym_lock_expression] = STATE(1860), - [sym_unsafe_expression] = STATE(1860), - [sym_sql_expression] = STATE(1860), - [sym_c_string_literal] = STATE(1864), - [sym_raw_string_literal] = STATE(1864), - [sym_interpreted_string_literal] = STATE(1864), - [sym_mutability_modifiers] = STATE(475), - [sym_plain_type] = STATE(4241), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_go] = ACTIONS(2755), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2765), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2773), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2777), - [anon_sym_rlock] = ACTIONS(2777), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2781), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2783), - [sym_rune_literal] = ACTIONS(2783), - [sym_pseudo_compile_time_identifier] = ACTIONS(2785), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2787), - [sym___single_quote] = ACTIONS(2789), - [sym___c_double_quote] = ACTIONS(2791), - [sym___c_single_quote] = ACTIONS(2793), - [sym___r_double_quote] = ACTIONS(2795), - [sym___r_single_quote] = ACTIONS(2797), + [sym_line_comment] = STATE(928), + [sym_block_comment] = STATE(928), + [sym__expression] = STATE(2852), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [929] = { - [sym__expression] = STATE(2483), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(929), + [sym_block_comment] = STATE(929), + [sym__expression] = STATE(1815), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4334), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [930] = { - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2590), - [sym_inc_expression] = STATE(2590), - [sym_dec_expression] = STATE(2590), - [sym_or_block_expression] = STATE(2590), - [sym_option_propagation_expression] = STATE(2590), - [sym_result_propagation_expression] = STATE(2590), - [sym_anon_struct_value_expression] = STATE(2583), - [sym_go_expression] = STATE(2590), - [sym_spawn_expression] = STATE(2590), - [sym_parenthesized_expression] = STATE(2590), - [sym_call_expression] = STATE(2590), - [sym_type_initializer] = STATE(2583), - [sym_function_literal] = STATE(2590), - [sym_reference_expression] = STATE(2579), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2590), - [sym_receive_expression] = STATE(2590), - [sym_binary_expression] = STATE(2590), - [sym_as_type_cast_expression] = STATE(2590), - [sym__max_group] = STATE(2590), - [sym_literal] = STATE(2590), - [sym_map_init_expression] = STATE(2583), - [sym_array_creation] = STATE(2590), - [sym_fixed_array_creation] = STATE(2590), - [sym_selector_expression] = STATE(2590), - [sym_index_expression] = STATE(2590), - [sym_slice_expression] = STATE(2590), - [sym_if_expression] = STATE(2583), - [sym_compile_time_if_expression] = STATE(2583), - [sym_is_expression] = STATE(2590), - [sym_not_is_expression] = STATE(2590), - [sym_in_expression] = STATE(2590), - [sym_not_in_expression] = STATE(2590), - [sym_enum_fetch] = STATE(2590), - [sym_match_expression] = STATE(2583), - [sym_select_expression] = STATE(2583), - [sym_lock_expression] = STATE(2583), - [sym_unsafe_expression] = STATE(2583), - [sym_sql_expression] = STATE(2583), - [sym_c_string_literal] = STATE(2613), - [sym_raw_string_literal] = STATE(2613), - [sym_interpreted_string_literal] = STATE(2613), - [sym_mutability_modifiers] = STATE(482), - [sym_plain_type] = STATE(4370), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_go] = ACTIONS(1653), - [anon_sym_spawn] = ACTIONS(1655), - [anon_sym_json_DOTdecode] = ACTIONS(2079), - [anon_sym_LBRACK2] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_DASH] = ACTIONS(2085), - [sym_none] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_select] = ACTIONS(1673), - [anon_sym_lock] = ACTIONS(1675), - [anon_sym_rlock] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_sql] = ACTIONS(1679), - [sym_int_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(1681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2091), - [sym___c_double_quote] = ACTIONS(2093), - [sym___c_single_quote] = ACTIONS(2095), - [sym___r_double_quote] = ACTIONS(2097), - [sym___r_single_quote] = ACTIONS(2099), + [sym_line_comment] = STATE(930), + [sym_block_comment] = STATE(930), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4009), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, [931] = { - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3432), - [anon_sym_LF] = ACTIONS(3432), - [anon_sym_CR] = ACTIONS(3432), - [anon_sym_CR_LF] = ACTIONS(3432), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3432), - [anon_sym_as] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_COMMA] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym_EQ] = ACTIONS(3432), - [anon_sym___global] = ACTIONS(3432), - [anon_sym_type] = ACTIONS(3432), - [anon_sym_PIPE] = ACTIONS(3432), - [anon_sym_fn] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_SLASH] = ACTIONS(3432), - [anon_sym_PERCENT] = ACTIONS(3432), - [anon_sym_LT] = ACTIONS(3432), - [anon_sym_GT] = ACTIONS(3432), - [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(3430), - [anon_sym_struct] = ACTIONS(3432), - [anon_sym_union] = ACTIONS(3432), - [anon_sym_pub] = ACTIONS(3432), - [anon_sym_mut] = ACTIONS(3432), - [anon_sym_enum] = ACTIONS(3432), - [anon_sym_interface] = ACTIONS(3432), - [anon_sym_PLUS_PLUS] = ACTIONS(3432), - [anon_sym_DASH_DASH] = ACTIONS(3432), - [anon_sym_QMARK] = ACTIONS(3432), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_go] = ACTIONS(3432), - [anon_sym_spawn] = ACTIONS(3432), - [anon_sym_json_DOTdecode] = ACTIONS(3432), - [anon_sym_LBRACK2] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3432), - [anon_sym_CARET] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_LT_DASH] = ACTIONS(3432), - [anon_sym_LT_LT] = ACTIONS(3432), - [anon_sym_GT_GT] = ACTIONS(3432), - [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(3432), - [sym_none] = ACTIONS(3432), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [sym_nil] = ACTIONS(3432), - [anon_sym_QMARK_DOT] = ACTIONS(3432), - [anon_sym_POUND_LBRACK] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_DOLLARif] = ACTIONS(3432), - [anon_sym_is] = ACTIONS(3432), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_in] = ACTIONS(3432), - [anon_sym_BANGin] = ACTIONS(3432), - [anon_sym_match] = ACTIONS(3432), - [anon_sym_select] = ACTIONS(3432), - [anon_sym_STAR_EQ] = ACTIONS(3432), - [anon_sym_SLASH_EQ] = ACTIONS(3432), - [anon_sym_PERCENT_EQ] = ACTIONS(3432), - [anon_sym_LT_LT_EQ] = ACTIONS(3432), - [anon_sym_GT_GT_EQ] = ACTIONS(3432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3432), - [anon_sym_AMP_EQ] = ACTIONS(3432), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3432), - [anon_sym_PLUS_EQ] = ACTIONS(3432), - [anon_sym_DASH_EQ] = ACTIONS(3432), - [anon_sym_PIPE_EQ] = ACTIONS(3432), - [anon_sym_CARET_EQ] = ACTIONS(3432), - [anon_sym_COLON_EQ] = ACTIONS(3432), - [anon_sym_lock] = ACTIONS(3432), - [anon_sym_rlock] = ACTIONS(3432), - [anon_sym_unsafe] = ACTIONS(3432), - [anon_sym_sql] = ACTIONS(3432), - [sym_int_literal] = ACTIONS(3432), - [sym_float_literal] = ACTIONS(3432), - [sym_rune_literal] = ACTIONS(3432), - [sym_pseudo_compile_time_identifier] = ACTIONS(3432), - [anon_sym_shared] = ACTIONS(3432), - [anon_sym_map_LBRACK] = ACTIONS(3432), - [anon_sym_chan] = ACTIONS(3432), - [anon_sym_thread] = ACTIONS(3432), - [anon_sym_atomic] = ACTIONS(3432), - [anon_sym_assert] = ACTIONS(3432), - [anon_sym_defer] = ACTIONS(3432), - [anon_sym_goto] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_DOLLARfor] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_POUND] = ACTIONS(3432), - [anon_sym_asm] = ACTIONS(3432), - [anon_sym_AT_LBRACK] = ACTIONS(3432), - [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), + [sym_line_comment] = STATE(931), + [sym_block_comment] = STATE(931), + [sym__expression] = STATE(1671), + [sym__expression_without_blocks] = STATE(1841), + [sym__expression_with_blocks] = STATE(1841), + [sym_inc_expression] = STATE(1839), + [sym_dec_expression] = STATE(1839), + [sym_or_block_expression] = STATE(1839), + [sym_option_propagation_expression] = STATE(1839), + [sym_result_propagation_expression] = STATE(1839), + [sym_anon_struct_value_expression] = STATE(1834), + [sym_go_expression] = STATE(1839), + [sym_spawn_expression] = STATE(1839), + [sym_parenthesized_expression] = STATE(1839), + [sym_call_expression] = STATE(1839), + [sym_type_initializer] = STATE(1834), + [sym_function_literal] = STATE(1839), + [sym_reference_expression] = STATE(1829), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1839), + [sym_receive_expression] = STATE(1839), + [sym_binary_expression] = STATE(1839), + [sym_as_type_cast_expression] = STATE(1839), + [sym__max_group] = STATE(1839), + [sym_literal] = STATE(1844), + [sym_map_init_expression] = STATE(1834), + [sym_array_creation] = STATE(1839), + [sym_fixed_array_creation] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym_index_expression] = STATE(1839), + [sym_slice_expression] = STATE(1839), + [sym_if_expression] = STATE(1834), + [sym_compile_time_if_expression] = STATE(1834), + [sym_is_expression] = STATE(1839), + [sym_not_is_expression] = STATE(1839), + [sym_in_expression] = STATE(1839), + [sym_not_in_expression] = STATE(1839), + [sym_enum_fetch] = STATE(1839), + [sym_match_expression] = STATE(1834), + [sym_select_expression] = STATE(1834), + [sym_lock_expression] = STATE(1834), + [sym_unsafe_expression] = STATE(1834), + [sym_sql_expression] = STATE(1834), + [sym_c_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_interpreted_string_literal] = STATE(1869), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4417), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2659), + [anon_sym_json_DOTdecode] = ACTIONS(2661), + [anon_sym_LBRACK2] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2667), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_DOLLARif] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2689), + [sym___single_quote] = ACTIONS(2691), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2697), + [sym___r_single_quote] = ACTIONS(2699), }, [932] = { - [sym__expression] = STATE(289), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_line_comment] = STATE(932), + [sym_block_comment] = STATE(932), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3685), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [933] = { - [ts_builtin_sym_end] = ACTIONS(3434), - [sym_identifier] = ACTIONS(3436), - [anon_sym_LF] = ACTIONS(3436), - [anon_sym_CR] = ACTIONS(3436), - [anon_sym_CR_LF] = ACTIONS(3436), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3436), - [anon_sym_COMMA] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_LPAREN] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym___global] = ACTIONS(3436), - [anon_sym_type] = ACTIONS(3436), - [anon_sym_PIPE] = ACTIONS(3436), - [anon_sym_fn] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [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(3434), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_union] = ACTIONS(3436), - [anon_sym_pub] = ACTIONS(3436), - [anon_sym_mut] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_interface] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3436), - [anon_sym_DASH_DASH] = ACTIONS(3436), - [anon_sym_QMARK] = ACTIONS(3436), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_go] = ACTIONS(3436), - [anon_sym_spawn] = ACTIONS(3436), - [anon_sym_json_DOTdecode] = ACTIONS(3436), - [anon_sym_LBRACK2] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3436), - [anon_sym_CARET] = ACTIONS(3436), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_LT_DASH] = ACTIONS(3436), - [anon_sym_LT_LT] = ACTIONS(3436), - [anon_sym_GT_GT] = ACTIONS(3436), - [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(3436), - [sym_none] = ACTIONS(3436), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [sym_nil] = ACTIONS(3436), - [anon_sym_QMARK_DOT] = ACTIONS(3436), - [anon_sym_POUND_LBRACK] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_DOLLARif] = ACTIONS(3436), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_BANGin] = ACTIONS(3436), - [anon_sym_match] = ACTIONS(3436), - [anon_sym_select] = ACTIONS(3436), - [anon_sym_STAR_EQ] = ACTIONS(3436), - [anon_sym_SLASH_EQ] = ACTIONS(3436), - [anon_sym_PERCENT_EQ] = ACTIONS(3436), - [anon_sym_LT_LT_EQ] = ACTIONS(3436), - [anon_sym_GT_GT_EQ] = ACTIONS(3436), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3436), - [anon_sym_AMP_EQ] = ACTIONS(3436), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3436), - [anon_sym_PLUS_EQ] = ACTIONS(3436), - [anon_sym_DASH_EQ] = ACTIONS(3436), - [anon_sym_PIPE_EQ] = ACTIONS(3436), - [anon_sym_CARET_EQ] = ACTIONS(3436), - [anon_sym_COLON_EQ] = ACTIONS(3436), - [anon_sym_lock] = ACTIONS(3436), - [anon_sym_rlock] = ACTIONS(3436), - [anon_sym_unsafe] = ACTIONS(3436), - [anon_sym_sql] = ACTIONS(3436), - [sym_int_literal] = ACTIONS(3436), - [sym_float_literal] = ACTIONS(3436), - [sym_rune_literal] = ACTIONS(3436), - [sym_pseudo_compile_time_identifier] = ACTIONS(3436), - [anon_sym_shared] = ACTIONS(3436), - [anon_sym_map_LBRACK] = ACTIONS(3436), - [anon_sym_chan] = ACTIONS(3436), - [anon_sym_thread] = ACTIONS(3436), - [anon_sym_atomic] = ACTIONS(3436), - [anon_sym_assert] = ACTIONS(3436), - [anon_sym_defer] = ACTIONS(3436), - [anon_sym_goto] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_DOLLARfor] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_POUND] = ACTIONS(3436), - [anon_sym_asm] = ACTIONS(3436), - [anon_sym_AT_LBRACK] = ACTIONS(3436), - [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), + [sym_line_comment] = STATE(933), + [sym_block_comment] = STATE(933), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3672), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [934] = { - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3440), - [anon_sym_LF] = ACTIONS(3440), - [anon_sym_CR] = ACTIONS(3440), - [anon_sym_CR_LF] = ACTIONS(3440), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3440), - [anon_sym_as] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3440), - [anon_sym_COMMA] = ACTIONS(3440), - [anon_sym_const] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_EQ] = ACTIONS(3440), - [anon_sym___global] = ACTIONS(3440), - [anon_sym_type] = ACTIONS(3440), - [anon_sym_PIPE] = ACTIONS(3440), - [anon_sym_fn] = ACTIONS(3440), - [anon_sym_PLUS] = ACTIONS(3440), - [anon_sym_DASH] = ACTIONS(3440), - [anon_sym_STAR] = ACTIONS(3440), - [anon_sym_SLASH] = ACTIONS(3440), - [anon_sym_PERCENT] = ACTIONS(3440), - [anon_sym_LT] = ACTIONS(3440), - [anon_sym_GT] = ACTIONS(3440), - [anon_sym_EQ_EQ] = ACTIONS(3440), - [anon_sym_BANG_EQ] = ACTIONS(3440), - [anon_sym_LT_EQ] = ACTIONS(3440), - [anon_sym_GT_EQ] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_struct] = ACTIONS(3440), - [anon_sym_union] = ACTIONS(3440), - [anon_sym_pub] = ACTIONS(3440), - [anon_sym_mut] = ACTIONS(3440), - [anon_sym_enum] = ACTIONS(3440), - [anon_sym_interface] = ACTIONS(3440), - [anon_sym_PLUS_PLUS] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3440), - [anon_sym_QMARK] = ACTIONS(3440), - [anon_sym_BANG] = ACTIONS(3440), - [anon_sym_go] = ACTIONS(3440), - [anon_sym_spawn] = ACTIONS(3440), - [anon_sym_json_DOTdecode] = ACTIONS(3440), - [anon_sym_LBRACK2] = ACTIONS(3440), - [anon_sym_TILDE] = ACTIONS(3440), - [anon_sym_CARET] = ACTIONS(3440), - [anon_sym_AMP] = ACTIONS(3440), - [anon_sym_LT_DASH] = ACTIONS(3440), - [anon_sym_LT_LT] = ACTIONS(3440), - [anon_sym_GT_GT] = ACTIONS(3440), - [anon_sym_GT_GT_GT] = ACTIONS(3440), - [anon_sym_AMP_CARET] = ACTIONS(3440), - [anon_sym_AMP_AMP] = ACTIONS(3440), - [anon_sym_PIPE_PIPE] = ACTIONS(3440), - [anon_sym_or] = ACTIONS(3440), - [sym_none] = ACTIONS(3440), - [sym_true] = ACTIONS(3440), - [sym_false] = ACTIONS(3440), - [sym_nil] = ACTIONS(3440), - [anon_sym_QMARK_DOT] = ACTIONS(3440), - [anon_sym_POUND_LBRACK] = ACTIONS(3440), - [anon_sym_if] = ACTIONS(3440), - [anon_sym_DOLLARif] = ACTIONS(3440), - [anon_sym_is] = ACTIONS(3440), - [anon_sym_BANGis] = ACTIONS(3440), - [anon_sym_in] = ACTIONS(3440), - [anon_sym_BANGin] = ACTIONS(3440), - [anon_sym_match] = ACTIONS(3440), - [anon_sym_select] = ACTIONS(3440), - [anon_sym_STAR_EQ] = ACTIONS(3440), - [anon_sym_SLASH_EQ] = ACTIONS(3440), - [anon_sym_PERCENT_EQ] = ACTIONS(3440), - [anon_sym_LT_LT_EQ] = ACTIONS(3440), - [anon_sym_GT_GT_EQ] = ACTIONS(3440), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3440), - [anon_sym_AMP_EQ] = ACTIONS(3440), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3440), - [anon_sym_PLUS_EQ] = ACTIONS(3440), - [anon_sym_DASH_EQ] = ACTIONS(3440), - [anon_sym_PIPE_EQ] = ACTIONS(3440), - [anon_sym_CARET_EQ] = ACTIONS(3440), - [anon_sym_COLON_EQ] = ACTIONS(3440), - [anon_sym_lock] = ACTIONS(3440), - [anon_sym_rlock] = ACTIONS(3440), - [anon_sym_unsafe] = ACTIONS(3440), - [anon_sym_sql] = ACTIONS(3440), - [sym_int_literal] = ACTIONS(3440), - [sym_float_literal] = ACTIONS(3440), - [sym_rune_literal] = ACTIONS(3440), - [sym_pseudo_compile_time_identifier] = ACTIONS(3440), - [anon_sym_shared] = ACTIONS(3440), - [anon_sym_map_LBRACK] = ACTIONS(3440), - [anon_sym_chan] = ACTIONS(3440), - [anon_sym_thread] = ACTIONS(3440), - [anon_sym_atomic] = ACTIONS(3440), - [anon_sym_assert] = ACTIONS(3440), - [anon_sym_defer] = ACTIONS(3440), - [anon_sym_goto] = ACTIONS(3440), - [anon_sym_break] = ACTIONS(3440), - [anon_sym_continue] = ACTIONS(3440), - [anon_sym_return] = ACTIONS(3440), - [anon_sym_DOLLARfor] = ACTIONS(3440), - [anon_sym_for] = ACTIONS(3440), - [anon_sym_POUND] = ACTIONS(3440), - [anon_sym_asm] = ACTIONS(3440), - [anon_sym_AT_LBRACK] = ACTIONS(3440), - [sym___double_quote] = ACTIONS(3440), - [sym___single_quote] = ACTIONS(3440), - [sym___c_double_quote] = ACTIONS(3440), - [sym___c_single_quote] = ACTIONS(3440), - [sym___r_double_quote] = ACTIONS(3440), - [sym___r_single_quote] = ACTIONS(3440), + [sym_line_comment] = STATE(934), + [sym_block_comment] = STATE(934), + [sym__expression] = STATE(2885), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [935] = { - [sym__expression] = STATE(2566), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(935), + [sym_block_comment] = STATE(935), + [sym__expression] = STATE(1815), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4325), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [936] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(936), + [sym_block_comment] = STATE(936), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3427), + [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_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), }, [937] = { - [sym__expression] = STATE(2670), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2483), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2487), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(937), + [sym_block_comment] = STATE(937), + [sym__expression] = STATE(1321), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [938] = { - [sym__expression] = STATE(981), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(938), + [sym_block_comment] = STATE(938), + [sym__expression] = STATE(1317), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [939] = { - [sym__expression] = STATE(282), - [sym__expression_without_blocks] = STATE(750), - [sym__expression_with_blocks] = STATE(750), - [sym_inc_expression] = STATE(750), - [sym_dec_expression] = STATE(750), - [sym_or_block_expression] = STATE(750), - [sym_option_propagation_expression] = STATE(750), - [sym_result_propagation_expression] = STATE(750), - [sym_anon_struct_value_expression] = STATE(754), - [sym_go_expression] = STATE(750), - [sym_spawn_expression] = STATE(750), - [sym_parenthesized_expression] = STATE(750), - [sym_call_expression] = STATE(750), - [sym_type_initializer] = STATE(754), - [sym_function_literal] = STATE(750), - [sym_reference_expression] = STATE(769), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(750), - [sym_receive_expression] = STATE(750), - [sym_binary_expression] = STATE(750), - [sym_as_type_cast_expression] = STATE(750), - [sym__max_group] = STATE(750), - [sym_literal] = STATE(750), - [sym_map_init_expression] = STATE(754), - [sym_array_creation] = STATE(750), - [sym_fixed_array_creation] = STATE(750), - [sym_selector_expression] = STATE(750), - [sym_index_expression] = STATE(750), - [sym_slice_expression] = STATE(750), - [sym_if_expression] = STATE(754), - [sym_compile_time_if_expression] = STATE(754), - [sym_is_expression] = STATE(750), - [sym_not_is_expression] = STATE(750), - [sym_in_expression] = STATE(750), - [sym_not_in_expression] = STATE(750), - [sym_enum_fetch] = STATE(750), - [sym_match_expression] = STATE(754), - [sym_select_expression] = STATE(754), - [sym_lock_expression] = STATE(754), - [sym_unsafe_expression] = STATE(754), - [sym_sql_expression] = STATE(754), - [sym_c_string_literal] = STATE(696), - [sym_raw_string_literal] = STATE(696), - [sym_interpreted_string_literal] = STATE(696), - [sym_mutability_modifiers] = STATE(682), - [sym_plain_type] = STATE(4388), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym_line_comment] = STATE(939), + [sym_block_comment] = STATE(939), + [sym__expression] = STATE(1149), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), }, [940] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2951), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2932), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(908), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(1205), - [anon_sym_spawn] = ACTIONS(1207), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_LT_DASH] = ACTIONS(1215), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(1225), - [anon_sym_lock] = ACTIONS(1227), - [anon_sym_rlock] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(940), + [sym_block_comment] = STATE(940), + [sym__expression] = STATE(1302), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [941] = { - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_CR] = ACTIONS(3412), - [anon_sym_CR_LF] = ACTIONS(3412), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_as] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_COMMA] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3412), - [anon_sym_EQ] = ACTIONS(3412), - [anon_sym___global] = ACTIONS(3412), - [anon_sym_type] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_fn] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_SLASH] = ACTIONS(3412), - [anon_sym_PERCENT] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [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(3410), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_union] = ACTIONS(3412), - [anon_sym_pub] = ACTIONS(3412), - [anon_sym_mut] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_interface] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_QMARK] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_go] = ACTIONS(3412), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3412), - [anon_sym_LBRACK2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_CARET] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [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(3412), - [sym_none] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_nil] = ACTIONS(3412), - [anon_sym_QMARK_DOT] = ACTIONS(3412), - [anon_sym_POUND_LBRACK] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOLLARif] = ACTIONS(3412), - [anon_sym_is] = ACTIONS(3412), - [anon_sym_BANGis] = ACTIONS(3412), - [anon_sym_in] = ACTIONS(3412), - [anon_sym_BANGin] = ACTIONS(3412), - [anon_sym_match] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_STAR_EQ] = ACTIONS(3412), - [anon_sym_SLASH_EQ] = ACTIONS(3412), - [anon_sym_PERCENT_EQ] = ACTIONS(3412), - [anon_sym_LT_LT_EQ] = ACTIONS(3412), - [anon_sym_GT_GT_EQ] = ACTIONS(3412), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3412), - [anon_sym_AMP_EQ] = ACTIONS(3412), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3412), - [anon_sym_PLUS_EQ] = ACTIONS(3412), - [anon_sym_DASH_EQ] = ACTIONS(3412), - [anon_sym_PIPE_EQ] = ACTIONS(3412), - [anon_sym_CARET_EQ] = ACTIONS(3412), - [anon_sym_COLON_EQ] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_rlock] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_sql] = ACTIONS(3412), - [sym_int_literal] = ACTIONS(3412), - [sym_float_literal] = ACTIONS(3412), - [sym_rune_literal] = ACTIONS(3412), - [sym_pseudo_compile_time_identifier] = ACTIONS(3412), - [anon_sym_shared] = ACTIONS(3412), - [anon_sym_map_LBRACK] = ACTIONS(3412), - [anon_sym_chan] = ACTIONS(3412), - [anon_sym_thread] = ACTIONS(3412), - [anon_sym_atomic] = ACTIONS(3412), - [anon_sym_assert] = ACTIONS(3412), - [anon_sym_defer] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_DOLLARfor] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_POUND] = ACTIONS(3412), - [anon_sym_asm] = ACTIONS(3412), - [anon_sym_AT_LBRACK] = ACTIONS(3412), - [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), + [sym_line_comment] = STATE(941), + [sym_block_comment] = STATE(941), + [sym__expression] = STATE(2673), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [942] = { - [sym__expression] = STATE(2573), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(942), + [sym_block_comment] = STATE(942), + [sym__expression] = STATE(2883), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [943] = { - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3444), - [anon_sym_LF] = ACTIONS(3444), - [anon_sym_CR] = ACTIONS(3444), - [anon_sym_CR_LF] = ACTIONS(3444), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3444), - [anon_sym_as] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_EQ] = ACTIONS(3444), - [anon_sym___global] = ACTIONS(3444), - [anon_sym_type] = ACTIONS(3444), - [anon_sym_PIPE] = ACTIONS(3444), - [anon_sym_fn] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3444), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_PERCENT] = ACTIONS(3444), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_GT] = ACTIONS(3444), - [anon_sym_EQ_EQ] = ACTIONS(3444), - [anon_sym_BANG_EQ] = ACTIONS(3444), - [anon_sym_LT_EQ] = ACTIONS(3444), - [anon_sym_GT_EQ] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_union] = ACTIONS(3444), - [anon_sym_pub] = ACTIONS(3444), - [anon_sym_mut] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_QMARK] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_go] = ACTIONS(3444), - [anon_sym_spawn] = ACTIONS(3444), - [anon_sym_json_DOTdecode] = ACTIONS(3444), - [anon_sym_LBRACK2] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_LT_DASH] = ACTIONS(3444), - [anon_sym_LT_LT] = ACTIONS(3444), - [anon_sym_GT_GT] = ACTIONS(3444), - [anon_sym_GT_GT_GT] = ACTIONS(3444), - [anon_sym_AMP_CARET] = ACTIONS(3444), - [anon_sym_AMP_AMP] = ACTIONS(3444), - [anon_sym_PIPE_PIPE] = ACTIONS(3444), - [anon_sym_or] = ACTIONS(3444), - [sym_none] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_nil] = ACTIONS(3444), - [anon_sym_QMARK_DOT] = ACTIONS(3444), - [anon_sym_POUND_LBRACK] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_DOLLARif] = ACTIONS(3444), - [anon_sym_is] = ACTIONS(3444), - [anon_sym_BANGis] = ACTIONS(3444), - [anon_sym_in] = ACTIONS(3444), - [anon_sym_BANGin] = ACTIONS(3444), - [anon_sym_match] = ACTIONS(3444), - [anon_sym_select] = ACTIONS(3444), - [anon_sym_STAR_EQ] = ACTIONS(3444), - [anon_sym_SLASH_EQ] = ACTIONS(3444), - [anon_sym_PERCENT_EQ] = ACTIONS(3444), - [anon_sym_LT_LT_EQ] = ACTIONS(3444), - [anon_sym_GT_GT_EQ] = ACTIONS(3444), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3444), - [anon_sym_AMP_EQ] = ACTIONS(3444), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3444), - [anon_sym_PLUS_EQ] = ACTIONS(3444), - [anon_sym_DASH_EQ] = ACTIONS(3444), - [anon_sym_PIPE_EQ] = ACTIONS(3444), - [anon_sym_CARET_EQ] = ACTIONS(3444), - [anon_sym_COLON_EQ] = ACTIONS(3444), - [anon_sym_lock] = ACTIONS(3444), - [anon_sym_rlock] = ACTIONS(3444), - [anon_sym_unsafe] = ACTIONS(3444), - [anon_sym_sql] = ACTIONS(3444), - [sym_int_literal] = ACTIONS(3444), - [sym_float_literal] = ACTIONS(3444), - [sym_rune_literal] = ACTIONS(3444), - [sym_pseudo_compile_time_identifier] = ACTIONS(3444), - [anon_sym_shared] = ACTIONS(3444), - [anon_sym_map_LBRACK] = ACTIONS(3444), - [anon_sym_chan] = ACTIONS(3444), - [anon_sym_thread] = ACTIONS(3444), - [anon_sym_atomic] = ACTIONS(3444), - [anon_sym_assert] = ACTIONS(3444), - [anon_sym_defer] = ACTIONS(3444), - [anon_sym_goto] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_DOLLARfor] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_POUND] = ACTIONS(3444), - [anon_sym_asm] = ACTIONS(3444), - [anon_sym_AT_LBRACK] = ACTIONS(3444), - [sym___double_quote] = ACTIONS(3444), - [sym___single_quote] = ACTIONS(3444), - [sym___c_double_quote] = ACTIONS(3444), - [sym___c_single_quote] = ACTIONS(3444), - [sym___r_double_quote] = ACTIONS(3444), - [sym___r_single_quote] = ACTIONS(3444), + [sym_line_comment] = STATE(943), + [sym_block_comment] = STATE(943), + [sym__expression] = STATE(1303), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [944] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3975), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(944), + [sym_block_comment] = STATE(944), + [sym__expression] = STATE(1304), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [945] = { - [ts_builtin_sym_end] = ACTIONS(3446), - [sym_identifier] = ACTIONS(3448), - [anon_sym_LF] = ACTIONS(3448), - [anon_sym_CR] = ACTIONS(3448), - [anon_sym_CR_LF] = ACTIONS(3448), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3448), - [anon_sym_as] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(3448), - [anon_sym_COMMA] = ACTIONS(3448), - [anon_sym_const] = ACTIONS(3448), - [anon_sym_LPAREN] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(3448), - [anon_sym___global] = ACTIONS(3448), - [anon_sym_type] = ACTIONS(3448), - [anon_sym_PIPE] = ACTIONS(3448), - [anon_sym_fn] = ACTIONS(3448), - [anon_sym_PLUS] = ACTIONS(3448), - [anon_sym_DASH] = ACTIONS(3448), - [anon_sym_STAR] = ACTIONS(3448), - [anon_sym_SLASH] = ACTIONS(3448), - [anon_sym_PERCENT] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(3448), - [anon_sym_GT] = ACTIONS(3448), - [anon_sym_EQ_EQ] = ACTIONS(3448), - [anon_sym_BANG_EQ] = ACTIONS(3448), - [anon_sym_LT_EQ] = ACTIONS(3448), - [anon_sym_GT_EQ] = ACTIONS(3448), - [anon_sym_LBRACK] = ACTIONS(3446), - [anon_sym_struct] = ACTIONS(3448), - [anon_sym_union] = ACTIONS(3448), - [anon_sym_pub] = ACTIONS(3448), - [anon_sym_mut] = ACTIONS(3448), - [anon_sym_enum] = ACTIONS(3448), - [anon_sym_interface] = ACTIONS(3448), - [anon_sym_PLUS_PLUS] = ACTIONS(3448), - [anon_sym_DASH_DASH] = ACTIONS(3448), - [anon_sym_QMARK] = ACTIONS(3448), - [anon_sym_BANG] = ACTIONS(3448), - [anon_sym_go] = ACTIONS(3448), - [anon_sym_spawn] = ACTIONS(3448), - [anon_sym_json_DOTdecode] = ACTIONS(3448), - [anon_sym_LBRACK2] = ACTIONS(3448), - [anon_sym_TILDE] = ACTIONS(3448), - [anon_sym_CARET] = ACTIONS(3448), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_LT_DASH] = ACTIONS(3448), - [anon_sym_LT_LT] = ACTIONS(3448), - [anon_sym_GT_GT] = ACTIONS(3448), - [anon_sym_GT_GT_GT] = ACTIONS(3448), - [anon_sym_AMP_CARET] = ACTIONS(3448), - [anon_sym_AMP_AMP] = ACTIONS(3448), - [anon_sym_PIPE_PIPE] = ACTIONS(3448), - [anon_sym_or] = ACTIONS(3448), - [sym_none] = ACTIONS(3448), - [sym_true] = ACTIONS(3448), - [sym_false] = ACTIONS(3448), - [sym_nil] = ACTIONS(3448), - [anon_sym_QMARK_DOT] = ACTIONS(3448), - [anon_sym_POUND_LBRACK] = ACTIONS(3448), - [anon_sym_if] = ACTIONS(3448), - [anon_sym_DOLLARif] = ACTIONS(3448), - [anon_sym_is] = ACTIONS(3448), - [anon_sym_BANGis] = ACTIONS(3448), - [anon_sym_in] = ACTIONS(3448), - [anon_sym_BANGin] = ACTIONS(3448), - [anon_sym_match] = ACTIONS(3448), - [anon_sym_select] = ACTIONS(3448), - [anon_sym_STAR_EQ] = ACTIONS(3448), - [anon_sym_SLASH_EQ] = ACTIONS(3448), - [anon_sym_PERCENT_EQ] = ACTIONS(3448), - [anon_sym_LT_LT_EQ] = ACTIONS(3448), - [anon_sym_GT_GT_EQ] = ACTIONS(3448), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3448), - [anon_sym_AMP_EQ] = ACTIONS(3448), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3448), - [anon_sym_PLUS_EQ] = ACTIONS(3448), - [anon_sym_DASH_EQ] = ACTIONS(3448), - [anon_sym_PIPE_EQ] = ACTIONS(3448), - [anon_sym_CARET_EQ] = ACTIONS(3448), - [anon_sym_COLON_EQ] = ACTIONS(3448), - [anon_sym_lock] = ACTIONS(3448), - [anon_sym_rlock] = ACTIONS(3448), - [anon_sym_unsafe] = ACTIONS(3448), - [anon_sym_sql] = ACTIONS(3448), - [sym_int_literal] = ACTIONS(3448), - [sym_float_literal] = ACTIONS(3448), - [sym_rune_literal] = ACTIONS(3448), - [sym_pseudo_compile_time_identifier] = ACTIONS(3448), - [anon_sym_shared] = ACTIONS(3448), - [anon_sym_map_LBRACK] = ACTIONS(3448), - [anon_sym_chan] = ACTIONS(3448), - [anon_sym_thread] = ACTIONS(3448), - [anon_sym_atomic] = ACTIONS(3448), - [anon_sym_assert] = ACTIONS(3448), - [anon_sym_defer] = ACTIONS(3448), - [anon_sym_goto] = ACTIONS(3448), - [anon_sym_break] = ACTIONS(3448), - [anon_sym_continue] = ACTIONS(3448), - [anon_sym_return] = ACTIONS(3448), - [anon_sym_DOLLARfor] = ACTIONS(3448), - [anon_sym_for] = ACTIONS(3448), - [anon_sym_POUND] = ACTIONS(3448), - [anon_sym_asm] = ACTIONS(3448), - [anon_sym_AT_LBRACK] = ACTIONS(3448), - [sym___double_quote] = ACTIONS(3448), - [sym___single_quote] = ACTIONS(3448), - [sym___c_double_quote] = ACTIONS(3448), - [sym___c_single_quote] = ACTIONS(3448), - [sym___r_double_quote] = ACTIONS(3448), - [sym___r_single_quote] = ACTIONS(3448), + [sym_line_comment] = STATE(945), + [sym_block_comment] = STATE(945), + [sym__expression] = STATE(1305), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [946] = { - [ts_builtin_sym_end] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3452), - [anon_sym_LF] = ACTIONS(3452), - [anon_sym_CR] = ACTIONS(3452), - [anon_sym_CR_LF] = ACTIONS(3452), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3452), - [anon_sym_as] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3452), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3452), - [anon_sym___global] = ACTIONS(3452), - [anon_sym_type] = ACTIONS(3452), - [anon_sym_PIPE] = ACTIONS(3452), - [anon_sym_fn] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_SLASH] = ACTIONS(3452), - [anon_sym_PERCENT] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_GT] = ACTIONS(3452), - [anon_sym_EQ_EQ] = ACTIONS(3452), - [anon_sym_BANG_EQ] = ACTIONS(3452), - [anon_sym_LT_EQ] = ACTIONS(3452), - [anon_sym_GT_EQ] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3452), - [anon_sym_union] = ACTIONS(3452), - [anon_sym_pub] = ACTIONS(3452), - [anon_sym_mut] = ACTIONS(3452), - [anon_sym_enum] = ACTIONS(3452), - [anon_sym_interface] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3452), - [anon_sym_DASH_DASH] = ACTIONS(3452), - [anon_sym_QMARK] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_go] = ACTIONS(3452), - [anon_sym_spawn] = ACTIONS(3452), - [anon_sym_json_DOTdecode] = ACTIONS(3452), - [anon_sym_LBRACK2] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_CARET] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_LT_DASH] = ACTIONS(3452), - [anon_sym_LT_LT] = ACTIONS(3452), - [anon_sym_GT_GT] = ACTIONS(3452), - [anon_sym_GT_GT_GT] = ACTIONS(3452), - [anon_sym_AMP_CARET] = ACTIONS(3452), - [anon_sym_AMP_AMP] = ACTIONS(3452), - [anon_sym_PIPE_PIPE] = ACTIONS(3452), - [anon_sym_or] = ACTIONS(3452), - [sym_none] = ACTIONS(3452), - [sym_true] = ACTIONS(3452), - [sym_false] = ACTIONS(3452), - [sym_nil] = ACTIONS(3452), - [anon_sym_QMARK_DOT] = ACTIONS(3452), - [anon_sym_POUND_LBRACK] = ACTIONS(3452), - [anon_sym_if] = ACTIONS(3452), - [anon_sym_DOLLARif] = ACTIONS(3452), - [anon_sym_is] = ACTIONS(3452), - [anon_sym_BANGis] = ACTIONS(3452), - [anon_sym_in] = ACTIONS(3452), - [anon_sym_BANGin] = ACTIONS(3452), - [anon_sym_match] = ACTIONS(3452), - [anon_sym_select] = ACTIONS(3452), - [anon_sym_STAR_EQ] = ACTIONS(3452), - [anon_sym_SLASH_EQ] = ACTIONS(3452), - [anon_sym_PERCENT_EQ] = ACTIONS(3452), - [anon_sym_LT_LT_EQ] = ACTIONS(3452), - [anon_sym_GT_GT_EQ] = ACTIONS(3452), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3452), - [anon_sym_AMP_EQ] = ACTIONS(3452), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3452), - [anon_sym_PLUS_EQ] = ACTIONS(3452), - [anon_sym_DASH_EQ] = ACTIONS(3452), - [anon_sym_PIPE_EQ] = ACTIONS(3452), - [anon_sym_CARET_EQ] = ACTIONS(3452), - [anon_sym_COLON_EQ] = ACTIONS(3452), - [anon_sym_lock] = ACTIONS(3452), - [anon_sym_rlock] = ACTIONS(3452), - [anon_sym_unsafe] = ACTIONS(3452), - [anon_sym_sql] = ACTIONS(3452), - [sym_int_literal] = ACTIONS(3452), - [sym_float_literal] = ACTIONS(3452), - [sym_rune_literal] = ACTIONS(3452), - [sym_pseudo_compile_time_identifier] = ACTIONS(3452), - [anon_sym_shared] = ACTIONS(3452), - [anon_sym_map_LBRACK] = ACTIONS(3452), - [anon_sym_chan] = ACTIONS(3452), - [anon_sym_thread] = ACTIONS(3452), - [anon_sym_atomic] = ACTIONS(3452), - [anon_sym_assert] = ACTIONS(3452), - [anon_sym_defer] = ACTIONS(3452), - [anon_sym_goto] = ACTIONS(3452), - [anon_sym_break] = ACTIONS(3452), - [anon_sym_continue] = ACTIONS(3452), - [anon_sym_return] = ACTIONS(3452), - [anon_sym_DOLLARfor] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3452), - [anon_sym_asm] = ACTIONS(3452), - [anon_sym_AT_LBRACK] = ACTIONS(3452), - [sym___double_quote] = ACTIONS(3452), - [sym___single_quote] = ACTIONS(3452), - [sym___c_double_quote] = ACTIONS(3452), - [sym___c_single_quote] = ACTIONS(3452), - [sym___r_double_quote] = ACTIONS(3452), - [sym___r_single_quote] = ACTIONS(3452), + [sym_line_comment] = STATE(946), + [sym_block_comment] = STATE(946), + [sym__expression] = STATE(1293), + [sym__expression_without_blocks] = STATE(1353), + [sym__expression_with_blocks] = STATE(1353), + [sym_inc_expression] = STATE(1356), + [sym_dec_expression] = STATE(1356), + [sym_or_block_expression] = STATE(1356), + [sym_option_propagation_expression] = STATE(1356), + [sym_result_propagation_expression] = STATE(1356), + [sym_anon_struct_value_expression] = STATE(1357), + [sym_go_expression] = STATE(1356), + [sym_spawn_expression] = STATE(1356), + [sym_parenthesized_expression] = STATE(1356), + [sym_call_expression] = STATE(1356), + [sym_type_initializer] = STATE(1357), + [sym_function_literal] = STATE(1356), + [sym_reference_expression] = STATE(1385), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1356), + [sym_receive_expression] = STATE(1356), + [sym_binary_expression] = STATE(1356), + [sym_as_type_cast_expression] = STATE(1356), + [sym__max_group] = STATE(1356), + [sym_literal] = STATE(1335), + [sym_map_init_expression] = STATE(1357), + [sym_array_creation] = STATE(1356), + [sym_fixed_array_creation] = STATE(1356), + [sym_selector_expression] = STATE(1356), + [sym_index_expression] = STATE(1356), + [sym_slice_expression] = STATE(1356), + [sym_if_expression] = STATE(1357), + [sym_compile_time_if_expression] = STATE(1357), + [sym_is_expression] = STATE(1356), + [sym_not_is_expression] = STATE(1356), + [sym_in_expression] = STATE(1356), + [sym_not_in_expression] = STATE(1356), + [sym_enum_fetch] = STATE(1356), + [sym_match_expression] = STATE(1357), + [sym_select_expression] = STATE(1357), + [sym_lock_expression] = STATE(1357), + [sym_unsafe_expression] = STATE(1357), + [sym_sql_expression] = STATE(1357), + [sym_c_string_literal] = STATE(1312), + [sym_raw_string_literal] = STATE(1312), + [sym_interpreted_string_literal] = STATE(1312), + [sym_mutability_modifiers] = STATE(970), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [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(1201), + [anon_sym_CARET] = ACTIONS(1201), + [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(1783), + [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(1789), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1241), + [sym_rune_literal] = ACTIONS(1241), + [sym_pseudo_compile_time_identifier] = ACTIONS(1243), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [947] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2727), - [anon_sym_as] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [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(2732), - [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_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), + [sym_line_comment] = STATE(947), + [sym_block_comment] = STATE(947), + [sym__expression] = STATE(1823), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), }, [948] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3973), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(948), + [sym_block_comment] = STATE(948), + [sym__expression] = STATE(2485), + [sym__expression_without_blocks] = STATE(2616), + [sym__expression_with_blocks] = STATE(2616), + [sym_inc_expression] = STATE(2623), + [sym_dec_expression] = STATE(2623), + [sym_or_block_expression] = STATE(2623), + [sym_option_propagation_expression] = STATE(2623), + [sym_result_propagation_expression] = STATE(2623), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2623), + [sym_spawn_expression] = STATE(2623), + [sym_parenthesized_expression] = STATE(2623), + [sym_call_expression] = STATE(2623), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2623), + [sym_reference_expression] = STATE(2632), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2623), + [sym_receive_expression] = STATE(2623), + [sym_binary_expression] = STATE(2623), + [sym_as_type_cast_expression] = STATE(2623), + [sym__max_group] = STATE(2623), + [sym_literal] = STATE(2542), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2623), + [sym_fixed_array_creation] = STATE(2623), + [sym_selector_expression] = STATE(2623), + [sym_index_expression] = STATE(2623), + [sym_slice_expression] = STATE(2623), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2623), + [sym_not_is_expression] = STATE(2623), + [sym_in_expression] = STATE(2623), + [sym_not_in_expression] = STATE(2623), + [sym_enum_fetch] = STATE(2623), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_c_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_interpreted_string_literal] = STATE(2565), + [sym_mutability_modifiers] = STATE(842), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1615), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2963), + [anon_sym_json_DOTdecode] = ACTIONS(2591), + [anon_sym_LBRACK2] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2967), + [sym_none] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1659), + [sym_int_literal] = ACTIONS(1645), + [sym_float_literal] = ACTIONS(2599), + [sym_rune_literal] = ACTIONS(2599), + [sym_pseudo_compile_time_identifier] = ACTIONS(1661), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(2601), + [sym___single_quote] = ACTIONS(2603), + [sym___c_double_quote] = ACTIONS(2605), + [sym___c_single_quote] = ACTIONS(2607), + [sym___r_double_quote] = ACTIONS(2609), + [sym___r_single_quote] = ACTIONS(2611), }, [949] = { - [sym__expression] = STATE(2161), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4193), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(949), + [sym_block_comment] = STATE(949), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, [950] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3968), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2819), - [anon_sym_spawn] = ACTIONS(2821), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_LT_DASH] = ACTIONS(2825), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2827), - [anon_sym_lock] = ACTIONS(2829), - [anon_sym_rlock] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(950), + [sym_block_comment] = STATE(950), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2724), + [sym__expression_with_blocks] = STATE(2724), + [sym_inc_expression] = STATE(2834), + [sym_dec_expression] = STATE(2834), + [sym_or_block_expression] = STATE(2834), + [sym_option_propagation_expression] = STATE(2834), + [sym_result_propagation_expression] = STATE(2834), + [sym_anon_struct_value_expression] = STATE(2723), + [sym_go_expression] = STATE(2834), + [sym_spawn_expression] = STATE(2834), + [sym_parenthesized_expression] = STATE(2834), + [sym_call_expression] = STATE(2834), + [sym_type_initializer] = STATE(2723), + [sym_function_literal] = STATE(2834), + [sym_reference_expression] = STATE(2778), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2834), + [sym_receive_expression] = STATE(2834), + [sym_binary_expression] = STATE(2834), + [sym_as_type_cast_expression] = STATE(2834), + [sym__max_group] = STATE(2834), + [sym_literal] = STATE(2837), + [sym_map_init_expression] = STATE(2723), + [sym_array_creation] = STATE(2834), + [sym_fixed_array_creation] = STATE(2834), + [sym_selector_expression] = STATE(2834), + [sym_index_expression] = STATE(2834), + [sym_slice_expression] = STATE(2834), + [sym_if_expression] = STATE(2723), + [sym_compile_time_if_expression] = STATE(2723), + [sym_is_expression] = STATE(2834), + [sym_not_is_expression] = STATE(2834), + [sym_in_expression] = STATE(2834), + [sym_not_in_expression] = STATE(2834), + [sym_enum_fetch] = STATE(2834), + [sym_match_expression] = STATE(2723), + [sym_select_expression] = STATE(2723), + [sym_lock_expression] = STATE(2723), + [sym_unsafe_expression] = STATE(2723), + [sym_sql_expression] = STATE(2723), + [sym_c_string_literal] = STATE(2838), + [sym_raw_string_literal] = STATE(2838), + [sym_interpreted_string_literal] = STATE(2838), + [sym_mutability_modifiers] = STATE(687), + [sym_plain_type] = STATE(4016), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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(2881), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2883), + [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(2885), + [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(2729), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [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), }, [951] = { - [sym__expression] = STATE(2575), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(951), + [sym_block_comment] = STATE(951), + [sym__expression] = STATE(2669), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2781), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_LT_DASH] = ACTIONS(2785), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(2787), + [anon_sym_lock] = ACTIONS(2789), + [anon_sym_rlock] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [952] = { - [sym__expression] = STATE(2576), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(952), + [sym_block_comment] = STATE(952), + [sym__expression] = STATE(1955), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [953] = { - [sym__expression] = STATE(2577), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(953), + [sym_block_comment] = STATE(953), + [sym__expression] = STATE(1155), + [sym__expression_without_blocks] = STATE(1209), + [sym__expression_with_blocks] = STATE(1209), + [sym_inc_expression] = STATE(1210), + [sym_dec_expression] = STATE(1210), + [sym_or_block_expression] = STATE(1210), + [sym_option_propagation_expression] = STATE(1210), + [sym_result_propagation_expression] = STATE(1210), + [sym_anon_struct_value_expression] = STATE(1222), + [sym_go_expression] = STATE(1210), + [sym_spawn_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_type_initializer] = STATE(1222), + [sym_function_literal] = STATE(1210), + [sym_reference_expression] = STATE(1177), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(1210), + [sym_receive_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_as_type_cast_expression] = STATE(1210), + [sym__max_group] = STATE(1210), + [sym_literal] = STATE(1193), + [sym_map_init_expression] = STATE(1222), + [sym_array_creation] = STATE(1210), + [sym_fixed_array_creation] = STATE(1210), + [sym_selector_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_slice_expression] = STATE(1210), + [sym_if_expression] = STATE(1222), + [sym_compile_time_if_expression] = STATE(1222), + [sym_is_expression] = STATE(1210), + [sym_not_is_expression] = STATE(1210), + [sym_in_expression] = STATE(1210), + [sym_not_in_expression] = STATE(1210), + [sym_enum_fetch] = STATE(1210), + [sym_match_expression] = STATE(1222), + [sym_select_expression] = STATE(1222), + [sym_lock_expression] = STATE(1222), + [sym_unsafe_expression] = STATE(1222), + [sym_sql_expression] = STATE(1222), + [sym_c_string_literal] = STATE(1183), + [sym_raw_string_literal] = STATE(1183), + [sym_interpreted_string_literal] = STATE(1183), + [sym_mutability_modifiers] = STATE(831), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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(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), }, [954] = { - [sym__expression] = STATE(2161), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4189), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(954), + [sym_block_comment] = STATE(954), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3433), + [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_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), }, [955] = { - [sym__expression] = STATE(2302), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(955), + [sym_block_comment] = STATE(955), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3438), + [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_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), }, [956] = { - [sym__expression] = STATE(2578), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(956), + [sym_block_comment] = STATE(956), + [sym__expression] = STATE(2858), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(3677), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [957] = { - [sym__expression] = STATE(988), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(957), + [sym_block_comment] = STATE(957), + [sym__expression] = STATE(1851), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [958] = { - [sym__expression] = STATE(979), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(958), + [sym_block_comment] = STATE(958), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3431), + [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_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), }, [959] = { - [sym__expression] = STATE(980), - [sym__expression_without_blocks] = STATE(1094), - [sym__expression_with_blocks] = STATE(1094), - [sym_inc_expression] = STATE(1094), - [sym_dec_expression] = STATE(1094), - [sym_or_block_expression] = STATE(1094), - [sym_option_propagation_expression] = STATE(1094), - [sym_result_propagation_expression] = STATE(1094), - [sym_anon_struct_value_expression] = STATE(1093), - [sym_go_expression] = STATE(1094), - [sym_spawn_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_type_initializer] = STATE(1093), - [sym_function_literal] = STATE(1094), - [sym_reference_expression] = STATE(1069), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(1094), - [sym_receive_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_as_type_cast_expression] = STATE(1094), - [sym__max_group] = STATE(1094), - [sym_literal] = STATE(1094), - [sym_map_init_expression] = STATE(1093), - [sym_array_creation] = STATE(1094), - [sym_fixed_array_creation] = STATE(1094), - [sym_selector_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_slice_expression] = STATE(1094), - [sym_if_expression] = STATE(1093), - [sym_compile_time_if_expression] = STATE(1093), - [sym_is_expression] = STATE(1094), - [sym_not_is_expression] = STATE(1094), - [sym_in_expression] = STATE(1094), - [sym_not_in_expression] = STATE(1094), - [sym_enum_fetch] = STATE(1094), - [sym_match_expression] = STATE(1093), - [sym_select_expression] = STATE(1093), - [sym_lock_expression] = STATE(1093), - [sym_unsafe_expression] = STATE(1093), - [sym_sql_expression] = STATE(1093), - [sym_c_string_literal] = STATE(1098), - [sym_raw_string_literal] = STATE(1098), - [sym_interpreted_string_literal] = STATE(1098), - [sym_mutability_modifiers] = STATE(492), - [sym_plain_type] = STATE(4210), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2121), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2127), - [sym___c_double_quote] = ACTIONS(2129), - [sym___c_single_quote] = ACTIONS(2131), - [sym___r_double_quote] = ACTIONS(2133), - [sym___r_single_quote] = ACTIONS(2135), + [sym_line_comment] = STATE(959), + [sym_block_comment] = STATE(959), + [sym__expression] = STATE(1850), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [960] = { - [sym__expression] = STATE(2480), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(960), + [sym_block_comment] = STATE(960), + [sym__expression] = STATE(277), + [sym__expression_without_blocks] = STATE(964), + [sym__expression_with_blocks] = STATE(964), + [sym_inc_expression] = STATE(958), + [sym_dec_expression] = STATE(958), + [sym_or_block_expression] = STATE(958), + [sym_option_propagation_expression] = STATE(958), + [sym_result_propagation_expression] = STATE(958), + [sym_anon_struct_value_expression] = STATE(955), + [sym_go_expression] = STATE(958), + [sym_spawn_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_type_initializer] = STATE(955), + [sym_function_literal] = STATE(958), + [sym_reference_expression] = STATE(954), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(958), + [sym_receive_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_as_type_cast_expression] = STATE(958), + [sym__max_group] = STATE(958), + [sym_literal] = STATE(793), + [sym_map_init_expression] = STATE(955), + [sym_array_creation] = STATE(958), + [sym_fixed_array_creation] = STATE(958), + [sym_selector_expression] = STATE(958), + [sym_index_expression] = STATE(958), + [sym_slice_expression] = STATE(958), + [sym_if_expression] = STATE(955), + [sym_compile_time_if_expression] = STATE(955), + [sym_is_expression] = STATE(958), + [sym_not_is_expression] = STATE(958), + [sym_in_expression] = STATE(958), + [sym_not_in_expression] = STATE(958), + [sym_enum_fetch] = STATE(958), + [sym_match_expression] = STATE(955), + [sym_select_expression] = STATE(955), + [sym_lock_expression] = STATE(955), + [sym_unsafe_expression] = STATE(955), + [sym_sql_expression] = STATE(955), + [sym_c_string_literal] = STATE(714), + [sym_raw_string_literal] = STATE(714), + [sym_interpreted_string_literal] = STATE(714), + [sym_mutability_modifiers] = STATE(559), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(2879), + [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), }, [961] = { - [sym__expression] = STATE(2161), - [sym__expression_without_blocks] = STATE(2216), - [sym__expression_with_blocks] = STATE(2216), - [sym_inc_expression] = STATE(2216), - [sym_dec_expression] = STATE(2216), - [sym_or_block_expression] = STATE(2216), - [sym_option_propagation_expression] = STATE(2216), - [sym_result_propagation_expression] = STATE(2216), - [sym_anon_struct_value_expression] = STATE(2213), - [sym_go_expression] = STATE(2216), - [sym_spawn_expression] = STATE(2216), - [sym_parenthesized_expression] = STATE(2216), - [sym_call_expression] = STATE(2216), - [sym_type_initializer] = STATE(2213), - [sym_function_literal] = STATE(2216), - [sym_reference_expression] = STATE(2212), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2216), - [sym_receive_expression] = STATE(2216), - [sym_binary_expression] = STATE(2216), - [sym_as_type_cast_expression] = STATE(2216), - [sym__max_group] = STATE(2216), - [sym_literal] = STATE(2216), - [sym_map_init_expression] = STATE(2213), - [sym_array_creation] = STATE(2216), - [sym_fixed_array_creation] = STATE(2216), - [sym_selector_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_slice_expression] = STATE(2216), - [sym_if_expression] = STATE(2213), - [sym_compile_time_if_expression] = STATE(2213), - [sym_is_expression] = STATE(2216), - [sym_not_is_expression] = STATE(2216), - [sym_in_expression] = STATE(2216), - [sym_not_in_expression] = STATE(2216), - [sym_enum_fetch] = STATE(2216), - [sym_match_expression] = STATE(2213), - [sym_select_expression] = STATE(2213), - [sym_lock_expression] = STATE(2213), - [sym_unsafe_expression] = STATE(2213), - [sym_sql_expression] = STATE(2213), - [sym_c_string_literal] = STATE(2224), - [sym_raw_string_literal] = STATE(2224), - [sym_interpreted_string_literal] = STATE(2224), - [sym_mutability_modifiers] = STATE(478), - [sym_plain_type] = STATE(4188), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2937), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2945), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2957), - [anon_sym_rlock] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2977), + [sym_line_comment] = STATE(961), + [sym_block_comment] = STATE(961), + [sym__expression] = STATE(1836), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [962] = { - [sym__expression] = STATE(2476), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(962), + [sym_block_comment] = STATE(962), + [sym__expression] = STATE(1815), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [963] = { - [sym__expression] = STATE(2474), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(963), + [sym_block_comment] = STATE(963), + [sym__expression] = STATE(1795), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), }, [964] = { - [sym__expression] = STATE(2488), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3442), + [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_EQ] = 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_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_STAR_EQ] = ACTIONS(3442), + [anon_sym_SLASH_EQ] = ACTIONS(3442), + [anon_sym_PERCENT_EQ] = ACTIONS(3442), + [anon_sym_LT_LT_EQ] = ACTIONS(3442), + [anon_sym_GT_GT_EQ] = ACTIONS(3442), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3442), + [anon_sym_AMP_EQ] = ACTIONS(3442), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3442), + [anon_sym_PLUS_EQ] = ACTIONS(3442), + [anon_sym_DASH_EQ] = ACTIONS(3442), + [anon_sym_PIPE_EQ] = ACTIONS(3442), + [anon_sym_CARET_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = 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), }, [965] = { - [sym__expression] = STATE(2570), - [sym__expression_without_blocks] = STATE(2331), - [sym__expression_with_blocks] = STATE(2331), - [sym_inc_expression] = STATE(2331), - [sym_dec_expression] = STATE(2331), - [sym_or_block_expression] = STATE(2331), - [sym_option_propagation_expression] = STATE(2331), - [sym_result_propagation_expression] = STATE(2331), - [sym_anon_struct_value_expression] = STATE(2330), - [sym_go_expression] = STATE(2331), - [sym_spawn_expression] = STATE(2331), - [sym_parenthesized_expression] = STATE(2331), - [sym_call_expression] = STATE(2331), - [sym_type_initializer] = STATE(2330), - [sym_function_literal] = STATE(2331), - [sym_reference_expression] = STATE(2335), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2331), - [sym_receive_expression] = STATE(2331), - [sym_binary_expression] = STATE(2331), - [sym_as_type_cast_expression] = STATE(2331), - [sym__max_group] = STATE(2331), - [sym_literal] = STATE(2331), - [sym_map_init_expression] = STATE(2330), - [sym_array_creation] = STATE(2331), - [sym_fixed_array_creation] = STATE(2331), - [sym_selector_expression] = STATE(2331), - [sym_index_expression] = STATE(2331), - [sym_slice_expression] = STATE(2331), - [sym_if_expression] = STATE(2330), - [sym_compile_time_if_expression] = STATE(2330), - [sym_is_expression] = STATE(2331), - [sym_not_is_expression] = STATE(2331), - [sym_in_expression] = STATE(2331), - [sym_not_in_expression] = STATE(2331), - [sym_enum_fetch] = STATE(2331), - [sym_match_expression] = STATE(2330), - [sym_select_expression] = STATE(2330), - [sym_lock_expression] = STATE(2330), - [sym_unsafe_expression] = STATE(2330), - [sym_sql_expression] = STATE(2330), - [sym_c_string_literal] = STATE(2328), - [sym_raw_string_literal] = STATE(2328), - [sym_interpreted_string_literal] = STATE(2328), - [sym_mutability_modifiers] = STATE(480), - [sym_plain_type] = STATE(4126), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2425), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(1209), - [anon_sym_LBRACK2] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_CARET] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2433), - [sym_none] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1221), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_select] = ACTIONS(2435), - [anon_sym_lock] = ACTIONS(2437), - [anon_sym_rlock] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1231), - [sym_int_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1233), - [sym_rune_literal] = ACTIONS(1233), - [sym_pseudo_compile_time_identifier] = ACTIONS(1235), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1239), - [sym___single_quote] = ACTIONS(1241), - [sym___c_double_quote] = ACTIONS(1243), - [sym___c_single_quote] = ACTIONS(1245), - [sym___r_double_quote] = ACTIONS(1247), - [sym___r_single_quote] = ACTIONS(1249), + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [sym__expression] = STATE(2902), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(3019), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(3020), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [966] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3968), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), + [sym__expression] = STATE(1831), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), }, [967] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(3975), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(967), + [sym_block_comment] = STATE(967), + [sym__expression] = STATE(1810), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), }, [968] = { - [sym__expression] = STATE(2464), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(968), + [sym_block_comment] = STATE(968), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2833), + [anon_sym___global] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_pub] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_STAR_EQ] = ACTIONS(2833), + [anon_sym_SLASH_EQ] = ACTIONS(2833), + [anon_sym_PERCENT_EQ] = ACTIONS(2833), + [anon_sym_LT_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_AMP_EQ] = ACTIONS(2833), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2833), + [anon_sym_PLUS_EQ] = ACTIONS(2833), + [anon_sym_DASH_EQ] = ACTIONS(2833), + [anon_sym_PIPE_EQ] = ACTIONS(2833), + [anon_sym_CARET_EQ] = ACTIONS(2833), + [anon_sym_COLON_EQ] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), + [anon_sym_AT_LBRACK] = ACTIONS(2833), + [sym___double_quote] = ACTIONS(2833), + [sym___single_quote] = ACTIONS(2833), + [sym___c_double_quote] = ACTIONS(2833), + [sym___c_single_quote] = ACTIONS(2833), + [sym___r_double_quote] = ACTIONS(2833), + [sym___r_single_quote] = ACTIONS(2833), }, [969] = { - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(969), + [sym_block_comment] = STATE(969), + [sym__expression] = STATE(2859), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_LT_DASH] = ACTIONS(2445), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [970] = { - [sym__expression] = STATE(2465), - [sym__expression_without_blocks] = STATE(2826), - [sym__expression_with_blocks] = STATE(2826), - [sym_inc_expression] = STATE(2826), - [sym_dec_expression] = STATE(2826), - [sym_or_block_expression] = STATE(2826), - [sym_option_propagation_expression] = STATE(2826), - [sym_result_propagation_expression] = STATE(2826), - [sym_anon_struct_value_expression] = STATE(2816), - [sym_go_expression] = STATE(2826), - [sym_spawn_expression] = STATE(2826), - [sym_parenthesized_expression] = STATE(2826), - [sym_call_expression] = STATE(2826), - [sym_type_initializer] = STATE(2816), - [sym_function_literal] = STATE(2826), - [sym_reference_expression] = STATE(2849), - [sym_type_reference_expression] = STATE(3605), - [sym_unary_expression] = STATE(2826), - [sym_receive_expression] = STATE(2826), - [sym_binary_expression] = STATE(2826), - [sym_as_type_cast_expression] = STATE(2826), - [sym__max_group] = STATE(2826), - [sym_literal] = STATE(2826), - [sym_map_init_expression] = STATE(2816), - [sym_array_creation] = STATE(2826), - [sym_fixed_array_creation] = STATE(2826), - [sym_selector_expression] = STATE(2826), - [sym_index_expression] = STATE(2826), - [sym_slice_expression] = STATE(2826), - [sym_if_expression] = STATE(2816), - [sym_compile_time_if_expression] = STATE(2816), - [sym_is_expression] = STATE(2826), - [sym_not_is_expression] = STATE(2826), - [sym_in_expression] = STATE(2826), - [sym_not_in_expression] = STATE(2826), - [sym_enum_fetch] = STATE(2826), - [sym_match_expression] = STATE(2816), - [sym_select_expression] = STATE(2816), - [sym_lock_expression] = STATE(2816), - [sym_unsafe_expression] = STATE(2816), - [sym_sql_expression] = STATE(2816), - [sym_c_string_literal] = STATE(2846), - [sym_raw_string_literal] = STATE(2846), - [sym_interpreted_string_literal] = STATE(2846), - [sym_mutability_modifiers] = STATE(477), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_fn] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(1091), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(1095), - [anon_sym_spawn] = ACTIONS(1097), - [anon_sym_json_DOTdecode] = ACTIONS(1099), - [anon_sym_LBRACK2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_LT_DASH] = ACTIONS(1105), - [sym_none] = ACTIONS(1107), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_nil] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_DOLLARif] = ACTIONS(1113), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2849), - [anon_sym_rlock] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(1121), - [anon_sym_sql] = ACTIONS(1123), - [sym_int_literal] = ACTIONS(1107), - [sym_float_literal] = ACTIONS(1125), - [sym_rune_literal] = ACTIONS(1125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2831), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1129), - [sym___single_quote] = ACTIONS(1131), - [sym___c_double_quote] = ACTIONS(1133), - [sym___c_single_quote] = ACTIONS(1135), - [sym___r_double_quote] = ACTIONS(1137), - [sym___r_single_quote] = ACTIONS(1139), + [sym_line_comment] = STATE(970), + [sym_block_comment] = STATE(970), + [sym__expression] = STATE(2888), + [sym__expression_without_blocks] = STATE(2457), + [sym__expression_with_blocks] = STATE(2457), + [sym_inc_expression] = STATE(2456), + [sym_dec_expression] = STATE(2456), + [sym_or_block_expression] = STATE(2456), + [sym_option_propagation_expression] = STATE(2456), + [sym_result_propagation_expression] = STATE(2456), + [sym_anon_struct_value_expression] = STATE(2455), + [sym_go_expression] = STATE(2456), + [sym_spawn_expression] = STATE(2456), + [sym_parenthesized_expression] = STATE(2456), + [sym_call_expression] = STATE(2456), + [sym_type_initializer] = STATE(2455), + [sym_function_literal] = STATE(2456), + [sym_reference_expression] = STATE(2451), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2456), + [sym_receive_expression] = STATE(2456), + [sym_binary_expression] = STATE(2456), + [sym_as_type_cast_expression] = STATE(2456), + [sym__max_group] = STATE(2456), + [sym_literal] = STATE(2463), + [sym_map_init_expression] = STATE(2455), + [sym_array_creation] = STATE(2456), + [sym_fixed_array_creation] = STATE(2456), + [sym_selector_expression] = STATE(2456), + [sym_index_expression] = STATE(2456), + [sym_slice_expression] = STATE(2456), + [sym_if_expression] = STATE(2455), + [sym_compile_time_if_expression] = STATE(2455), + [sym_is_expression] = STATE(2456), + [sym_not_is_expression] = STATE(2456), + [sym_in_expression] = STATE(2456), + [sym_not_in_expression] = STATE(2456), + [sym_enum_fetch] = STATE(2456), + [sym_match_expression] = STATE(2455), + [sym_select_expression] = STATE(2455), + [sym_lock_expression] = STATE(2455), + [sym_unsafe_expression] = STATE(2455), + [sym_sql_expression] = STATE(2455), + [sym_c_string_literal] = STATE(2464), + [sym_raw_string_literal] = STATE(2464), + [sym_interpreted_string_literal] = STATE(2464), + [sym_mutability_modifiers] = STATE(850), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_go] = ACTIONS(1275), + [anon_sym_spawn] = ACTIONS(1277), + [anon_sym_json_DOTdecode] = ACTIONS(1279), + [anon_sym_LBRACK2] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_DASH] = ACTIONS(1285), + [sym_none] = ACTIONS(1287), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_nil] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_select] = ACTIONS(1295), + [anon_sym_lock] = ACTIONS(1297), + [anon_sym_rlock] = ACTIONS(1297), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_sql] = ACTIONS(1301), + [sym_int_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1303), + [sym_rune_literal] = ACTIONS(1303), + [sym_pseudo_compile_time_identifier] = ACTIONS(1305), + [anon_sym_shared] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [sym___double_quote] = ACTIONS(1309), + [sym___single_quote] = ACTIONS(1311), + [sym___c_double_quote] = ACTIONS(1313), + [sym___c_single_quote] = ACTIONS(1315), + [sym___r_double_quote] = ACTIONS(1317), + [sym___r_single_quote] = ACTIONS(1319), }, [971] = { - [sym_reference_expression] = STATE(4436), - [sym_type_reference_expression] = STATE(3380), - [sym_plain_type] = STATE(3419), - [sym__plain_type_without_special] = STATE(3437), - [sym_anon_struct_type] = STATE(3444), - [sym_multi_return_type] = STATE(3437), - [sym_result_type] = STATE(3437), - [sym_option_type] = STATE(3437), - [sym_qualified_type] = STATE(3380), - [sym_fixed_array_type] = STATE(3444), - [sym_array_type] = STATE(3444), - [sym_pointer_type] = STATE(3444), - [sym_wrong_pointer_type] = STATE(3444), - [sym_map_type] = STATE(3444), - [sym_channel_type] = STATE(3444), - [sym_shared_type] = STATE(3444), - [sym_thread_type] = STATE(3444), - [sym_atomic_type] = STATE(3444), - [sym_generic_type] = STATE(3444), - [sym_function_type] = STATE(3444), - [sym_identifier] = ACTIONS(3454), - [anon_sym_LF] = ACTIONS(2729), - [anon_sym_CR] = ACTIONS(2729), - [anon_sym_CR_LF] = ACTIONS(2729), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_DOT] = ACTIONS(2727), - [anon_sym_as] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(3456), - [anon_sym___global] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(2727), - [anon_sym_fn] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(3460), - [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(2732), - [anon_sym_struct] = ACTIONS(3462), - [anon_sym_pub] = ACTIONS(3412), - [anon_sym_mut] = ACTIONS(2729), - [anon_sym_COLON] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_QMARK] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(2727), - [anon_sym_spawn] = ACTIONS(2727), - [anon_sym_json_DOTdecode] = ACTIONS(2727), - [anon_sym_LBRACK2] = ACTIONS(3468), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(3470), - [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_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(3472), - [anon_sym_map_LBRACK] = ACTIONS(3474), - [anon_sym_chan] = ACTIONS(3476), - [anon_sym_thread] = ACTIONS(3478), - [anon_sym_atomic] = ACTIONS(3480), - [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), + [sym_line_comment] = STATE(971), + [sym_block_comment] = STATE(971), + [sym__expression] = STATE(1822), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [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), }, [972] = { - [sym_reference_expression] = STATE(4466), + [sym_line_comment] = STATE(972), + [sym_block_comment] = STATE(972), + [sym__expression] = STATE(1960), + [sym__expression_without_blocks] = STATE(2127), + [sym__expression_with_blocks] = STATE(2127), + [sym_inc_expression] = STATE(2128), + [sym_dec_expression] = STATE(2128), + [sym_or_block_expression] = STATE(2128), + [sym_option_propagation_expression] = STATE(2128), + [sym_result_propagation_expression] = STATE(2128), + [sym_anon_struct_value_expression] = STATE(2130), + [sym_go_expression] = STATE(2128), + [sym_spawn_expression] = STATE(2128), + [sym_parenthesized_expression] = STATE(2128), + [sym_call_expression] = STATE(2128), + [sym_type_initializer] = STATE(2130), + [sym_function_literal] = STATE(2128), + [sym_reference_expression] = STATE(2065), + [sym_type_reference_expression] = STATE(3557), + [sym_unary_expression] = STATE(2128), + [sym_receive_expression] = STATE(2128), + [sym_binary_expression] = STATE(2128), + [sym_as_type_cast_expression] = STATE(2128), + [sym__max_group] = STATE(2128), + [sym_literal] = STATE(2124), + [sym_map_init_expression] = STATE(2130), + [sym_array_creation] = STATE(2128), + [sym_fixed_array_creation] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym_index_expression] = STATE(2128), + [sym_slice_expression] = STATE(2128), + [sym_if_expression] = STATE(2130), + [sym_compile_time_if_expression] = STATE(2130), + [sym_is_expression] = STATE(2128), + [sym_not_is_expression] = STATE(2128), + [sym_in_expression] = STATE(2128), + [sym_not_in_expression] = STATE(2128), + [sym_enum_fetch] = STATE(2128), + [sym_match_expression] = STATE(2130), + [sym_select_expression] = STATE(2130), + [sym_lock_expression] = STATE(2130), + [sym_unsafe_expression] = STATE(2130), + [sym_sql_expression] = STATE(2130), + [sym_c_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_interpreted_string_literal] = STATE(2123), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2803), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2809), + [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(2811), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [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), + }, + [973] = { + [sym_line_comment] = STATE(973), + [sym_block_comment] = STATE(973), + [sym_reference_expression] = STATE(4442), + [sym_type_reference_expression] = STATE(3406), + [sym_plain_type] = STATE(3446), + [sym__plain_type_without_special] = STATE(3451), + [sym_anon_struct_type] = STATE(3452), + [sym_multi_return_type] = STATE(3451), + [sym_result_type] = STATE(3451), + [sym_option_type] = STATE(3451), + [sym_qualified_type] = STATE(3406), + [sym_fixed_array_type] = STATE(3452), + [sym_array_type] = STATE(3452), + [sym_pointer_type] = STATE(3452), + [sym_wrong_pointer_type] = STATE(3452), + [sym_map_type] = STATE(3452), + [sym_channel_type] = STATE(3452), + [sym_shared_type] = STATE(3452), + [sym_thread_type] = STATE(3452), + [sym_atomic_type] = STATE(3452), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(3452), + [sym_identifier] = ACTIONS(3444), + [anon_sym_LF] = ACTIONS(2835), + [anon_sym_CR] = ACTIONS(2835), + [anon_sym_CR_LF] = ACTIONS(2835), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym___global] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(3450), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_pub] = ACTIONS(3149), + [anon_sym_mut] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3456), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(3460), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [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(2833), + [sym___single_quote] = ACTIONS(2833), + [sym___c_double_quote] = ACTIONS(2833), + [sym___c_single_quote] = ACTIONS(2833), + [sym___r_double_quote] = ACTIONS(2833), + [sym___r_single_quote] = ACTIONS(2833), + }, + [974] = { + [sym_line_comment] = STATE(974), + [sym_block_comment] = STATE(974), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(603), + [anon_sym_CR] = ACTIONS(603), + [anon_sym_CR_LF] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(599), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_mut] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_go] = ACTIONS(603), + [anon_sym_spawn] = ACTIONS(603), + [anon_sym_json_DOTdecode] = ACTIONS(603), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [sym_none] = ACTIONS(603), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_nil] = ACTIONS(603), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_if] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(603), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(603), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_match] = ACTIONS(603), + [anon_sym_select] = ACTIONS(603), + [anon_sym_lock] = ACTIONS(603), + [anon_sym_rlock] = ACTIONS(603), + [anon_sym_unsafe] = ACTIONS(603), + [anon_sym_sql] = ACTIONS(603), + [sym_int_literal] = ACTIONS(603), + [sym_float_literal] = ACTIONS(603), + [sym_rune_literal] = ACTIONS(603), + [sym_pseudo_compile_time_identifier] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(619), + [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(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), + }, + [975] = { + [sym_line_comment] = STATE(975), + [sym_block_comment] = STATE(975), + [sym_reference_expression] = STATE(4507), + [sym_type_reference_expression] = STATE(1162), + [sym_plain_type] = STATE(1257), + [sym__plain_type_without_special] = STATE(1226), + [sym_anon_struct_type] = STATE(1229), + [sym_multi_return_type] = STATE(1226), + [sym_result_type] = STATE(1226), + [sym_option_type] = STATE(1226), + [sym_qualified_type] = STATE(1162), + [sym_fixed_array_type] = STATE(1229), + [sym_array_type] = STATE(1229), + [sym_pointer_type] = STATE(1229), + [sym_wrong_pointer_type] = STATE(1229), + [sym_map_type] = STATE(1229), + [sym_channel_type] = STATE(1229), + [sym_shared_type] = STATE(1229), + [sym_thread_type] = STATE(1229), + [sym_atomic_type] = STATE(1229), + [sym_generic_type] = STATE(1229), + [sym_function_type] = STATE(1229), + [sym_identifier] = ACTIONS(3474), + [anon_sym_LF] = ACTIONS(571), + [anon_sym_CR] = ACTIONS(571), + [anon_sym_CR_LF] = ACTIONS(571), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_as] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(3480), + [anon_sym_PERCENT] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_struct] = ACTIONS(3482), + [anon_sym_mut] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(571), + [anon_sym_QMARK] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_go] = ACTIONS(571), + [anon_sym_spawn] = ACTIONS(571), + [anon_sym_json_DOTdecode] = ACTIONS(571), + [anon_sym_LBRACK2] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_LT_DASH] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_GT_GT_GT] = ACTIONS(571), + [anon_sym_AMP_CARET] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_or] = ACTIONS(571), + [sym_none] = ACTIONS(571), + [sym_true] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [sym_nil] = ACTIONS(571), + [anon_sym_QMARK_DOT] = ACTIONS(571), + [anon_sym_POUND_LBRACK] = ACTIONS(571), + [anon_sym_if] = ACTIONS(571), + [anon_sym_DOLLARif] = ACTIONS(571), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(571), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(571), + [anon_sym_match] = ACTIONS(571), + [anon_sym_select] = ACTIONS(571), + [anon_sym_lock] = ACTIONS(571), + [anon_sym_rlock] = ACTIONS(571), + [anon_sym_unsafe] = ACTIONS(571), + [anon_sym_sql] = ACTIONS(571), + [sym_int_literal] = ACTIONS(571), + [sym_float_literal] = ACTIONS(571), + [sym_rune_literal] = ACTIONS(571), + [sym_pseudo_compile_time_identifier] = ACTIONS(571), + [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(571), + [sym___single_quote] = ACTIONS(571), + [sym___c_double_quote] = ACTIONS(571), + [sym___c_single_quote] = ACTIONS(571), + [sym___r_double_quote] = ACTIONS(571), + [sym___r_single_quote] = ACTIONS(571), + }, + [976] = { + [sym_line_comment] = STATE(976), + [sym_block_comment] = STATE(976), + [sym_reference_expression] = STATE(4507), + [sym_type_reference_expression] = STATE(1162), + [sym_plain_type] = STATE(1232), + [sym__plain_type_without_special] = STATE(1226), + [sym_anon_struct_type] = STATE(1229), + [sym_multi_return_type] = STATE(1226), + [sym_result_type] = STATE(1226), + [sym_option_type] = STATE(1226), + [sym_qualified_type] = STATE(1162), + [sym_fixed_array_type] = STATE(1229), + [sym_array_type] = STATE(1229), + [sym_pointer_type] = STATE(1229), + [sym_wrong_pointer_type] = STATE(1229), + [sym_map_type] = STATE(1229), + [sym_channel_type] = STATE(1229), + [sym_shared_type] = STATE(1229), + [sym_thread_type] = STATE(1229), + [sym_atomic_type] = STATE(1229), + [sym_generic_type] = STATE(1229), + [sym_function_type] = STATE(1229), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(627), + [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_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), + }, + [977] = { + [sym_line_comment] = STATE(977), + [sym_block_comment] = STATE(977), + [sym_reference_expression] = STATE(4507), [sym_type_reference_expression] = STATE(1162), - [sym_plain_type] = STATE(1195), - [sym__plain_type_without_special] = STATE(1170), - [sym_anon_struct_type] = STATE(1203), - [sym_multi_return_type] = STATE(1170), - [sym_result_type] = STATE(1170), - [sym_option_type] = STATE(1170), + [sym_plain_type] = STATE(1252), + [sym__plain_type_without_special] = STATE(1226), + [sym_anon_struct_type] = STATE(1229), + [sym_multi_return_type] = STATE(1226), + [sym_result_type] = STATE(1226), + [sym_option_type] = STATE(1226), [sym_qualified_type] = STATE(1162), - [sym_fixed_array_type] = STATE(1203), - [sym_array_type] = STATE(1203), - [sym_pointer_type] = STATE(1203), - [sym_wrong_pointer_type] = STATE(1203), - [sym_map_type] = STATE(1203), - [sym_channel_type] = STATE(1203), - [sym_shared_type] = STATE(1203), - [sym_thread_type] = STATE(1203), - [sym_atomic_type] = STATE(1203), - [sym_generic_type] = STATE(1203), - [sym_function_type] = STATE(1203), - [sym_identifier] = ACTIONS(3482), + [sym_fixed_array_type] = STATE(1229), + [sym_array_type] = STATE(1229), + [sym_pointer_type] = STATE(1229), + [sym_wrong_pointer_type] = STATE(1229), + [sym_map_type] = STATE(1229), + [sym_channel_type] = STATE(1229), + [sym_shared_type] = STATE(1229), + [sym_thread_type] = STATE(1229), + [sym_atomic_type] = STATE(1229), + [sym_generic_type] = STATE(1229), + [sym_function_type] = STATE(1229), + [sym_identifier] = ACTIONS(3474), [anon_sym_LF] = ACTIONS(623), [anon_sym_CR] = ACTIONS(623), [anon_sym_CR_LF] = ACTIONS(623), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(623), [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(3484), + [anon_sym_LPAREN] = ACTIONS(3476), [anon_sym_RPAREN] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3486), + [anon_sym_fn] = ACTIONS(3478), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3480), [anon_sym_PERCENT] = ACTIONS(623), [anon_sym_LT] = ACTIONS(623), [anon_sym_GT] = ACTIONS(623), @@ -137009,19 +137488,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(623), [anon_sym_DOT_DOT_DOT] = ACTIONS(623), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3490), + [anon_sym_struct] = ACTIONS(3482), [anon_sym_mut] = ACTIONS(623), [anon_sym_PLUS_PLUS] = ACTIONS(623), [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_QMARK] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3486), [anon_sym_go] = ACTIONS(623), [anon_sym_spawn] = ACTIONS(623), [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(3496), + [anon_sym_LBRACK2] = ACTIONS(3488), [anon_sym_TILDE] = ACTIONS(623), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3490), [anon_sym_LT_DASH] = ACTIONS(623), [anon_sym_LT_LT] = ACTIONS(623), [anon_sym_GT_GT] = ACTIONS(623), @@ -137052,11 +137531,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(623), [sym_rune_literal] = ACTIONS(623), [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3500), - [anon_sym_map_LBRACK] = ACTIONS(3502), - [anon_sym_chan] = ACTIONS(3504), - [anon_sym_thread] = ACTIONS(3506), - [anon_sym_atomic] = ACTIONS(3508), + [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(623), [sym___single_quote] = ACTIONS(623), [sym___c_double_quote] = ACTIONS(623), @@ -137064,4102 +137543,3801 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(623), [sym___r_single_quote] = ACTIONS(623), }, - [973] = { - [sym_reference_expression] = STATE(4466), - [sym_type_reference_expression] = STATE(1162), - [sym_plain_type] = STATE(1223), - [sym__plain_type_without_special] = STATE(1170), - [sym_anon_struct_type] = STATE(1203), - [sym_multi_return_type] = STATE(1170), - [sym_result_type] = STATE(1170), - [sym_option_type] = STATE(1170), - [sym_qualified_type] = STATE(1162), - [sym_fixed_array_type] = STATE(1203), - [sym_array_type] = STATE(1203), - [sym_pointer_type] = STATE(1203), - [sym_wrong_pointer_type] = STATE(1203), - [sym_map_type] = STATE(1203), - [sym_channel_type] = STATE(1203), - [sym_shared_type] = STATE(1203), - [sym_thread_type] = STATE(1203), - [sym_atomic_type] = STATE(1203), - [sym_generic_type] = STATE(1203), - [sym_function_type] = STATE(1203), - [sym_identifier] = ACTIONS(3482), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [sym_comment] = ACTIONS(495), - [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(3484), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3488), - [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(3490), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_BANG] = ACTIONS(3494), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(3496), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3498), - [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(3500), - [anon_sym_map_LBRACK] = ACTIONS(3502), - [anon_sym_chan] = ACTIONS(3504), - [anon_sym_thread] = ACTIONS(3506), - [anon_sym_atomic] = ACTIONS(3508), - [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), - }, - [974] = { - [sym_reference_expression] = STATE(4466), - [sym_type_reference_expression] = STATE(1162), - [sym_plain_type] = STATE(1167), - [sym__plain_type_without_special] = STATE(1170), - [sym_anon_struct_type] = STATE(1203), - [sym_multi_return_type] = STATE(1170), - [sym_result_type] = STATE(1170), - [sym_option_type] = STATE(1170), - [sym_qualified_type] = STATE(1162), - [sym_fixed_array_type] = STATE(1203), - [sym_array_type] = STATE(1203), - [sym_pointer_type] = STATE(1203), - [sym_wrong_pointer_type] = STATE(1203), - [sym_map_type] = STATE(1203), - [sym_channel_type] = STATE(1203), - [sym_shared_type] = STATE(1203), - [sym_thread_type] = STATE(1203), - [sym_atomic_type] = STATE(1203), - [sym_generic_type] = STATE(1203), - [sym_function_type] = STATE(1203), - [sym_identifier] = ACTIONS(3482), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [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(581), - [anon_sym_struct] = ACTIONS(3490), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(3492), - [anon_sym_BANG] = ACTIONS(3494), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(3496), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(3498), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [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(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [sym_pseudo_compile_time_identifier] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(3500), - [anon_sym_map_LBRACK] = ACTIONS(3502), - [anon_sym_chan] = ACTIONS(3504), - [anon_sym_thread] = ACTIONS(3506), - [anon_sym_atomic] = ACTIONS(3508), - [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), - }, - [975] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(563), - [anon_sym_CR] = ACTIONS(563), - [anon_sym_CR_LF] = ACTIONS(563), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [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_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_mut] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3510), - [anon_sym_go] = ACTIONS(563), - [anon_sym_spawn] = ACTIONS(563), - [anon_sym_json_DOTdecode] = ACTIONS(563), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_DASH] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [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(563), - [sym_none] = ACTIONS(563), - [sym_true] = ACTIONS(563), - [sym_false] = ACTIONS(563), - [sym_nil] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_DOLLARif] = ACTIONS(563), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_match] = ACTIONS(563), - [anon_sym_select] = ACTIONS(563), - [anon_sym_lock] = ACTIONS(563), - [anon_sym_rlock] = ACTIONS(563), - [anon_sym_unsafe] = ACTIONS(563), - [anon_sym_sql] = ACTIONS(563), - [sym_int_literal] = ACTIONS(563), - [sym_float_literal] = ACTIONS(563), - [sym_rune_literal] = ACTIONS(563), - [sym_pseudo_compile_time_identifier] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(563), - [sym___single_quote] = ACTIONS(563), - [sym___c_double_quote] = ACTIONS(563), - [sym___c_single_quote] = ACTIONS(563), - [sym___r_double_quote] = ACTIONS(563), - [sym___r_single_quote] = ACTIONS(563), - }, - [976] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(615), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [sym_pseudo_compile_time_identifier] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(615), - [anon_sym_chan] = ACTIONS(615), - [anon_sym_thread] = ACTIONS(615), - [anon_sym_atomic] = ACTIONS(615), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), - }, - [977] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [aux_sym_strictly_expression_list_repeat1] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(3512), - [sym_identifier] = ACTIONS(1719), - [anon_sym_LF] = ACTIONS(1719), - [anon_sym_CR] = ACTIONS(1719), - [anon_sym_CR_LF] = ACTIONS(1719), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_fn] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_GT] = ACTIONS(3526), - [anon_sym_EQ_EQ] = ACTIONS(3526), - [anon_sym_BANG_EQ] = ACTIONS(3526), - [anon_sym_LT_EQ] = ACTIONS(3526), - [anon_sym_GT_EQ] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3528), - [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(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1719), - [anon_sym_spawn] = ACTIONS(1719), - [anon_sym_json_DOTdecode] = ACTIONS(1719), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(1719), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3542), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_nil] = ACTIONS(1719), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_DOLLARif] = ACTIONS(1719), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), - [anon_sym_in] = ACTIONS(3550), - [anon_sym_BANGin] = ACTIONS(3552), - [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), - }, [978] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_GT] = ACTIONS(3526), - [anon_sym_EQ_EQ] = ACTIONS(3526), - [anon_sym_BANG_EQ] = ACTIONS(3526), - [anon_sym_LT_EQ] = ACTIONS(3526), - [anon_sym_GT_EQ] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3528), - [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(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [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(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(3550), - [anon_sym_BANGin] = ACTIONS(3552), - [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), + [sym_line_comment] = STATE(978), + [sym_block_comment] = STATE(978), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(565), + [anon_sym_CR] = ACTIONS(565), + [anon_sym_CR_LF] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_EQ_EQ] = ACTIONS(565), + [anon_sym_BANG_EQ] = ACTIONS(565), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_mut] = ACTIONS(565), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_go] = ACTIONS(565), + [anon_sym_spawn] = ACTIONS(565), + [anon_sym_json_DOTdecode] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_DASH] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_AMP_CARET] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [sym_none] = ACTIONS(565), + [sym_true] = ACTIONS(565), + [sym_false] = ACTIONS(565), + [sym_nil] = ACTIONS(565), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_POUND_LBRACK] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_DOLLARif] = ACTIONS(565), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_BANGin] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_select] = ACTIONS(565), + [anon_sym_lock] = ACTIONS(565), + [anon_sym_rlock] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_sql] = ACTIONS(565), + [sym_int_literal] = ACTIONS(565), + [sym_float_literal] = ACTIONS(565), + [sym_rune_literal] = ACTIONS(565), + [sym_pseudo_compile_time_identifier] = ACTIONS(565), + [anon_sym_shared] = ACTIONS(565), + [anon_sym_map_LBRACK] = ACTIONS(565), + [anon_sym_chan] = ACTIONS(565), + [anon_sym_thread] = ACTIONS(565), + [anon_sym_atomic] = ACTIONS(565), + [sym___double_quote] = ACTIONS(565), + [sym___single_quote] = ACTIONS(565), + [sym___c_double_quote] = ACTIONS(565), + [sym___c_single_quote] = ACTIONS(565), + [sym___r_double_quote] = ACTIONS(565), + [sym___r_single_quote] = ACTIONS(565), }, [979] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [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(3528), - [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(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_AMP_CARET] = ACTIONS(1881), - [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(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [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), + [sym_line_comment] = STATE(979), + [sym_block_comment] = STATE(979), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [aux_sym_strictly_expression_list_repeat1] = STATE(1451), + [ts_builtin_sym_end] = ACTIONS(3502), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1725), + [anon_sym_CR] = ACTIONS(1725), + [anon_sym_CR_LF] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_fn] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [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(1725), + [anon_sym_union] = ACTIONS(1725), + [anon_sym_pub] = ACTIONS(1725), + [anon_sym_mut] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [anon_sym_interface] = ACTIONS(1725), + [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(1725), + [anon_sym_spawn] = ACTIONS(1725), + [anon_sym_json_DOTdecode] = ACTIONS(1725), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1725), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_PIPE_PIPE] = ACTIONS(3532), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(1725), + [sym_true] = ACTIONS(1725), + [sym_false] = ACTIONS(1725), + [sym_nil] = ACTIONS(1725), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_is] = ACTIONS(3536), + [anon_sym_BANGis] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(1725), + [anon_sym_select] = ACTIONS(1725), + [anon_sym_lock] = ACTIONS(1725), + [anon_sym_rlock] = ACTIONS(1725), + [anon_sym_unsafe] = ACTIONS(1725), + [anon_sym_sql] = ACTIONS(1725), + [sym_int_literal] = ACTIONS(1725), + [sym_float_literal] = ACTIONS(1725), + [sym_rune_literal] = ACTIONS(1725), + [sym_pseudo_compile_time_identifier] = ACTIONS(1725), + [anon_sym_shared] = ACTIONS(1725), + [anon_sym_map_LBRACK] = ACTIONS(1725), + [anon_sym_chan] = ACTIONS(1725), + [anon_sym_thread] = ACTIONS(1725), + [anon_sym_atomic] = ACTIONS(1725), + [anon_sym_assert] = ACTIONS(1725), + [anon_sym_defer] = ACTIONS(1725), + [anon_sym_goto] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_DOLLARfor] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(1725), + [anon_sym_asm] = ACTIONS(1725), + [anon_sym_AT_LBRACK] = ACTIONS(1725), + [sym___double_quote] = ACTIONS(1725), + [sym___single_quote] = ACTIONS(1725), + [sym___c_double_quote] = ACTIONS(1725), + [sym___c_single_quote] = ACTIONS(1725), + [sym___r_double_quote] = ACTIONS(1725), + [sym___r_single_quote] = ACTIONS(1725), }, [980] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [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(3528), - [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(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [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(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [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), + [sym_line_comment] = STATE(980), + [sym_block_comment] = STATE(980), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [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_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [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_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [sym_none] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_nil] = ACTIONS(1871), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_DOLLARif] = ACTIONS(1871), + [anon_sym_is] = ACTIONS(1871), + [anon_sym_BANGis] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_BANGin] = ACTIONS(1871), + [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), }, [981] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_GT] = ACTIONS(3526), - [anon_sym_EQ_EQ] = ACTIONS(3526), - [anon_sym_BANG_EQ] = ACTIONS(3526), - [anon_sym_LT_EQ] = ACTIONS(3526), - [anon_sym_GT_EQ] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3528), - [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(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [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(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(3550), - [anon_sym_BANGin] = ACTIONS(3552), - [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), + [sym_line_comment] = STATE(981), + [sym_block_comment] = STATE(981), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1873), + [sym_identifier] = ACTIONS(1875), + [anon_sym_LF] = ACTIONS(1875), + [anon_sym_CR] = ACTIONS(1875), + [anon_sym_CR_LF] = ACTIONS(1875), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1875), + [anon_sym_type] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_fn] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_GT] = ACTIONS(1875), + [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(3518), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_pub] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_interface] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1875), + [anon_sym_spawn] = ACTIONS(1875), + [anon_sym_json_DOTdecode] = ACTIONS(1875), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1875), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(1875), + [anon_sym_PIPE_PIPE] = ACTIONS(1875), + [anon_sym_or] = ACTIONS(1875), + [sym_none] = ACTIONS(1875), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [sym_nil] = ACTIONS(1875), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_DOLLARif] = ACTIONS(1875), + [anon_sym_is] = ACTIONS(1875), + [anon_sym_BANGis] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1875), + [anon_sym_BANGin] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_select] = ACTIONS(1875), + [anon_sym_lock] = ACTIONS(1875), + [anon_sym_rlock] = ACTIONS(1875), + [anon_sym_unsafe] = ACTIONS(1875), + [anon_sym_sql] = ACTIONS(1875), + [sym_int_literal] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1875), + [sym_rune_literal] = ACTIONS(1875), + [sym_pseudo_compile_time_identifier] = ACTIONS(1875), + [anon_sym_shared] = ACTIONS(1875), + [anon_sym_map_LBRACK] = ACTIONS(1875), + [anon_sym_chan] = ACTIONS(1875), + [anon_sym_thread] = ACTIONS(1875), + [anon_sym_atomic] = ACTIONS(1875), + [anon_sym_assert] = ACTIONS(1875), + [anon_sym_defer] = ACTIONS(1875), + [anon_sym_goto] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_DOLLARfor] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym_AT_LBRACK] = ACTIONS(1875), + [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), }, [982] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LF] = ACTIONS(1853), - [anon_sym_CR] = ACTIONS(1853), - [anon_sym_CR_LF] = ACTIONS(1853), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_fn] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_SLASH] = ACTIONS(1853), - [anon_sym_PERCENT] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_GT] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1853), - [anon_sym_BANG_EQ] = ACTIONS(1853), - [anon_sym_LT_EQ] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_union] = ACTIONS(1853), - [anon_sym_pub] = ACTIONS(1853), - [anon_sym_mut] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1853), - [anon_sym_interface] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1853), - [anon_sym_spawn] = ACTIONS(1853), - [anon_sym_json_DOTdecode] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_LT_DASH] = ACTIONS(1853), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1853), - [anon_sym_GT_GT_GT] = ACTIONS(1853), - [anon_sym_AMP_CARET] = ACTIONS(1853), - [anon_sym_AMP_AMP] = ACTIONS(1853), - [anon_sym_PIPE_PIPE] = ACTIONS(1853), - [anon_sym_or] = ACTIONS(1853), - [sym_none] = ACTIONS(1853), - [sym_true] = ACTIONS(1853), - [sym_false] = ACTIONS(1853), - [sym_nil] = ACTIONS(1853), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_DOLLARif] = ACTIONS(1853), - [anon_sym_is] = ACTIONS(1853), - [anon_sym_BANGis] = ACTIONS(1853), - [anon_sym_in] = ACTIONS(1853), - [anon_sym_BANGin] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_select] = ACTIONS(1853), - [anon_sym_lock] = ACTIONS(1853), - [anon_sym_rlock] = ACTIONS(1853), - [anon_sym_unsafe] = ACTIONS(1853), - [anon_sym_sql] = ACTIONS(1853), - [sym_int_literal] = ACTIONS(1853), - [sym_float_literal] = ACTIONS(1853), - [sym_rune_literal] = ACTIONS(1853), - [sym_pseudo_compile_time_identifier] = ACTIONS(1853), - [anon_sym_shared] = ACTIONS(1853), - [anon_sym_map_LBRACK] = ACTIONS(1853), - [anon_sym_chan] = ACTIONS(1853), - [anon_sym_thread] = ACTIONS(1853), - [anon_sym_atomic] = ACTIONS(1853), - [anon_sym_assert] = ACTIONS(1853), - [anon_sym_defer] = ACTIONS(1853), - [anon_sym_goto] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_DOLLARfor] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_POUND] = ACTIONS(1853), - [anon_sym_asm] = ACTIONS(1853), - [anon_sym_AT_LBRACK] = ACTIONS(1853), - [sym___double_quote] = ACTIONS(1853), - [sym___single_quote] = ACTIONS(1853), - [sym___c_double_quote] = ACTIONS(1853), - [sym___c_single_quote] = ACTIONS(1853), - [sym___r_double_quote] = ACTIONS(1853), - [sym___r_single_quote] = ACTIONS(1853), + [sym_line_comment] = STATE(982), + [sym_block_comment] = STATE(982), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1901), + [sym_identifier] = ACTIONS(1903), + [anon_sym_LF] = ACTIONS(1903), + [anon_sym_CR] = ACTIONS(1903), + [anon_sym_CR_LF] = ACTIONS(1903), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1903), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_fn] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1903), + [anon_sym_BANG_EQ] = ACTIONS(1903), + [anon_sym_LT_EQ] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_pub] = ACTIONS(1903), + [anon_sym_mut] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_interface] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1903), + [anon_sym_spawn] = ACTIONS(1903), + [anon_sym_json_DOTdecode] = ACTIONS(1903), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_LT_DASH] = ACTIONS(1903), + [anon_sym_LT_LT] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym_GT_GT_GT] = ACTIONS(1903), + [anon_sym_AMP_CARET] = ACTIONS(1903), + [anon_sym_AMP_AMP] = ACTIONS(1903), + [anon_sym_PIPE_PIPE] = ACTIONS(1903), + [anon_sym_or] = ACTIONS(1903), + [sym_none] = ACTIONS(1903), + [sym_true] = ACTIONS(1903), + [sym_false] = ACTIONS(1903), + [sym_nil] = ACTIONS(1903), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_DOLLARif] = ACTIONS(1903), + [anon_sym_is] = ACTIONS(1903), + [anon_sym_BANGis] = ACTIONS(1903), + [anon_sym_in] = ACTIONS(1903), + [anon_sym_BANGin] = ACTIONS(1903), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_select] = ACTIONS(1903), + [anon_sym_lock] = ACTIONS(1903), + [anon_sym_rlock] = ACTIONS(1903), + [anon_sym_unsafe] = ACTIONS(1903), + [anon_sym_sql] = ACTIONS(1903), + [sym_int_literal] = ACTIONS(1903), + [sym_float_literal] = ACTIONS(1903), + [sym_rune_literal] = ACTIONS(1903), + [sym_pseudo_compile_time_identifier] = ACTIONS(1903), + [anon_sym_shared] = ACTIONS(1903), + [anon_sym_map_LBRACK] = ACTIONS(1903), + [anon_sym_chan] = ACTIONS(1903), + [anon_sym_thread] = ACTIONS(1903), + [anon_sym_atomic] = ACTIONS(1903), + [anon_sym_assert] = ACTIONS(1903), + [anon_sym_defer] = ACTIONS(1903), + [anon_sym_goto] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_DOLLARfor] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(1903), + [anon_sym_asm] = ACTIONS(1903), + [anon_sym_AT_LBRACK] = ACTIONS(1903), + [sym___double_quote] = ACTIONS(1903), + [sym___single_quote] = ACTIONS(1903), + [sym___c_double_quote] = ACTIONS(1903), + [sym___c_single_quote] = ACTIONS(1903), + [sym___r_double_quote] = ACTIONS(1903), + [sym___r_single_quote] = ACTIONS(1903), }, [983] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_identifier] = ACTIONS(1869), - [anon_sym_LF] = ACTIONS(1869), - [anon_sym_CR] = ACTIONS(1869), - [anon_sym_CR_LF] = ACTIONS(1869), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1869), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_COMMA] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1869), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_fn] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_PERCENT] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1869), - [anon_sym_BANG_EQ] = ACTIONS(1869), - [anon_sym_LT_EQ] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_union] = ACTIONS(1869), - [anon_sym_pub] = ACTIONS(1869), - [anon_sym_mut] = ACTIONS(1869), - [anon_sym_enum] = ACTIONS(1869), - [anon_sym_interface] = ACTIONS(1869), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1869), - [anon_sym_json_DOTdecode] = ACTIONS(1869), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_LT_DASH] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1869), - [anon_sym_GT_GT_GT] = ACTIONS(1869), - [anon_sym_AMP_CARET] = ACTIONS(1869), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_PIPE_PIPE] = ACTIONS(1869), - [anon_sym_or] = ACTIONS(1869), - [sym_none] = ACTIONS(1869), - [sym_true] = ACTIONS(1869), - [sym_false] = ACTIONS(1869), - [sym_nil] = ACTIONS(1869), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_DOLLARif] = ACTIONS(1869), - [anon_sym_is] = ACTIONS(1869), - [anon_sym_BANGis] = ACTIONS(1869), - [anon_sym_in] = ACTIONS(1869), - [anon_sym_BANGin] = ACTIONS(1869), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_select] = ACTIONS(1869), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1869), - [anon_sym_sql] = ACTIONS(1869), - [sym_int_literal] = ACTIONS(1869), - [sym_float_literal] = ACTIONS(1869), - [sym_rune_literal] = ACTIONS(1869), - [sym_pseudo_compile_time_identifier] = ACTIONS(1869), - [anon_sym_shared] = ACTIONS(1869), - [anon_sym_map_LBRACK] = ACTIONS(1869), - [anon_sym_chan] = ACTIONS(1869), - [anon_sym_thread] = ACTIONS(1869), - [anon_sym_atomic] = ACTIONS(1869), - [anon_sym_assert] = ACTIONS(1869), - [anon_sym_defer] = ACTIONS(1869), - [anon_sym_goto] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1869), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_DOLLARfor] = ACTIONS(1869), - [anon_sym_for] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(1869), - [anon_sym_asm] = ACTIONS(1869), - [anon_sym_AT_LBRACK] = ACTIONS(1869), - [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), + [sym_line_comment] = STATE(983), + [sym_block_comment] = STATE(983), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1929), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LF] = ACTIONS(1931), + [anon_sym_CR] = ACTIONS(1931), + [anon_sym_CR_LF] = ACTIONS(1931), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1931), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_fn] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [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(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_pub] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_interface] = ACTIONS(1931), + [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(1931), + [anon_sym_spawn] = ACTIONS(1931), + [anon_sym_json_DOTdecode] = ACTIONS(1931), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1931), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1931), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_PIPE_PIPE] = ACTIONS(3532), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_nil] = ACTIONS(1931), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_DOLLARif] = ACTIONS(1931), + [anon_sym_is] = ACTIONS(3536), + [anon_sym_BANGis] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_select] = ACTIONS(1931), + [anon_sym_lock] = ACTIONS(1931), + [anon_sym_rlock] = ACTIONS(1931), + [anon_sym_unsafe] = ACTIONS(1931), + [anon_sym_sql] = ACTIONS(1931), + [sym_int_literal] = ACTIONS(1931), + [sym_float_literal] = ACTIONS(1931), + [sym_rune_literal] = ACTIONS(1931), + [sym_pseudo_compile_time_identifier] = ACTIONS(1931), + [anon_sym_shared] = ACTIONS(1931), + [anon_sym_map_LBRACK] = ACTIONS(1931), + [anon_sym_chan] = ACTIONS(1931), + [anon_sym_thread] = ACTIONS(1931), + [anon_sym_atomic] = ACTIONS(1931), + [anon_sym_assert] = ACTIONS(1931), + [anon_sym_defer] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_DOLLARfor] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(1931), + [anon_sym_asm] = ACTIONS(1931), + [anon_sym_AT_LBRACK] = ACTIONS(1931), + [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), }, [984] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3554), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_CR] = ACTIONS(1761), - [anon_sym_CR_LF] = ACTIONS(1761), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_COMMA] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_fn] = ACTIONS(1761), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_GT] = ACTIONS(3526), - [anon_sym_EQ_EQ] = ACTIONS(3526), - [anon_sym_BANG_EQ] = ACTIONS(3526), - [anon_sym_LT_EQ] = ACTIONS(3526), - [anon_sym_GT_EQ] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3528), - [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_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1761), - [anon_sym_spawn] = ACTIONS(1761), - [anon_sym_json_DOTdecode] = ACTIONS(1761), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(1761), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3542), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(1761), - [sym_true] = ACTIONS(1761), - [sym_false] = ACTIONS(1761), - [sym_nil] = ACTIONS(1761), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_DOLLARif] = ACTIONS(1761), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), - [anon_sym_in] = ACTIONS(3550), - [anon_sym_BANGin] = ACTIONS(3552), - [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_line_comment] = STATE(984), + [sym_block_comment] = STATE(984), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1935), + [sym_identifier] = ACTIONS(1937), + [anon_sym_LF] = ACTIONS(1937), + [anon_sym_CR] = ACTIONS(1937), + [anon_sym_CR_LF] = ACTIONS(1937), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1937), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_fn] = ACTIONS(1937), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [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(1937), + [anon_sym_union] = ACTIONS(1937), + [anon_sym_pub] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_enum] = ACTIONS(1937), + [anon_sym_interface] = ACTIONS(1937), + [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(1937), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1937), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1937), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1937), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_PIPE_PIPE] = ACTIONS(3532), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(1937), + [sym_true] = ACTIONS(1937), + [sym_false] = ACTIONS(1937), + [sym_nil] = ACTIONS(1937), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_DOLLARif] = ACTIONS(1937), + [anon_sym_is] = ACTIONS(3536), + [anon_sym_BANGis] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_select] = ACTIONS(1937), + [anon_sym_lock] = ACTIONS(1937), + [anon_sym_rlock] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_sql] = ACTIONS(1937), + [sym_int_literal] = ACTIONS(1937), + [sym_float_literal] = ACTIONS(1937), + [sym_rune_literal] = ACTIONS(1937), + [sym_pseudo_compile_time_identifier] = ACTIONS(1937), + [anon_sym_shared] = ACTIONS(1937), + [anon_sym_map_LBRACK] = ACTIONS(1937), + [anon_sym_chan] = ACTIONS(1937), + [anon_sym_thread] = ACTIONS(1937), + [anon_sym_atomic] = ACTIONS(1937), + [anon_sym_assert] = ACTIONS(1937), + [anon_sym_defer] = ACTIONS(1937), + [anon_sym_goto] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_DOLLARfor] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_POUND] = ACTIONS(1937), + [anon_sym_asm] = ACTIONS(1937), + [anon_sym_AT_LBRACK] = ACTIONS(1937), + [sym___double_quote] = ACTIONS(1937), + [sym___single_quote] = ACTIONS(1937), + [sym___c_double_quote] = ACTIONS(1937), + [sym___c_single_quote] = ACTIONS(1937), + [sym___r_double_quote] = ACTIONS(1937), + [sym___r_single_quote] = ACTIONS(1937), }, [985] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_COMMA] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_fn] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_GT] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1865), - [anon_sym_BANG_EQ] = ACTIONS(1865), - [anon_sym_LT_EQ] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(3528), - [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(1865), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1865), - [anon_sym_spawn] = ACTIONS(1865), - [anon_sym_json_DOTdecode] = ACTIONS(1865), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_PIPE_PIPE] = ACTIONS(1865), - [anon_sym_or] = ACTIONS(1865), - [sym_none] = ACTIONS(1865), - [sym_true] = ACTIONS(1865), - [sym_false] = ACTIONS(1865), - [sym_nil] = ACTIONS(1865), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1865), - [anon_sym_is] = ACTIONS(1865), - [anon_sym_BANGis] = ACTIONS(1865), - [anon_sym_in] = ACTIONS(1865), - [anon_sym_BANGin] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_select] = ACTIONS(1865), - [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), + [sym_line_comment] = STATE(985), + [sym_block_comment] = STATE(985), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_COMMA] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(3546), + [anon_sym_type] = ACTIONS(3546), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_fn] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [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(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(3546), + [anon_sym_spawn] = ACTIONS(3546), + [anon_sym_json_DOTdecode] = ACTIONS(3546), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(3546), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_PIPE_PIPE] = ACTIONS(3532), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(3546), + [sym_true] = ACTIONS(3546), + [sym_false] = ACTIONS(3546), + [sym_nil] = ACTIONS(3546), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [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(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), }, [986] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2065), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LF] = ACTIONS(2067), - [anon_sym_CR] = ACTIONS(2067), - [anon_sym_CR_LF] = ACTIONS(2067), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_fn] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(2067), - [anon_sym_union] = ACTIONS(2067), - [anon_sym_pub] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(2067), - [anon_sym_spawn] = ACTIONS(2067), - [anon_sym_json_DOTdecode] = ACTIONS(2067), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_or] = ACTIONS(2067), - [sym_none] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_nil] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_DOLLARif] = ACTIONS(2067), - [anon_sym_is] = ACTIONS(2067), - [anon_sym_BANGis] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_BANGin] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_select] = ACTIONS(2067), - [anon_sym_lock] = ACTIONS(2067), - [anon_sym_rlock] = ACTIONS(2067), - [anon_sym_unsafe] = ACTIONS(2067), - [anon_sym_sql] = ACTIONS(2067), - [sym_int_literal] = ACTIONS(2067), - [sym_float_literal] = ACTIONS(2067), - [sym_rune_literal] = ACTIONS(2067), - [sym_pseudo_compile_time_identifier] = ACTIONS(2067), - [anon_sym_shared] = ACTIONS(2067), - [anon_sym_map_LBRACK] = ACTIONS(2067), - [anon_sym_chan] = ACTIONS(2067), - [anon_sym_thread] = ACTIONS(2067), - [anon_sym_atomic] = ACTIONS(2067), - [anon_sym_assert] = ACTIONS(2067), - [anon_sym_defer] = ACTIONS(2067), - [anon_sym_goto] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_DOLLARfor] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(2067), - [anon_sym_asm] = ACTIONS(2067), - [anon_sym_AT_LBRACK] = ACTIONS(2067), - [sym___double_quote] = ACTIONS(2067), - [sym___single_quote] = ACTIONS(2067), - [sym___c_double_quote] = ACTIONS(2067), - [sym___c_single_quote] = ACTIONS(2067), - [sym___r_double_quote] = ACTIONS(2067), - [sym___r_single_quote] = ACTIONS(2067), + [sym_line_comment] = STATE(986), + [sym_block_comment] = STATE(986), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1913), + [sym_identifier] = ACTIONS(1915), + [anon_sym_LF] = ACTIONS(1915), + [anon_sym_CR] = ACTIONS(1915), + [anon_sym_CR_LF] = ACTIONS(1915), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_COMMA] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1915), + [anon_sym_type] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_fn] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1915), + [anon_sym_BANG_EQ] = ACTIONS(1915), + [anon_sym_LT_EQ] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(1915), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_pub] = ACTIONS(1915), + [anon_sym_mut] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_interface] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1915), + [anon_sym_spawn] = ACTIONS(1915), + [anon_sym_json_DOTdecode] = ACTIONS(1915), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_LT_DASH] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_GT_GT_GT] = ACTIONS(1915), + [anon_sym_AMP_CARET] = ACTIONS(1915), + [anon_sym_AMP_AMP] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1915), + [anon_sym_or] = ACTIONS(1915), + [sym_none] = ACTIONS(1915), + [sym_true] = ACTIONS(1915), + [sym_false] = ACTIONS(1915), + [sym_nil] = ACTIONS(1915), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_DOLLARif] = ACTIONS(1915), + [anon_sym_is] = ACTIONS(1915), + [anon_sym_BANGis] = ACTIONS(1915), + [anon_sym_in] = ACTIONS(1915), + [anon_sym_BANGin] = ACTIONS(1915), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_select] = ACTIONS(1915), + [anon_sym_lock] = ACTIONS(1915), + [anon_sym_rlock] = ACTIONS(1915), + [anon_sym_unsafe] = ACTIONS(1915), + [anon_sym_sql] = ACTIONS(1915), + [sym_int_literal] = ACTIONS(1915), + [sym_float_literal] = ACTIONS(1915), + [sym_rune_literal] = ACTIONS(1915), + [sym_pseudo_compile_time_identifier] = ACTIONS(1915), + [anon_sym_shared] = ACTIONS(1915), + [anon_sym_map_LBRACK] = ACTIONS(1915), + [anon_sym_chan] = ACTIONS(1915), + [anon_sym_thread] = ACTIONS(1915), + [anon_sym_atomic] = ACTIONS(1915), + [anon_sym_assert] = ACTIONS(1915), + [anon_sym_defer] = ACTIONS(1915), + [anon_sym_goto] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_DOLLARfor] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(1915), + [anon_sym_asm] = ACTIONS(1915), + [anon_sym_AT_LBRACK] = ACTIONS(1915), + [sym___double_quote] = ACTIONS(1915), + [sym___single_quote] = ACTIONS(1915), + [sym___c_double_quote] = ACTIONS(1915), + [sym___c_single_quote] = ACTIONS(1915), + [sym___r_double_quote] = ACTIONS(1915), + [sym___r_single_quote] = ACTIONS(1915), }, [987] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_COMMA] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1933), - [anon_sym_type] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_fn] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_GT] = ACTIONS(3526), - [anon_sym_EQ_EQ] = ACTIONS(3526), - [anon_sym_BANG_EQ] = ACTIONS(3526), - [anon_sym_LT_EQ] = ACTIONS(3526), - [anon_sym_GT_EQ] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3528), - [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(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1933), - [anon_sym_spawn] = ACTIONS(1933), - [anon_sym_json_DOTdecode] = ACTIONS(1933), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1933), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(1933), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3542), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(1933), - [sym_true] = ACTIONS(1933), - [sym_false] = ACTIONS(1933), - [sym_nil] = ACTIONS(1933), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_DOLLARif] = ACTIONS(1933), - [anon_sym_is] = ACTIONS(3556), - [anon_sym_BANGis] = ACTIONS(3558), - [anon_sym_in] = ACTIONS(3550), - [anon_sym_BANGin] = ACTIONS(3552), - [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), + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_PERCENT] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(3518), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1879), + [anon_sym_GT_GT] = ACTIONS(1879), + [anon_sym_GT_GT_GT] = ACTIONS(1879), + [anon_sym_AMP_CARET] = ACTIONS(1879), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), }, [988] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [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(3528), - [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(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [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(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [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), + [sym_line_comment] = STATE(988), + [sym_block_comment] = STATE(988), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [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(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(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [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(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [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(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), }, [989] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_fn] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_GT] = ACTIONS(3526), - [anon_sym_EQ_EQ] = ACTIONS(3526), - [anon_sym_BANG_EQ] = ACTIONS(3526), - [anon_sym_LT_EQ] = ACTIONS(3526), - [anon_sym_GT_EQ] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3528), - [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(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1849), - [anon_sym_spawn] = ACTIONS(1849), - [anon_sym_json_DOTdecode] = ACTIONS(1849), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3542), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_nil] = ACTIONS(1849), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_DOLLARif] = ACTIONS(1849), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), - [anon_sym_in] = ACTIONS(3550), - [anon_sym_BANGin] = ACTIONS(3552), - [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), + [sym_line_comment] = STATE(989), + [sym_block_comment] = STATE(989), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(3518), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), }, [990] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_LF] = ACTIONS(1861), - [anon_sym_CR] = ACTIONS(1861), - [anon_sym_CR_LF] = ACTIONS(1861), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_COMMA] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_GT] = ACTIONS(3526), - [anon_sym_EQ_EQ] = ACTIONS(3526), - [anon_sym_BANG_EQ] = ACTIONS(3526), - [anon_sym_LT_EQ] = ACTIONS(3526), - [anon_sym_GT_EQ] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_union] = ACTIONS(1861), - [anon_sym_pub] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1861), - [anon_sym_spawn] = ACTIONS(1861), - [anon_sym_json_DOTdecode] = ACTIONS(1861), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3542), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_nil] = ACTIONS(1861), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_DOLLARif] = ACTIONS(1861), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), - [anon_sym_in] = ACTIONS(3550), - [anon_sym_BANGin] = ACTIONS(3552), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_select] = ACTIONS(1861), - [anon_sym_lock] = ACTIONS(1861), - [anon_sym_rlock] = ACTIONS(1861), - [anon_sym_unsafe] = ACTIONS(1861), - [anon_sym_sql] = ACTIONS(1861), - [sym_int_literal] = ACTIONS(1861), - [sym_float_literal] = ACTIONS(1861), - [sym_rune_literal] = ACTIONS(1861), - [sym_pseudo_compile_time_identifier] = ACTIONS(1861), - [anon_sym_shared] = ACTIONS(1861), - [anon_sym_map_LBRACK] = ACTIONS(1861), - [anon_sym_chan] = ACTIONS(1861), - [anon_sym_thread] = ACTIONS(1861), - [anon_sym_atomic] = ACTIONS(1861), - [anon_sym_assert] = ACTIONS(1861), - [anon_sym_defer] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_DOLLARfor] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(1861), - [anon_sym_asm] = ACTIONS(1861), - [anon_sym_AT_LBRACK] = ACTIONS(1861), - [sym___double_quote] = ACTIONS(1861), - [sym___single_quote] = ACTIONS(1861), - [sym___c_double_quote] = ACTIONS(1861), - [sym___c_single_quote] = ACTIONS(1861), - [sym___r_double_quote] = ACTIONS(1861), - [sym___r_single_quote] = ACTIONS(1861), + [sym_line_comment] = STATE(990), + [sym_block_comment] = STATE(990), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(3518), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), }, [991] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3560), - [sym_identifier] = ACTIONS(3562), - [anon_sym_LF] = ACTIONS(3562), - [anon_sym_CR] = ACTIONS(3562), - [anon_sym_CR_LF] = ACTIONS(3562), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_COMMA] = ACTIONS(3564), - [anon_sym_const] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(3562), - [anon_sym_type] = ACTIONS(3562), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_fn] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_STAR] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_GT] = ACTIONS(3526), - [anon_sym_EQ_EQ] = ACTIONS(3526), - [anon_sym_BANG_EQ] = ACTIONS(3526), - [anon_sym_LT_EQ] = ACTIONS(3526), - [anon_sym_GT_EQ] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(3562), - [anon_sym_union] = ACTIONS(3562), - [anon_sym_pub] = ACTIONS(3562), - [anon_sym_mut] = ACTIONS(3562), - [anon_sym_enum] = ACTIONS(3562), - [anon_sym_interface] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(3562), - [anon_sym_spawn] = ACTIONS(3562), - [anon_sym_json_DOTdecode] = ACTIONS(3562), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_CARET] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3562), - [anon_sym_LT_LT] = ACTIONS(3524), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_GT_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_CARET] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3542), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(3562), - [sym_true] = ACTIONS(3562), - [sym_false] = ACTIONS(3562), - [sym_nil] = ACTIONS(3562), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(3562), - [anon_sym_DOLLARif] = ACTIONS(3562), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), - [anon_sym_in] = ACTIONS(3550), - [anon_sym_BANGin] = ACTIONS(3552), - [anon_sym_match] = ACTIONS(3562), - [anon_sym_select] = ACTIONS(3562), - [anon_sym_lock] = ACTIONS(3562), - [anon_sym_rlock] = ACTIONS(3562), - [anon_sym_unsafe] = ACTIONS(3562), - [anon_sym_sql] = ACTIONS(3562), - [sym_int_literal] = ACTIONS(3562), - [sym_float_literal] = ACTIONS(3562), - [sym_rune_literal] = ACTIONS(3562), - [sym_pseudo_compile_time_identifier] = ACTIONS(3562), - [anon_sym_shared] = ACTIONS(3562), - [anon_sym_map_LBRACK] = ACTIONS(3562), - [anon_sym_chan] = ACTIONS(3562), - [anon_sym_thread] = ACTIONS(3562), - [anon_sym_atomic] = ACTIONS(3562), - [anon_sym_assert] = ACTIONS(3562), - [anon_sym_defer] = ACTIONS(3562), - [anon_sym_goto] = ACTIONS(3562), - [anon_sym_break] = ACTIONS(3562), - [anon_sym_continue] = ACTIONS(3562), - [anon_sym_return] = ACTIONS(3562), - [anon_sym_DOLLARfor] = ACTIONS(3562), - [anon_sym_for] = ACTIONS(3562), - [anon_sym_POUND] = ACTIONS(3562), - [anon_sym_asm] = ACTIONS(3562), - [anon_sym_AT_LBRACK] = ACTIONS(3562), - [sym___double_quote] = ACTIONS(3562), - [sym___single_quote] = ACTIONS(3562), - [sym___c_double_quote] = ACTIONS(3562), - [sym___c_single_quote] = ACTIONS(3562), - [sym___r_double_quote] = ACTIONS(3562), - [sym___r_single_quote] = ACTIONS(3562), + [sym_line_comment] = STATE(991), + [sym_block_comment] = STATE(991), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [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(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), }, [992] = { - [sym_else_branch] = STATE(1123), - [ts_builtin_sym_end] = ACTIONS(2633), - [sym_identifier] = ACTIONS(2635), - [anon_sym_LF] = ACTIONS(2635), - [anon_sym_CR] = ACTIONS(2635), - [anon_sym_CR_LF] = ACTIONS(2635), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2635), - [anon_sym_as] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym___global] = ACTIONS(2635), - [anon_sym_type] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_fn] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_SLASH] = ACTIONS(2635), - [anon_sym_PERCENT] = ACTIONS(2635), - [anon_sym_LT] = ACTIONS(2635), - [anon_sym_GT] = ACTIONS(2635), - [anon_sym_EQ_EQ] = ACTIONS(2635), - [anon_sym_BANG_EQ] = ACTIONS(2635), - [anon_sym_LT_EQ] = ACTIONS(2635), - [anon_sym_GT_EQ] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_pub] = ACTIONS(2635), - [anon_sym_mut] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_interface] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_QMARK] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_go] = ACTIONS(2635), - [anon_sym_spawn] = ACTIONS(2635), - [anon_sym_json_DOTdecode] = ACTIONS(2635), - [anon_sym_LBRACK2] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_LT_DASH] = ACTIONS(2635), - [anon_sym_LT_LT] = ACTIONS(2635), - [anon_sym_GT_GT] = ACTIONS(2635), - [anon_sym_GT_GT_GT] = ACTIONS(2635), - [anon_sym_AMP_CARET] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_PIPE_PIPE] = ACTIONS(2635), - [anon_sym_or] = ACTIONS(2635), - [sym_none] = ACTIONS(2635), - [sym_true] = ACTIONS(2635), - [sym_false] = ACTIONS(2635), - [sym_nil] = ACTIONS(2635), - [anon_sym_QMARK_DOT] = ACTIONS(2635), - [anon_sym_POUND_LBRACK] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(3566), - [anon_sym_DOLLARif] = ACTIONS(2635), - [anon_sym_is] = ACTIONS(2635), - [anon_sym_BANGis] = ACTIONS(2635), - [anon_sym_in] = ACTIONS(2635), - [anon_sym_BANGin] = ACTIONS(2635), - [anon_sym_match] = ACTIONS(2635), - [anon_sym_select] = ACTIONS(2635), - [anon_sym_lock] = ACTIONS(2635), - [anon_sym_rlock] = ACTIONS(2635), - [anon_sym_unsafe] = ACTIONS(2635), - [anon_sym_sql] = ACTIONS(2635), - [sym_int_literal] = ACTIONS(2635), - [sym_float_literal] = ACTIONS(2635), - [sym_rune_literal] = ACTIONS(2635), - [sym_pseudo_compile_time_identifier] = ACTIONS(2635), - [anon_sym_shared] = ACTIONS(2635), - [anon_sym_map_LBRACK] = ACTIONS(2635), - [anon_sym_chan] = ACTIONS(2635), - [anon_sym_thread] = ACTIONS(2635), - [anon_sym_atomic] = ACTIONS(2635), - [anon_sym_assert] = ACTIONS(2635), - [anon_sym_defer] = ACTIONS(2635), - [anon_sym_goto] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_DOLLARfor] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(2635), - [anon_sym_asm] = ACTIONS(2635), - [anon_sym_AT_LBRACK] = ACTIONS(2635), - [sym___double_quote] = ACTIONS(2635), - [sym___single_quote] = ACTIONS(2635), - [sym___c_double_quote] = ACTIONS(2635), - [sym___c_single_quote] = ACTIONS(2635), - [sym___r_double_quote] = ACTIONS(2635), - [sym___r_single_quote] = ACTIONS(2635), + [sym_line_comment] = STATE(992), + [sym_block_comment] = STATE(992), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [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(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), }, [993] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(3568), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_GT] = ACTIONS(3572), - [anon_sym_EQ_EQ] = ACTIONS(3572), - [anon_sym_BANG_EQ] = ACTIONS(3572), - [anon_sym_LT_EQ] = ACTIONS(3572), - [anon_sym_GT_EQ] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3528), - [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(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [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(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(3574), - [anon_sym_BANGin] = ACTIONS(3576), - [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), + [sym_line_comment] = STATE(993), + [sym_block_comment] = STATE(993), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1917), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_CR] = ACTIONS(1919), + [anon_sym_CR_LF] = ACTIONS(1919), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_COMMA] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1919), + [anon_sym_type] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_fn] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [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(1919), + [anon_sym_union] = ACTIONS(1919), + [anon_sym_pub] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_enum] = ACTIONS(1919), + [anon_sym_interface] = ACTIONS(1919), + [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(1919), + [anon_sym_spawn] = ACTIONS(1919), + [anon_sym_json_DOTdecode] = ACTIONS(1919), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1919), + [anon_sym_CARET] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1919), + [anon_sym_LT_LT] = ACTIONS(3504), + [anon_sym_GT_GT] = ACTIONS(3504), + [anon_sym_GT_GT_GT] = ACTIONS(3504), + [anon_sym_AMP_CARET] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_PIPE_PIPE] = ACTIONS(3532), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(1919), + [sym_true] = ACTIONS(1919), + [sym_false] = ACTIONS(1919), + [sym_nil] = ACTIONS(1919), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_DOLLARif] = ACTIONS(1919), + [anon_sym_is] = ACTIONS(3552), + [anon_sym_BANGis] = ACTIONS(3554), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_select] = ACTIONS(1919), + [anon_sym_lock] = ACTIONS(1919), + [anon_sym_rlock] = ACTIONS(1919), + [anon_sym_unsafe] = ACTIONS(1919), + [anon_sym_sql] = ACTIONS(1919), + [sym_int_literal] = ACTIONS(1919), + [sym_float_literal] = ACTIONS(1919), + [sym_rune_literal] = ACTIONS(1919), + [sym_pseudo_compile_time_identifier] = ACTIONS(1919), + [anon_sym_shared] = ACTIONS(1919), + [anon_sym_map_LBRACK] = ACTIONS(1919), + [anon_sym_chan] = ACTIONS(1919), + [anon_sym_thread] = ACTIONS(1919), + [anon_sym_atomic] = ACTIONS(1919), + [anon_sym_assert] = ACTIONS(1919), + [anon_sym_defer] = ACTIONS(1919), + [anon_sym_goto] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_DOLLARfor] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(1919), + [anon_sym_asm] = ACTIONS(1919), + [anon_sym_AT_LBRACK] = ACTIONS(1919), + [sym___double_quote] = ACTIONS(1919), + [sym___single_quote] = ACTIONS(1919), + [sym___c_double_quote] = ACTIONS(1919), + [sym___c_single_quote] = ACTIONS(1919), + [sym___r_double_quote] = ACTIONS(1919), + [sym___r_single_quote] = ACTIONS(1919), }, [994] = { - [sym_else_branch] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(2503), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LF] = ACTIONS(2505), - [anon_sym_CR] = ACTIONS(2505), - [anon_sym_CR_LF] = ACTIONS(2505), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_COMMA] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym___global] = ACTIONS(2505), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_fn] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), - [anon_sym_EQ_EQ] = ACTIONS(2505), - [anon_sym_BANG_EQ] = ACTIONS(2505), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2505), - [anon_sym_union] = ACTIONS(2505), - [anon_sym_pub] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_QMARK] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_go] = ACTIONS(2505), - [anon_sym_spawn] = ACTIONS(2505), - [anon_sym_json_DOTdecode] = ACTIONS(2505), - [anon_sym_LBRACK2] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_CARET] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_LT_DASH] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_GT_GT] = ACTIONS(2505), - [anon_sym_GT_GT_GT] = ACTIONS(2505), - [anon_sym_AMP_CARET] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_PIPE_PIPE] = ACTIONS(2505), - [anon_sym_or] = ACTIONS(2505), - [sym_none] = ACTIONS(2505), - [sym_true] = ACTIONS(2505), - [sym_false] = ACTIONS(2505), - [sym_nil] = ACTIONS(2505), - [anon_sym_QMARK_DOT] = ACTIONS(2505), - [anon_sym_POUND_LBRACK] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(3566), - [anon_sym_DOLLARif] = ACTIONS(2505), - [anon_sym_is] = ACTIONS(2505), - [anon_sym_BANGis] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [anon_sym_BANGin] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_select] = ACTIONS(2505), - [anon_sym_lock] = ACTIONS(2505), - [anon_sym_rlock] = ACTIONS(2505), - [anon_sym_unsafe] = ACTIONS(2505), - [anon_sym_sql] = ACTIONS(2505), - [sym_int_literal] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2505), - [sym_rune_literal] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(2505), - [anon_sym_shared] = ACTIONS(2505), - [anon_sym_map_LBRACK] = ACTIONS(2505), - [anon_sym_chan] = ACTIONS(2505), - [anon_sym_thread] = ACTIONS(2505), - [anon_sym_atomic] = ACTIONS(2505), - [anon_sym_assert] = ACTIONS(2505), - [anon_sym_defer] = ACTIONS(2505), - [anon_sym_goto] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_DOLLARfor] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2505), - [anon_sym_AT_LBRACK] = ACTIONS(2505), - [sym___double_quote] = ACTIONS(2505), - [sym___single_quote] = ACTIONS(2505), - [sym___c_double_quote] = ACTIONS(2505), - [sym___c_single_quote] = ACTIONS(2505), - [sym___r_double_quote] = ACTIONS(2505), - [sym___r_single_quote] = ACTIONS(2505), + [sym_line_comment] = STATE(994), + [sym_block_comment] = STATE(994), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_PIPE] = ACTIONS(3562), + [anon_sym_fn] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [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(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_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_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(3558), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [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_QMARK_DOT] = ACTIONS(3506), + [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), }, [995] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_LF] = ACTIONS(1861), - [anon_sym_CR] = ACTIONS(1861), - [anon_sym_CR_LF] = ACTIONS(1861), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(3568), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_GT] = ACTIONS(3572), - [anon_sym_EQ_EQ] = ACTIONS(3572), - [anon_sym_BANG_EQ] = ACTIONS(3572), - [anon_sym_LT_EQ] = ACTIONS(3572), - [anon_sym_GT_EQ] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_union] = ACTIONS(1861), - [anon_sym_pub] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1861), - [anon_sym_spawn] = ACTIONS(1861), - [anon_sym_json_DOTdecode] = ACTIONS(1861), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3578), - [anon_sym_PIPE_PIPE] = ACTIONS(3580), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_nil] = ACTIONS(1861), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_DOLLARif] = ACTIONS(1861), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), - [anon_sym_in] = ACTIONS(3574), - [anon_sym_BANGin] = ACTIONS(3576), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_select] = ACTIONS(1861), - [anon_sym_lock] = ACTIONS(1861), - [anon_sym_rlock] = ACTIONS(1861), - [anon_sym_unsafe] = ACTIONS(1861), - [anon_sym_sql] = ACTIONS(1861), - [sym_int_literal] = ACTIONS(1861), - [sym_float_literal] = ACTIONS(1861), - [sym_rune_literal] = ACTIONS(1861), - [sym_pseudo_compile_time_identifier] = ACTIONS(1861), - [anon_sym_shared] = ACTIONS(1861), - [anon_sym_map_LBRACK] = ACTIONS(1861), - [anon_sym_chan] = ACTIONS(1861), - [anon_sym_thread] = ACTIONS(1861), - [anon_sym_atomic] = ACTIONS(1861), - [anon_sym_assert] = ACTIONS(1861), - [anon_sym_defer] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_DOLLARfor] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(1861), - [anon_sym_asm] = ACTIONS(1861), - [anon_sym_AT_LBRACK] = ACTIONS(1861), - [sym___double_quote] = ACTIONS(1861), - [sym___single_quote] = ACTIONS(1861), - [sym___c_double_quote] = ACTIONS(1861), - [sym___c_single_quote] = ACTIONS(1861), - [sym___r_double_quote] = ACTIONS(1861), - [sym___r_single_quote] = ACTIONS(1861), + [sym_line_comment] = STATE(995), + [sym_block_comment] = STATE(995), + [sym_else_branch] = STATE(1084), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym___global] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_pub] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + [anon_sym_assert] = ACTIONS(2457), + [anon_sym_defer] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_DOLLARfor] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2457), + [anon_sym_asm] = ACTIONS(2457), + [anon_sym_AT_LBRACK] = ACTIONS(2457), + [sym___double_quote] = ACTIONS(2457), + [sym___single_quote] = ACTIONS(2457), + [sym___c_double_quote] = ACTIONS(2457), + [sym___c_single_quote] = ACTIONS(2457), + [sym___r_double_quote] = ACTIONS(2457), + [sym___r_single_quote] = ACTIONS(2457), }, [996] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3582), - [sym_identifier] = ACTIONS(3584), - [anon_sym_LF] = ACTIONS(3584), - [anon_sym_CR] = ACTIONS(3584), - [anon_sym_CR_LF] = ACTIONS(3584), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3584), - [anon_sym_const] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(3584), - [anon_sym_type] = ACTIONS(3584), - [anon_sym_PIPE] = ACTIONS(3568), - [anon_sym_fn] = ACTIONS(3584), - [anon_sym_PLUS] = ACTIONS(3584), - [anon_sym_DASH] = ACTIONS(3584), - [anon_sym_STAR] = ACTIONS(3584), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_GT] = ACTIONS(3572), - [anon_sym_EQ_EQ] = ACTIONS(3572), - [anon_sym_BANG_EQ] = ACTIONS(3572), - [anon_sym_LT_EQ] = ACTIONS(3572), - [anon_sym_GT_EQ] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(3584), - [anon_sym_union] = ACTIONS(3584), - [anon_sym_pub] = ACTIONS(3584), - [anon_sym_mut] = ACTIONS(3584), - [anon_sym_enum] = ACTIONS(3584), - [anon_sym_interface] = ACTIONS(3584), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(3584), - [anon_sym_spawn] = ACTIONS(3584), - [anon_sym_json_DOTdecode] = ACTIONS(3584), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(3584), - [anon_sym_CARET] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3584), - [anon_sym_LT_DASH] = ACTIONS(3584), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3578), - [anon_sym_PIPE_PIPE] = ACTIONS(3580), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(3584), - [sym_true] = ACTIONS(3584), - [sym_false] = ACTIONS(3584), - [sym_nil] = ACTIONS(3584), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(3584), - [anon_sym_DOLLARif] = ACTIONS(3584), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), - [anon_sym_in] = ACTIONS(3574), - [anon_sym_BANGin] = ACTIONS(3576), - [anon_sym_match] = ACTIONS(3584), - [anon_sym_select] = ACTIONS(3584), - [anon_sym_lock] = ACTIONS(3584), - [anon_sym_rlock] = ACTIONS(3584), - [anon_sym_unsafe] = ACTIONS(3584), - [anon_sym_sql] = ACTIONS(3584), - [sym_int_literal] = ACTIONS(3584), - [sym_float_literal] = ACTIONS(3584), - [sym_rune_literal] = ACTIONS(3584), - [sym_pseudo_compile_time_identifier] = ACTIONS(3584), - [anon_sym_shared] = ACTIONS(3584), - [anon_sym_map_LBRACK] = ACTIONS(3584), - [anon_sym_chan] = ACTIONS(3584), - [anon_sym_thread] = ACTIONS(3584), - [anon_sym_atomic] = ACTIONS(3584), - [anon_sym_assert] = ACTIONS(3584), - [anon_sym_defer] = ACTIONS(3584), - [anon_sym_goto] = ACTIONS(3584), - [anon_sym_break] = ACTIONS(3584), - [anon_sym_continue] = ACTIONS(3584), - [anon_sym_return] = ACTIONS(3584), - [anon_sym_DOLLARfor] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3584), - [anon_sym_POUND] = ACTIONS(3584), - [anon_sym_asm] = ACTIONS(3584), - [anon_sym_AT_LBRACK] = ACTIONS(3584), - [sym___double_quote] = ACTIONS(3584), - [sym___single_quote] = ACTIONS(3584), - [sym___c_double_quote] = ACTIONS(3584), - [sym___c_single_quote] = ACTIONS(3584), - [sym___r_double_quote] = ACTIONS(3584), - [sym___r_single_quote] = ACTIONS(3584), + [sym_line_comment] = STATE(996), + [sym_block_comment] = STATE(996), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(3562), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [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(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(3570), + [anon_sym_BANGin] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), }, [997] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(3568), - [anon_sym_fn] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_GT] = ACTIONS(3572), - [anon_sym_EQ_EQ] = ACTIONS(3572), - [anon_sym_BANG_EQ] = ACTIONS(3572), - [anon_sym_LT_EQ] = ACTIONS(3572), - [anon_sym_GT_EQ] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3528), - [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(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1849), - [anon_sym_spawn] = ACTIONS(1849), - [anon_sym_json_DOTdecode] = ACTIONS(1849), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3578), - [anon_sym_PIPE_PIPE] = ACTIONS(3580), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_nil] = ACTIONS(1849), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_DOLLARif] = ACTIONS(1849), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), - [anon_sym_in] = ACTIONS(3574), - [anon_sym_BANGin] = ACTIONS(3576), - [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), + [sym_line_comment] = STATE(997), + [sym_block_comment] = STATE(997), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(3562), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [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(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(3566), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(3570), + [anon_sym_BANGin] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), + }, + [998] = { + [sym_line_comment] = STATE(998), + [sym_block_comment] = STATE(998), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1873), + [sym_identifier] = ACTIONS(1875), + [anon_sym_LF] = ACTIONS(1875), + [anon_sym_CR] = ACTIONS(1875), + [anon_sym_CR_LF] = ACTIONS(1875), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1875), + [anon_sym_type] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(3562), + [anon_sym_fn] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_GT] = ACTIONS(1875), + [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(3518), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_pub] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_interface] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1875), + [anon_sym_spawn] = ACTIONS(1875), + [anon_sym_json_DOTdecode] = ACTIONS(1875), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(1875), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(1875), + [anon_sym_PIPE_PIPE] = ACTIONS(1875), + [anon_sym_or] = ACTIONS(1875), + [sym_none] = ACTIONS(1875), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [sym_nil] = ACTIONS(1875), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_DOLLARif] = ACTIONS(1875), + [anon_sym_is] = ACTIONS(1875), + [anon_sym_BANGis] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1875), + [anon_sym_BANGin] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_select] = ACTIONS(1875), + [anon_sym_lock] = ACTIONS(1875), + [anon_sym_rlock] = ACTIONS(1875), + [anon_sym_unsafe] = ACTIONS(1875), + [anon_sym_sql] = ACTIONS(1875), + [sym_int_literal] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1875), + [sym_rune_literal] = ACTIONS(1875), + [sym_pseudo_compile_time_identifier] = ACTIONS(1875), + [anon_sym_shared] = ACTIONS(1875), + [anon_sym_map_LBRACK] = ACTIONS(1875), + [anon_sym_chan] = ACTIONS(1875), + [anon_sym_thread] = ACTIONS(1875), + [anon_sym_atomic] = ACTIONS(1875), + [anon_sym_assert] = ACTIONS(1875), + [anon_sym_defer] = ACTIONS(1875), + [anon_sym_goto] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_DOLLARfor] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(1875), + [anon_sym_asm] = ACTIONS(1875), + [anon_sym_AT_LBRACK] = ACTIONS(1875), + [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), + }, + [999] = { + [sym_line_comment] = STATE(999), + [sym_block_comment] = STATE(999), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(3562), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [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_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [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_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [sym_none] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_nil] = ACTIONS(1871), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_DOLLARif] = ACTIONS(1871), + [anon_sym_is] = ACTIONS(1871), + [anon_sym_BANGis] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_BANGin] = ACTIONS(1871), + [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), + }, + [1000] = { + [sym_line_comment] = STATE(1000), + [sym_block_comment] = STATE(1000), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1929), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LF] = ACTIONS(1931), + [anon_sym_CR] = ACTIONS(1931), + [anon_sym_CR_LF] = ACTIONS(1931), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1931), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(3562), + [anon_sym_fn] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [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(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_pub] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_interface] = ACTIONS(1931), + [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(1931), + [anon_sym_spawn] = ACTIONS(1931), + [anon_sym_json_DOTdecode] = ACTIONS(1931), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1931), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(1931), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(3566), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_nil] = ACTIONS(1931), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_DOLLARif] = ACTIONS(1931), + [anon_sym_is] = ACTIONS(3536), + [anon_sym_BANGis] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3570), + [anon_sym_BANGin] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_select] = ACTIONS(1931), + [anon_sym_lock] = ACTIONS(1931), + [anon_sym_rlock] = ACTIONS(1931), + [anon_sym_unsafe] = ACTIONS(1931), + [anon_sym_sql] = ACTIONS(1931), + [sym_int_literal] = ACTIONS(1931), + [sym_float_literal] = ACTIONS(1931), + [sym_rune_literal] = ACTIONS(1931), + [sym_pseudo_compile_time_identifier] = ACTIONS(1931), + [anon_sym_shared] = ACTIONS(1931), + [anon_sym_map_LBRACK] = ACTIONS(1931), + [anon_sym_chan] = ACTIONS(1931), + [anon_sym_thread] = ACTIONS(1931), + [anon_sym_atomic] = ACTIONS(1931), + [anon_sym_assert] = ACTIONS(1931), + [anon_sym_defer] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_DOLLARfor] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(1931), + [anon_sym_asm] = ACTIONS(1931), + [anon_sym_AT_LBRACK] = ACTIONS(1931), + [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), + }, + [1001] = { + [sym_line_comment] = STATE(1001), + [sym_block_comment] = STATE(1001), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_const] = ACTIONS(3578), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(3578), + [anon_sym_type] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(3562), + [anon_sym_fn] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_STAR] = ACTIONS(3578), + [anon_sym_PERCENT] = ACTIONS(3560), + [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(3578), + [anon_sym_union] = ACTIONS(3578), + [anon_sym_pub] = ACTIONS(3578), + [anon_sym_mut] = ACTIONS(3578), + [anon_sym_enum] = ACTIONS(3578), + [anon_sym_interface] = ACTIONS(3578), + [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(3578), + [anon_sym_spawn] = ACTIONS(3578), + [anon_sym_json_DOTdecode] = ACTIONS(3578), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_CARET] = ACTIONS(3578), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_LT_DASH] = ACTIONS(3578), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(3566), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(3578), + [sym_true] = ACTIONS(3578), + [sym_false] = ACTIONS(3578), + [sym_nil] = ACTIONS(3578), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3578), + [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_match] = ACTIONS(3578), + [anon_sym_select] = ACTIONS(3578), + [anon_sym_lock] = ACTIONS(3578), + [anon_sym_rlock] = ACTIONS(3578), + [anon_sym_unsafe] = ACTIONS(3578), + [anon_sym_sql] = ACTIONS(3578), + [sym_int_literal] = ACTIONS(3578), + [sym_float_literal] = ACTIONS(3578), + [sym_rune_literal] = ACTIONS(3578), + [sym_pseudo_compile_time_identifier] = ACTIONS(3578), + [anon_sym_shared] = ACTIONS(3578), + [anon_sym_map_LBRACK] = ACTIONS(3578), + [anon_sym_chan] = ACTIONS(3578), + [anon_sym_thread] = ACTIONS(3578), + [anon_sym_atomic] = ACTIONS(3578), + [anon_sym_assert] = ACTIONS(3578), + [anon_sym_defer] = ACTIONS(3578), + [anon_sym_goto] = ACTIONS(3578), + [anon_sym_break] = ACTIONS(3578), + [anon_sym_continue] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_DOLLARfor] = ACTIONS(3578), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_POUND] = ACTIONS(3578), + [anon_sym_asm] = ACTIONS(3578), + [anon_sym_AT_LBRACK] = ACTIONS(3578), + [sym___double_quote] = ACTIONS(3578), + [sym___single_quote] = ACTIONS(3578), + [sym___c_double_quote] = ACTIONS(3578), + [sym___c_single_quote] = ACTIONS(3578), + [sym___r_double_quote] = ACTIONS(3578), + [sym___r_single_quote] = ACTIONS(3578), + }, + [1002] = { + [sym_line_comment] = STATE(1002), + [sym_block_comment] = STATE(1002), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(3562), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(3518), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), + }, + [1003] = { + [sym_line_comment] = STATE(1003), + [sym_block_comment] = STATE(1003), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_PIPE] = ACTIONS(3562), + [anon_sym_fn] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [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(3582), + [anon_sym_union] = ACTIONS(3582), + [anon_sym_pub] = ACTIONS(3582), + [anon_sym_mut] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [anon_sym_interface] = ACTIONS(3582), + [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(3582), + [anon_sym_spawn] = ACTIONS(3582), + [anon_sym_json_DOTdecode] = ACTIONS(3582), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(3582), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(3566), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(3582), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [sym_nil] = ACTIONS(3582), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3582), + [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_match] = ACTIONS(3582), + [anon_sym_select] = ACTIONS(3582), + [anon_sym_lock] = ACTIONS(3582), + [anon_sym_rlock] = ACTIONS(3582), + [anon_sym_unsafe] = ACTIONS(3582), + [anon_sym_sql] = ACTIONS(3582), + [sym_int_literal] = ACTIONS(3582), + [sym_float_literal] = ACTIONS(3582), + [sym_rune_literal] = ACTIONS(3582), + [sym_pseudo_compile_time_identifier] = ACTIONS(3582), + [anon_sym_shared] = ACTIONS(3582), + [anon_sym_map_LBRACK] = ACTIONS(3582), + [anon_sym_chan] = ACTIONS(3582), + [anon_sym_thread] = ACTIONS(3582), + [anon_sym_atomic] = ACTIONS(3582), + [anon_sym_assert] = ACTIONS(3582), + [anon_sym_defer] = ACTIONS(3582), + [anon_sym_goto] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_DOLLARfor] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_POUND] = ACTIONS(3582), + [anon_sym_asm] = ACTIONS(3582), + [anon_sym_AT_LBRACK] = ACTIONS(3582), + [sym___double_quote] = ACTIONS(3582), + [sym___single_quote] = ACTIONS(3582), + [sym___c_double_quote] = ACTIONS(3582), + [sym___c_single_quote] = ACTIONS(3582), + [sym___r_double_quote] = ACTIONS(3582), + [sym___r_single_quote] = ACTIONS(3582), + }, + [1004] = { + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), + [sym_else_branch] = STATE(1073), + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2449), + [anon_sym_LF] = ACTIONS(2449), + [anon_sym_CR] = ACTIONS(2449), + [anon_sym_CR_LF] = ACTIONS(2449), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym___global] = ACTIONS(2449), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_union] = ACTIONS(2449), + [anon_sym_pub] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_interface] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [anon_sym_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2449), + [anon_sym_go] = ACTIONS(2449), + [anon_sym_spawn] = ACTIONS(2449), + [anon_sym_json_DOTdecode] = ACTIONS(2449), + [anon_sym_LBRACK2] = ACTIONS(2449), + [anon_sym_TILDE] = ACTIONS(2449), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_LT_DASH] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2449), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_AMP_CARET] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_or] = ACTIONS(2449), + [sym_none] = ACTIONS(2449), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_nil] = ACTIONS(2449), + [anon_sym_QMARK_DOT] = ACTIONS(2449), + [anon_sym_POUND_LBRACK] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_DOLLARif] = ACTIONS(2449), + [anon_sym_is] = ACTIONS(2449), + [anon_sym_BANGis] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_BANGin] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_select] = ACTIONS(2449), + [anon_sym_lock] = ACTIONS(2449), + [anon_sym_rlock] = ACTIONS(2449), + [anon_sym_unsafe] = ACTIONS(2449), + [anon_sym_sql] = ACTIONS(2449), + [sym_int_literal] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2449), + [sym_rune_literal] = ACTIONS(2449), + [sym_pseudo_compile_time_identifier] = ACTIONS(2449), + [anon_sym_shared] = ACTIONS(2449), + [anon_sym_map_LBRACK] = ACTIONS(2449), + [anon_sym_chan] = ACTIONS(2449), + [anon_sym_thread] = ACTIONS(2449), + [anon_sym_atomic] = ACTIONS(2449), + [anon_sym_assert] = ACTIONS(2449), + [anon_sym_defer] = ACTIONS(2449), + [anon_sym_goto] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_DOLLARfor] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2449), + [anon_sym_asm] = ACTIONS(2449), + [anon_sym_AT_LBRACK] = ACTIONS(2449), + [sym___double_quote] = ACTIONS(2449), + [sym___single_quote] = ACTIONS(2449), + [sym___c_double_quote] = ACTIONS(2449), + [sym___c_single_quote] = ACTIONS(2449), + [sym___r_double_quote] = ACTIONS(2449), + [sym___r_single_quote] = ACTIONS(2449), + }, + [1005] = { + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1935), + [sym_identifier] = ACTIONS(1937), + [anon_sym_LF] = ACTIONS(1937), + [anon_sym_CR] = ACTIONS(1937), + [anon_sym_CR_LF] = ACTIONS(1937), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1937), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_PIPE] = ACTIONS(3562), + [anon_sym_fn] = ACTIONS(1937), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [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(1937), + [anon_sym_union] = ACTIONS(1937), + [anon_sym_pub] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_enum] = ACTIONS(1937), + [anon_sym_interface] = ACTIONS(1937), + [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(1937), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1937), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1937), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(1937), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(3566), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(1937), + [sym_true] = ACTIONS(1937), + [sym_false] = ACTIONS(1937), + [sym_nil] = ACTIONS(1937), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_DOLLARif] = ACTIONS(1937), + [anon_sym_is] = ACTIONS(3536), + [anon_sym_BANGis] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3570), + [anon_sym_BANGin] = ACTIONS(3572), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_select] = ACTIONS(1937), + [anon_sym_lock] = ACTIONS(1937), + [anon_sym_rlock] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_sql] = ACTIONS(1937), + [sym_int_literal] = ACTIONS(1937), + [sym_float_literal] = ACTIONS(1937), + [sym_rune_literal] = ACTIONS(1937), + [sym_pseudo_compile_time_identifier] = ACTIONS(1937), + [anon_sym_shared] = ACTIONS(1937), + [anon_sym_map_LBRACK] = ACTIONS(1937), + [anon_sym_chan] = ACTIONS(1937), + [anon_sym_thread] = ACTIONS(1937), + [anon_sym_atomic] = ACTIONS(1937), + [anon_sym_assert] = ACTIONS(1937), + [anon_sym_defer] = ACTIONS(1937), + [anon_sym_goto] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_DOLLARfor] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_POUND] = ACTIONS(1937), + [anon_sym_asm] = ACTIONS(1937), + [anon_sym_AT_LBRACK] = ACTIONS(1937), + [sym___double_quote] = ACTIONS(1937), + [sym___single_quote] = ACTIONS(1937), + [sym___c_double_quote] = ACTIONS(1937), + [sym___c_single_quote] = ACTIONS(1937), + [sym___r_double_quote] = ACTIONS(1937), + [sym___r_single_quote] = ACTIONS(1937), + }, + [1006] = { + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_const] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(3586), + [anon_sym_type] = ACTIONS(3586), + [anon_sym_PIPE] = ACTIONS(3562), + [anon_sym_fn] = ACTIONS(3586), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [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(3586), + [anon_sym_union] = ACTIONS(3586), + [anon_sym_pub] = ACTIONS(3586), + [anon_sym_mut] = ACTIONS(3586), + [anon_sym_enum] = ACTIONS(3586), + [anon_sym_interface] = ACTIONS(3586), + [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(3586), + [anon_sym_spawn] = ACTIONS(3586), + [anon_sym_json_DOTdecode] = ACTIONS(3586), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3586), + [anon_sym_CARET] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(3586), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(3566), + [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(3586), + [sym_true] = ACTIONS(3586), + [sym_false] = ACTIONS(3586), + [sym_nil] = ACTIONS(3586), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3586), + [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_match] = ACTIONS(3586), + [anon_sym_select] = ACTIONS(3586), + [anon_sym_lock] = ACTIONS(3586), + [anon_sym_rlock] = ACTIONS(3586), + [anon_sym_unsafe] = ACTIONS(3586), + [anon_sym_sql] = ACTIONS(3586), + [sym_int_literal] = ACTIONS(3586), + [sym_float_literal] = ACTIONS(3586), + [sym_rune_literal] = ACTIONS(3586), + [sym_pseudo_compile_time_identifier] = ACTIONS(3586), + [anon_sym_shared] = ACTIONS(3586), + [anon_sym_map_LBRACK] = ACTIONS(3586), + [anon_sym_chan] = ACTIONS(3586), + [anon_sym_thread] = ACTIONS(3586), + [anon_sym_atomic] = ACTIONS(3586), + [anon_sym_assert] = ACTIONS(3586), + [anon_sym_defer] = ACTIONS(3586), + [anon_sym_goto] = ACTIONS(3586), + [anon_sym_break] = ACTIONS(3586), + [anon_sym_continue] = ACTIONS(3586), + [anon_sym_return] = ACTIONS(3586), + [anon_sym_DOLLARfor] = ACTIONS(3586), + [anon_sym_for] = ACTIONS(3586), + [anon_sym_POUND] = ACTIONS(3586), + [anon_sym_asm] = ACTIONS(3586), + [anon_sym_AT_LBRACK] = ACTIONS(3586), + [sym___double_quote] = ACTIONS(3586), + [sym___single_quote] = ACTIONS(3586), + [sym___c_double_quote] = ACTIONS(3586), + [sym___c_single_quote] = ACTIONS(3586), + [sym___r_double_quote] = ACTIONS(3586), + [sym___r_single_quote] = ACTIONS(3586), + }, + [1007] = { + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [sym_type_parameters] = STATE(4344), + [sym_argument_list] = STATE(1054), + [sym_or_block] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(3518), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3560), + [anon_sym_GT_GT] = ACTIONS(3560), + [anon_sym_GT_GT_GT] = ACTIONS(3560), + [anon_sym_AMP_CARET] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3506), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [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), }, - [998] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3586), + [1008] = { + [sym_line_comment] = STATE(1008), + [sym_block_comment] = STATE(1008), + [sym_reference_expression] = STATE(4450), + [sym_type_reference_expression] = STATE(1300), + [sym_plain_type] = STATE(1423), + [sym__plain_type_without_special] = STATE(1358), + [sym_anon_struct_type] = STATE(1373), + [sym_multi_return_type] = STATE(1358), + [sym_result_type] = STATE(1358), + [sym_option_type] = STATE(1358), + [sym_qualified_type] = STATE(1300), + [sym_fixed_array_type] = STATE(1373), + [sym_array_type] = STATE(1373), + [sym_pointer_type] = STATE(1373), + [sym_wrong_pointer_type] = STATE(1373), + [sym_map_type] = STATE(1373), + [sym_channel_type] = STATE(1373), + [sym_shared_type] = STATE(1373), + [sym_thread_type] = STATE(1373), + [sym_atomic_type] = STATE(1373), + [sym_generic_type] = STATE(1373), + [sym_function_type] = STATE(1373), [sym_identifier] = ACTIONS(3588), - [anon_sym_LF] = ACTIONS(3588), - [anon_sym_CR] = ACTIONS(3588), - [anon_sym_CR_LF] = ACTIONS(3588), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3588), - [anon_sym_const] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(3588), - [anon_sym_type] = ACTIONS(3588), - [anon_sym_PIPE] = ACTIONS(3568), - [anon_sym_fn] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_GT] = ACTIONS(3572), - [anon_sym_EQ_EQ] = ACTIONS(3572), - [anon_sym_BANG_EQ] = ACTIONS(3572), - [anon_sym_LT_EQ] = ACTIONS(3572), - [anon_sym_GT_EQ] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(3588), - [anon_sym_union] = ACTIONS(3588), - [anon_sym_pub] = ACTIONS(3588), - [anon_sym_mut] = ACTIONS(3588), - [anon_sym_enum] = ACTIONS(3588), - [anon_sym_interface] = ACTIONS(3588), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(3588), - [anon_sym_spawn] = ACTIONS(3588), - [anon_sym_json_DOTdecode] = ACTIONS(3588), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(3588), - [anon_sym_CARET] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3588), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3578), - [anon_sym_PIPE_PIPE] = ACTIONS(3580), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(3588), - [sym_true] = ACTIONS(3588), - [sym_false] = ACTIONS(3588), - [sym_nil] = ACTIONS(3588), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_DOLLARif] = ACTIONS(3588), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), - [anon_sym_in] = ACTIONS(3574), - [anon_sym_BANGin] = ACTIONS(3576), - [anon_sym_match] = ACTIONS(3588), - [anon_sym_select] = ACTIONS(3588), - [anon_sym_lock] = ACTIONS(3588), - [anon_sym_rlock] = ACTIONS(3588), - [anon_sym_unsafe] = ACTIONS(3588), - [anon_sym_sql] = ACTIONS(3588), - [sym_int_literal] = ACTIONS(3588), - [sym_float_literal] = ACTIONS(3588), - [sym_rune_literal] = ACTIONS(3588), - [sym_pseudo_compile_time_identifier] = ACTIONS(3588), - [anon_sym_shared] = ACTIONS(3588), - [anon_sym_map_LBRACK] = ACTIONS(3588), - [anon_sym_chan] = ACTIONS(3588), - [anon_sym_thread] = ACTIONS(3588), - [anon_sym_atomic] = ACTIONS(3588), - [anon_sym_assert] = ACTIONS(3588), - [anon_sym_defer] = ACTIONS(3588), - [anon_sym_goto] = ACTIONS(3588), - [anon_sym_break] = ACTIONS(3588), - [anon_sym_continue] = ACTIONS(3588), - [anon_sym_return] = ACTIONS(3588), - [anon_sym_DOLLARfor] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3588), - [anon_sym_POUND] = ACTIONS(3588), - [anon_sym_asm] = ACTIONS(3588), - [anon_sym_AT_LBRACK] = ACTIONS(3588), - [sym___double_quote] = ACTIONS(3588), - [sym___single_quote] = ACTIONS(3588), - [sym___c_double_quote] = ACTIONS(3588), - [sym___c_single_quote] = ACTIONS(3588), - [sym___r_double_quote] = ACTIONS(3588), - [sym___r_single_quote] = ACTIONS(3588), - }, - [999] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3590), - [sym_identifier] = ACTIONS(3592), - [anon_sym_LF] = ACTIONS(3592), - [anon_sym_CR] = ACTIONS(3592), - [anon_sym_CR_LF] = ACTIONS(3592), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3592), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(3592), - [anon_sym_type] = ACTIONS(3592), - [anon_sym_PIPE] = ACTIONS(3568), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_as] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_PIPE] = ACTIONS(571), [anon_sym_fn] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_GT] = ACTIONS(3572), - [anon_sym_EQ_EQ] = ACTIONS(3572), - [anon_sym_BANG_EQ] = ACTIONS(3572), - [anon_sym_LT_EQ] = ACTIONS(3572), - [anon_sym_GT_EQ] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(3592), - [anon_sym_union] = ACTIONS(3592), - [anon_sym_pub] = ACTIONS(3592), - [anon_sym_mut] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), - [anon_sym_interface] = ACTIONS(3592), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(3592), - [anon_sym_spawn] = ACTIONS(3592), - [anon_sym_json_DOTdecode] = ACTIONS(3592), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(3592), - [anon_sym_CARET] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3592), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3578), - [anon_sym_PIPE_PIPE] = ACTIONS(3580), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(3592), - [sym_true] = ACTIONS(3592), - [sym_false] = ACTIONS(3592), - [sym_nil] = ACTIONS(3592), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(3592), - [anon_sym_DOLLARif] = ACTIONS(3592), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), - [anon_sym_in] = ACTIONS(3574), - [anon_sym_BANGin] = ACTIONS(3576), - [anon_sym_match] = ACTIONS(3592), - [anon_sym_select] = ACTIONS(3592), - [anon_sym_lock] = ACTIONS(3592), - [anon_sym_rlock] = ACTIONS(3592), - [anon_sym_unsafe] = ACTIONS(3592), - [anon_sym_sql] = ACTIONS(3592), - [sym_int_literal] = ACTIONS(3592), - [sym_float_literal] = ACTIONS(3592), - [sym_rune_literal] = ACTIONS(3592), - [sym_pseudo_compile_time_identifier] = ACTIONS(3592), - [anon_sym_shared] = ACTIONS(3592), - [anon_sym_map_LBRACK] = ACTIONS(3592), - [anon_sym_chan] = ACTIONS(3592), - [anon_sym_thread] = ACTIONS(3592), - [anon_sym_atomic] = ACTIONS(3592), - [anon_sym_assert] = ACTIONS(3592), - [anon_sym_defer] = ACTIONS(3592), - [anon_sym_goto] = ACTIONS(3592), - [anon_sym_break] = ACTIONS(3592), - [anon_sym_continue] = ACTIONS(3592), - [anon_sym_return] = ACTIONS(3592), - [anon_sym_DOLLARfor] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3592), - [anon_sym_POUND] = ACTIONS(3592), - [anon_sym_asm] = ACTIONS(3592), - [anon_sym_AT_LBRACK] = ACTIONS(3592), - [sym___double_quote] = ACTIONS(3592), - [sym___single_quote] = ACTIONS(3592), - [sym___c_double_quote] = ACTIONS(3592), - [sym___c_single_quote] = ACTIONS(3592), - [sym___r_double_quote] = ACTIONS(3592), - [sym___r_single_quote] = ACTIONS(3592), - }, - [1000] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [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(3528), - [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(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [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(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [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), - }, - [1001] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(3568), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [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(3528), - [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(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [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(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [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_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3594), - [sym_identifier] = ACTIONS(3596), - [anon_sym_LF] = ACTIONS(3596), - [anon_sym_CR] = ACTIONS(3596), - [anon_sym_CR_LF] = ACTIONS(3596), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(3596), - [anon_sym_type] = ACTIONS(3596), - [anon_sym_PIPE] = ACTIONS(3568), - [anon_sym_fn] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_GT] = ACTIONS(3572), - [anon_sym_EQ_EQ] = ACTIONS(3572), - [anon_sym_BANG_EQ] = ACTIONS(3572), - [anon_sym_LT_EQ] = ACTIONS(3572), - [anon_sym_GT_EQ] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(3594), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [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(567), + [anon_sym_RBRACK] = ACTIONS(567), [anon_sym_struct] = ACTIONS(3596), - [anon_sym_union] = ACTIONS(3596), - [anon_sym_pub] = ACTIONS(3596), - [anon_sym_mut] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), - [anon_sym_interface] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(3596), - [anon_sym_spawn] = ACTIONS(3596), - [anon_sym_json_DOTdecode] = ACTIONS(3596), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(3596), - [anon_sym_CARET] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3578), - [anon_sym_PIPE_PIPE] = ACTIONS(3580), - [anon_sym_or] = ACTIONS(3544), - [sym_none] = ACTIONS(3596), - [sym_true] = ACTIONS(3596), - [sym_false] = ACTIONS(3596), - [sym_nil] = ACTIONS(3596), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(3596), - [anon_sym_DOLLARif] = ACTIONS(3596), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), - [anon_sym_in] = ACTIONS(3574), - [anon_sym_BANGin] = ACTIONS(3576), - [anon_sym_match] = ACTIONS(3596), - [anon_sym_select] = ACTIONS(3596), - [anon_sym_lock] = ACTIONS(3596), - [anon_sym_rlock] = ACTIONS(3596), - [anon_sym_unsafe] = ACTIONS(3596), - [anon_sym_sql] = ACTIONS(3596), - [sym_int_literal] = ACTIONS(3596), - [sym_float_literal] = ACTIONS(3596), - [sym_rune_literal] = ACTIONS(3596), - [sym_pseudo_compile_time_identifier] = ACTIONS(3596), - [anon_sym_shared] = ACTIONS(3596), - [anon_sym_map_LBRACK] = ACTIONS(3596), - [anon_sym_chan] = ACTIONS(3596), - [anon_sym_thread] = ACTIONS(3596), - [anon_sym_atomic] = ACTIONS(3596), - [anon_sym_assert] = ACTIONS(3596), - [anon_sym_defer] = ACTIONS(3596), - [anon_sym_goto] = ACTIONS(3596), - [anon_sym_break] = ACTIONS(3596), - [anon_sym_continue] = ACTIONS(3596), - [anon_sym_return] = ACTIONS(3596), - [anon_sym_DOLLARfor] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3596), - [anon_sym_POUND] = ACTIONS(3596), - [anon_sym_asm] = ACTIONS(3596), - [anon_sym_AT_LBRACK] = ACTIONS(3596), - [sym___double_quote] = ACTIONS(3596), - [sym___single_quote] = ACTIONS(3596), - [sym___c_double_quote] = ACTIONS(3596), - [sym___c_single_quote] = ACTIONS(3596), - [sym___r_double_quote] = ACTIONS(3596), - [sym___r_single_quote] = ACTIONS(3596), - }, - [1003] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2065), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LF] = ACTIONS(2067), - [anon_sym_CR] = ACTIONS(2067), - [anon_sym_CR_LF] = ACTIONS(2067), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(3568), - [anon_sym_fn] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(2067), - [anon_sym_union] = ACTIONS(2067), - [anon_sym_pub] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(2067), - [anon_sym_spawn] = ACTIONS(2067), - [anon_sym_json_DOTdecode] = ACTIONS(2067), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_or] = ACTIONS(2067), - [sym_none] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_nil] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_DOLLARif] = ACTIONS(2067), - [anon_sym_is] = ACTIONS(2067), - [anon_sym_BANGis] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_BANGin] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_select] = ACTIONS(2067), - [anon_sym_lock] = ACTIONS(2067), - [anon_sym_rlock] = ACTIONS(2067), - [anon_sym_unsafe] = ACTIONS(2067), - [anon_sym_sql] = ACTIONS(2067), - [sym_int_literal] = ACTIONS(2067), - [sym_float_literal] = ACTIONS(2067), - [sym_rune_literal] = ACTIONS(2067), - [sym_pseudo_compile_time_identifier] = ACTIONS(2067), - [anon_sym_shared] = ACTIONS(2067), - [anon_sym_map_LBRACK] = ACTIONS(2067), - [anon_sym_chan] = ACTIONS(2067), - [anon_sym_thread] = ACTIONS(2067), - [anon_sym_atomic] = ACTIONS(2067), - [anon_sym_assert] = ACTIONS(2067), - [anon_sym_defer] = ACTIONS(2067), - [anon_sym_goto] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_DOLLARfor] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(2067), - [anon_sym_asm] = ACTIONS(2067), - [anon_sym_AT_LBRACK] = ACTIONS(2067), - [sym___double_quote] = ACTIONS(2067), - [sym___single_quote] = ACTIONS(2067), - [sym___c_double_quote] = ACTIONS(2067), - [sym___c_single_quote] = ACTIONS(2067), - [sym___r_double_quote] = ACTIONS(2067), - [sym___r_single_quote] = ACTIONS(2067), - }, - [1004] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(3568), - [anon_sym_fn] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_GT] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1865), - [anon_sym_BANG_EQ] = ACTIONS(1865), - [anon_sym_LT_EQ] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(3528), - [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(1865), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1865), - [anon_sym_spawn] = ACTIONS(1865), - [anon_sym_json_DOTdecode] = ACTIONS(1865), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_PIPE_PIPE] = ACTIONS(1865), - [anon_sym_or] = ACTIONS(1865), - [sym_none] = ACTIONS(1865), - [sym_true] = ACTIONS(1865), - [sym_false] = ACTIONS(1865), - [sym_nil] = ACTIONS(1865), - [anon_sym_QMARK_DOT] = ACTIONS(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1865), - [anon_sym_is] = ACTIONS(1865), - [anon_sym_BANGis] = ACTIONS(1865), - [anon_sym_in] = ACTIONS(1865), - [anon_sym_BANGin] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_select] = ACTIONS(1865), - [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), - }, - [1005] = { - [sym_type_parameters] = STATE(4230), - [sym_argument_list] = STATE(1033), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(3568), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_GT] = ACTIONS(3572), - [anon_sym_EQ_EQ] = ACTIONS(3572), - [anon_sym_BANG_EQ] = ACTIONS(3572), - [anon_sym_LT_EQ] = ACTIONS(3572), - [anon_sym_GT_EQ] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3528), - [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(3534), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3570), - [anon_sym_GT_GT] = ACTIONS(3570), - [anon_sym_GT_GT_GT] = ACTIONS(3570), - [anon_sym_AMP_CARET] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3578), - [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(3514), - [anon_sym_POUND_LBRACK] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(3574), - [anon_sym_BANGin] = ACTIONS(3576), - [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), - }, - [1006] = { - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_identifier] = ACTIONS(2873), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_CR] = ACTIONS(2873), - [anon_sym_CR_LF] = ACTIONS(2873), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2873), - [anon_sym_as] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_COMMA] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym___global] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_fn] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2873), - [anon_sym_PERCENT] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_GT] = ACTIONS(2873), - [anon_sym_EQ_EQ] = ACTIONS(2873), - [anon_sym_BANG_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2873), - [anon_sym_GT_EQ] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [anon_sym_pub] = ACTIONS(2873), - [anon_sym_mut] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_interface] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_QMARK] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_go] = ACTIONS(2873), - [anon_sym_spawn] = ACTIONS(2873), - [anon_sym_json_DOTdecode] = ACTIONS(2873), - [anon_sym_LBRACK2] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_CARET] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_LT_DASH] = ACTIONS(2873), - [anon_sym_LT_LT] = ACTIONS(2873), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_GT_GT_GT] = ACTIONS(2873), - [anon_sym_AMP_CARET] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [anon_sym_or] = ACTIONS(2873), - [sym_none] = ACTIONS(2873), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [sym_nil] = ACTIONS(2873), - [anon_sym_QMARK_DOT] = ACTIONS(2873), - [anon_sym_POUND_LBRACK] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_DOLLARif] = ACTIONS(2873), - [anon_sym_DOLLARelse] = ACTIONS(3598), - [anon_sym_is] = ACTIONS(2873), - [anon_sym_BANGis] = ACTIONS(2873), - [anon_sym_in] = ACTIONS(2873), - [anon_sym_BANGin] = ACTIONS(2873), - [anon_sym_match] = ACTIONS(2873), - [anon_sym_select] = ACTIONS(2873), - [anon_sym_lock] = ACTIONS(2873), - [anon_sym_rlock] = ACTIONS(2873), - [anon_sym_unsafe] = ACTIONS(2873), - [anon_sym_sql] = ACTIONS(2873), - [sym_int_literal] = ACTIONS(2873), - [sym_float_literal] = ACTIONS(2873), - [sym_rune_literal] = ACTIONS(2873), - [sym_pseudo_compile_time_identifier] = ACTIONS(2873), - [anon_sym_shared] = ACTIONS(2873), - [anon_sym_map_LBRACK] = ACTIONS(2873), - [anon_sym_chan] = ACTIONS(2873), - [anon_sym_thread] = ACTIONS(2873), - [anon_sym_atomic] = ACTIONS(2873), - [anon_sym_assert] = ACTIONS(2873), - [anon_sym_defer] = ACTIONS(2873), - [anon_sym_goto] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_DOLLARfor] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_POUND] = ACTIONS(2873), - [anon_sym_asm] = ACTIONS(2873), - [anon_sym_AT_LBRACK] = ACTIONS(2873), - [sym___double_quote] = ACTIONS(2873), - [sym___single_quote] = ACTIONS(2873), - [sym___c_double_quote] = ACTIONS(2873), - [sym___c_single_quote] = ACTIONS(2873), - [sym___r_double_quote] = ACTIONS(2873), - [sym___r_single_quote] = ACTIONS(2873), - }, - [1007] = { - [ts_builtin_sym_end] = ACTIONS(2683), - [sym_identifier] = ACTIONS(2685), - [anon_sym_LF] = ACTIONS(2685), - [anon_sym_CR] = ACTIONS(2685), - [anon_sym_CR_LF] = ACTIONS(2685), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2685), - [anon_sym_as] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_COMMA] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym___global] = ACTIONS(2685), - [anon_sym_type] = ACTIONS(2685), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_fn] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_SLASH] = ACTIONS(2685), - [anon_sym_PERCENT] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_pub] = ACTIONS(2685), - [anon_sym_mut] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_interface] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_QMARK] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_go] = ACTIONS(2685), - [anon_sym_spawn] = ACTIONS(2685), - [anon_sym_json_DOTdecode] = ACTIONS(2685), - [anon_sym_LBRACK2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_LT_DASH] = ACTIONS(2685), - [anon_sym_LT_LT] = ACTIONS(2685), - [anon_sym_GT_GT] = ACTIONS(2685), - [anon_sym_GT_GT_GT] = ACTIONS(2685), - [anon_sym_AMP_CARET] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_PIPE_PIPE] = ACTIONS(2685), - [anon_sym_or] = ACTIONS(2685), - [sym_none] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nil] = ACTIONS(2685), - [anon_sym_QMARK_DOT] = ACTIONS(2685), - [anon_sym_POUND_LBRACK] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_else] = ACTIONS(2685), - [anon_sym_DOLLARif] = ACTIONS(2685), - [anon_sym_is] = ACTIONS(2685), - [anon_sym_BANGis] = ACTIONS(2685), - [anon_sym_in] = ACTIONS(2685), - [anon_sym_BANGin] = ACTIONS(2685), - [anon_sym_match] = ACTIONS(2685), - [anon_sym_select] = ACTIONS(2685), - [anon_sym_lock] = ACTIONS(2685), - [anon_sym_rlock] = ACTIONS(2685), - [anon_sym_unsafe] = ACTIONS(2685), - [anon_sym_sql] = ACTIONS(2685), - [sym_int_literal] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2685), - [sym_rune_literal] = ACTIONS(2685), - [sym_pseudo_compile_time_identifier] = ACTIONS(2685), - [anon_sym_shared] = ACTIONS(2685), - [anon_sym_map_LBRACK] = ACTIONS(2685), - [anon_sym_chan] = ACTIONS(2685), - [anon_sym_thread] = ACTIONS(2685), - [anon_sym_atomic] = ACTIONS(2685), - [anon_sym_assert] = ACTIONS(2685), - [anon_sym_defer] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_DOLLARfor] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_POUND] = ACTIONS(2685), - [anon_sym_asm] = ACTIONS(2685), - [anon_sym_AT_LBRACK] = ACTIONS(2685), - [sym___double_quote] = ACTIONS(2685), - [sym___single_quote] = ACTIONS(2685), - [sym___c_double_quote] = ACTIONS(2685), - [sym___c_single_quote] = ACTIONS(2685), - [sym___r_double_quote] = ACTIONS(2685), - [sym___r_single_quote] = ACTIONS(2685), - }, - [1008] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym___global] = ACTIONS(2649), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_pub] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_AMP_CARET] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2649), - [anon_sym_POUND_LBRACK] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_DOLLARelse] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [anon_sym_assert] = ACTIONS(2649), - [anon_sym_defer] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_DOLLARfor] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym_AT_LBRACK] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_go] = ACTIONS(571), + [anon_sym_spawn] = ACTIONS(571), + [anon_sym_json_DOTdecode] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(3604), + [anon_sym_LT_DASH] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(571), + [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(571), + [sym_none] = ACTIONS(571), + [sym_true] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [sym_nil] = ACTIONS(571), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_if] = ACTIONS(571), + [anon_sym_DOLLARif] = ACTIONS(571), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_match] = ACTIONS(571), + [anon_sym_select] = ACTIONS(571), + [anon_sym_lock] = ACTIONS(571), + [anon_sym_rlock] = ACTIONS(571), + [anon_sym_unsafe] = ACTIONS(571), + [anon_sym_sql] = ACTIONS(571), + [sym_int_literal] = ACTIONS(571), + [sym_float_literal] = ACTIONS(567), + [sym_rune_literal] = ACTIONS(567), + [sym_pseudo_compile_time_identifier] = ACTIONS(571), + [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(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), }, [1009] = { - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1307), - [sym_plain_type] = STATE(1331), - [sym__plain_type_without_special] = STATE(1352), - [sym_anon_struct_type] = STATE(1353), - [sym_multi_return_type] = STATE(1352), - [sym_result_type] = STATE(1352), - [sym_option_type] = STATE(1352), - [sym_qualified_type] = STATE(1307), - [sym_fixed_array_type] = STATE(1353), - [sym_array_type] = STATE(1353), - [sym_pointer_type] = STATE(1353), - [sym_wrong_pointer_type] = STATE(1353), - [sym_map_type] = STATE(1353), - [sym_channel_type] = STATE(1353), - [sym_shared_type] = STATE(1353), - [sym_thread_type] = STATE(1353), - [sym_atomic_type] = STATE(1353), - [sym_generic_type] = STATE(1353), - [sym_function_type] = STATE(1353), - [sym_identifier] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_BANG_EQ] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(581), - [anon_sym_GT_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(581), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(581), - [anon_sym_LBRACK2] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(581), - [anon_sym_CARET] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(3616), - [anon_sym_LT_DASH] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(581), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(581), - [anon_sym_AMP_CARET] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(581), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_or] = ACTIONS(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(581), - [anon_sym_POUND_LBRACK] = ACTIONS(581), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(581), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(581), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(581), - [sym_rune_literal] = ACTIONS(581), - [sym_pseudo_compile_time_identifier] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(3618), - [anon_sym_map_LBRACK] = ACTIONS(3620), - [anon_sym_chan] = ACTIONS(3622), - [anon_sym_thread] = ACTIONS(3624), - [anon_sym_atomic] = ACTIONS(3626), - [sym___double_quote] = ACTIONS(581), - [sym___single_quote] = ACTIONS(581), - [sym___c_double_quote] = ACTIONS(581), - [sym___c_single_quote] = ACTIONS(581), - [sym___r_double_quote] = ACTIONS(581), - [sym___r_single_quote] = ACTIONS(581), + [sym_line_comment] = STATE(1009), + [sym_block_comment] = STATE(1009), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), }, [1010] = { - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1307), - [sym_plain_type] = STATE(1330), - [sym__plain_type_without_special] = STATE(1352), - [sym_anon_struct_type] = STATE(1353), - [sym_multi_return_type] = STATE(1352), - [sym_result_type] = STATE(1352), - [sym_option_type] = STATE(1352), - [sym_qualified_type] = STATE(1307), - [sym_fixed_array_type] = STATE(1353), - [sym_array_type] = STATE(1353), - [sym_pointer_type] = STATE(1353), - [sym_wrong_pointer_type] = STATE(1353), - [sym_map_type] = STATE(1353), - [sym_channel_type] = STATE(1353), - [sym_shared_type] = STATE(1353), - [sym_thread_type] = STATE(1353), - [sym_atomic_type] = STATE(1353), - [sym_generic_type] = STATE(1353), - [sym_function_type] = STATE(1353), - [sym_identifier] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [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(3602), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3606), - [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(3608), - [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(3610), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(3616), - [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(3618), - [anon_sym_map_LBRACK] = ACTIONS(3620), - [anon_sym_chan] = ACTIONS(3622), - [anon_sym_thread] = ACTIONS(3624), - [anon_sym_atomic] = ACTIONS(3626), - [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_line_comment] = STATE(1010), + [sym_block_comment] = STATE(1010), + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym___global] = ACTIONS(2829), + [anon_sym_type] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2829), + [anon_sym_BANG_EQ] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_pub] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2829), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2829), + [anon_sym_AMP_CARET] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_PIPE_PIPE] = ACTIONS(2829), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2829), + [anon_sym_POUND_LBRACK] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_else] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [anon_sym_assert] = ACTIONS(2829), + [anon_sym_defer] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_DOLLARfor] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_asm] = ACTIONS(2829), + [anon_sym_AT_LBRACK] = ACTIONS(2829), + [sym___double_quote] = ACTIONS(2829), + [sym___single_quote] = ACTIONS(2829), + [sym___c_double_quote] = ACTIONS(2829), + [sym___c_single_quote] = ACTIONS(2829), + [sym___r_double_quote] = ACTIONS(2829), + [sym___r_single_quote] = ACTIONS(2829), }, [1011] = { - [ts_builtin_sym_end] = ACTIONS(2683), - [sym_identifier] = ACTIONS(2685), - [anon_sym_LF] = ACTIONS(2685), - [anon_sym_CR] = ACTIONS(2685), - [anon_sym_CR_LF] = ACTIONS(2685), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2685), - [anon_sym_as] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_COMMA] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym___global] = ACTIONS(2685), - [anon_sym_type] = ACTIONS(2685), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_fn] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_SLASH] = ACTIONS(2685), - [anon_sym_PERCENT] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_pub] = ACTIONS(2685), - [anon_sym_mut] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_interface] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_QMARK] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_go] = ACTIONS(2685), - [anon_sym_spawn] = ACTIONS(2685), - [anon_sym_json_DOTdecode] = ACTIONS(2685), - [anon_sym_LBRACK2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_LT_DASH] = ACTIONS(2685), - [anon_sym_LT_LT] = ACTIONS(2685), - [anon_sym_GT_GT] = ACTIONS(2685), - [anon_sym_GT_GT_GT] = ACTIONS(2685), - [anon_sym_AMP_CARET] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_PIPE_PIPE] = ACTIONS(2685), - [anon_sym_or] = ACTIONS(2685), - [sym_none] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nil] = ACTIONS(2685), - [anon_sym_QMARK_DOT] = ACTIONS(2685), - [anon_sym_POUND_LBRACK] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_DOLLARif] = ACTIONS(2685), - [anon_sym_DOLLARelse] = ACTIONS(2685), - [anon_sym_is] = ACTIONS(2685), - [anon_sym_BANGis] = ACTIONS(2685), - [anon_sym_in] = ACTIONS(2685), - [anon_sym_BANGin] = ACTIONS(2685), - [anon_sym_match] = ACTIONS(2685), - [anon_sym_select] = ACTIONS(2685), - [anon_sym_lock] = ACTIONS(2685), - [anon_sym_rlock] = ACTIONS(2685), - [anon_sym_unsafe] = ACTIONS(2685), - [anon_sym_sql] = ACTIONS(2685), - [sym_int_literal] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2685), - [sym_rune_literal] = ACTIONS(2685), - [sym_pseudo_compile_time_identifier] = ACTIONS(2685), - [anon_sym_shared] = ACTIONS(2685), - [anon_sym_map_LBRACK] = ACTIONS(2685), - [anon_sym_chan] = ACTIONS(2685), - [anon_sym_thread] = ACTIONS(2685), - [anon_sym_atomic] = ACTIONS(2685), - [anon_sym_assert] = ACTIONS(2685), - [anon_sym_defer] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_DOLLARfor] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_POUND] = ACTIONS(2685), - [anon_sym_asm] = ACTIONS(2685), - [anon_sym_AT_LBRACK] = ACTIONS(2685), - [sym___double_quote] = ACTIONS(2685), - [sym___single_quote] = ACTIONS(2685), - [sym___c_double_quote] = ACTIONS(2685), - [sym___c_single_quote] = ACTIONS(2685), - [sym___r_double_quote] = ACTIONS(2685), - [sym___r_single_quote] = ACTIONS(2685), + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), + [sym_reference_expression] = STATE(4450), + [sym_type_reference_expression] = STATE(1300), + [sym_plain_type] = STATE(1354), + [sym__plain_type_without_special] = STATE(1358), + [sym_anon_struct_type] = STATE(1373), + [sym_multi_return_type] = STATE(1358), + [sym_result_type] = STATE(1358), + [sym_option_type] = STATE(1358), + [sym_qualified_type] = STATE(1300), + [sym_fixed_array_type] = STATE(1373), + [sym_array_type] = STATE(1373), + [sym_pointer_type] = STATE(1373), + [sym_wrong_pointer_type] = STATE(1373), + [sym_map_type] = STATE(1373), + [sym_channel_type] = STATE(1373), + [sym_shared_type] = STATE(1373), + [sym_thread_type] = STATE(1373), + [sym_atomic_type] = STATE(1373), + [sym_generic_type] = STATE(1373), + [sym_function_type] = STATE(1373), + [sym_identifier] = ACTIONS(3588), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(627), + [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(3590), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(3594), + [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(3596), + [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(3598), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_go] = ACTIONS(627), + [anon_sym_spawn] = ACTIONS(627), + [anon_sym_json_DOTdecode] = ACTIONS(625), + [anon_sym_LBRACK2] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(3604), + [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(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(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), }, [1012] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym___global] = ACTIONS(2649), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_pub] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_AMP_CARET] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2649), - [anon_sym_POUND_LBRACK] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [anon_sym_assert] = ACTIONS(2649), - [anon_sym_defer] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_DOLLARfor] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym_AT_LBRACK] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [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(565), + [anon_sym_mut] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_go] = ACTIONS(565), + [anon_sym_spawn] = ACTIONS(565), + [anon_sym_json_DOTdecode] = ACTIONS(563), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(563), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_DASH] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(565), + [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(565), + [sym_none] = ACTIONS(565), + [sym_true] = ACTIONS(565), + [sym_false] = ACTIONS(565), + [sym_nil] = ACTIONS(565), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_if] = ACTIONS(565), + [anon_sym_DOLLARif] = ACTIONS(565), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(565), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_match] = ACTIONS(565), + [anon_sym_select] = ACTIONS(565), + [anon_sym_lock] = ACTIONS(565), + [anon_sym_rlock] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_sql] = ACTIONS(565), + [sym_int_literal] = ACTIONS(565), + [sym_float_literal] = ACTIONS(563), + [sym_rune_literal] = ACTIONS(563), + [sym_pseudo_compile_time_identifier] = ACTIONS(565), + [anon_sym_shared] = ACTIONS(565), + [anon_sym_map_LBRACK] = ACTIONS(563), + [anon_sym_chan] = ACTIONS(565), + [anon_sym_thread] = ACTIONS(565), + [anon_sym_atomic] = ACTIONS(565), + [sym___double_quote] = ACTIONS(563), + [sym___single_quote] = ACTIONS(563), + [sym___c_double_quote] = ACTIONS(563), + [sym___c_single_quote] = ACTIONS(563), + [sym___r_double_quote] = ACTIONS(563), + [sym___r_single_quote] = ACTIONS(563), }, [1013] = { - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1307), - [sym_plain_type] = STATE(1324), - [sym__plain_type_without_special] = STATE(1352), - [sym_anon_struct_type] = STATE(1353), - [sym_multi_return_type] = STATE(1352), - [sym_result_type] = STATE(1352), - [sym_option_type] = STATE(1352), - [sym_qualified_type] = STATE(1307), - [sym_fixed_array_type] = STATE(1353), - [sym_array_type] = STATE(1353), - [sym_pointer_type] = STATE(1353), - [sym_wrong_pointer_type] = STATE(1353), - [sym_map_type] = STATE(1353), - [sym_channel_type] = STATE(1353), - [sym_shared_type] = STATE(1353), - [sym_thread_type] = STATE(1353), - [sym_atomic_type] = STATE(1353), - [sym_generic_type] = STATE(1353), - [sym_function_type] = STATE(1353), - [sym_identifier] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym___global] = ACTIONS(2829), + [anon_sym_type] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2829), + [anon_sym_BANG_EQ] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_pub] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2829), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2829), + [anon_sym_AMP_CARET] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_PIPE_PIPE] = ACTIONS(2829), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2829), + [anon_sym_POUND_LBRACK] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_DOLLARelse] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [anon_sym_assert] = ACTIONS(2829), + [anon_sym_defer] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_DOLLARfor] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_asm] = ACTIONS(2829), + [anon_sym_AT_LBRACK] = ACTIONS(2829), + [sym___double_quote] = ACTIONS(2829), + [sym___single_quote] = ACTIONS(2829), + [sym___c_double_quote] = ACTIONS(2829), + [sym___c_single_quote] = ACTIONS(2829), + [sym___r_double_quote] = ACTIONS(2829), + [sym___r_single_quote] = ACTIONS(2829), + }, + [1014] = { + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), + [sym_reference_expression] = STATE(4450), + [sym_type_reference_expression] = STATE(1300), + [sym_plain_type] = STATE(1412), + [sym__plain_type_without_special] = STATE(1358), + [sym_anon_struct_type] = STATE(1373), + [sym_multi_return_type] = STATE(1358), + [sym_result_type] = STATE(1358), + [sym_option_type] = STATE(1358), + [sym_qualified_type] = STATE(1300), + [sym_fixed_array_type] = STATE(1373), + [sym_array_type] = STATE(1373), + [sym_pointer_type] = STATE(1373), + [sym_wrong_pointer_type] = STATE(1373), + [sym_map_type] = STATE(1373), + [sym_channel_type] = STATE(1373), + [sym_shared_type] = STATE(1373), + [sym_thread_type] = STATE(1373), + [sym_atomic_type] = STATE(1373), + [sym_generic_type] = STATE(1373), + [sym_function_type] = STATE(1373), + [sym_identifier] = ACTIONS(3588), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(623), [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(3602), + [anon_sym_LPAREN] = ACTIONS(3590), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3604), + [anon_sym_fn] = ACTIONS(3592), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3594), [anon_sym_PERCENT] = ACTIONS(621), [anon_sym_LT] = ACTIONS(623), [anon_sym_GT] = ACTIONS(623), @@ -141169,20 +141347,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(621), [anon_sym_LBRACK] = ACTIONS(621), [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3596), [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(3610), - [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3600), [anon_sym_go] = ACTIONS(623), [anon_sym_spawn] = ACTIONS(623), [anon_sym_json_DOTdecode] = ACTIONS(621), - [anon_sym_LBRACK2] = ACTIONS(3614), + [anon_sym_LBRACK2] = ACTIONS(3602), [anon_sym_TILDE] = ACTIONS(621), [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_AMP] = ACTIONS(3604), [anon_sym_LT_DASH] = ACTIONS(621), [anon_sym_LT_LT] = ACTIONS(621), [anon_sym_GT_GT] = ACTIONS(623), @@ -141213,11 +141391,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(621), [sym_rune_literal] = ACTIONS(621), [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3618), - [anon_sym_map_LBRACK] = ACTIONS(3620), - [anon_sym_chan] = ACTIONS(3622), - [anon_sym_thread] = ACTIONS(3624), - [anon_sym_atomic] = ACTIONS(3626), + [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(621), [sym___single_quote] = ACTIONS(621), [sym___c_double_quote] = ACTIONS(621), @@ -141225,413 +141403,1552 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(621), [sym___r_single_quote] = ACTIONS(621), }, - [1014] = { - [sym_type_parameters] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2715), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_CR] = ACTIONS(2715), - [anon_sym_CR_LF] = ACTIONS(2715), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_as] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_COMMA] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym___global] = ACTIONS(2715), - [anon_sym_type] = ACTIONS(2715), - [anon_sym_PIPE] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_SLASH] = ACTIONS(2715), - [anon_sym_PERCENT] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2715), - [anon_sym_GT] = ACTIONS(2715), - [anon_sym_EQ_EQ] = ACTIONS(2715), - [anon_sym_BANG_EQ] = ACTIONS(2715), - [anon_sym_LT_EQ] = ACTIONS(2715), - [anon_sym_GT_EQ] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_pub] = ACTIONS(2715), - [anon_sym_mut] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_interface] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_QMARK] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_go] = ACTIONS(2715), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(2715), - [anon_sym_LBRACK2] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_CARET] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_LT_DASH] = ACTIONS(2715), - [anon_sym_LT_LT] = ACTIONS(2715), - [anon_sym_GT_GT] = ACTIONS(2715), - [anon_sym_GT_GT_GT] = ACTIONS(2715), - [anon_sym_AMP_CARET] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_PIPE_PIPE] = ACTIONS(2715), - [anon_sym_or] = ACTIONS(2715), - [sym_none] = ACTIONS(2715), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [sym_nil] = ACTIONS(2715), - [anon_sym_QMARK_DOT] = ACTIONS(2715), - [anon_sym_POUND_LBRACK] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_DOLLARif] = ACTIONS(2715), - [anon_sym_is] = ACTIONS(2715), - [anon_sym_BANGis] = ACTIONS(2715), - [anon_sym_in] = ACTIONS(2715), - [anon_sym_BANGin] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_select] = ACTIONS(2715), - [anon_sym_lock] = ACTIONS(2715), - [anon_sym_rlock] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_sql] = ACTIONS(2715), - [sym_int_literal] = ACTIONS(2715), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(2715), - [anon_sym_shared] = ACTIONS(2715), - [anon_sym_map_LBRACK] = ACTIONS(2715), - [anon_sym_chan] = ACTIONS(2715), - [anon_sym_thread] = ACTIONS(2715), - [anon_sym_atomic] = ACTIONS(2715), - [anon_sym_assert] = ACTIONS(2715), - [anon_sym_defer] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_DOLLARfor] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_POUND] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym_AT_LBRACK] = ACTIONS(2715), - [sym___double_quote] = ACTIONS(2715), - [sym___single_quote] = ACTIONS(2715), - [sym___c_double_quote] = ACTIONS(2715), - [sym___c_single_quote] = ACTIONS(2715), - [sym___r_double_quote] = ACTIONS(2715), - [sym___r_single_quote] = ACTIONS(2715), - }, [1015] = { - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2643), - [anon_sym_LF] = ACTIONS(2643), - [anon_sym_CR] = ACTIONS(2643), - [anon_sym_CR_LF] = ACTIONS(2643), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym___global] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2643), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_EQ_EQ] = ACTIONS(2643), - [anon_sym_BANG_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_pub] = ACTIONS(2643), - [anon_sym_mut] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_interface] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_go] = ACTIONS(2643), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(2643), - [anon_sym_LBRACK2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_LT_DASH] = ACTIONS(2643), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_GT_GT_GT] = ACTIONS(2643), - [anon_sym_AMP_CARET] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_PIPE_PIPE] = ACTIONS(2643), - [anon_sym_or] = ACTIONS(2643), - [sym_none] = ACTIONS(2643), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_nil] = ACTIONS(2643), - [anon_sym_QMARK_DOT] = ACTIONS(2643), - [anon_sym_POUND_LBRACK] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_DOLLARif] = ACTIONS(2643), - [anon_sym_DOLLARelse] = ACTIONS(3628), - [anon_sym_is] = ACTIONS(2643), - [anon_sym_BANGis] = ACTIONS(2643), - [anon_sym_in] = ACTIONS(2643), - [anon_sym_BANGin] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_select] = ACTIONS(2643), - [anon_sym_lock] = ACTIONS(2643), - [anon_sym_rlock] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_sql] = ACTIONS(2643), - [sym_int_literal] = ACTIONS(2643), - [sym_float_literal] = ACTIONS(2643), - [sym_rune_literal] = ACTIONS(2643), - [sym_pseudo_compile_time_identifier] = ACTIONS(2643), - [anon_sym_shared] = ACTIONS(2643), - [anon_sym_map_LBRACK] = ACTIONS(2643), - [anon_sym_chan] = ACTIONS(2643), - [anon_sym_thread] = ACTIONS(2643), - [anon_sym_atomic] = ACTIONS(2643), - [anon_sym_assert] = ACTIONS(2643), - [anon_sym_defer] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_DOLLARfor] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_POUND] = ACTIONS(2643), - [anon_sym_asm] = ACTIONS(2643), - [anon_sym_AT_LBRACK] = ACTIONS(2643), - [sym___double_quote] = ACTIONS(2643), - [sym___single_quote] = ACTIONS(2643), - [sym___c_double_quote] = ACTIONS(2643), - [sym___c_single_quote] = ACTIONS(2643), - [sym___r_double_quote] = ACTIONS(2643), - [sym___r_single_quote] = ACTIONS(2643), + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), }, [1016] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_mut] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(559), - [anon_sym_PLUS_PLUS] = ACTIONS(559), - [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_go] = ACTIONS(563), - [anon_sym_spawn] = ACTIONS(563), - [anon_sym_json_DOTdecode] = ACTIONS(559), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(559), - [anon_sym_CARET] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_DASH] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_GT_GT_GT] = ACTIONS(559), - [anon_sym_AMP_CARET] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_or] = ACTIONS(563), - [sym_none] = ACTIONS(563), - [sym_true] = ACTIONS(563), - [sym_false] = ACTIONS(563), - [sym_nil] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(559), - [anon_sym_POUND_LBRACK] = ACTIONS(559), - [anon_sym_if] = ACTIONS(563), - [anon_sym_DOLLARif] = ACTIONS(563), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(559), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(559), - [anon_sym_match] = ACTIONS(563), - [anon_sym_select] = ACTIONS(563), - [anon_sym_lock] = ACTIONS(563), - [anon_sym_rlock] = ACTIONS(563), - [anon_sym_unsafe] = ACTIONS(563), - [anon_sym_sql] = ACTIONS(563), - [sym_int_literal] = ACTIONS(563), - [sym_float_literal] = ACTIONS(559), - [sym_rune_literal] = ACTIONS(559), - [sym_pseudo_compile_time_identifier] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(559), - [sym___single_quote] = ACTIONS(559), - [sym___c_double_quote] = ACTIONS(559), - [sym___c_single_quote] = ACTIONS(559), - [sym___r_double_quote] = ACTIONS(559), - [sym___r_single_quote] = ACTIONS(559), + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(611), + [anon_sym_mut] = ACTIONS(603), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_go] = ACTIONS(603), + [anon_sym_spawn] = ACTIONS(603), + [anon_sym_json_DOTdecode] = ACTIONS(599), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [sym_none] = ACTIONS(603), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_nil] = ACTIONS(603), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_if] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(603), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(603), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_match] = ACTIONS(603), + [anon_sym_select] = ACTIONS(603), + [anon_sym_lock] = ACTIONS(603), + [anon_sym_rlock] = ACTIONS(603), + [anon_sym_unsafe] = ACTIONS(603), + [anon_sym_sql] = ACTIONS(603), + [sym_int_literal] = ACTIONS(603), + [sym_float_literal] = ACTIONS(599), + [sym_rune_literal] = ACTIONS(599), + [sym_pseudo_compile_time_identifier] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(619), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + [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_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(615), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_RBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(613), - [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(613), - [sym_rune_literal] = ACTIONS(613), - [sym_pseudo_compile_time_identifier] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(615), - [anon_sym_map_LBRACK] = ACTIONS(613), - [anon_sym_chan] = ACTIONS(615), - [anon_sym_thread] = ACTIONS(615), - [anon_sym_atomic] = ACTIONS(615), - [sym___double_quote] = ACTIONS(613), - [sym___single_quote] = ACTIONS(613), - [sym___c_double_quote] = ACTIONS(613), - [sym___c_single_quote] = ACTIONS(613), - [sym___r_double_quote] = ACTIONS(613), - [sym___r_single_quote] = ACTIONS(613), + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), + [sym_type_parameters] = STATE(1087), + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2743), + [anon_sym_LF] = ACTIONS(2743), + [anon_sym_CR] = ACTIONS(2743), + [anon_sym_CR_LF] = ACTIONS(2743), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_as] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym___global] = ACTIONS(2743), + [anon_sym_type] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [anon_sym_EQ_EQ] = ACTIONS(2743), + [anon_sym_BANG_EQ] = ACTIONS(2743), + [anon_sym_LT_EQ] = ACTIONS(2743), + [anon_sym_GT_EQ] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_pub] = ACTIONS(2743), + [anon_sym_mut] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_interface] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_go] = ACTIONS(2743), + [anon_sym_spawn] = ACTIONS(2743), + [anon_sym_json_DOTdecode] = ACTIONS(2743), + [anon_sym_LBRACK2] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2743), + [anon_sym_LT_LT] = ACTIONS(2743), + [anon_sym_GT_GT] = ACTIONS(2743), + [anon_sym_GT_GT_GT] = ACTIONS(2743), + [anon_sym_AMP_CARET] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_PIPE_PIPE] = ACTIONS(2743), + [anon_sym_or] = ACTIONS(2743), + [sym_none] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_nil] = ACTIONS(2743), + [anon_sym_QMARK_DOT] = ACTIONS(2743), + [anon_sym_POUND_LBRACK] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_DOLLARif] = ACTIONS(2743), + [anon_sym_is] = ACTIONS(2743), + [anon_sym_BANGis] = ACTIONS(2743), + [anon_sym_in] = ACTIONS(2743), + [anon_sym_BANGin] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_select] = ACTIONS(2743), + [anon_sym_lock] = ACTIONS(2743), + [anon_sym_rlock] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_sql] = ACTIONS(2743), + [sym_int_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), + [sym_rune_literal] = ACTIONS(2743), + [sym_pseudo_compile_time_identifier] = ACTIONS(2743), + [anon_sym_shared] = ACTIONS(2743), + [anon_sym_map_LBRACK] = ACTIONS(2743), + [anon_sym_chan] = ACTIONS(2743), + [anon_sym_thread] = ACTIONS(2743), + [anon_sym_atomic] = ACTIONS(2743), + [anon_sym_assert] = ACTIONS(2743), + [anon_sym_defer] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_DOLLARfor] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym_AT_LBRACK] = ACTIONS(2743), + [sym___double_quote] = ACTIONS(2743), + [sym___single_quote] = ACTIONS(2743), + [sym___c_double_quote] = ACTIONS(2743), + [sym___c_single_quote] = ACTIONS(2743), + [sym___r_double_quote] = ACTIONS(2743), + [sym___r_single_quote] = ACTIONS(2743), }, [1018] = { - [ts_builtin_sym_end] = ACTIONS(3232), + [sym_line_comment] = STATE(1018), + [sym_block_comment] = STATE(1018), + [ts_builtin_sym_end] = ACTIONS(2819), + [sym_identifier] = ACTIONS(2821), + [anon_sym_LF] = ACTIONS(2821), + [anon_sym_CR] = ACTIONS(2821), + [anon_sym_CR_LF] = ACTIONS(2821), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_as] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_COMMA] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym___global] = ACTIONS(2821), + [anon_sym_type] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_fn] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_PERCENT] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_EQ_EQ] = ACTIONS(2821), + [anon_sym_BANG_EQ] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2821), + [anon_sym_GT_EQ] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_pub] = ACTIONS(2821), + [anon_sym_mut] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_interface] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_go] = ACTIONS(2821), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(2821), + [anon_sym_LBRACK2] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_CARET] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_LT_DASH] = ACTIONS(2821), + [anon_sym_LT_LT] = ACTIONS(2821), + [anon_sym_GT_GT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2821), + [anon_sym_AMP_CARET] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_PIPE_PIPE] = ACTIONS(2821), + [anon_sym_or] = ACTIONS(2821), + [sym_none] = ACTIONS(2821), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_nil] = ACTIONS(2821), + [anon_sym_QMARK_DOT] = ACTIONS(2821), + [anon_sym_POUND_LBRACK] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_DOLLARif] = ACTIONS(2821), + [anon_sym_DOLLARelse] = ACTIONS(3622), + [anon_sym_is] = ACTIONS(2821), + [anon_sym_BANGis] = ACTIONS(2821), + [anon_sym_in] = ACTIONS(2821), + [anon_sym_BANGin] = ACTIONS(2821), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2821), + [anon_sym_lock] = ACTIONS(2821), + [anon_sym_rlock] = ACTIONS(2821), + [anon_sym_unsafe] = ACTIONS(2821), + [anon_sym_sql] = ACTIONS(2821), + [sym_int_literal] = ACTIONS(2821), + [sym_float_literal] = ACTIONS(2821), + [sym_rune_literal] = ACTIONS(2821), + [sym_pseudo_compile_time_identifier] = ACTIONS(2821), + [anon_sym_shared] = ACTIONS(2821), + [anon_sym_map_LBRACK] = ACTIONS(2821), + [anon_sym_chan] = ACTIONS(2821), + [anon_sym_thread] = ACTIONS(2821), + [anon_sym_atomic] = ACTIONS(2821), + [anon_sym_assert] = ACTIONS(2821), + [anon_sym_defer] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_DOLLARfor] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_POUND] = ACTIONS(2821), + [anon_sym_asm] = ACTIONS(2821), + [anon_sym_AT_LBRACK] = ACTIONS(2821), + [sym___double_quote] = ACTIONS(2821), + [sym___single_quote] = ACTIONS(2821), + [sym___c_double_quote] = ACTIONS(2821), + [sym___c_single_quote] = ACTIONS(2821), + [sym___r_double_quote] = ACTIONS(2821), + [sym___r_single_quote] = ACTIONS(2821), + }, + [1019] = { + [sym_line_comment] = STATE(1019), + [sym_block_comment] = STATE(1019), + [ts_builtin_sym_end] = ACTIONS(2763), + [sym_identifier] = ACTIONS(2765), + [anon_sym_LF] = ACTIONS(2765), + [anon_sym_CR] = ACTIONS(2765), + [anon_sym_CR_LF] = ACTIONS(2765), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2765), + [anon_sym_DOT] = ACTIONS(2765), + [anon_sym_as] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_COMMA] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_LPAREN] = ACTIONS(2765), + [anon_sym___global] = ACTIONS(2765), + [anon_sym_type] = ACTIONS(2765), + [anon_sym_PIPE] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_PERCENT] = ACTIONS(2765), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_GT] = ACTIONS(2765), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_pub] = ACTIONS(2765), + [anon_sym_mut] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_interface] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2765), + [anon_sym_QMARK] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_go] = ACTIONS(2765), + [anon_sym_spawn] = ACTIONS(2765), + [anon_sym_json_DOTdecode] = ACTIONS(2765), + [anon_sym_LBRACK2] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_CARET] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_LT_DASH] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2765), + [anon_sym_GT_GT] = ACTIONS(2765), + [anon_sym_GT_GT_GT] = ACTIONS(2765), + [anon_sym_AMP_CARET] = ACTIONS(2765), + [anon_sym_AMP_AMP] = ACTIONS(2765), + [anon_sym_PIPE_PIPE] = ACTIONS(2765), + [anon_sym_or] = ACTIONS(2765), + [sym_none] = ACTIONS(2765), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_nil] = ACTIONS(2765), + [anon_sym_QMARK_DOT] = ACTIONS(2765), + [anon_sym_POUND_LBRACK] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_DOLLARif] = ACTIONS(2765), + [anon_sym_DOLLARelse] = ACTIONS(3624), + [anon_sym_is] = ACTIONS(2765), + [anon_sym_BANGis] = ACTIONS(2765), + [anon_sym_in] = ACTIONS(2765), + [anon_sym_BANGin] = ACTIONS(2765), + [anon_sym_match] = ACTIONS(2765), + [anon_sym_select] = ACTIONS(2765), + [anon_sym_lock] = ACTIONS(2765), + [anon_sym_rlock] = ACTIONS(2765), + [anon_sym_unsafe] = ACTIONS(2765), + [anon_sym_sql] = ACTIONS(2765), + [sym_int_literal] = ACTIONS(2765), + [sym_float_literal] = ACTIONS(2765), + [sym_rune_literal] = ACTIONS(2765), + [sym_pseudo_compile_time_identifier] = ACTIONS(2765), + [anon_sym_shared] = ACTIONS(2765), + [anon_sym_map_LBRACK] = ACTIONS(2765), + [anon_sym_chan] = ACTIONS(2765), + [anon_sym_thread] = ACTIONS(2765), + [anon_sym_atomic] = ACTIONS(2765), + [anon_sym_assert] = ACTIONS(2765), + [anon_sym_defer] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_DOLLARfor] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_POUND] = ACTIONS(2765), + [anon_sym_asm] = ACTIONS(2765), + [anon_sym_AT_LBRACK] = ACTIONS(2765), + [sym___double_quote] = ACTIONS(2765), + [sym___single_quote] = ACTIONS(2765), + [sym___c_double_quote] = ACTIONS(2765), + [sym___c_single_quote] = ACTIONS(2765), + [sym___r_double_quote] = ACTIONS(2765), + [sym___r_single_quote] = ACTIONS(2765), + }, + [1020] = { + [sym_line_comment] = STATE(1020), + [sym_block_comment] = STATE(1020), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym___global] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_pub] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), + [anon_sym_AT_LBRACK] = ACTIONS(2833), + [sym___double_quote] = ACTIONS(2833), + [sym___single_quote] = ACTIONS(2833), + [sym___c_double_quote] = ACTIONS(2833), + [sym___c_single_quote] = ACTIONS(2833), + [sym___r_double_quote] = ACTIONS(2833), + [sym___r_single_quote] = ACTIONS(2833), + }, + [1021] = { + [sym_line_comment] = STATE(1021), + [sym_block_comment] = STATE(1021), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3419), + [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_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), + }, + [1022] = { + [sym_line_comment] = STATE(1022), + [sym_block_comment] = STATE(1022), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3431), + [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_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), + }, + [1023] = { + [sym_line_comment] = STATE(1023), + [sym_block_comment] = STATE(1023), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3438), + [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_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), + }, + [1024] = { + [sym_line_comment] = STATE(1024), + [sym_block_comment] = STATE(1024), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3363), + [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_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), + }, + [1025] = { + [sym_line_comment] = STATE(1025), + [sym_block_comment] = STATE(1025), + [ts_builtin_sym_end] = ACTIONS(3041), + [sym_identifier] = ACTIONS(3043), + [anon_sym_LF] = ACTIONS(3043), + [anon_sym_CR] = ACTIONS(3043), + [anon_sym_CR_LF] = ACTIONS(3043), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_as] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym___global] = ACTIONS(3043), + [anon_sym_type] = ACTIONS(3043), + [anon_sym_PIPE] = ACTIONS(3043), + [anon_sym_fn] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3043), + [anon_sym_GT] = ACTIONS(3043), + [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(3041), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_pub] = ACTIONS(3043), + [anon_sym_mut] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_interface] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_go] = ACTIONS(3043), + [anon_sym_spawn] = ACTIONS(3043), + [anon_sym_json_DOTdecode] = ACTIONS(3043), + [anon_sym_LBRACK2] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3043), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_LT_LT] = ACTIONS(3043), + [anon_sym_GT_GT] = ACTIONS(3043), + [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(3043), + [sym_none] = ACTIONS(3043), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [sym_nil] = ACTIONS(3043), + [anon_sym_QMARK_DOT] = ACTIONS(3043), + [anon_sym_POUND_LBRACK] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_DOLLARif] = ACTIONS(3043), + [anon_sym_is] = ACTIONS(3043), + [anon_sym_BANGis] = ACTIONS(3043), + [anon_sym_in] = ACTIONS(3043), + [anon_sym_BANGin] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3043), + [anon_sym_rlock] = ACTIONS(3043), + [anon_sym_unsafe] = ACTIONS(3043), + [anon_sym_sql] = ACTIONS(3043), + [sym_int_literal] = ACTIONS(3043), + [sym_float_literal] = ACTIONS(3043), + [sym_rune_literal] = ACTIONS(3043), + [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_shared] = ACTIONS(3043), + [anon_sym_map_LBRACK] = ACTIONS(3043), + [anon_sym_chan] = ACTIONS(3043), + [anon_sym_thread] = ACTIONS(3043), + [anon_sym_atomic] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_defer] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_DOLLARfor] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_POUND] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym_AT_LBRACK] = ACTIONS(3043), + [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), + }, + [1026] = { + [sym_line_comment] = STATE(1026), + [sym_block_comment] = STATE(1026), + [ts_builtin_sym_end] = ACTIONS(3033), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3035), + [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_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(3033), + [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), + }, + [1027] = { + [sym_line_comment] = STATE(1027), + [sym_block_comment] = STATE(1027), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2747), + [anon_sym_DOT] = ACTIONS(2747), + [anon_sym_as] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_COMMA] = ACTIONS(2757), + [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_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), + }, + [1028] = { + [sym_line_comment] = STATE(1028), + [sym_block_comment] = STATE(1028), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3319), + [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_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), + }, + [1029] = { + [sym_line_comment] = STATE(1029), + [sym_block_comment] = STATE(1029), + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LF] = ACTIONS(3027), + [anon_sym_CR] = ACTIONS(3027), + [anon_sym_CR_LF] = ACTIONS(3027), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3027), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_as] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym___global] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3027), + [anon_sym_EQ_EQ] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3027), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_pub] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_interface] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3027), + [anon_sym_GT_GT] = ACTIONS(3027), + [anon_sym_GT_GT_GT] = ACTIONS(3027), + [anon_sym_AMP_CARET] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_or] = ACTIONS(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_QMARK_DOT] = ACTIONS(3027), + [anon_sym_POUND_LBRACK] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_is] = ACTIONS(3027), + [anon_sym_BANGis] = ACTIONS(3027), + [anon_sym_in] = ACTIONS(3027), + [anon_sym_BANGin] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3027), + [sym_rune_literal] = ACTIONS(3027), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [anon_sym_map_LBRACK] = ACTIONS(3027), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_defer] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_DOLLARfor] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_POUND] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym_AT_LBRACK] = ACTIONS(3027), + [sym___double_quote] = ACTIONS(3027), + [sym___single_quote] = ACTIONS(3027), + [sym___c_double_quote] = ACTIONS(3027), + [sym___c_single_quote] = ACTIONS(3027), + [sym___r_double_quote] = ACTIONS(3027), + [sym___r_single_quote] = ACTIONS(3027), + }, + [1030] = { + [sym_line_comment] = STATE(1030), + [sym_block_comment] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(3227), [sym_identifier] = ACTIONS(3229), [anon_sym_LF] = ACTIONS(3229), [anon_sym_CR] = ACTIONS(3229), [anon_sym_CR_LF] = ACTIONS(3229), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3229), [anon_sym_DOT] = ACTIONS(3229), [anon_sym_as] = ACTIONS(3229), [anon_sym_LBRACE] = ACTIONS(3229), @@ -141645,7 +142962,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3229), [anon_sym_DASH] = ACTIONS(3229), [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), [anon_sym_PERCENT] = ACTIONS(3229), [anon_sym_LT] = ACTIONS(3229), [anon_sym_GT] = ACTIONS(3229), @@ -141653,7 +142969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3229), [anon_sym_LT_EQ] = ACTIONS(3229), [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3227), [anon_sym_struct] = ACTIONS(3229), [anon_sym_union] = ACTIONS(3229), [anon_sym_pub] = ACTIONS(3229), @@ -141724,112 +143040,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3229), [sym___r_single_quote] = ACTIONS(3229), }, - [1019] = { - [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), - [sym_comment] = ACTIONS(495), - [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), - }, - [1020] = { + [1031] = { + [sym_line_comment] = STATE(1031), + [sym_block_comment] = STATE(1031), [ts_builtin_sym_end] = ACTIONS(3263), [sym_identifier] = ACTIONS(3265), [anon_sym_LF] = ACTIONS(3265), [anon_sym_CR] = ACTIONS(3265), [anon_sym_CR_LF] = ACTIONS(3265), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3265), [anon_sym_DOT] = ACTIONS(3265), [anon_sym_as] = ACTIONS(3265), [anon_sym_LBRACE] = ACTIONS(3265), @@ -141843,7 +143064,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3265), [anon_sym_DASH] = ACTIONS(3265), [anon_sym_STAR] = ACTIONS(3265), - [anon_sym_SLASH] = ACTIONS(3265), [anon_sym_PERCENT] = ACTIONS(3265), [anon_sym_LT] = ACTIONS(3265), [anon_sym_GT] = ACTIONS(3265), @@ -141922,211 +143142,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3265), [sym___r_single_quote] = ACTIONS(3265), }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(3235), - [sym_identifier] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_CR] = ACTIONS(3237), - [anon_sym_CR_LF] = ACTIONS(3237), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym___global] = ACTIONS(3237), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_PERCENT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3237), - [anon_sym_GT] = ACTIONS(3237), - [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(3235), - [anon_sym_struct] = ACTIONS(3237), - [anon_sym_union] = ACTIONS(3237), - [anon_sym_pub] = ACTIONS(3237), - [anon_sym_mut] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_go] = ACTIONS(3237), - [anon_sym_spawn] = ACTIONS(3237), - [anon_sym_json_DOTdecode] = ACTIONS(3237), - [anon_sym_LBRACK2] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [anon_sym_LT_DASH] = ACTIONS(3237), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3237), - [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(3237), - [sym_none] = ACTIONS(3237), - [sym_true] = ACTIONS(3237), - [sym_false] = ACTIONS(3237), - [sym_nil] = ACTIONS(3237), - [anon_sym_QMARK_DOT] = ACTIONS(3237), - [anon_sym_POUND_LBRACK] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_DOLLARif] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3237), - [anon_sym_BANGis] = ACTIONS(3237), - [anon_sym_in] = ACTIONS(3237), - [anon_sym_BANGin] = ACTIONS(3237), - [anon_sym_match] = ACTIONS(3237), - [anon_sym_select] = ACTIONS(3237), - [anon_sym_lock] = ACTIONS(3237), - [anon_sym_rlock] = ACTIONS(3237), - [anon_sym_unsafe] = ACTIONS(3237), - [anon_sym_sql] = ACTIONS(3237), - [sym_int_literal] = ACTIONS(3237), - [sym_float_literal] = ACTIONS(3237), - [sym_rune_literal] = ACTIONS(3237), - [sym_pseudo_compile_time_identifier] = ACTIONS(3237), - [anon_sym_shared] = ACTIONS(3237), - [anon_sym_map_LBRACK] = ACTIONS(3237), - [anon_sym_chan] = ACTIONS(3237), - [anon_sym_thread] = ACTIONS(3237), - [anon_sym_atomic] = ACTIONS(3237), - [anon_sym_assert] = ACTIONS(3237), - [anon_sym_defer] = ACTIONS(3237), - [anon_sym_goto] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_DOLLARfor] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_POUND] = ACTIONS(3237), - [anon_sym_asm] = ACTIONS(3237), - [anon_sym_AT_LBRACK] = ACTIONS(3237), - [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), + [1032] = { + [sym_line_comment] = STATE(1032), + [sym_block_comment] = STATE(1032), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3335), + [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_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), }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(3195), - [sym_identifier] = ACTIONS(3197), - [anon_sym_LF] = ACTIONS(3197), - [anon_sym_CR] = ACTIONS(3197), - [anon_sym_CR_LF] = ACTIONS(3197), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym___global] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [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(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_pub] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_interface] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3197), - [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(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [sym_pseudo_compile_time_identifier] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_defer] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_DOLLARfor] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym_AT_LBRACK] = ACTIONS(3197), - [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), + [1033] = { + [sym_line_comment] = STATE(1033), + [sym_block_comment] = STATE(1033), + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2743), + [anon_sym_LF] = ACTIONS(2743), + [anon_sym_CR] = ACTIONS(2743), + [anon_sym_CR_LF] = ACTIONS(2743), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_as] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym___global] = ACTIONS(2743), + [anon_sym_type] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [anon_sym_EQ_EQ] = ACTIONS(2743), + [anon_sym_BANG_EQ] = ACTIONS(2743), + [anon_sym_LT_EQ] = ACTIONS(2743), + [anon_sym_GT_EQ] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_pub] = ACTIONS(2743), + [anon_sym_mut] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_interface] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_go] = ACTIONS(2743), + [anon_sym_spawn] = ACTIONS(2743), + [anon_sym_json_DOTdecode] = ACTIONS(2743), + [anon_sym_LBRACK2] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2743), + [anon_sym_LT_LT] = ACTIONS(2743), + [anon_sym_GT_GT] = ACTIONS(2743), + [anon_sym_GT_GT_GT] = ACTIONS(2743), + [anon_sym_AMP_CARET] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_PIPE_PIPE] = ACTIONS(2743), + [anon_sym_or] = ACTIONS(2743), + [sym_none] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_nil] = ACTIONS(2743), + [anon_sym_QMARK_DOT] = ACTIONS(2743), + [anon_sym_POUND_LBRACK] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_DOLLARif] = ACTIONS(2743), + [anon_sym_is] = ACTIONS(2743), + [anon_sym_BANGis] = ACTIONS(2743), + [anon_sym_in] = ACTIONS(2743), + [anon_sym_BANGin] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_select] = ACTIONS(2743), + [anon_sym_lock] = ACTIONS(2743), + [anon_sym_rlock] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_sql] = ACTIONS(2743), + [sym_int_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), + [sym_rune_literal] = ACTIONS(2743), + [sym_pseudo_compile_time_identifier] = ACTIONS(2743), + [anon_sym_shared] = ACTIONS(2743), + [anon_sym_map_LBRACK] = ACTIONS(2743), + [anon_sym_chan] = ACTIONS(2743), + [anon_sym_thread] = ACTIONS(2743), + [anon_sym_atomic] = ACTIONS(2743), + [anon_sym_assert] = ACTIONS(2743), + [anon_sym_defer] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_DOLLARfor] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym_AT_LBRACK] = ACTIONS(2743), + [sym___double_quote] = ACTIONS(2743), + [sym___single_quote] = ACTIONS(2743), + [sym___c_double_quote] = ACTIONS(2743), + [sym___c_single_quote] = ACTIONS(2743), + [sym___r_double_quote] = ACTIONS(2743), + [sym___r_single_quote] = ACTIONS(2743), + }, + [1034] = { + [sym_line_comment] = STATE(1034), + [sym_block_comment] = STATE(1034), + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3261), + [anon_sym_LF] = ACTIONS(3261), + [anon_sym_CR] = ACTIONS(3261), + [anon_sym_CR_LF] = ACTIONS(3261), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_const] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym___global] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3261), + [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(3259), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_union] = ACTIONS(3261), + [anon_sym_pub] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_enum] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3261), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_LT_LT] = ACTIONS(3261), + [anon_sym_GT_GT] = ACTIONS(3261), + [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(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_QMARK_DOT] = ACTIONS(3261), + [anon_sym_POUND_LBRACK] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_is] = ACTIONS(3261), + [anon_sym_BANGis] = ACTIONS(3261), + [anon_sym_in] = ACTIONS(3261), + [anon_sym_BANGin] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3261), + [sym_rune_literal] = ACTIONS(3261), + [sym_pseudo_compile_time_identifier] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3261), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_defer] = ACTIONS(3261), + [anon_sym_goto] = ACTIONS(3261), + [anon_sym_break] = ACTIONS(3261), + [anon_sym_continue] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_DOLLARfor] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_POUND] = ACTIONS(3261), + [anon_sym_asm] = ACTIONS(3261), + [anon_sym_AT_LBRACK] = ACTIONS(3261), + [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), + }, + [1035] = { + [sym_line_comment] = STATE(1035), + [sym_block_comment] = STATE(1035), + [ts_builtin_sym_end] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3257), + [anon_sym_LF] = ACTIONS(3257), + [anon_sym_CR] = ACTIONS(3257), + [anon_sym_CR_LF] = ACTIONS(3257), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym___global] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3257), + [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(3255), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_union] = ACTIONS(3257), + [anon_sym_pub] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3257), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_LT_LT] = ACTIONS(3257), + [anon_sym_GT_GT] = ACTIONS(3257), + [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(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_QMARK_DOT] = ACTIONS(3257), + [anon_sym_POUND_LBRACK] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_is] = ACTIONS(3257), + [anon_sym_BANGis] = ACTIONS(3257), + [anon_sym_in] = ACTIONS(3257), + [anon_sym_BANGin] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3257), + [sym_rune_literal] = ACTIONS(3257), + [sym_pseudo_compile_time_identifier] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3257), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_defer] = ACTIONS(3257), + [anon_sym_goto] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_DOLLARfor] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(3257), + [anon_sym_asm] = ACTIONS(3257), + [anon_sym_AT_LBRACK] = ACTIONS(3257), + [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), }, - [1023] = { + [1036] = { + [sym_line_comment] = STATE(1036), + [sym_block_comment] = STATE(1036), [ts_builtin_sym_end] = ACTIONS(3251), [sym_identifier] = ACTIONS(3253), [anon_sym_LF] = ACTIONS(3253), [anon_sym_CR] = ACTIONS(3253), [anon_sym_CR_LF] = ACTIONS(3253), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3253), [anon_sym_DOT] = ACTIONS(3253), [anon_sym_as] = ACTIONS(3253), [anon_sym_LBRACE] = ACTIONS(3253), @@ -142140,7 +143574,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3253), [anon_sym_DASH] = ACTIONS(3253), [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_SLASH] = ACTIONS(3253), [anon_sym_PERCENT] = ACTIONS(3253), [anon_sym_LT] = ACTIONS(3253), [anon_sym_GT] = ACTIONS(3253), @@ -142219,1755 +143652,1707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3253), [sym___r_single_quote] = ACTIONS(3253), }, - [1024] = { - [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), - [sym_comment] = ACTIONS(495), - [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), - }, - [1025] = { - [ts_builtin_sym_end] = ACTIONS(3418), - [sym_identifier] = ACTIONS(3420), - [anon_sym_LF] = ACTIONS(3420), - [anon_sym_CR] = ACTIONS(3420), - [anon_sym_CR_LF] = ACTIONS(3420), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_COMMA] = ACTIONS(3420), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_LPAREN] = ACTIONS(3420), - [anon_sym___global] = ACTIONS(3420), - [anon_sym_type] = ACTIONS(3420), - [anon_sym_PIPE] = ACTIONS(3420), - [anon_sym_fn] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [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(3418), - [anon_sym_struct] = ACTIONS(3420), - [anon_sym_union] = ACTIONS(3420), - [anon_sym_pub] = ACTIONS(3420), - [anon_sym_mut] = ACTIONS(3420), - [anon_sym_enum] = ACTIONS(3420), - [anon_sym_interface] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_QMARK] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(3420), - [anon_sym_spawn] = ACTIONS(3420), - [anon_sym_json_DOTdecode] = ACTIONS(3420), - [anon_sym_LBRACK2] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_CARET] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_LT_DASH] = ACTIONS(3420), - [anon_sym_LT_LT] = ACTIONS(3420), - [anon_sym_GT_GT] = ACTIONS(3420), - [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(3420), - [sym_none] = ACTIONS(3420), - [sym_true] = ACTIONS(3420), - [sym_false] = ACTIONS(3420), - [sym_nil] = ACTIONS(3420), - [anon_sym_QMARK_DOT] = ACTIONS(3420), - [anon_sym_POUND_LBRACK] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_DOLLARif] = ACTIONS(3420), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_BANGin] = ACTIONS(3420), - [anon_sym_match] = ACTIONS(3420), - [anon_sym_select] = ACTIONS(3420), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3420), - [anon_sym_sql] = ACTIONS(3420), - [sym_int_literal] = ACTIONS(3420), - [sym_float_literal] = ACTIONS(3420), - [sym_rune_literal] = ACTIONS(3420), - [sym_pseudo_compile_time_identifier] = ACTIONS(3420), - [anon_sym_shared] = ACTIONS(3420), - [anon_sym_map_LBRACK] = ACTIONS(3420), - [anon_sym_chan] = ACTIONS(3420), - [anon_sym_thread] = ACTIONS(3420), - [anon_sym_atomic] = ACTIONS(3420), - [anon_sym_assert] = ACTIONS(3420), - [anon_sym_defer] = ACTIONS(3420), - [anon_sym_goto] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_DOLLARfor] = ACTIONS(3420), - [anon_sym_for] = ACTIONS(3420), - [anon_sym_POUND] = ACTIONS(3420), - [anon_sym_asm] = ACTIONS(3420), - [anon_sym_AT_LBRACK] = ACTIONS(3420), - [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), - }, - [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), - [sym_comment] = ACTIONS(495), - [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] = { - [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), - [sym_comment] = ACTIONS(495), - [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), - }, - [1028] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [1037] = { + [sym_line_comment] = STATE(1037), + [sym_block_comment] = STATE(1037), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3351), + [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_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), }, - [1029] = { - [ts_builtin_sym_end] = ACTIONS(3183), - [sym_identifier] = ACTIONS(3185), - [anon_sym_LF] = ACTIONS(3185), - [anon_sym_CR] = ACTIONS(3185), - [anon_sym_CR_LF] = ACTIONS(3185), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym___global] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [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(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_union] = ACTIONS(3185), - [anon_sym_pub] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3185), - [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(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [sym_pseudo_compile_time_identifier] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_defer] = ACTIONS(3185), - [anon_sym_goto] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_DOLLARfor] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_asm] = ACTIONS(3185), - [anon_sym_AT_LBRACK] = ACTIONS(3185), - [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), + [1038] = { + [sym_line_comment] = STATE(1038), + [sym_block_comment] = STATE(1038), + [ts_builtin_sym_end] = ACTIONS(3127), + [sym_identifier] = ACTIONS(3129), + [anon_sym_LF] = ACTIONS(3129), + [anon_sym_CR] = ACTIONS(3129), + [anon_sym_CR_LF] = ACTIONS(3129), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3129), + [anon_sym_as] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3129), + [anon_sym___global] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_PIPE] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_PERCENT] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3129), + [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(3127), + [anon_sym_struct] = ACTIONS(3129), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_pub] = ACTIONS(3129), + [anon_sym_mut] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3129), + [anon_sym_DASH_DASH] = ACTIONS(3129), + [anon_sym_QMARK] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_go] = ACTIONS(3129), + [anon_sym_spawn] = ACTIONS(3129), + [anon_sym_json_DOTdecode] = ACTIONS(3129), + [anon_sym_LBRACK2] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_CARET] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_LT_DASH] = ACTIONS(3129), + [anon_sym_LT_LT] = ACTIONS(3129), + [anon_sym_GT_GT] = ACTIONS(3129), + [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(3129), + [sym_none] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_nil] = ACTIONS(3129), + [anon_sym_QMARK_DOT] = ACTIONS(3129), + [anon_sym_POUND_LBRACK] = ACTIONS(3129), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_DOLLARif] = ACTIONS(3129), + [anon_sym_is] = ACTIONS(3129), + [anon_sym_BANGis] = ACTIONS(3129), + [anon_sym_in] = ACTIONS(3129), + [anon_sym_BANGin] = ACTIONS(3129), + [anon_sym_match] = ACTIONS(3129), + [anon_sym_select] = ACTIONS(3129), + [anon_sym_lock] = ACTIONS(3129), + [anon_sym_rlock] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(3129), + [anon_sym_sql] = ACTIONS(3129), + [sym_int_literal] = ACTIONS(3129), + [sym_float_literal] = ACTIONS(3129), + [sym_rune_literal] = ACTIONS(3129), + [sym_pseudo_compile_time_identifier] = ACTIONS(3129), + [anon_sym_shared] = ACTIONS(3129), + [anon_sym_map_LBRACK] = ACTIONS(3129), + [anon_sym_chan] = ACTIONS(3129), + [anon_sym_thread] = ACTIONS(3129), + [anon_sym_atomic] = ACTIONS(3129), + [anon_sym_assert] = ACTIONS(3129), + [anon_sym_defer] = ACTIONS(3129), + [anon_sym_goto] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_DOLLARfor] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_POUND] = ACTIONS(3129), + [anon_sym_asm] = ACTIONS(3129), + [anon_sym_AT_LBRACK] = ACTIONS(3129), + [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), }, - [1030] = { - [ts_builtin_sym_end] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3452), - [anon_sym_LF] = ACTIONS(3452), - [anon_sym_CR] = ACTIONS(3452), - [anon_sym_CR_LF] = ACTIONS(3452), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3452), - [anon_sym_as] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3452), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3452), - [anon_sym___global] = ACTIONS(3452), - [anon_sym_type] = ACTIONS(3452), - [anon_sym_PIPE] = ACTIONS(3452), - [anon_sym_fn] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_SLASH] = ACTIONS(3452), - [anon_sym_PERCENT] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_GT] = ACTIONS(3452), - [anon_sym_EQ_EQ] = ACTIONS(3452), - [anon_sym_BANG_EQ] = ACTIONS(3452), - [anon_sym_LT_EQ] = ACTIONS(3452), - [anon_sym_GT_EQ] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3452), - [anon_sym_union] = ACTIONS(3452), - [anon_sym_pub] = ACTIONS(3452), - [anon_sym_mut] = ACTIONS(3452), - [anon_sym_enum] = ACTIONS(3452), - [anon_sym_interface] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3452), - [anon_sym_DASH_DASH] = ACTIONS(3452), - [anon_sym_QMARK] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_go] = ACTIONS(3452), - [anon_sym_spawn] = ACTIONS(3452), - [anon_sym_json_DOTdecode] = ACTIONS(3452), - [anon_sym_LBRACK2] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_CARET] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_LT_DASH] = ACTIONS(3452), - [anon_sym_LT_LT] = ACTIONS(3452), - [anon_sym_GT_GT] = ACTIONS(3452), - [anon_sym_GT_GT_GT] = ACTIONS(3452), - [anon_sym_AMP_CARET] = ACTIONS(3452), - [anon_sym_AMP_AMP] = ACTIONS(3452), - [anon_sym_PIPE_PIPE] = ACTIONS(3452), - [anon_sym_or] = ACTIONS(3452), - [sym_none] = ACTIONS(3452), - [sym_true] = ACTIONS(3452), - [sym_false] = ACTIONS(3452), - [sym_nil] = ACTIONS(3452), - [anon_sym_QMARK_DOT] = ACTIONS(3452), - [anon_sym_POUND_LBRACK] = ACTIONS(3452), - [anon_sym_if] = ACTIONS(3452), - [anon_sym_DOLLARif] = ACTIONS(3452), - [anon_sym_is] = ACTIONS(3452), - [anon_sym_BANGis] = ACTIONS(3452), - [anon_sym_in] = ACTIONS(3452), - [anon_sym_BANGin] = ACTIONS(3452), - [anon_sym_match] = ACTIONS(3452), - [anon_sym_select] = ACTIONS(3452), - [anon_sym_lock] = ACTIONS(3452), - [anon_sym_rlock] = ACTIONS(3452), - [anon_sym_unsafe] = ACTIONS(3452), - [anon_sym_sql] = ACTIONS(3452), - [sym_int_literal] = ACTIONS(3452), - [sym_float_literal] = ACTIONS(3452), - [sym_rune_literal] = ACTIONS(3452), - [sym_pseudo_compile_time_identifier] = ACTIONS(3452), - [anon_sym_shared] = ACTIONS(3452), - [anon_sym_map_LBRACK] = ACTIONS(3452), - [anon_sym_chan] = ACTIONS(3452), - [anon_sym_thread] = ACTIONS(3452), - [anon_sym_atomic] = ACTIONS(3452), - [anon_sym_assert] = ACTIONS(3452), - [anon_sym_defer] = ACTIONS(3452), - [anon_sym_goto] = ACTIONS(3452), - [anon_sym_break] = ACTIONS(3452), - [anon_sym_continue] = ACTIONS(3452), - [anon_sym_return] = ACTIONS(3452), - [anon_sym_DOLLARfor] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3452), - [anon_sym_asm] = ACTIONS(3452), - [anon_sym_AT_LBRACK] = ACTIONS(3452), - [sym___double_quote] = ACTIONS(3452), - [sym___single_quote] = ACTIONS(3452), - [sym___c_double_quote] = ACTIONS(3452), - [sym___c_single_quote] = ACTIONS(3452), - [sym___r_double_quote] = ACTIONS(3452), - [sym___r_single_quote] = ACTIONS(3452), + [1039] = { + [sym_line_comment] = STATE(1039), + [sym_block_comment] = STATE(1039), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [anon_sym_LF] = ACTIONS(3221), + [anon_sym_CR] = ACTIONS(3221), + [anon_sym_CR_LF] = ACTIONS(3221), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_as] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3221), + [anon_sym_const] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym___global] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_fn] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT] = ACTIONS(3221), + [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(3219), + [anon_sym_struct] = ACTIONS(3221), + [anon_sym_union] = ACTIONS(3221), + [anon_sym_pub] = ACTIONS(3221), + [anon_sym_mut] = ACTIONS(3221), + [anon_sym_enum] = ACTIONS(3221), + [anon_sym_interface] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_go] = ACTIONS(3221), + [anon_sym_spawn] = ACTIONS(3221), + [anon_sym_json_DOTdecode] = ACTIONS(3221), + [anon_sym_LBRACK2] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_CARET] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_LT_LT] = ACTIONS(3221), + [anon_sym_GT_GT] = ACTIONS(3221), + [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(3221), + [sym_none] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_nil] = ACTIONS(3221), + [anon_sym_QMARK_DOT] = ACTIONS(3221), + [anon_sym_POUND_LBRACK] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_DOLLARif] = ACTIONS(3221), + [anon_sym_is] = ACTIONS(3221), + [anon_sym_BANGis] = ACTIONS(3221), + [anon_sym_in] = ACTIONS(3221), + [anon_sym_BANGin] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_lock] = ACTIONS(3221), + [anon_sym_rlock] = ACTIONS(3221), + [anon_sym_unsafe] = ACTIONS(3221), + [anon_sym_sql] = ACTIONS(3221), + [sym_int_literal] = ACTIONS(3221), + [sym_float_literal] = ACTIONS(3221), + [sym_rune_literal] = ACTIONS(3221), + [sym_pseudo_compile_time_identifier] = ACTIONS(3221), + [anon_sym_shared] = ACTIONS(3221), + [anon_sym_map_LBRACK] = ACTIONS(3221), + [anon_sym_chan] = ACTIONS(3221), + [anon_sym_thread] = ACTIONS(3221), + [anon_sym_atomic] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_defer] = ACTIONS(3221), + [anon_sym_goto] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_DOLLARfor] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_POUND] = ACTIONS(3221), + [anon_sym_asm] = ACTIONS(3221), + [anon_sym_AT_LBRACK] = ACTIONS(3221), + [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), }, - [1031] = { - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_CR] = ACTIONS(3424), - [anon_sym_CR_LF] = ACTIONS(3424), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3424), - [anon_sym_as] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_COMMA] = ACTIONS(3424), - [anon_sym_const] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym___global] = ACTIONS(3424), - [anon_sym_type] = ACTIONS(3424), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_fn] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_SLASH] = ACTIONS(3424), - [anon_sym_PERCENT] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [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(3422), - [anon_sym_struct] = ACTIONS(3424), - [anon_sym_union] = ACTIONS(3424), - [anon_sym_pub] = ACTIONS(3424), - [anon_sym_mut] = ACTIONS(3424), - [anon_sym_enum] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [anon_sym_QMARK] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_go] = ACTIONS(3424), - [anon_sym_spawn] = ACTIONS(3424), - [anon_sym_json_DOTdecode] = ACTIONS(3424), - [anon_sym_LBRACK2] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_CARET] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - [anon_sym_LT_DASH] = ACTIONS(3424), - [anon_sym_LT_LT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [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(3424), - [sym_none] = ACTIONS(3424), - [sym_true] = ACTIONS(3424), - [sym_false] = ACTIONS(3424), - [sym_nil] = ACTIONS(3424), - [anon_sym_QMARK_DOT] = ACTIONS(3424), - [anon_sym_POUND_LBRACK] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_DOLLARif] = ACTIONS(3424), - [anon_sym_is] = ACTIONS(3424), - [anon_sym_BANGis] = ACTIONS(3424), - [anon_sym_in] = ACTIONS(3424), - [anon_sym_BANGin] = ACTIONS(3424), - [anon_sym_match] = ACTIONS(3424), - [anon_sym_select] = ACTIONS(3424), - [anon_sym_lock] = ACTIONS(3424), - [anon_sym_rlock] = ACTIONS(3424), - [anon_sym_unsafe] = ACTIONS(3424), - [anon_sym_sql] = ACTIONS(3424), - [sym_int_literal] = ACTIONS(3424), - [sym_float_literal] = ACTIONS(3424), - [sym_rune_literal] = ACTIONS(3424), - [sym_pseudo_compile_time_identifier] = ACTIONS(3424), - [anon_sym_shared] = ACTIONS(3424), - [anon_sym_map_LBRACK] = ACTIONS(3424), - [anon_sym_chan] = ACTIONS(3424), - [anon_sym_thread] = ACTIONS(3424), - [anon_sym_atomic] = ACTIONS(3424), - [anon_sym_assert] = ACTIONS(3424), - [anon_sym_defer] = ACTIONS(3424), - [anon_sym_goto] = ACTIONS(3424), - [anon_sym_break] = ACTIONS(3424), - [anon_sym_continue] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3424), - [anon_sym_DOLLARfor] = ACTIONS(3424), - [anon_sym_for] = ACTIONS(3424), - [anon_sym_POUND] = ACTIONS(3424), - [anon_sym_asm] = ACTIONS(3424), - [anon_sym_AT_LBRACK] = ACTIONS(3424), - [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), + [1040] = { + [sym_line_comment] = STATE(1040), + [sym_block_comment] = STATE(1040), + [ts_builtin_sym_end] = ACTIONS(3123), + [sym_identifier] = ACTIONS(3125), + [anon_sym_LF] = ACTIONS(3125), + [anon_sym_CR] = ACTIONS(3125), + [anon_sym_CR_LF] = ACTIONS(3125), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3125), + [anon_sym_as] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_const] = ACTIONS(3125), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym___global] = ACTIONS(3125), + [anon_sym_type] = ACTIONS(3125), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_PERCENT] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_GT] = ACTIONS(3125), + [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(3123), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_union] = ACTIONS(3125), + [anon_sym_pub] = ACTIONS(3125), + [anon_sym_mut] = ACTIONS(3125), + [anon_sym_enum] = ACTIONS(3125), + [anon_sym_interface] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3125), + [anon_sym_DASH_DASH] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_go] = ACTIONS(3125), + [anon_sym_spawn] = ACTIONS(3125), + [anon_sym_json_DOTdecode] = ACTIONS(3125), + [anon_sym_LBRACK2] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_CARET] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT_DASH] = ACTIONS(3125), + [anon_sym_LT_LT] = ACTIONS(3125), + [anon_sym_GT_GT] = ACTIONS(3125), + [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(3125), + [sym_none] = ACTIONS(3125), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [sym_nil] = ACTIONS(3125), + [anon_sym_QMARK_DOT] = ACTIONS(3125), + [anon_sym_POUND_LBRACK] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_DOLLARif] = ACTIONS(3125), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3125), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_BANGin] = ACTIONS(3125), + [anon_sym_match] = ACTIONS(3125), + [anon_sym_select] = ACTIONS(3125), + [anon_sym_lock] = ACTIONS(3125), + [anon_sym_rlock] = ACTIONS(3125), + [anon_sym_unsafe] = ACTIONS(3125), + [anon_sym_sql] = ACTIONS(3125), + [sym_int_literal] = ACTIONS(3125), + [sym_float_literal] = ACTIONS(3125), + [sym_rune_literal] = ACTIONS(3125), + [sym_pseudo_compile_time_identifier] = ACTIONS(3125), + [anon_sym_shared] = ACTIONS(3125), + [anon_sym_map_LBRACK] = ACTIONS(3125), + [anon_sym_chan] = ACTIONS(3125), + [anon_sym_thread] = ACTIONS(3125), + [anon_sym_atomic] = ACTIONS(3125), + [anon_sym_assert] = ACTIONS(3125), + [anon_sym_defer] = ACTIONS(3125), + [anon_sym_goto] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_DOLLARfor] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3125), + [anon_sym_POUND] = ACTIONS(3125), + [anon_sym_asm] = ACTIONS(3125), + [anon_sym_AT_LBRACK] = ACTIONS(3125), + [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), }, - [1032] = { - [ts_builtin_sym_end] = ACTIONS(3259), - [sym_identifier] = ACTIONS(3261), - [anon_sym_LF] = ACTIONS(3261), - [anon_sym_CR] = ACTIONS(3261), - [anon_sym_CR_LF] = ACTIONS(3261), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3261), - [anon_sym_as] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_LPAREN] = ACTIONS(3261), - [anon_sym___global] = ACTIONS(3261), - [anon_sym_type] = ACTIONS(3261), - [anon_sym_PIPE] = ACTIONS(3261), - [anon_sym_fn] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_SLASH] = ACTIONS(3261), - [anon_sym_PERCENT] = ACTIONS(3261), - [anon_sym_LT] = ACTIONS(3261), - [anon_sym_GT] = ACTIONS(3261), - [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(3259), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [anon_sym_pub] = ACTIONS(3261), - [anon_sym_mut] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_interface] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_QMARK] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_go] = ACTIONS(3261), - [anon_sym_spawn] = ACTIONS(3261), - [anon_sym_json_DOTdecode] = ACTIONS(3261), - [anon_sym_LBRACK2] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_CARET] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym_LT_DASH] = ACTIONS(3261), - [anon_sym_LT_LT] = ACTIONS(3261), - [anon_sym_GT_GT] = ACTIONS(3261), - [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(3261), - [sym_none] = ACTIONS(3261), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [sym_nil] = ACTIONS(3261), - [anon_sym_QMARK_DOT] = ACTIONS(3261), - [anon_sym_POUND_LBRACK] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_DOLLARif] = ACTIONS(3261), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3261), - [anon_sym_in] = ACTIONS(3261), - [anon_sym_BANGin] = ACTIONS(3261), - [anon_sym_match] = ACTIONS(3261), - [anon_sym_select] = ACTIONS(3261), - [anon_sym_lock] = ACTIONS(3261), - [anon_sym_rlock] = ACTIONS(3261), - [anon_sym_unsafe] = ACTIONS(3261), - [anon_sym_sql] = ACTIONS(3261), - [sym_int_literal] = ACTIONS(3261), - [sym_float_literal] = ACTIONS(3261), - [sym_rune_literal] = ACTIONS(3261), - [sym_pseudo_compile_time_identifier] = ACTIONS(3261), - [anon_sym_shared] = ACTIONS(3261), - [anon_sym_map_LBRACK] = ACTIONS(3261), - [anon_sym_chan] = ACTIONS(3261), - [anon_sym_thread] = ACTIONS(3261), - [anon_sym_atomic] = ACTIONS(3261), - [anon_sym_assert] = ACTIONS(3261), - [anon_sym_defer] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_DOLLARfor] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_POUND] = ACTIONS(3261), - [anon_sym_asm] = ACTIONS(3261), - [anon_sym_AT_LBRACK] = ACTIONS(3261), - [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), + [1041] = { + [sym_line_comment] = STATE(1041), + [sym_block_comment] = STATE(1041), + [ts_builtin_sym_end] = ACTIONS(3057), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_CR] = ACTIONS(3059), + [anon_sym_CR_LF] = ACTIONS(3059), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(3059), + [anon_sym_as] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym___global] = ACTIONS(3059), + [anon_sym_type] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3059), + [anon_sym_fn] = ACTIONS(3059), + [anon_sym_PLUS] = ACTIONS(3059), + [anon_sym_DASH] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_PERCENT] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(3059), + [anon_sym_GT] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [anon_sym_pub] = ACTIONS(3059), + [anon_sym_mut] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_interface] = ACTIONS(3059), + [anon_sym_PLUS_PLUS] = ACTIONS(3059), + [anon_sym_DASH_DASH] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3059), + [anon_sym_BANG] = ACTIONS(3059), + [anon_sym_go] = ACTIONS(3059), + [anon_sym_spawn] = ACTIONS(3059), + [anon_sym_json_DOTdecode] = ACTIONS(3059), + [anon_sym_LBRACK2] = ACTIONS(3059), + [anon_sym_TILDE] = ACTIONS(3059), + [anon_sym_CARET] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_LT_DASH] = ACTIONS(3059), + [anon_sym_LT_LT] = ACTIONS(3059), + [anon_sym_GT_GT] = ACTIONS(3059), + [anon_sym_GT_GT_GT] = ACTIONS(3059), + [anon_sym_AMP_CARET] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_or] = ACTIONS(3059), + [sym_none] = ACTIONS(3059), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [sym_nil] = ACTIONS(3059), + [anon_sym_QMARK_DOT] = ACTIONS(3059), + [anon_sym_POUND_LBRACK] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_DOLLARif] = ACTIONS(3059), + [anon_sym_is] = ACTIONS(3059), + [anon_sym_BANGis] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(3059), + [anon_sym_match] = ACTIONS(3059), + [anon_sym_select] = ACTIONS(3059), + [anon_sym_lock] = ACTIONS(3059), + [anon_sym_rlock] = ACTIONS(3059), + [anon_sym_unsafe] = ACTIONS(3059), + [anon_sym_sql] = ACTIONS(3059), + [sym_int_literal] = ACTIONS(3059), + [sym_float_literal] = ACTIONS(3059), + [sym_rune_literal] = ACTIONS(3059), + [sym_pseudo_compile_time_identifier] = ACTIONS(3059), + [anon_sym_shared] = ACTIONS(3059), + [anon_sym_map_LBRACK] = ACTIONS(3059), + [anon_sym_chan] = ACTIONS(3059), + [anon_sym_thread] = ACTIONS(3059), + [anon_sym_atomic] = ACTIONS(3059), + [anon_sym_assert] = ACTIONS(3059), + [anon_sym_defer] = ACTIONS(3059), + [anon_sym_goto] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_DOLLARfor] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3059), + [anon_sym_POUND] = ACTIONS(3059), + [anon_sym_asm] = ACTIONS(3059), + [anon_sym_AT_LBRACK] = ACTIONS(3059), + [sym___double_quote] = ACTIONS(3059), + [sym___single_quote] = ACTIONS(3059), + [sym___c_double_quote] = ACTIONS(3059), + [sym___c_single_quote] = ACTIONS(3059), + [sym___r_double_quote] = ACTIONS(3059), + [sym___r_single_quote] = ACTIONS(3059), }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(3434), - [sym_identifier] = ACTIONS(3436), - [anon_sym_LF] = ACTIONS(3436), - [anon_sym_CR] = ACTIONS(3436), - [anon_sym_CR_LF] = ACTIONS(3436), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3436), - [anon_sym_COMMA] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_LPAREN] = ACTIONS(3436), - [anon_sym___global] = ACTIONS(3436), - [anon_sym_type] = ACTIONS(3436), - [anon_sym_PIPE] = ACTIONS(3436), - [anon_sym_fn] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [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(3434), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_union] = ACTIONS(3436), - [anon_sym_pub] = ACTIONS(3436), - [anon_sym_mut] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_interface] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3436), - [anon_sym_DASH_DASH] = ACTIONS(3436), - [anon_sym_QMARK] = ACTIONS(3436), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_go] = ACTIONS(3436), - [anon_sym_spawn] = ACTIONS(3436), - [anon_sym_json_DOTdecode] = ACTIONS(3436), - [anon_sym_LBRACK2] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3436), - [anon_sym_CARET] = ACTIONS(3436), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_LT_DASH] = ACTIONS(3436), - [anon_sym_LT_LT] = ACTIONS(3436), - [anon_sym_GT_GT] = ACTIONS(3436), - [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(3436), - [sym_none] = ACTIONS(3436), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [sym_nil] = ACTIONS(3436), - [anon_sym_QMARK_DOT] = ACTIONS(3436), - [anon_sym_POUND_LBRACK] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_DOLLARif] = ACTIONS(3436), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_BANGin] = ACTIONS(3436), - [anon_sym_match] = ACTIONS(3436), - [anon_sym_select] = ACTIONS(3436), - [anon_sym_lock] = ACTIONS(3436), - [anon_sym_rlock] = ACTIONS(3436), - [anon_sym_unsafe] = ACTIONS(3436), - [anon_sym_sql] = ACTIONS(3436), - [sym_int_literal] = ACTIONS(3436), - [sym_float_literal] = ACTIONS(3436), - [sym_rune_literal] = ACTIONS(3436), - [sym_pseudo_compile_time_identifier] = ACTIONS(3436), - [anon_sym_shared] = ACTIONS(3436), - [anon_sym_map_LBRACK] = ACTIONS(3436), - [anon_sym_chan] = ACTIONS(3436), - [anon_sym_thread] = ACTIONS(3436), - [anon_sym_atomic] = ACTIONS(3436), - [anon_sym_assert] = ACTIONS(3436), - [anon_sym_defer] = ACTIONS(3436), - [anon_sym_goto] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_DOLLARfor] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_POUND] = ACTIONS(3436), - [anon_sym_asm] = ACTIONS(3436), - [anon_sym_AT_LBRACK] = ACTIONS(3436), - [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), + [1042] = { + [sym_line_comment] = STATE(1042), + [sym_block_comment] = STATE(1042), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3015), + [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_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), }, - [1034] = { - [ts_builtin_sym_end] = ACTIONS(3025), - [sym_identifier] = ACTIONS(3027), - [anon_sym_LF] = ACTIONS(3027), - [anon_sym_CR] = ACTIONS(3027), - [anon_sym_CR_LF] = ACTIONS(3027), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3027), - [anon_sym_as] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_const] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym___global] = ACTIONS(3027), - [anon_sym_type] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3027), - [anon_sym_fn] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_GT] = ACTIONS(3027), - [anon_sym_EQ_EQ] = ACTIONS(3027), - [anon_sym_BANG_EQ] = ACTIONS(3027), - [anon_sym_LT_EQ] = ACTIONS(3027), - [anon_sym_GT_EQ] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_union] = ACTIONS(3027), - [anon_sym_pub] = ACTIONS(3027), - [anon_sym_mut] = ACTIONS(3027), - [anon_sym_enum] = ACTIONS(3027), - [anon_sym_interface] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_QMARK] = ACTIONS(3027), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3027), - [anon_sym_json_DOTdecode] = ACTIONS(3027), - [anon_sym_LBRACK2] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3027), - [anon_sym_CARET] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_LT_DASH] = ACTIONS(3027), - [anon_sym_LT_LT] = ACTIONS(3027), - [anon_sym_GT_GT] = ACTIONS(3027), - [anon_sym_GT_GT_GT] = ACTIONS(3027), - [anon_sym_AMP_CARET] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_PIPE_PIPE] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3027), - [sym_none] = ACTIONS(3027), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_nil] = ACTIONS(3027), - [anon_sym_QMARK_DOT] = ACTIONS(3027), - [anon_sym_POUND_LBRACK] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3027), - [anon_sym_is] = ACTIONS(3027), - [anon_sym_BANGis] = ACTIONS(3027), - [anon_sym_in] = ACTIONS(3027), - [anon_sym_BANGin] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3027), - [anon_sym_select] = ACTIONS(3027), - [anon_sym_lock] = ACTIONS(3027), - [anon_sym_rlock] = ACTIONS(3027), - [anon_sym_unsafe] = ACTIONS(3027), - [anon_sym_sql] = ACTIONS(3027), - [sym_int_literal] = ACTIONS(3027), - [sym_float_literal] = ACTIONS(3027), - [sym_rune_literal] = ACTIONS(3027), - [sym_pseudo_compile_time_identifier] = ACTIONS(3027), - [anon_sym_shared] = ACTIONS(3027), - [anon_sym_map_LBRACK] = ACTIONS(3027), - [anon_sym_chan] = ACTIONS(3027), - [anon_sym_thread] = ACTIONS(3027), - [anon_sym_atomic] = ACTIONS(3027), - [anon_sym_assert] = ACTIONS(3027), - [anon_sym_defer] = ACTIONS(3027), - [anon_sym_goto] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_DOLLARfor] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3027), - [anon_sym_POUND] = ACTIONS(3027), - [anon_sym_asm] = ACTIONS(3027), - [anon_sym_AT_LBRACK] = ACTIONS(3027), - [sym___double_quote] = ACTIONS(3027), - [sym___single_quote] = ACTIONS(3027), - [sym___c_double_quote] = ACTIONS(3027), - [sym___c_single_quote] = ACTIONS(3027), - [sym___r_double_quote] = ACTIONS(3027), - [sym___r_single_quote] = ACTIONS(3027), + [1043] = { + [sym_line_comment] = STATE(1043), + [sym_block_comment] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(3001), + [sym_identifier] = ACTIONS(3003), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_CR] = ACTIONS(3003), + [anon_sym_CR_LF] = ACTIONS(3003), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3003), + [anon_sym_as] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_const] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym___global] = ACTIONS(3003), + [anon_sym_type] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_fn] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(3003), + [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(3001), + [anon_sym_struct] = ACTIONS(3003), + [anon_sym_union] = ACTIONS(3003), + [anon_sym_pub] = ACTIONS(3003), + [anon_sym_mut] = ACTIONS(3003), + [anon_sym_enum] = ACTIONS(3003), + [anon_sym_interface] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_QMARK] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_go] = ACTIONS(3003), + [anon_sym_spawn] = ACTIONS(3003), + [anon_sym_json_DOTdecode] = ACTIONS(3003), + [anon_sym_LBRACK2] = ACTIONS(3003), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_CARET] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_LT_DASH] = ACTIONS(3003), + [anon_sym_LT_LT] = ACTIONS(3003), + [anon_sym_GT_GT] = ACTIONS(3003), + [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(3003), + [sym_none] = ACTIONS(3003), + [sym_true] = ACTIONS(3003), + [sym_false] = ACTIONS(3003), + [sym_nil] = ACTIONS(3003), + [anon_sym_QMARK_DOT] = ACTIONS(3003), + [anon_sym_POUND_LBRACK] = ACTIONS(3003), + [anon_sym_if] = ACTIONS(3003), + [anon_sym_DOLLARif] = ACTIONS(3003), + [anon_sym_is] = ACTIONS(3003), + [anon_sym_BANGis] = ACTIONS(3003), + [anon_sym_in] = ACTIONS(3003), + [anon_sym_BANGin] = ACTIONS(3003), + [anon_sym_match] = ACTIONS(3003), + [anon_sym_select] = ACTIONS(3003), + [anon_sym_lock] = ACTIONS(3003), + [anon_sym_rlock] = ACTIONS(3003), + [anon_sym_unsafe] = ACTIONS(3003), + [anon_sym_sql] = ACTIONS(3003), + [sym_int_literal] = ACTIONS(3003), + [sym_float_literal] = ACTIONS(3003), + [sym_rune_literal] = ACTIONS(3003), + [sym_pseudo_compile_time_identifier] = ACTIONS(3003), + [anon_sym_shared] = ACTIONS(3003), + [anon_sym_map_LBRACK] = ACTIONS(3003), + [anon_sym_chan] = ACTIONS(3003), + [anon_sym_thread] = ACTIONS(3003), + [anon_sym_atomic] = ACTIONS(3003), + [anon_sym_assert] = ACTIONS(3003), + [anon_sym_defer] = ACTIONS(3003), + [anon_sym_goto] = ACTIONS(3003), + [anon_sym_break] = ACTIONS(3003), + [anon_sym_continue] = ACTIONS(3003), + [anon_sym_return] = ACTIONS(3003), + [anon_sym_DOLLARfor] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3003), + [anon_sym_POUND] = ACTIONS(3003), + [anon_sym_asm] = ACTIONS(3003), + [anon_sym_AT_LBRACK] = ACTIONS(3003), + [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), }, - [1035] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [1044] = { + [sym_line_comment] = STATE(1044), + [sym_block_comment] = STATE(1044), + [ts_builtin_sym_end] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2999), + [anon_sym_LF] = ACTIONS(2999), + [anon_sym_CR] = ACTIONS(2999), + [anon_sym_CR_LF] = ACTIONS(2999), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2999), + [anon_sym_as] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_const] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym___global] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_PIPE] = ACTIONS(2999), + [anon_sym_fn] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2999), + [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(2997), + [anon_sym_struct] = ACTIONS(2999), + [anon_sym_union] = ACTIONS(2999), + [anon_sym_pub] = ACTIONS(2999), + [anon_sym_mut] = ACTIONS(2999), + [anon_sym_enum] = ACTIONS(2999), + [anon_sym_interface] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_QMARK] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_go] = ACTIONS(2999), + [anon_sym_spawn] = ACTIONS(2999), + [anon_sym_json_DOTdecode] = ACTIONS(2999), + [anon_sym_LBRACK2] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_CARET] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2999), + [anon_sym_LT_DASH] = ACTIONS(2999), + [anon_sym_LT_LT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(2999), + [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(2999), + [sym_none] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_nil] = ACTIONS(2999), + [anon_sym_QMARK_DOT] = ACTIONS(2999), + [anon_sym_POUND_LBRACK] = ACTIONS(2999), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_DOLLARif] = ACTIONS(2999), + [anon_sym_is] = ACTIONS(2999), + [anon_sym_BANGis] = ACTIONS(2999), + [anon_sym_in] = ACTIONS(2999), + [anon_sym_BANGin] = ACTIONS(2999), + [anon_sym_match] = ACTIONS(2999), + [anon_sym_select] = ACTIONS(2999), + [anon_sym_lock] = ACTIONS(2999), + [anon_sym_rlock] = ACTIONS(2999), + [anon_sym_unsafe] = ACTIONS(2999), + [anon_sym_sql] = ACTIONS(2999), + [sym_int_literal] = ACTIONS(2999), + [sym_float_literal] = ACTIONS(2999), + [sym_rune_literal] = ACTIONS(2999), + [sym_pseudo_compile_time_identifier] = ACTIONS(2999), + [anon_sym_shared] = ACTIONS(2999), + [anon_sym_map_LBRACK] = ACTIONS(2999), + [anon_sym_chan] = ACTIONS(2999), + [anon_sym_thread] = ACTIONS(2999), + [anon_sym_atomic] = ACTIONS(2999), + [anon_sym_assert] = ACTIONS(2999), + [anon_sym_defer] = ACTIONS(2999), + [anon_sym_goto] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_DOLLARfor] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_POUND] = ACTIONS(2999), + [anon_sym_asm] = ACTIONS(2999), + [anon_sym_AT_LBRACK] = ACTIONS(2999), + [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), }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_identifier] = ACTIONS(2907), - [anon_sym_LF] = ACTIONS(2907), - [anon_sym_CR] = ACTIONS(2907), - [anon_sym_CR_LF] = ACTIONS(2907), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_const] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym___global] = ACTIONS(2907), - [anon_sym_type] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [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(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_union] = ACTIONS(2907), - [anon_sym_pub] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_enum] = ACTIONS(2907), - [anon_sym_interface] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2907), - [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(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [sym_pseudo_compile_time_identifier] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [anon_sym_assert] = ACTIONS(2907), - [anon_sym_defer] = ACTIONS(2907), - [anon_sym_goto] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_DOLLARfor] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_asm] = ACTIONS(2907), - [anon_sym_AT_LBRACK] = ACTIONS(2907), - [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), + [1045] = { + [sym_line_comment] = STATE(1045), + [sym_block_comment] = STATE(1045), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3375), + [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_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), }, - [1037] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym___global] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_fn] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [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(3232), - [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(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3227), - [anon_sym_LBRACK2] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [anon_sym_LT_DASH] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [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(3229), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), - [anon_sym_is] = ACTIONS(3229), - [anon_sym_BANGis] = ACTIONS(3229), - [anon_sym_in] = ACTIONS(3229), - [anon_sym_BANGin] = ACTIONS(3229), - [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), + [1046] = { + [sym_line_comment] = STATE(1046), + [sym_block_comment] = STATE(1046), + [ts_builtin_sym_end] = ACTIONS(3211), + [sym_identifier] = ACTIONS(3213), + [anon_sym_LF] = ACTIONS(3213), + [anon_sym_CR] = ACTIONS(3213), + [anon_sym_CR_LF] = ACTIONS(3213), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_DOT] = ACTIONS(3213), + [anon_sym_as] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_COMMA] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym___global] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_PIPE] = ACTIONS(3213), + [anon_sym_fn] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_PERCENT] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_GT] = ACTIONS(3213), + [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(3211), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_pub] = ACTIONS(3213), + [anon_sym_mut] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_QMARK] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_go] = ACTIONS(3213), + [anon_sym_spawn] = ACTIONS(3213), + [anon_sym_json_DOTdecode] = ACTIONS(3213), + [anon_sym_LBRACK2] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_CARET] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_LT_DASH] = ACTIONS(3213), + [anon_sym_LT_LT] = ACTIONS(3213), + [anon_sym_GT_GT] = ACTIONS(3213), + [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(3213), + [sym_none] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_nil] = ACTIONS(3213), + [anon_sym_QMARK_DOT] = ACTIONS(3213), + [anon_sym_POUND_LBRACK] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_DOLLARif] = ACTIONS(3213), + [anon_sym_is] = ACTIONS(3213), + [anon_sym_BANGis] = ACTIONS(3213), + [anon_sym_in] = ACTIONS(3213), + [anon_sym_BANGin] = ACTIONS(3213), + [anon_sym_match] = ACTIONS(3213), + [anon_sym_select] = ACTIONS(3213), + [anon_sym_lock] = ACTIONS(3213), + [anon_sym_rlock] = ACTIONS(3213), + [anon_sym_unsafe] = ACTIONS(3213), + [anon_sym_sql] = ACTIONS(3213), + [sym_int_literal] = ACTIONS(3213), + [sym_float_literal] = ACTIONS(3213), + [sym_rune_literal] = ACTIONS(3213), + [sym_pseudo_compile_time_identifier] = ACTIONS(3213), + [anon_sym_shared] = ACTIONS(3213), + [anon_sym_map_LBRACK] = ACTIONS(3213), + [anon_sym_chan] = ACTIONS(3213), + [anon_sym_thread] = ACTIONS(3213), + [anon_sym_atomic] = ACTIONS(3213), + [anon_sym_assert] = ACTIONS(3213), + [anon_sym_defer] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_DOLLARfor] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_POUND] = ACTIONS(3213), + [anon_sym_asm] = ACTIONS(3213), + [anon_sym_AT_LBRACK] = ACTIONS(3213), + [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), }, - [1038] = { - [ts_builtin_sym_end] = ACTIONS(3267), - [sym_identifier] = ACTIONS(3269), - [anon_sym_LF] = ACTIONS(3269), - [anon_sym_CR] = ACTIONS(3269), - [anon_sym_CR_LF] = ACTIONS(3269), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3269), - [anon_sym_as] = ACTIONS(3269), - [anon_sym_LBRACE] = ACTIONS(3269), - [anon_sym_COMMA] = ACTIONS(3269), - [anon_sym_const] = ACTIONS(3269), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym___global] = ACTIONS(3269), - [anon_sym_type] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_fn] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_PERCENT] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [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(3267), - [anon_sym_struct] = ACTIONS(3269), - [anon_sym_union] = ACTIONS(3269), - [anon_sym_pub] = ACTIONS(3269), - [anon_sym_mut] = ACTIONS(3269), - [anon_sym_enum] = ACTIONS(3269), - [anon_sym_interface] = ACTIONS(3269), - [anon_sym_PLUS_PLUS] = ACTIONS(3269), - [anon_sym_DASH_DASH] = ACTIONS(3269), - [anon_sym_QMARK] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_go] = ACTIONS(3269), - [anon_sym_spawn] = ACTIONS(3269), - [anon_sym_json_DOTdecode] = ACTIONS(3269), - [anon_sym_LBRACK2] = ACTIONS(3269), - [anon_sym_TILDE] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym_AMP] = ACTIONS(3269), - [anon_sym_LT_DASH] = ACTIONS(3269), - [anon_sym_LT_LT] = ACTIONS(3269), - [anon_sym_GT_GT] = ACTIONS(3269), - [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(3269), - [sym_none] = ACTIONS(3269), - [sym_true] = ACTIONS(3269), - [sym_false] = ACTIONS(3269), - [sym_nil] = ACTIONS(3269), - [anon_sym_QMARK_DOT] = ACTIONS(3269), - [anon_sym_POUND_LBRACK] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3269), - [anon_sym_DOLLARif] = ACTIONS(3269), - [anon_sym_is] = ACTIONS(3269), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3269), - [anon_sym_BANGin] = ACTIONS(3269), - [anon_sym_match] = ACTIONS(3269), - [anon_sym_select] = ACTIONS(3269), - [anon_sym_lock] = ACTIONS(3269), - [anon_sym_rlock] = ACTIONS(3269), - [anon_sym_unsafe] = ACTIONS(3269), - [anon_sym_sql] = ACTIONS(3269), - [sym_int_literal] = ACTIONS(3269), - [sym_float_literal] = ACTIONS(3269), - [sym_rune_literal] = ACTIONS(3269), - [sym_pseudo_compile_time_identifier] = ACTIONS(3269), - [anon_sym_shared] = ACTIONS(3269), - [anon_sym_map_LBRACK] = ACTIONS(3269), - [anon_sym_chan] = ACTIONS(3269), - [anon_sym_thread] = ACTIONS(3269), - [anon_sym_atomic] = ACTIONS(3269), - [anon_sym_assert] = ACTIONS(3269), - [anon_sym_defer] = ACTIONS(3269), - [anon_sym_goto] = ACTIONS(3269), - [anon_sym_break] = ACTIONS(3269), - [anon_sym_continue] = ACTIONS(3269), - [anon_sym_return] = ACTIONS(3269), - [anon_sym_DOLLARfor] = ACTIONS(3269), - [anon_sym_for] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3269), - [anon_sym_asm] = ACTIONS(3269), - [anon_sym_AT_LBRACK] = ACTIONS(3269), - [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), + [1047] = { + [sym_line_comment] = STATE(1047), + [sym_block_comment] = STATE(1047), + [ts_builtin_sym_end] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LF] = ACTIONS(2983), + [anon_sym_CR] = ACTIONS(2983), + [anon_sym_CR_LF] = ACTIONS(2983), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2983), + [anon_sym_as] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_const] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym___global] = ACTIONS(2983), + [anon_sym_type] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2983), + [anon_sym_fn] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_GT] = ACTIONS(2983), + [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(2981), + [anon_sym_struct] = ACTIONS(2983), + [anon_sym_union] = ACTIONS(2983), + [anon_sym_pub] = ACTIONS(2983), + [anon_sym_mut] = ACTIONS(2983), + [anon_sym_enum] = ACTIONS(2983), + [anon_sym_interface] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_go] = ACTIONS(2983), + [anon_sym_spawn] = ACTIONS(2983), + [anon_sym_json_DOTdecode] = ACTIONS(2983), + [anon_sym_LBRACK2] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_LT_DASH] = ACTIONS(2983), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2983), + [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(2983), + [sym_none] = ACTIONS(2983), + [sym_true] = ACTIONS(2983), + [sym_false] = ACTIONS(2983), + [sym_nil] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(2983), + [anon_sym_POUND_LBRACK] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_DOLLARif] = ACTIONS(2983), + [anon_sym_is] = ACTIONS(2983), + [anon_sym_BANGis] = ACTIONS(2983), + [anon_sym_in] = ACTIONS(2983), + [anon_sym_BANGin] = ACTIONS(2983), + [anon_sym_match] = ACTIONS(2983), + [anon_sym_select] = ACTIONS(2983), + [anon_sym_lock] = ACTIONS(2983), + [anon_sym_rlock] = ACTIONS(2983), + [anon_sym_unsafe] = ACTIONS(2983), + [anon_sym_sql] = ACTIONS(2983), + [sym_int_literal] = ACTIONS(2983), + [sym_float_literal] = ACTIONS(2983), + [sym_rune_literal] = ACTIONS(2983), + [sym_pseudo_compile_time_identifier] = ACTIONS(2983), + [anon_sym_shared] = ACTIONS(2983), + [anon_sym_map_LBRACK] = ACTIONS(2983), + [anon_sym_chan] = ACTIONS(2983), + [anon_sym_thread] = ACTIONS(2983), + [anon_sym_atomic] = ACTIONS(2983), + [anon_sym_assert] = ACTIONS(2983), + [anon_sym_defer] = ACTIONS(2983), + [anon_sym_goto] = ACTIONS(2983), + [anon_sym_break] = ACTIONS(2983), + [anon_sym_continue] = ACTIONS(2983), + [anon_sym_return] = ACTIONS(2983), + [anon_sym_DOLLARfor] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2983), + [anon_sym_POUND] = ACTIONS(2983), + [anon_sym_asm] = ACTIONS(2983), + [anon_sym_AT_LBRACK] = ACTIONS(2983), + [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), + }, + [1048] = { + [sym_line_comment] = STATE(1048), + [sym_block_comment] = STATE(1048), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3051), + [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_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), }, - [1039] = { - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3392), - [anon_sym_LF] = ACTIONS(3392), - [anon_sym_CR] = ACTIONS(3392), - [anon_sym_CR_LF] = ACTIONS(3392), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3392), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3392), - [anon_sym_COMMA] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym___global] = ACTIONS(3392), - [anon_sym_type] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3392), - [anon_sym_fn] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3392), - [anon_sym_SLASH] = ACTIONS(3392), - [anon_sym_PERCENT] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(3392), - [anon_sym_GT] = ACTIONS(3392), - [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(3390), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_union] = ACTIONS(3392), - [anon_sym_pub] = ACTIONS(3392), - [anon_sym_mut] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), - [anon_sym_interface] = ACTIONS(3392), - [anon_sym_PLUS_PLUS] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3392), - [anon_sym_QMARK] = ACTIONS(3392), - [anon_sym_BANG] = ACTIONS(3392), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3392), - [anon_sym_json_DOTdecode] = ACTIONS(3392), - [anon_sym_LBRACK2] = ACTIONS(3392), - [anon_sym_TILDE] = ACTIONS(3392), - [anon_sym_CARET] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym_LT_DASH] = ACTIONS(3392), - [anon_sym_LT_LT] = ACTIONS(3392), - [anon_sym_GT_GT] = ACTIONS(3392), - [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(3392), - [sym_none] = ACTIONS(3392), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [sym_nil] = ACTIONS(3392), - [anon_sym_QMARK_DOT] = ACTIONS(3392), - [anon_sym_POUND_LBRACK] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_DOLLARif] = ACTIONS(3392), - [anon_sym_is] = ACTIONS(3392), - [anon_sym_BANGis] = ACTIONS(3392), - [anon_sym_in] = ACTIONS(3392), - [anon_sym_BANGin] = ACTIONS(3392), - [anon_sym_match] = ACTIONS(3392), - [anon_sym_select] = ACTIONS(3392), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3392), - [anon_sym_sql] = ACTIONS(3392), - [sym_int_literal] = ACTIONS(3392), - [sym_float_literal] = ACTIONS(3392), - [sym_rune_literal] = ACTIONS(3392), - [sym_pseudo_compile_time_identifier] = ACTIONS(3392), - [anon_sym_shared] = ACTIONS(3392), - [anon_sym_map_LBRACK] = ACTIONS(3392), - [anon_sym_chan] = ACTIONS(3392), - [anon_sym_thread] = ACTIONS(3392), - [anon_sym_atomic] = ACTIONS(3392), - [anon_sym_assert] = ACTIONS(3392), - [anon_sym_defer] = ACTIONS(3392), - [anon_sym_goto] = ACTIONS(3392), - [anon_sym_break] = ACTIONS(3392), - [anon_sym_continue] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3392), - [anon_sym_DOLLARfor] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3392), - [anon_sym_POUND] = ACTIONS(3392), - [anon_sym_asm] = ACTIONS(3392), - [anon_sym_AT_LBRACK] = ACTIONS(3392), - [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), + [1049] = { + [sym_line_comment] = STATE(1049), + [sym_block_comment] = STATE(1049), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3207), + [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_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), }, - [1040] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym___global] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [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(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_pub] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_interface] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [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(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2915), - [anon_sym_POUND_LBRACK] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2915), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [sym_pseudo_compile_time_identifier] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [anon_sym_assert] = ACTIONS(2915), - [anon_sym_defer] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_DOLLARfor] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym_AT_LBRACK] = ACTIONS(2915), - [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), + [1050] = { + [sym_line_comment] = STATE(1050), + [sym_block_comment] = STATE(1050), + [ts_builtin_sym_end] = ACTIONS(3239), + [sym_identifier] = ACTIONS(3241), + [anon_sym_LF] = ACTIONS(3241), + [anon_sym_CR] = ACTIONS(3241), + [anon_sym_CR_LF] = ACTIONS(3241), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_COMMA] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [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(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3241), + [anon_sym_pub] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3241), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3241), + [anon_sym_LT_LT] = ACTIONS(3241), + [anon_sym_GT_GT] = ACTIONS(3241), + [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(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3241), + [anon_sym_POUND_LBRACK] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3241), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3241), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3241), + [sym_rune_literal] = ACTIONS(3241), + [sym_pseudo_compile_time_identifier] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3241), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [anon_sym_assert] = ACTIONS(3241), + [anon_sym_defer] = ACTIONS(3241), + [anon_sym_goto] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_DOLLARfor] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(3241), + [anon_sym_asm] = ACTIONS(3241), + [anon_sym_AT_LBRACK] = ACTIONS(3241), + [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), }, - [1041] = { + [1051] = { + [sym_line_comment] = STATE(1051), + [sym_block_comment] = STATE(1051), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3347), + [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_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), + }, + [1052] = { + [sym_line_comment] = STATE(1052), + [sym_block_comment] = STATE(1052), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3415), + [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_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), + }, + [1053] = { + [sym_line_comment] = STATE(1053), + [sym_block_comment] = STATE(1053), [ts_builtin_sym_end] = ACTIONS(3215), [sym_identifier] = ACTIONS(3217), [anon_sym_LF] = ACTIONS(3217), [anon_sym_CR] = ACTIONS(3217), [anon_sym_CR_LF] = ACTIONS(3217), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_DOT] = ACTIONS(3217), + [anon_sym_as] = ACTIONS(3217), [anon_sym_LBRACE] = ACTIONS(3217), [anon_sym_COMMA] = ACTIONS(3217), [anon_sym_const] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3217), [anon_sym___global] = ACTIONS(3217), [anon_sym_type] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3217), [anon_sym_fn] = ACTIONS(3217), - [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(3222), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_PERCENT] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_GT] = ACTIONS(3217), + [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(3215), [anon_sym_struct] = ACTIONS(3217), [anon_sym_union] = ACTIONS(3217), [anon_sym_pub] = ACTIONS(3217), [anon_sym_mut] = ACTIONS(3217), [anon_sym_enum] = ACTIONS(3217), [anon_sym_interface] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_QMARK] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), [anon_sym_go] = ACTIONS(3217), [anon_sym_spawn] = ACTIONS(3217), [anon_sym_json_DOTdecode] = ACTIONS(3217), - [anon_sym_LBRACK2] = ACTIONS(3219), + [anon_sym_LBRACK2] = ACTIONS(3217), [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_CARET] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3217), [anon_sym_LT_DASH] = ACTIONS(3217), - [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), + [anon_sym_LT_LT] = ACTIONS(3217), + [anon_sym_GT_GT] = ACTIONS(3217), + [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(3217), [sym_none] = ACTIONS(3217), [sym_true] = ACTIONS(3217), [sym_false] = ACTIONS(3217), [sym_nil] = ACTIONS(3217), - [anon_sym_QMARK_DOT] = ACTIONS(3219), - [anon_sym_POUND_LBRACK] = ACTIONS(3219), + [anon_sym_QMARK_DOT] = ACTIONS(3217), + [anon_sym_POUND_LBRACK] = ACTIONS(3217), [anon_sym_if] = ACTIONS(3217), [anon_sym_DOLLARif] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3219), + [anon_sym_is] = ACTIONS(3217), + [anon_sym_BANGis] = ACTIONS(3217), + [anon_sym_in] = ACTIONS(3217), + [anon_sym_BANGin] = ACTIONS(3217), [anon_sym_match] = ACTIONS(3217), [anon_sym_select] = ACTIONS(3217), [anon_sym_lock] = ACTIONS(3217), @@ -144001,2587 +145386,2261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3217), [sym___r_single_quote] = ACTIONS(3217), }, - [1042] = { - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3432), - [anon_sym_LF] = ACTIONS(3432), - [anon_sym_CR] = ACTIONS(3432), - [anon_sym_CR_LF] = ACTIONS(3432), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3432), - [anon_sym_as] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_COMMA] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym___global] = ACTIONS(3432), - [anon_sym_type] = ACTIONS(3432), - [anon_sym_PIPE] = ACTIONS(3432), - [anon_sym_fn] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_SLASH] = ACTIONS(3432), - [anon_sym_PERCENT] = ACTIONS(3432), - [anon_sym_LT] = ACTIONS(3432), - [anon_sym_GT] = ACTIONS(3432), - [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(3430), - [anon_sym_struct] = ACTIONS(3432), - [anon_sym_union] = ACTIONS(3432), - [anon_sym_pub] = ACTIONS(3432), - [anon_sym_mut] = ACTIONS(3432), - [anon_sym_enum] = ACTIONS(3432), - [anon_sym_interface] = ACTIONS(3432), - [anon_sym_PLUS_PLUS] = ACTIONS(3432), - [anon_sym_DASH_DASH] = ACTIONS(3432), - [anon_sym_QMARK] = ACTIONS(3432), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_go] = ACTIONS(3432), - [anon_sym_spawn] = ACTIONS(3432), - [anon_sym_json_DOTdecode] = ACTIONS(3432), - [anon_sym_LBRACK2] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3432), - [anon_sym_CARET] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_LT_DASH] = ACTIONS(3432), - [anon_sym_LT_LT] = ACTIONS(3432), - [anon_sym_GT_GT] = ACTIONS(3432), - [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(3432), - [sym_none] = ACTIONS(3432), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [sym_nil] = ACTIONS(3432), - [anon_sym_QMARK_DOT] = ACTIONS(3432), - [anon_sym_POUND_LBRACK] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_DOLLARif] = ACTIONS(3432), - [anon_sym_is] = ACTIONS(3432), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_in] = ACTIONS(3432), - [anon_sym_BANGin] = ACTIONS(3432), - [anon_sym_match] = ACTIONS(3432), - [anon_sym_select] = ACTIONS(3432), - [anon_sym_lock] = ACTIONS(3432), - [anon_sym_rlock] = ACTIONS(3432), - [anon_sym_unsafe] = ACTIONS(3432), - [anon_sym_sql] = ACTIONS(3432), - [sym_int_literal] = ACTIONS(3432), - [sym_float_literal] = ACTIONS(3432), - [sym_rune_literal] = ACTIONS(3432), - [sym_pseudo_compile_time_identifier] = ACTIONS(3432), - [anon_sym_shared] = ACTIONS(3432), - [anon_sym_map_LBRACK] = ACTIONS(3432), - [anon_sym_chan] = ACTIONS(3432), - [anon_sym_thread] = ACTIONS(3432), - [anon_sym_atomic] = ACTIONS(3432), - [anon_sym_assert] = ACTIONS(3432), - [anon_sym_defer] = ACTIONS(3432), - [anon_sym_goto] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_DOLLARfor] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_POUND] = ACTIONS(3432), - [anon_sym_asm] = ACTIONS(3432), - [anon_sym_AT_LBRACK] = ACTIONS(3432), - [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), - }, - [1043] = { - [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), - [sym_comment] = ACTIONS(495), - [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), - }, - [1044] = { - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3416), - [anon_sym_LF] = ACTIONS(3416), - [anon_sym_CR] = ACTIONS(3416), - [anon_sym_CR_LF] = ACTIONS(3416), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3416), - [anon_sym_as] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_COMMA] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_LPAREN] = ACTIONS(3416), - [anon_sym___global] = ACTIONS(3416), - [anon_sym_type] = ACTIONS(3416), - [anon_sym_PIPE] = ACTIONS(3416), - [anon_sym_fn] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_PERCENT] = ACTIONS(3416), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_GT] = ACTIONS(3416), - [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(3414), - [anon_sym_struct] = ACTIONS(3416), - [anon_sym_union] = ACTIONS(3416), - [anon_sym_pub] = ACTIONS(3416), - [anon_sym_mut] = ACTIONS(3416), - [anon_sym_enum] = ACTIONS(3416), - [anon_sym_interface] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3416), - [anon_sym_QMARK] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_go] = ACTIONS(3416), - [anon_sym_spawn] = ACTIONS(3416), - [anon_sym_json_DOTdecode] = ACTIONS(3416), - [anon_sym_LBRACK2] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_CARET] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(3416), - [anon_sym_LT_LT] = ACTIONS(3416), - [anon_sym_GT_GT] = ACTIONS(3416), - [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(3416), - [sym_none] = ACTIONS(3416), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [sym_nil] = ACTIONS(3416), - [anon_sym_QMARK_DOT] = ACTIONS(3416), - [anon_sym_POUND_LBRACK] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_DOLLARif] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3416), - [anon_sym_BANGis] = ACTIONS(3416), - [anon_sym_in] = ACTIONS(3416), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_match] = ACTIONS(3416), - [anon_sym_select] = ACTIONS(3416), - [anon_sym_lock] = ACTIONS(3416), - [anon_sym_rlock] = ACTIONS(3416), - [anon_sym_unsafe] = ACTIONS(3416), - [anon_sym_sql] = ACTIONS(3416), - [sym_int_literal] = ACTIONS(3416), - [sym_float_literal] = ACTIONS(3416), - [sym_rune_literal] = ACTIONS(3416), - [sym_pseudo_compile_time_identifier] = ACTIONS(3416), - [anon_sym_shared] = ACTIONS(3416), - [anon_sym_map_LBRACK] = ACTIONS(3416), - [anon_sym_chan] = ACTIONS(3416), - [anon_sym_thread] = ACTIONS(3416), - [anon_sym_atomic] = ACTIONS(3416), - [anon_sym_assert] = ACTIONS(3416), - [anon_sym_defer] = ACTIONS(3416), - [anon_sym_goto] = ACTIONS(3416), - [anon_sym_break] = ACTIONS(3416), - [anon_sym_continue] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3416), - [anon_sym_DOLLARfor] = ACTIONS(3416), - [anon_sym_for] = ACTIONS(3416), - [anon_sym_POUND] = ACTIONS(3416), - [anon_sym_asm] = ACTIONS(3416), - [anon_sym_AT_LBRACK] = ACTIONS(3416), - [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), - }, - [1045] = { - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_CR] = ACTIONS(3404), - [anon_sym_CR_LF] = ACTIONS(3404), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3404), - [anon_sym_as] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_COMMA] = ACTIONS(3404), - [anon_sym_const] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(3404), - [anon_sym___global] = ACTIONS(3404), - [anon_sym_type] = ACTIONS(3404), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_fn] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3404), - [anon_sym_SLASH] = ACTIONS(3404), - [anon_sym_PERCENT] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [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(3402), - [anon_sym_struct] = ACTIONS(3404), - [anon_sym_union] = ACTIONS(3404), - [anon_sym_pub] = ACTIONS(3404), - [anon_sym_mut] = ACTIONS(3404), - [anon_sym_enum] = ACTIONS(3404), - [anon_sym_interface] = ACTIONS(3404), - [anon_sym_PLUS_PLUS] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3404), - [anon_sym_QMARK] = ACTIONS(3404), - [anon_sym_BANG] = ACTIONS(3404), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3404), - [anon_sym_json_DOTdecode] = ACTIONS(3404), - [anon_sym_LBRACK2] = ACTIONS(3404), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3404), - [anon_sym_LT_LT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [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(3404), - [sym_none] = ACTIONS(3404), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [sym_nil] = ACTIONS(3404), - [anon_sym_QMARK_DOT] = ACTIONS(3404), - [anon_sym_POUND_LBRACK] = ACTIONS(3404), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_DOLLARif] = ACTIONS(3404), - [anon_sym_is] = ACTIONS(3404), - [anon_sym_BANGis] = ACTIONS(3404), - [anon_sym_in] = ACTIONS(3404), - [anon_sym_BANGin] = ACTIONS(3404), - [anon_sym_match] = ACTIONS(3404), - [anon_sym_select] = ACTIONS(3404), - [anon_sym_lock] = ACTIONS(3404), - [anon_sym_rlock] = ACTIONS(3404), - [anon_sym_unsafe] = ACTIONS(3404), - [anon_sym_sql] = ACTIONS(3404), - [sym_int_literal] = ACTIONS(3404), - [sym_float_literal] = ACTIONS(3404), - [sym_rune_literal] = ACTIONS(3404), - [sym_pseudo_compile_time_identifier] = ACTIONS(3404), - [anon_sym_shared] = ACTIONS(3404), - [anon_sym_map_LBRACK] = ACTIONS(3404), - [anon_sym_chan] = ACTIONS(3404), - [anon_sym_thread] = ACTIONS(3404), - [anon_sym_atomic] = ACTIONS(3404), - [anon_sym_assert] = ACTIONS(3404), - [anon_sym_defer] = ACTIONS(3404), - [anon_sym_goto] = ACTIONS(3404), - [anon_sym_break] = ACTIONS(3404), - [anon_sym_continue] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3404), - [anon_sym_DOLLARfor] = ACTIONS(3404), - [anon_sym_for] = ACTIONS(3404), - [anon_sym_POUND] = ACTIONS(3404), - [anon_sym_asm] = ACTIONS(3404), - [anon_sym_AT_LBRACK] = ACTIONS(3404), - [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), - }, - [1046] = { - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_CR] = ACTIONS(3412), - [anon_sym_CR_LF] = ACTIONS(3412), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3412), - [anon_sym_as] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_COMMA] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3412), - [anon_sym___global] = ACTIONS(3412), - [anon_sym_type] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_fn] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_SLASH] = ACTIONS(3412), - [anon_sym_PERCENT] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [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(3410), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_union] = ACTIONS(3412), - [anon_sym_pub] = ACTIONS(3412), - [anon_sym_mut] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_interface] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_QMARK] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_go] = ACTIONS(3412), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3412), - [anon_sym_LBRACK2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_CARET] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [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(3412), - [sym_none] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_nil] = ACTIONS(3412), - [anon_sym_QMARK_DOT] = ACTIONS(3412), - [anon_sym_POUND_LBRACK] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOLLARif] = ACTIONS(3412), - [anon_sym_is] = ACTIONS(3412), - [anon_sym_BANGis] = ACTIONS(3412), - [anon_sym_in] = ACTIONS(3412), - [anon_sym_BANGin] = ACTIONS(3412), - [anon_sym_match] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_rlock] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_sql] = ACTIONS(3412), - [sym_int_literal] = ACTIONS(3412), - [sym_float_literal] = ACTIONS(3412), - [sym_rune_literal] = ACTIONS(3412), - [sym_pseudo_compile_time_identifier] = ACTIONS(3412), - [anon_sym_shared] = ACTIONS(3412), - [anon_sym_map_LBRACK] = ACTIONS(3412), - [anon_sym_chan] = ACTIONS(3412), - [anon_sym_thread] = ACTIONS(3412), - [anon_sym_atomic] = ACTIONS(3412), - [anon_sym_assert] = ACTIONS(3412), - [anon_sym_defer] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_DOLLARfor] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_POUND] = ACTIONS(3412), - [anon_sym_asm] = ACTIONS(3412), - [anon_sym_AT_LBRACK] = ACTIONS(3412), - [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), - }, - [1047] = { - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3444), - [anon_sym_LF] = ACTIONS(3444), - [anon_sym_CR] = ACTIONS(3444), - [anon_sym_CR_LF] = ACTIONS(3444), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3444), - [anon_sym_as] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym___global] = ACTIONS(3444), - [anon_sym_type] = ACTIONS(3444), - [anon_sym_PIPE] = ACTIONS(3444), - [anon_sym_fn] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3444), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_PERCENT] = ACTIONS(3444), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_GT] = ACTIONS(3444), - [anon_sym_EQ_EQ] = ACTIONS(3444), - [anon_sym_BANG_EQ] = ACTIONS(3444), - [anon_sym_LT_EQ] = ACTIONS(3444), - [anon_sym_GT_EQ] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_union] = ACTIONS(3444), - [anon_sym_pub] = ACTIONS(3444), - [anon_sym_mut] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_QMARK] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_go] = ACTIONS(3444), - [anon_sym_spawn] = ACTIONS(3444), - [anon_sym_json_DOTdecode] = ACTIONS(3444), - [anon_sym_LBRACK2] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_LT_DASH] = ACTIONS(3444), - [anon_sym_LT_LT] = ACTIONS(3444), - [anon_sym_GT_GT] = ACTIONS(3444), - [anon_sym_GT_GT_GT] = ACTIONS(3444), - [anon_sym_AMP_CARET] = ACTIONS(3444), - [anon_sym_AMP_AMP] = ACTIONS(3444), - [anon_sym_PIPE_PIPE] = ACTIONS(3444), - [anon_sym_or] = ACTIONS(3444), - [sym_none] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_nil] = ACTIONS(3444), - [anon_sym_QMARK_DOT] = ACTIONS(3444), - [anon_sym_POUND_LBRACK] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_DOLLARif] = ACTIONS(3444), - [anon_sym_is] = ACTIONS(3444), - [anon_sym_BANGis] = ACTIONS(3444), - [anon_sym_in] = ACTIONS(3444), - [anon_sym_BANGin] = ACTIONS(3444), - [anon_sym_match] = ACTIONS(3444), - [anon_sym_select] = ACTIONS(3444), - [anon_sym_lock] = ACTIONS(3444), - [anon_sym_rlock] = ACTIONS(3444), - [anon_sym_unsafe] = ACTIONS(3444), - [anon_sym_sql] = ACTIONS(3444), - [sym_int_literal] = ACTIONS(3444), - [sym_float_literal] = ACTIONS(3444), - [sym_rune_literal] = ACTIONS(3444), - [sym_pseudo_compile_time_identifier] = ACTIONS(3444), - [anon_sym_shared] = ACTIONS(3444), - [anon_sym_map_LBRACK] = ACTIONS(3444), - [anon_sym_chan] = ACTIONS(3444), - [anon_sym_thread] = ACTIONS(3444), - [anon_sym_atomic] = ACTIONS(3444), - [anon_sym_assert] = ACTIONS(3444), - [anon_sym_defer] = ACTIONS(3444), - [anon_sym_goto] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_DOLLARfor] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_POUND] = ACTIONS(3444), - [anon_sym_asm] = ACTIONS(3444), - [anon_sym_AT_LBRACK] = ACTIONS(3444), - [sym___double_quote] = ACTIONS(3444), - [sym___single_quote] = ACTIONS(3444), - [sym___c_double_quote] = ACTIONS(3444), - [sym___c_single_quote] = ACTIONS(3444), - [sym___r_double_quote] = ACTIONS(3444), - [sym___r_single_quote] = ACTIONS(3444), - }, - [1048] = { - [ts_builtin_sym_end] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3388), - [anon_sym_LF] = ACTIONS(3388), - [anon_sym_CR] = ACTIONS(3388), - [anon_sym_CR_LF] = ACTIONS(3388), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3388), - [anon_sym_as] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_COMMA] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_LPAREN] = ACTIONS(3388), - [anon_sym___global] = ACTIONS(3388), - [anon_sym_type] = ACTIONS(3388), - [anon_sym_PIPE] = ACTIONS(3388), - [anon_sym_fn] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_SLASH] = ACTIONS(3388), - [anon_sym_PERCENT] = ACTIONS(3388), - [anon_sym_LT] = ACTIONS(3388), - [anon_sym_GT] = ACTIONS(3388), - [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(3386), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_union] = ACTIONS(3388), - [anon_sym_pub] = ACTIONS(3388), - [anon_sym_mut] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), - [anon_sym_interface] = ACTIONS(3388), - [anon_sym_PLUS_PLUS] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3388), - [anon_sym_QMARK] = ACTIONS(3388), - [anon_sym_BANG] = ACTIONS(3388), - [anon_sym_go] = ACTIONS(3388), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(3388), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3388), - [anon_sym_CARET] = ACTIONS(3388), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_LT_DASH] = ACTIONS(3388), - [anon_sym_LT_LT] = ACTIONS(3388), - [anon_sym_GT_GT] = ACTIONS(3388), - [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(3388), - [sym_none] = ACTIONS(3388), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [sym_nil] = ACTIONS(3388), - [anon_sym_QMARK_DOT] = ACTIONS(3388), - [anon_sym_POUND_LBRACK] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_DOLLARif] = ACTIONS(3388), - [anon_sym_is] = ACTIONS(3388), - [anon_sym_BANGis] = ACTIONS(3388), - [anon_sym_in] = ACTIONS(3388), - [anon_sym_BANGin] = ACTIONS(3388), - [anon_sym_match] = ACTIONS(3388), - [anon_sym_select] = ACTIONS(3388), - [anon_sym_lock] = ACTIONS(3388), - [anon_sym_rlock] = ACTIONS(3388), - [anon_sym_unsafe] = ACTIONS(3388), - [anon_sym_sql] = ACTIONS(3388), - [sym_int_literal] = ACTIONS(3388), - [sym_float_literal] = ACTIONS(3388), - [sym_rune_literal] = ACTIONS(3388), - [sym_pseudo_compile_time_identifier] = ACTIONS(3388), - [anon_sym_shared] = ACTIONS(3388), - [anon_sym_map_LBRACK] = ACTIONS(3388), - [anon_sym_chan] = ACTIONS(3388), - [anon_sym_thread] = ACTIONS(3388), - [anon_sym_atomic] = ACTIONS(3388), - [anon_sym_assert] = ACTIONS(3388), - [anon_sym_defer] = ACTIONS(3388), - [anon_sym_goto] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_DOLLARfor] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_POUND] = ACTIONS(3388), - [anon_sym_asm] = ACTIONS(3388), - [anon_sym_AT_LBRACK] = ACTIONS(3388), - [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), - }, - [1049] = { - [ts_builtin_sym_end] = ACTIONS(3350), - [sym_identifier] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_CR] = ACTIONS(3352), - [anon_sym_CR_LF] = ACTIONS(3352), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3352), - [anon_sym_as] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym___global] = ACTIONS(3352), - [anon_sym_type] = ACTIONS(3352), - [anon_sym_PIPE] = ACTIONS(3352), - [anon_sym_fn] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3352), - [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(3350), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_union] = ACTIONS(3352), - [anon_sym_pub] = ACTIONS(3352), - [anon_sym_mut] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - [anon_sym_interface] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_QMARK] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_go] = ACTIONS(3352), - [anon_sym_spawn] = ACTIONS(3352), - [anon_sym_json_DOTdecode] = ACTIONS(3352), - [anon_sym_LBRACK2] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(3352), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3352), - [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(3352), - [sym_none] = ACTIONS(3352), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [sym_nil] = ACTIONS(3352), - [anon_sym_QMARK_DOT] = ACTIONS(3352), - [anon_sym_POUND_LBRACK] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_DOLLARif] = ACTIONS(3352), - [anon_sym_is] = ACTIONS(3352), - [anon_sym_BANGis] = ACTIONS(3352), - [anon_sym_in] = ACTIONS(3352), - [anon_sym_BANGin] = ACTIONS(3352), - [anon_sym_match] = ACTIONS(3352), - [anon_sym_select] = ACTIONS(3352), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3352), - [anon_sym_sql] = ACTIONS(3352), - [sym_int_literal] = ACTIONS(3352), - [sym_float_literal] = ACTIONS(3352), - [sym_rune_literal] = ACTIONS(3352), - [sym_pseudo_compile_time_identifier] = ACTIONS(3352), - [anon_sym_shared] = ACTIONS(3352), - [anon_sym_map_LBRACK] = ACTIONS(3352), - [anon_sym_chan] = ACTIONS(3352), - [anon_sym_thread] = ACTIONS(3352), - [anon_sym_atomic] = ACTIONS(3352), - [anon_sym_assert] = ACTIONS(3352), - [anon_sym_defer] = ACTIONS(3352), - [anon_sym_goto] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_DOLLARfor] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_POUND] = ACTIONS(3352), - [anon_sym_asm] = ACTIONS(3352), - [anon_sym_AT_LBRACK] = ACTIONS(3352), - [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), - }, - [1050] = { - [ts_builtin_sym_end] = ACTIONS(3346), - [sym_identifier] = ACTIONS(3348), - [anon_sym_LF] = ACTIONS(3348), - [anon_sym_CR] = ACTIONS(3348), - [anon_sym_CR_LF] = ACTIONS(3348), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3348), - [anon_sym___global] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_PIPE] = ACTIONS(3348), - [anon_sym_fn] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [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(3346), - [anon_sym_struct] = ACTIONS(3348), - [anon_sym_union] = ACTIONS(3348), - [anon_sym_pub] = ACTIONS(3348), - [anon_sym_mut] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_QMARK] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_go] = ACTIONS(3348), - [anon_sym_spawn] = ACTIONS(3348), - [anon_sym_json_DOTdecode] = ACTIONS(3348), - [anon_sym_LBRACK2] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_CARET] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3348), - [anon_sym_LT_DASH] = ACTIONS(3348), - [anon_sym_LT_LT] = ACTIONS(3348), - [anon_sym_GT_GT] = ACTIONS(3348), - [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(3348), - [sym_none] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_nil] = ACTIONS(3348), - [anon_sym_QMARK_DOT] = ACTIONS(3348), - [anon_sym_POUND_LBRACK] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_DOLLARif] = ACTIONS(3348), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_BANGin] = ACTIONS(3348), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3348), - [anon_sym_lock] = ACTIONS(3348), - [anon_sym_rlock] = ACTIONS(3348), - [anon_sym_unsafe] = ACTIONS(3348), - [anon_sym_sql] = ACTIONS(3348), - [sym_int_literal] = ACTIONS(3348), - [sym_float_literal] = ACTIONS(3348), - [sym_rune_literal] = ACTIONS(3348), - [sym_pseudo_compile_time_identifier] = ACTIONS(3348), - [anon_sym_shared] = ACTIONS(3348), - [anon_sym_map_LBRACK] = ACTIONS(3348), - [anon_sym_chan] = ACTIONS(3348), - [anon_sym_thread] = ACTIONS(3348), - [anon_sym_atomic] = ACTIONS(3348), - [anon_sym_assert] = ACTIONS(3348), - [anon_sym_defer] = ACTIONS(3348), - [anon_sym_goto] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_DOLLARfor] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(3348), - [anon_sym_asm] = ACTIONS(3348), - [anon_sym_AT_LBRACK] = ACTIONS(3348), - [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), - }, - [1051] = { - [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), - [sym_comment] = ACTIONS(495), - [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), - }, - [1052] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_const] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym___global] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [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(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3133), - [anon_sym_pub] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_enum] = ACTIONS(3133), - [anon_sym_interface] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [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(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [sym_pseudo_compile_time_identifier] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_goto] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_DOLLARfor] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_asm] = ACTIONS(3133), - [anon_sym_AT_LBRACK] = ACTIONS(3133), - [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), - }, - [1053] = { - [ts_builtin_sym_end] = ACTIONS(3097), - [sym_identifier] = ACTIONS(3099), - [anon_sym_LF] = ACTIONS(3099), - [anon_sym_CR] = ACTIONS(3099), - [anon_sym_CR_LF] = ACTIONS(3099), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_as] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_const] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym___global] = ACTIONS(3099), - [anon_sym_type] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_fn] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_SLASH] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_union] = ACTIONS(3099), - [anon_sym_pub] = ACTIONS(3099), - [anon_sym_mut] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_interface] = ACTIONS(3099), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(3099), - [anon_sym_go] = ACTIONS(3099), - [anon_sym_spawn] = ACTIONS(3099), - [anon_sym_json_DOTdecode] = ACTIONS(3099), - [anon_sym_LBRACK2] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_GT_GT_GT] = ACTIONS(3099), - [anon_sym_AMP_CARET] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_or] = ACTIONS(3099), - [sym_none] = ACTIONS(3099), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_nil] = ACTIONS(3099), - [anon_sym_QMARK_DOT] = ACTIONS(3099), - [anon_sym_POUND_LBRACK] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_DOLLARif] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_BANGis] = ACTIONS(3099), - [anon_sym_in] = ACTIONS(3099), - [anon_sym_BANGin] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_select] = ACTIONS(3099), - [anon_sym_lock] = ACTIONS(3099), - [anon_sym_rlock] = ACTIONS(3099), - [anon_sym_unsafe] = ACTIONS(3099), - [anon_sym_sql] = ACTIONS(3099), - [sym_int_literal] = ACTIONS(3099), - [sym_float_literal] = ACTIONS(3099), - [sym_rune_literal] = ACTIONS(3099), - [sym_pseudo_compile_time_identifier] = ACTIONS(3099), - [anon_sym_shared] = ACTIONS(3099), - [anon_sym_map_LBRACK] = ACTIONS(3099), - [anon_sym_chan] = ACTIONS(3099), - [anon_sym_thread] = ACTIONS(3099), - [anon_sym_atomic] = ACTIONS(3099), - [anon_sym_assert] = ACTIONS(3099), - [anon_sym_defer] = ACTIONS(3099), - [anon_sym_goto] = ACTIONS(3099), - [anon_sym_break] = ACTIONS(3099), - [anon_sym_continue] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_DOLLARfor] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_POUND] = ACTIONS(3099), - [anon_sym_asm] = ACTIONS(3099), - [anon_sym_AT_LBRACK] = ACTIONS(3099), - [sym___double_quote] = ACTIONS(3099), - [sym___single_quote] = ACTIONS(3099), - [sym___c_double_quote] = ACTIONS(3099), - [sym___c_single_quote] = ACTIONS(3099), - [sym___r_double_quote] = ACTIONS(3099), - [sym___r_single_quote] = ACTIONS(3099), - }, [1054] = { - [ts_builtin_sym_end] = ACTIONS(3426), - [sym_identifier] = ACTIONS(3428), - [anon_sym_LF] = ACTIONS(3428), - [anon_sym_CR] = ACTIONS(3428), - [anon_sym_CR_LF] = ACTIONS(3428), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_as] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym___global] = ACTIONS(3428), - [anon_sym_type] = ACTIONS(3428), - [anon_sym_PIPE] = ACTIONS(3428), - [anon_sym_fn] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3428), - [anon_sym_SLASH] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(3428), - [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(3426), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_union] = ACTIONS(3428), - [anon_sym_pub] = ACTIONS(3428), - [anon_sym_mut] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_go] = ACTIONS(3428), - [anon_sym_spawn] = ACTIONS(3428), - [anon_sym_json_DOTdecode] = ACTIONS(3428), - [anon_sym_LBRACK2] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3428), - [anon_sym_CARET] = ACTIONS(3428), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_LT_LT] = ACTIONS(3428), - [anon_sym_GT_GT] = ACTIONS(3428), - [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(3428), - [sym_none] = ACTIONS(3428), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [sym_nil] = ACTIONS(3428), - [anon_sym_QMARK_DOT] = ACTIONS(3428), - [anon_sym_POUND_LBRACK] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_DOLLARif] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3428), - [anon_sym_BANGis] = ACTIONS(3428), - [anon_sym_in] = ACTIONS(3428), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), - [anon_sym_lock] = ACTIONS(3428), - [anon_sym_rlock] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_sql] = ACTIONS(3428), - [sym_int_literal] = ACTIONS(3428), - [sym_float_literal] = ACTIONS(3428), - [sym_rune_literal] = ACTIONS(3428), - [sym_pseudo_compile_time_identifier] = ACTIONS(3428), - [anon_sym_shared] = ACTIONS(3428), - [anon_sym_map_LBRACK] = ACTIONS(3428), - [anon_sym_chan] = ACTIONS(3428), - [anon_sym_thread] = ACTIONS(3428), - [anon_sym_atomic] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_defer] = ACTIONS(3428), - [anon_sym_goto] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_DOLLARfor] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_POUND] = ACTIONS(3428), - [anon_sym_asm] = ACTIONS(3428), - [anon_sym_AT_LBRACK] = ACTIONS(3428), - [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), + [sym_line_comment] = STATE(1054), + [sym_block_comment] = STATE(1054), + [ts_builtin_sym_end] = ACTIONS(3021), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LF] = ACTIONS(3023), + [anon_sym_CR] = ACTIONS(3023), + [anon_sym_CR_LF] = ACTIONS(3023), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3023), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_as] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3023), + [anon_sym_const] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym___global] = ACTIONS(3023), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_fn] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT_EQ] = ACTIONS(3023), + [anon_sym_GT_EQ] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3023), + [anon_sym_union] = ACTIONS(3023), + [anon_sym_pub] = ACTIONS(3023), + [anon_sym_mut] = ACTIONS(3023), + [anon_sym_enum] = ACTIONS(3023), + [anon_sym_interface] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_go] = ACTIONS(3023), + [anon_sym_spawn] = ACTIONS(3023), + [anon_sym_json_DOTdecode] = ACTIONS(3023), + [anon_sym_LBRACK2] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_CARET] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(3023), + [anon_sym_GT_GT_GT] = ACTIONS(3023), + [anon_sym_AMP_CARET] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_or] = ACTIONS(3023), + [sym_none] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_nil] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(3023), + [anon_sym_POUND_LBRACK] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_DOLLARif] = ACTIONS(3023), + [anon_sym_is] = ACTIONS(3023), + [anon_sym_BANGis] = ACTIONS(3023), + [anon_sym_in] = ACTIONS(3023), + [anon_sym_BANGin] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_select] = ACTIONS(3023), + [anon_sym_lock] = ACTIONS(3023), + [anon_sym_rlock] = ACTIONS(3023), + [anon_sym_unsafe] = ACTIONS(3023), + [anon_sym_sql] = ACTIONS(3023), + [sym_int_literal] = ACTIONS(3023), + [sym_float_literal] = ACTIONS(3023), + [sym_rune_literal] = ACTIONS(3023), + [sym_pseudo_compile_time_identifier] = ACTIONS(3023), + [anon_sym_shared] = ACTIONS(3023), + [anon_sym_map_LBRACK] = ACTIONS(3023), + [anon_sym_chan] = ACTIONS(3023), + [anon_sym_thread] = ACTIONS(3023), + [anon_sym_atomic] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_defer] = ACTIONS(3023), + [anon_sym_goto] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_DOLLARfor] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_POUND] = ACTIONS(3023), + [anon_sym_asm] = ACTIONS(3023), + [anon_sym_AT_LBRACK] = ACTIONS(3023), + [sym___double_quote] = ACTIONS(3023), + [sym___single_quote] = ACTIONS(3023), + [sym___c_double_quote] = ACTIONS(3023), + [sym___c_single_quote] = ACTIONS(3023), + [sym___r_double_quote] = ACTIONS(3023), + [sym___r_single_quote] = ACTIONS(3023), }, [1055] = { - [ts_builtin_sym_end] = ACTIONS(3199), - [sym_identifier] = ACTIONS(3201), - [anon_sym_LF] = ACTIONS(3201), - [anon_sym_CR] = ACTIONS(3201), - [anon_sym_CR_LF] = ACTIONS(3201), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym___global] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_fn] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3201), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3201), - [anon_sym_GT] = ACTIONS(3201), - [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(3199), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_pub] = ACTIONS(3201), - [anon_sym_mut] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_interface] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_go] = ACTIONS(3201), - [anon_sym_spawn] = ACTIONS(3201), - [anon_sym_json_DOTdecode] = ACTIONS(3201), - [anon_sym_LBRACK2] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_LT_DASH] = ACTIONS(3201), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3201), - [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(3201), - [sym_none] = ACTIONS(3201), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [sym_nil] = ACTIONS(3201), - [anon_sym_QMARK_DOT] = ACTIONS(3201), - [anon_sym_POUND_LBRACK] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_DOLLARif] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_BANGis] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_BANGin] = ACTIONS(3201), - [anon_sym_match] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_lock] = ACTIONS(3201), - [anon_sym_rlock] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_sql] = ACTIONS(3201), - [sym_int_literal] = ACTIONS(3201), - [sym_float_literal] = ACTIONS(3201), - [sym_rune_literal] = ACTIONS(3201), - [sym_pseudo_compile_time_identifier] = ACTIONS(3201), - [anon_sym_shared] = ACTIONS(3201), - [anon_sym_map_LBRACK] = ACTIONS(3201), - [anon_sym_chan] = ACTIONS(3201), - [anon_sym_thread] = ACTIONS(3201), - [anon_sym_atomic] = ACTIONS(3201), - [anon_sym_assert] = ACTIONS(3201), - [anon_sym_defer] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_DOLLARfor] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_asm] = ACTIONS(3201), - [anon_sym_AT_LBRACK] = ACTIONS(3201), - [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_line_comment] = STATE(1055), + [sym_block_comment] = STATE(1055), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), }, [1056] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1056), + [sym_block_comment] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2979), + [anon_sym_CR] = ACTIONS(2979), + [anon_sym_CR_LF] = ACTIONS(2979), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_const] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym___global] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_fn] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2979), + [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(2977), + [anon_sym_struct] = ACTIONS(2979), + [anon_sym_union] = ACTIONS(2979), + [anon_sym_pub] = ACTIONS(2979), + [anon_sym_mut] = ACTIONS(2979), + [anon_sym_enum] = ACTIONS(2979), + [anon_sym_interface] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_go] = ACTIONS(2979), + [anon_sym_spawn] = ACTIONS(2979), + [anon_sym_json_DOTdecode] = ACTIONS(2979), + [anon_sym_LBRACK2] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2979), + [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(2979), + [sym_none] = ACTIONS(2979), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [sym_nil] = ACTIONS(2979), + [anon_sym_QMARK_DOT] = ACTIONS(2979), + [anon_sym_POUND_LBRACK] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_DOLLARif] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_BANGis] = ACTIONS(2979), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_BANGin] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_select] = ACTIONS(2979), + [anon_sym_lock] = ACTIONS(2979), + [anon_sym_rlock] = ACTIONS(2979), + [anon_sym_unsafe] = ACTIONS(2979), + [anon_sym_sql] = ACTIONS(2979), + [sym_int_literal] = ACTIONS(2979), + [sym_float_literal] = ACTIONS(2979), + [sym_rune_literal] = ACTIONS(2979), + [sym_pseudo_compile_time_identifier] = ACTIONS(2979), + [anon_sym_shared] = ACTIONS(2979), + [anon_sym_map_LBRACK] = ACTIONS(2979), + [anon_sym_chan] = ACTIONS(2979), + [anon_sym_thread] = ACTIONS(2979), + [anon_sym_atomic] = ACTIONS(2979), + [anon_sym_assert] = ACTIONS(2979), + [anon_sym_defer] = ACTIONS(2979), + [anon_sym_goto] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_DOLLARfor] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_POUND] = ACTIONS(2979), + [anon_sym_asm] = ACTIONS(2979), + [anon_sym_AT_LBRACK] = ACTIONS(2979), + [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), }, [1057] = { - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3440), - [anon_sym_LF] = ACTIONS(3440), - [anon_sym_CR] = ACTIONS(3440), - [anon_sym_CR_LF] = ACTIONS(3440), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3440), - [anon_sym_as] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3440), - [anon_sym_COMMA] = ACTIONS(3440), - [anon_sym_const] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym___global] = ACTIONS(3440), - [anon_sym_type] = ACTIONS(3440), - [anon_sym_PIPE] = ACTIONS(3440), - [anon_sym_fn] = ACTIONS(3440), - [anon_sym_PLUS] = ACTIONS(3440), - [anon_sym_DASH] = ACTIONS(3440), - [anon_sym_STAR] = ACTIONS(3440), - [anon_sym_SLASH] = ACTIONS(3440), - [anon_sym_PERCENT] = ACTIONS(3440), - [anon_sym_LT] = ACTIONS(3440), - [anon_sym_GT] = ACTIONS(3440), - [anon_sym_EQ_EQ] = ACTIONS(3440), - [anon_sym_BANG_EQ] = ACTIONS(3440), - [anon_sym_LT_EQ] = ACTIONS(3440), - [anon_sym_GT_EQ] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_struct] = ACTIONS(3440), - [anon_sym_union] = ACTIONS(3440), - [anon_sym_pub] = ACTIONS(3440), - [anon_sym_mut] = ACTIONS(3440), - [anon_sym_enum] = ACTIONS(3440), - [anon_sym_interface] = ACTIONS(3440), - [anon_sym_PLUS_PLUS] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3440), - [anon_sym_QMARK] = ACTIONS(3440), - [anon_sym_BANG] = ACTIONS(3440), - [anon_sym_go] = ACTIONS(3440), - [anon_sym_spawn] = ACTIONS(3440), - [anon_sym_json_DOTdecode] = ACTIONS(3440), - [anon_sym_LBRACK2] = ACTIONS(3440), - [anon_sym_TILDE] = ACTIONS(3440), - [anon_sym_CARET] = ACTIONS(3440), - [anon_sym_AMP] = ACTIONS(3440), - [anon_sym_LT_DASH] = ACTIONS(3440), - [anon_sym_LT_LT] = ACTIONS(3440), - [anon_sym_GT_GT] = ACTIONS(3440), - [anon_sym_GT_GT_GT] = ACTIONS(3440), - [anon_sym_AMP_CARET] = ACTIONS(3440), - [anon_sym_AMP_AMP] = ACTIONS(3440), - [anon_sym_PIPE_PIPE] = ACTIONS(3440), - [anon_sym_or] = ACTIONS(3440), - [sym_none] = ACTIONS(3440), - [sym_true] = ACTIONS(3440), - [sym_false] = ACTIONS(3440), - [sym_nil] = ACTIONS(3440), - [anon_sym_QMARK_DOT] = ACTIONS(3440), - [anon_sym_POUND_LBRACK] = ACTIONS(3440), - [anon_sym_if] = ACTIONS(3440), - [anon_sym_DOLLARif] = ACTIONS(3440), - [anon_sym_is] = ACTIONS(3440), - [anon_sym_BANGis] = ACTIONS(3440), - [anon_sym_in] = ACTIONS(3440), - [anon_sym_BANGin] = ACTIONS(3440), - [anon_sym_match] = ACTIONS(3440), - [anon_sym_select] = ACTIONS(3440), - [anon_sym_lock] = ACTIONS(3440), - [anon_sym_rlock] = ACTIONS(3440), - [anon_sym_unsafe] = ACTIONS(3440), - [anon_sym_sql] = ACTIONS(3440), - [sym_int_literal] = ACTIONS(3440), - [sym_float_literal] = ACTIONS(3440), - [sym_rune_literal] = ACTIONS(3440), - [sym_pseudo_compile_time_identifier] = ACTIONS(3440), - [anon_sym_shared] = ACTIONS(3440), - [anon_sym_map_LBRACK] = ACTIONS(3440), - [anon_sym_chan] = ACTIONS(3440), - [anon_sym_thread] = ACTIONS(3440), - [anon_sym_atomic] = ACTIONS(3440), - [anon_sym_assert] = ACTIONS(3440), - [anon_sym_defer] = ACTIONS(3440), - [anon_sym_goto] = ACTIONS(3440), - [anon_sym_break] = ACTIONS(3440), - [anon_sym_continue] = ACTIONS(3440), - [anon_sym_return] = ACTIONS(3440), - [anon_sym_DOLLARfor] = ACTIONS(3440), - [anon_sym_for] = ACTIONS(3440), - [anon_sym_POUND] = ACTIONS(3440), - [anon_sym_asm] = ACTIONS(3440), - [anon_sym_AT_LBRACK] = ACTIONS(3440), - [sym___double_quote] = ACTIONS(3440), - [sym___single_quote] = ACTIONS(3440), - [sym___c_double_quote] = ACTIONS(3440), - [sym___c_single_quote] = ACTIONS(3440), - [sym___r_double_quote] = ACTIONS(3440), - [sym___r_single_quote] = ACTIONS(3440), + [sym_line_comment] = STATE(1057), + [sym_block_comment] = STATE(1057), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3387), + [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_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), }, [1058] = { - [ts_builtin_sym_end] = ACTIONS(3207), - [sym_identifier] = ACTIONS(3209), - [anon_sym_LF] = ACTIONS(3209), - [anon_sym_CR] = ACTIONS(3209), - [anon_sym_CR_LF] = ACTIONS(3209), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3209), - [anon_sym_as] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_COMMA] = ACTIONS(3209), - [anon_sym_const] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(3209), - [anon_sym___global] = ACTIONS(3209), - [anon_sym_type] = ACTIONS(3209), - [anon_sym_PIPE] = ACTIONS(3209), - [anon_sym_fn] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_PERCENT] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_GT] = ACTIONS(3209), - [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(3207), - [anon_sym_struct] = ACTIONS(3209), - [anon_sym_union] = ACTIONS(3209), - [anon_sym_pub] = ACTIONS(3209), - [anon_sym_mut] = ACTIONS(3209), - [anon_sym_enum] = ACTIONS(3209), - [anon_sym_interface] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_QMARK] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_go] = ACTIONS(3209), - [anon_sym_spawn] = ACTIONS(3209), - [anon_sym_json_DOTdecode] = ACTIONS(3209), - [anon_sym_LBRACK2] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_CARET] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3209), - [anon_sym_LT_DASH] = ACTIONS(3209), - [anon_sym_LT_LT] = ACTIONS(3209), - [anon_sym_GT_GT] = ACTIONS(3209), - [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(3209), - [sym_none] = ACTIONS(3209), - [sym_true] = ACTIONS(3209), - [sym_false] = ACTIONS(3209), - [sym_nil] = ACTIONS(3209), - [anon_sym_QMARK_DOT] = ACTIONS(3209), - [anon_sym_POUND_LBRACK] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_DOLLARif] = ACTIONS(3209), - [anon_sym_is] = ACTIONS(3209), - [anon_sym_BANGis] = ACTIONS(3209), - [anon_sym_in] = ACTIONS(3209), - [anon_sym_BANGin] = ACTIONS(3209), - [anon_sym_match] = ACTIONS(3209), - [anon_sym_select] = ACTIONS(3209), - [anon_sym_lock] = ACTIONS(3209), - [anon_sym_rlock] = ACTIONS(3209), - [anon_sym_unsafe] = ACTIONS(3209), - [anon_sym_sql] = ACTIONS(3209), - [sym_int_literal] = ACTIONS(3209), - [sym_float_literal] = ACTIONS(3209), - [sym_rune_literal] = ACTIONS(3209), - [sym_pseudo_compile_time_identifier] = ACTIONS(3209), - [anon_sym_shared] = ACTIONS(3209), - [anon_sym_map_LBRACK] = ACTIONS(3209), - [anon_sym_chan] = ACTIONS(3209), - [anon_sym_thread] = ACTIONS(3209), - [anon_sym_atomic] = ACTIONS(3209), - [anon_sym_assert] = ACTIONS(3209), - [anon_sym_defer] = ACTIONS(3209), - [anon_sym_goto] = ACTIONS(3209), - [anon_sym_break] = ACTIONS(3209), - [anon_sym_continue] = ACTIONS(3209), - [anon_sym_return] = ACTIONS(3209), - [anon_sym_DOLLARfor] = ACTIONS(3209), - [anon_sym_for] = ACTIONS(3209), - [anon_sym_POUND] = ACTIONS(3209), - [anon_sym_asm] = ACTIONS(3209), - [anon_sym_AT_LBRACK] = ACTIONS(3209), - [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), - }, - [1059] = { - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym___global] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [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(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_pub] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3177), - [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(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [sym_pseudo_compile_time_identifier] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_defer] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_DOLLARfor] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym_AT_LBRACK] = ACTIONS(3177), - [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_line_comment] = STATE(1058), + [sym_block_comment] = STATE(1058), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym___global] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [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(3284), + [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(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3279), + [anon_sym_spawn] = ACTIONS(3279), + [anon_sym_json_DOTdecode] = ACTIONS(3279), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3279), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [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(3281), + [sym_none] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_nil] = ACTIONS(3279), + [anon_sym_QMARK_DOT] = ACTIONS(3281), + [anon_sym_POUND_LBRACK] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_DOLLARif] = ACTIONS(3279), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3281), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3281), + [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), + }, + [1059] = { + [sym_line_comment] = STATE(1059), + [sym_block_comment] = STATE(1059), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3343), + [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_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), }, [1060] = { - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3181), - [anon_sym_LF] = ACTIONS(3181), - [anon_sym_CR] = ACTIONS(3181), - [anon_sym_CR_LF] = ACTIONS(3181), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_const] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym___global] = ACTIONS(3181), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_EQ_EQ] = ACTIONS(3181), - [anon_sym_BANG_EQ] = ACTIONS(3181), - [anon_sym_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_EQ] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_union] = ACTIONS(3181), - [anon_sym_pub] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_enum] = ACTIONS(3181), - [anon_sym_interface] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(3181), - [anon_sym_GT_GT] = ACTIONS(3181), - [anon_sym_GT_GT_GT] = ACTIONS(3181), - [anon_sym_AMP_CARET] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3181), - [anon_sym_POUND_LBRACK] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [sym_pseudo_compile_time_identifier] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [anon_sym_assert] = ACTIONS(3181), - [anon_sym_defer] = ACTIONS(3181), - [anon_sym_goto] = ACTIONS(3181), - [anon_sym_break] = ACTIONS(3181), - [anon_sym_continue] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3181), - [anon_sym_DOLLARfor] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_asm] = ACTIONS(3181), - [anon_sym_AT_LBRACK] = ACTIONS(3181), - [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_line_comment] = STATE(1060), + [sym_block_comment] = STATE(1060), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3323), + [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_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), }, [1061] = { - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3193), - [anon_sym_LF] = ACTIONS(3193), - [anon_sym_CR] = ACTIONS(3193), - [anon_sym_CR_LF] = ACTIONS(3193), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym___global] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [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(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_pub] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3193), - [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(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [sym_pseudo_compile_time_identifier] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [anon_sym_assert] = ACTIONS(3193), - [anon_sym_defer] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_DOLLARfor] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym_AT_LBRACK] = ACTIONS(3193), - [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_line_comment] = STATE(1061), + [sym_block_comment] = STATE(1061), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3371), + [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_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), }, [1062] = { - [ts_builtin_sym_end] = ACTIONS(3203), - [sym_identifier] = ACTIONS(3205), - [anon_sym_LF] = ACTIONS(3205), - [anon_sym_CR] = ACTIONS(3205), - [anon_sym_CR_LF] = ACTIONS(3205), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3205), - [anon_sym_as] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym___global] = ACTIONS(3205), - [anon_sym_type] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3205), - [anon_sym_fn] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3205), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_GT] = ACTIONS(3205), - [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(3203), - [anon_sym_struct] = ACTIONS(3205), - [anon_sym_union] = ACTIONS(3205), - [anon_sym_pub] = ACTIONS(3205), - [anon_sym_mut] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_QMARK] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_go] = ACTIONS(3205), - [anon_sym_spawn] = ACTIONS(3205), - [anon_sym_json_DOTdecode] = ACTIONS(3205), - [anon_sym_LBRACK2] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3205), - [anon_sym_LT_DASH] = ACTIONS(3205), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3205), - [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(3205), - [sym_none] = ACTIONS(3205), - [sym_true] = ACTIONS(3205), - [sym_false] = ACTIONS(3205), - [sym_nil] = ACTIONS(3205), - [anon_sym_QMARK_DOT] = ACTIONS(3205), - [anon_sym_POUND_LBRACK] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_DOLLARif] = ACTIONS(3205), - [anon_sym_is] = ACTIONS(3205), - [anon_sym_BANGis] = ACTIONS(3205), - [anon_sym_in] = ACTIONS(3205), - [anon_sym_BANGin] = ACTIONS(3205), - [anon_sym_match] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [anon_sym_lock] = ACTIONS(3205), - [anon_sym_rlock] = ACTIONS(3205), - [anon_sym_unsafe] = ACTIONS(3205), - [anon_sym_sql] = ACTIONS(3205), - [sym_int_literal] = ACTIONS(3205), - [sym_float_literal] = ACTIONS(3205), - [sym_rune_literal] = ACTIONS(3205), - [sym_pseudo_compile_time_identifier] = ACTIONS(3205), - [anon_sym_shared] = ACTIONS(3205), - [anon_sym_map_LBRACK] = ACTIONS(3205), - [anon_sym_chan] = ACTIONS(3205), - [anon_sym_thread] = ACTIONS(3205), - [anon_sym_atomic] = ACTIONS(3205), - [anon_sym_assert] = ACTIONS(3205), - [anon_sym_defer] = ACTIONS(3205), - [anon_sym_goto] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_DOLLARfor] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_POUND] = ACTIONS(3205), - [anon_sym_asm] = ACTIONS(3205), - [anon_sym_AT_LBRACK] = ACTIONS(3205), - [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_line_comment] = STATE(1062), + [sym_block_comment] = STATE(1062), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3423), + [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_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), }, [1063] = { - [ts_builtin_sym_end] = ACTIONS(3211), - [sym_identifier] = ACTIONS(3213), - [anon_sym_LF] = ACTIONS(3213), - [anon_sym_CR] = ACTIONS(3213), - [anon_sym_CR_LF] = ACTIONS(3213), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3213), - [anon_sym_as] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_COMMA] = ACTIONS(3213), - [anon_sym_const] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3213), - [anon_sym___global] = ACTIONS(3213), - [anon_sym_type] = ACTIONS(3213), - [anon_sym_PIPE] = ACTIONS(3213), - [anon_sym_fn] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_SLASH] = ACTIONS(3213), - [anon_sym_PERCENT] = ACTIONS(3213), - [anon_sym_LT] = ACTIONS(3213), - [anon_sym_GT] = ACTIONS(3213), - [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(3211), - [anon_sym_struct] = ACTIONS(3213), - [anon_sym_union] = ACTIONS(3213), - [anon_sym_pub] = ACTIONS(3213), - [anon_sym_mut] = ACTIONS(3213), - [anon_sym_enum] = ACTIONS(3213), - [anon_sym_interface] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_QMARK] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_go] = ACTIONS(3213), - [anon_sym_spawn] = ACTIONS(3213), - [anon_sym_json_DOTdecode] = ACTIONS(3213), - [anon_sym_LBRACK2] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_CARET] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3213), - [anon_sym_LT_DASH] = ACTIONS(3213), - [anon_sym_LT_LT] = ACTIONS(3213), - [anon_sym_GT_GT] = ACTIONS(3213), - [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(3213), - [sym_none] = ACTIONS(3213), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_nil] = ACTIONS(3213), - [anon_sym_QMARK_DOT] = ACTIONS(3213), - [anon_sym_POUND_LBRACK] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_DOLLARif] = ACTIONS(3213), - [anon_sym_is] = ACTIONS(3213), - [anon_sym_BANGis] = ACTIONS(3213), - [anon_sym_in] = ACTIONS(3213), - [anon_sym_BANGin] = ACTIONS(3213), - [anon_sym_match] = ACTIONS(3213), - [anon_sym_select] = ACTIONS(3213), - [anon_sym_lock] = ACTIONS(3213), - [anon_sym_rlock] = ACTIONS(3213), - [anon_sym_unsafe] = ACTIONS(3213), - [anon_sym_sql] = ACTIONS(3213), - [sym_int_literal] = ACTIONS(3213), - [sym_float_literal] = ACTIONS(3213), - [sym_rune_literal] = ACTIONS(3213), - [sym_pseudo_compile_time_identifier] = ACTIONS(3213), - [anon_sym_shared] = ACTIONS(3213), - [anon_sym_map_LBRACK] = ACTIONS(3213), - [anon_sym_chan] = ACTIONS(3213), - [anon_sym_thread] = ACTIONS(3213), - [anon_sym_atomic] = ACTIONS(3213), - [anon_sym_assert] = ACTIONS(3213), - [anon_sym_defer] = ACTIONS(3213), - [anon_sym_goto] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_DOLLARfor] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_POUND] = ACTIONS(3213), - [anon_sym_asm] = ACTIONS(3213), - [anon_sym_AT_LBRACK] = ACTIONS(3213), - [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), + [sym_line_comment] = STATE(1063), + [sym_block_comment] = STATE(1063), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3339), + [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_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), }, [1064] = { - [ts_builtin_sym_end] = ACTIONS(3446), - [sym_identifier] = ACTIONS(3448), - [anon_sym_LF] = ACTIONS(3448), - [anon_sym_CR] = ACTIONS(3448), - [anon_sym_CR_LF] = ACTIONS(3448), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3448), - [anon_sym_as] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(3448), - [anon_sym_COMMA] = ACTIONS(3448), - [anon_sym_const] = ACTIONS(3448), - [anon_sym_LPAREN] = ACTIONS(3448), - [anon_sym___global] = ACTIONS(3448), - [anon_sym_type] = ACTIONS(3448), - [anon_sym_PIPE] = ACTIONS(3448), - [anon_sym_fn] = ACTIONS(3448), - [anon_sym_PLUS] = ACTIONS(3448), - [anon_sym_DASH] = ACTIONS(3448), - [anon_sym_STAR] = ACTIONS(3448), - [anon_sym_SLASH] = ACTIONS(3448), - [anon_sym_PERCENT] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(3448), - [anon_sym_GT] = ACTIONS(3448), - [anon_sym_EQ_EQ] = ACTIONS(3448), - [anon_sym_BANG_EQ] = ACTIONS(3448), - [anon_sym_LT_EQ] = ACTIONS(3448), - [anon_sym_GT_EQ] = ACTIONS(3448), - [anon_sym_LBRACK] = ACTIONS(3446), - [anon_sym_struct] = ACTIONS(3448), - [anon_sym_union] = ACTIONS(3448), - [anon_sym_pub] = ACTIONS(3448), - [anon_sym_mut] = ACTIONS(3448), - [anon_sym_enum] = ACTIONS(3448), - [anon_sym_interface] = ACTIONS(3448), - [anon_sym_PLUS_PLUS] = ACTIONS(3448), - [anon_sym_DASH_DASH] = ACTIONS(3448), - [anon_sym_QMARK] = ACTIONS(3448), - [anon_sym_BANG] = ACTIONS(3448), - [anon_sym_go] = ACTIONS(3448), - [anon_sym_spawn] = ACTIONS(3448), - [anon_sym_json_DOTdecode] = ACTIONS(3448), - [anon_sym_LBRACK2] = ACTIONS(3448), - [anon_sym_TILDE] = ACTIONS(3448), - [anon_sym_CARET] = ACTIONS(3448), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_LT_DASH] = ACTIONS(3448), - [anon_sym_LT_LT] = ACTIONS(3448), - [anon_sym_GT_GT] = ACTIONS(3448), - [anon_sym_GT_GT_GT] = ACTIONS(3448), - [anon_sym_AMP_CARET] = ACTIONS(3448), - [anon_sym_AMP_AMP] = ACTIONS(3448), - [anon_sym_PIPE_PIPE] = ACTIONS(3448), - [anon_sym_or] = ACTIONS(3448), - [sym_none] = ACTIONS(3448), - [sym_true] = ACTIONS(3448), - [sym_false] = ACTIONS(3448), - [sym_nil] = ACTIONS(3448), - [anon_sym_QMARK_DOT] = ACTIONS(3448), - [anon_sym_POUND_LBRACK] = ACTIONS(3448), - [anon_sym_if] = ACTIONS(3448), - [anon_sym_DOLLARif] = ACTIONS(3448), - [anon_sym_is] = ACTIONS(3448), - [anon_sym_BANGis] = ACTIONS(3448), - [anon_sym_in] = ACTIONS(3448), - [anon_sym_BANGin] = ACTIONS(3448), - [anon_sym_match] = ACTIONS(3448), - [anon_sym_select] = ACTIONS(3448), - [anon_sym_lock] = ACTIONS(3448), - [anon_sym_rlock] = ACTIONS(3448), - [anon_sym_unsafe] = ACTIONS(3448), - [anon_sym_sql] = ACTIONS(3448), - [sym_int_literal] = ACTIONS(3448), - [sym_float_literal] = ACTIONS(3448), - [sym_rune_literal] = ACTIONS(3448), - [sym_pseudo_compile_time_identifier] = ACTIONS(3448), - [anon_sym_shared] = ACTIONS(3448), - [anon_sym_map_LBRACK] = ACTIONS(3448), - [anon_sym_chan] = ACTIONS(3448), - [anon_sym_thread] = ACTIONS(3448), - [anon_sym_atomic] = ACTIONS(3448), - [anon_sym_assert] = ACTIONS(3448), - [anon_sym_defer] = ACTIONS(3448), - [anon_sym_goto] = ACTIONS(3448), - [anon_sym_break] = ACTIONS(3448), - [anon_sym_continue] = ACTIONS(3448), - [anon_sym_return] = ACTIONS(3448), - [anon_sym_DOLLARfor] = ACTIONS(3448), - [anon_sym_for] = ACTIONS(3448), - [anon_sym_POUND] = ACTIONS(3448), - [anon_sym_asm] = ACTIONS(3448), - [anon_sym_AT_LBRACK] = ACTIONS(3448), - [sym___double_quote] = ACTIONS(3448), - [sym___single_quote] = ACTIONS(3448), - [sym___c_double_quote] = ACTIONS(3448), - [sym___c_single_quote] = ACTIONS(3448), - [sym___r_double_quote] = ACTIONS(3448), - [sym___r_single_quote] = ACTIONS(3448), + [sym_line_comment] = STATE(1064), + [sym_block_comment] = STATE(1064), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3327), + [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_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), }, [1065] = { - [ts_builtin_sym_end] = ACTIONS(3406), - [sym_identifier] = ACTIONS(3408), - [anon_sym_LF] = ACTIONS(3408), - [anon_sym_CR] = ACTIONS(3408), - [anon_sym_CR_LF] = ACTIONS(3408), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3408), - [anon_sym_as] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_COMMA] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_LPAREN] = ACTIONS(3408), - [anon_sym___global] = ACTIONS(3408), - [anon_sym_type] = ACTIONS(3408), - [anon_sym_PIPE] = ACTIONS(3408), - [anon_sym_fn] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_SLASH] = ACTIONS(3408), - [anon_sym_PERCENT] = ACTIONS(3408), - [anon_sym_LT] = ACTIONS(3408), - [anon_sym_GT] = ACTIONS(3408), - [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(3406), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_pub] = ACTIONS(3408), - [anon_sym_mut] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_interface] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_QMARK] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3408), - [anon_sym_spawn] = ACTIONS(3408), - [anon_sym_json_DOTdecode] = ACTIONS(3408), - [anon_sym_LBRACK2] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3408), - [anon_sym_LT_LT] = ACTIONS(3408), - [anon_sym_GT_GT] = ACTIONS(3408), - [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(3408), - [sym_none] = ACTIONS(3408), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [sym_nil] = ACTIONS(3408), - [anon_sym_QMARK_DOT] = ACTIONS(3408), - [anon_sym_POUND_LBRACK] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_DOLLARif] = ACTIONS(3408), - [anon_sym_is] = ACTIONS(3408), - [anon_sym_BANGis] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3408), - [anon_sym_BANGin] = ACTIONS(3408), - [anon_sym_match] = ACTIONS(3408), - [anon_sym_select] = ACTIONS(3408), - [anon_sym_lock] = ACTIONS(3408), - [anon_sym_rlock] = ACTIONS(3408), - [anon_sym_unsafe] = ACTIONS(3408), - [anon_sym_sql] = ACTIONS(3408), - [sym_int_literal] = ACTIONS(3408), - [sym_float_literal] = ACTIONS(3408), - [sym_rune_literal] = ACTIONS(3408), - [sym_pseudo_compile_time_identifier] = ACTIONS(3408), - [anon_sym_shared] = ACTIONS(3408), - [anon_sym_map_LBRACK] = ACTIONS(3408), - [anon_sym_chan] = ACTIONS(3408), - [anon_sym_thread] = ACTIONS(3408), - [anon_sym_atomic] = ACTIONS(3408), - [anon_sym_assert] = ACTIONS(3408), - [anon_sym_defer] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_DOLLARfor] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_POUND] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym_AT_LBRACK] = ACTIONS(3408), - [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), + [sym_line_comment] = STATE(1065), + [sym_block_comment] = STATE(1065), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3411), + [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_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), }, [1066] = { - [ts_builtin_sym_end] = ACTIONS(3187), - [sym_identifier] = ACTIONS(3189), - [anon_sym_LF] = ACTIONS(3189), - [anon_sym_CR] = ACTIONS(3189), - [anon_sym_CR_LF] = ACTIONS(3189), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym___global] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [anon_sym_pub] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_interface] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3189), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3189), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_AMP_CARET] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3189), - [anon_sym_POUND_LBRACK] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3189), - [sym_rune_literal] = ACTIONS(3189), - [sym_pseudo_compile_time_identifier] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3189), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_defer] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_DOLLARfor] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_asm] = ACTIONS(3189), - [anon_sym_AT_LBRACK] = ACTIONS(3189), - [sym___double_quote] = ACTIONS(3189), - [sym___single_quote] = ACTIONS(3189), - [sym___c_double_quote] = ACTIONS(3189), - [sym___c_single_quote] = ACTIONS(3189), - [sym___r_double_quote] = ACTIONS(3189), - [sym___r_single_quote] = ACTIONS(3189), + [sym_line_comment] = STATE(1066), + [sym_block_comment] = STATE(1066), + [ts_builtin_sym_end] = ACTIONS(3223), + [sym_identifier] = ACTIONS(3225), + [anon_sym_LF] = ACTIONS(3225), + [anon_sym_CR] = ACTIONS(3225), + [anon_sym_CR_LF] = ACTIONS(3225), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_DOT] = ACTIONS(3225), + [anon_sym_as] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_COMMA] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym___global] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_PIPE] = ACTIONS(3225), + [anon_sym_fn] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_PERCENT] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_GT] = ACTIONS(3225), + [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(3223), + [anon_sym_struct] = ACTIONS(3225), + [anon_sym_union] = ACTIONS(3225), + [anon_sym_pub] = ACTIONS(3225), + [anon_sym_mut] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_go] = ACTIONS(3225), + [anon_sym_spawn] = ACTIONS(3225), + [anon_sym_json_DOTdecode] = ACTIONS(3225), + [anon_sym_LBRACK2] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_CARET] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_LT_DASH] = ACTIONS(3225), + [anon_sym_LT_LT] = ACTIONS(3225), + [anon_sym_GT_GT] = ACTIONS(3225), + [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(3225), + [sym_none] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_nil] = ACTIONS(3225), + [anon_sym_QMARK_DOT] = ACTIONS(3225), + [anon_sym_POUND_LBRACK] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_DOLLARif] = ACTIONS(3225), + [anon_sym_is] = ACTIONS(3225), + [anon_sym_BANGis] = ACTIONS(3225), + [anon_sym_in] = ACTIONS(3225), + [anon_sym_BANGin] = ACTIONS(3225), + [anon_sym_match] = ACTIONS(3225), + [anon_sym_select] = ACTIONS(3225), + [anon_sym_lock] = ACTIONS(3225), + [anon_sym_rlock] = ACTIONS(3225), + [anon_sym_unsafe] = ACTIONS(3225), + [anon_sym_sql] = ACTIONS(3225), + [sym_int_literal] = ACTIONS(3225), + [sym_float_literal] = ACTIONS(3225), + [sym_rune_literal] = ACTIONS(3225), + [sym_pseudo_compile_time_identifier] = ACTIONS(3225), + [anon_sym_shared] = ACTIONS(3225), + [anon_sym_map_LBRACK] = ACTIONS(3225), + [anon_sym_chan] = ACTIONS(3225), + [anon_sym_thread] = ACTIONS(3225), + [anon_sym_atomic] = ACTIONS(3225), + [anon_sym_assert] = ACTIONS(3225), + [anon_sym_defer] = ACTIONS(3225), + [anon_sym_goto] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_DOLLARfor] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_POUND] = ACTIONS(3225), + [anon_sym_asm] = ACTIONS(3225), + [anon_sym_AT_LBRACK] = ACTIONS(3225), + [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), + }, + [1067] = { + [sym_line_comment] = STATE(1067), + [sym_block_comment] = STATE(1067), + [ts_builtin_sym_end] = ACTIONS(3231), + [sym_identifier] = ACTIONS(3233), + [anon_sym_LF] = ACTIONS(3233), + [anon_sym_CR] = ACTIONS(3233), + [anon_sym_CR_LF] = ACTIONS(3233), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_DOT] = ACTIONS(3233), + [anon_sym_as] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym___global] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_PIPE] = ACTIONS(3233), + [anon_sym_fn] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_PERCENT] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_GT] = ACTIONS(3233), + [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(3231), + [anon_sym_struct] = ACTIONS(3233), + [anon_sym_union] = ACTIONS(3233), + [anon_sym_pub] = ACTIONS(3233), + [anon_sym_mut] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [anon_sym_QMARK] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_go] = ACTIONS(3233), + [anon_sym_spawn] = ACTIONS(3233), + [anon_sym_json_DOTdecode] = ACTIONS(3233), + [anon_sym_LBRACK2] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_CARET] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_LT_DASH] = ACTIONS(3233), + [anon_sym_LT_LT] = ACTIONS(3233), + [anon_sym_GT_GT] = ACTIONS(3233), + [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(3233), + [sym_none] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_nil] = ACTIONS(3233), + [anon_sym_QMARK_DOT] = ACTIONS(3233), + [anon_sym_POUND_LBRACK] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_DOLLARif] = ACTIONS(3233), + [anon_sym_is] = ACTIONS(3233), + [anon_sym_BANGis] = ACTIONS(3233), + [anon_sym_in] = ACTIONS(3233), + [anon_sym_BANGin] = ACTIONS(3233), + [anon_sym_match] = ACTIONS(3233), + [anon_sym_select] = ACTIONS(3233), + [anon_sym_lock] = ACTIONS(3233), + [anon_sym_rlock] = ACTIONS(3233), + [anon_sym_unsafe] = ACTIONS(3233), + [anon_sym_sql] = ACTIONS(3233), + [sym_int_literal] = ACTIONS(3233), + [sym_float_literal] = ACTIONS(3233), + [sym_rune_literal] = ACTIONS(3233), + [sym_pseudo_compile_time_identifier] = ACTIONS(3233), + [anon_sym_shared] = ACTIONS(3233), + [anon_sym_map_LBRACK] = ACTIONS(3233), + [anon_sym_chan] = ACTIONS(3233), + [anon_sym_thread] = ACTIONS(3233), + [anon_sym_atomic] = ACTIONS(3233), + [anon_sym_assert] = ACTIONS(3233), + [anon_sym_defer] = ACTIONS(3233), + [anon_sym_goto] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_DOLLARfor] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_POUND] = ACTIONS(3233), + [anon_sym_asm] = ACTIONS(3233), + [anon_sym_AT_LBRACK] = ACTIONS(3233), + [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), + }, + [1068] = { + [sym_line_comment] = STATE(1068), + [sym_block_comment] = STATE(1068), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2975), + [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_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(2975), + [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), + }, + [1069] = { + [sym_line_comment] = STATE(1069), + [sym_block_comment] = STATE(1069), + [ts_builtin_sym_end] = ACTIONS(3235), + [sym_identifier] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_CR] = ACTIONS(3237), + [anon_sym_CR_LF] = ACTIONS(3237), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_COMMA] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym___global] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [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(3235), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_union] = ACTIONS(3237), + [anon_sym_pub] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3237), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [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(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3237), + [anon_sym_POUND_LBRACK] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_is] = ACTIONS(3237), + [anon_sym_BANGis] = ACTIONS(3237), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_BANGin] = ACTIONS(3237), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3237), + [sym_rune_literal] = ACTIONS(3237), + [sym_pseudo_compile_time_identifier] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3237), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [anon_sym_assert] = ACTIONS(3237), + [anon_sym_defer] = ACTIONS(3237), + [anon_sym_goto] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_DOLLARfor] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_POUND] = ACTIONS(3237), + [anon_sym_asm] = ACTIONS(3237), + [anon_sym_AT_LBRACK] = ACTIONS(3237), + [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), + }, + [1070] = { + [sym_line_comment] = STATE(1070), + [sym_block_comment] = STATE(1070), + [ts_builtin_sym_end] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3309), + [anon_sym_LF] = ACTIONS(3309), + [anon_sym_CR] = ACTIONS(3309), + [anon_sym_CR_LF] = ACTIONS(3309), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_DOT] = ACTIONS(3309), + [anon_sym_as] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym___global] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_fn] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [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(3307), + [anon_sym_struct] = ACTIONS(3309), + [anon_sym_union] = ACTIONS(3309), + [anon_sym_pub] = ACTIONS(3309), + [anon_sym_mut] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_QMARK] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_go] = ACTIONS(3309), + [anon_sym_spawn] = ACTIONS(3309), + [anon_sym_json_DOTdecode] = ACTIONS(3309), + [anon_sym_LBRACK2] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_LT_DASH] = ACTIONS(3309), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3309), + [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(3309), + [sym_none] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_nil] = ACTIONS(3309), + [anon_sym_QMARK_DOT] = ACTIONS(3309), + [anon_sym_POUND_LBRACK] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_DOLLARif] = ACTIONS(3309), + [anon_sym_is] = ACTIONS(3309), + [anon_sym_BANGis] = ACTIONS(3309), + [anon_sym_in] = ACTIONS(3309), + [anon_sym_BANGin] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_lock] = ACTIONS(3309), + [anon_sym_rlock] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_sql] = ACTIONS(3309), + [sym_int_literal] = ACTIONS(3309), + [sym_float_literal] = ACTIONS(3309), + [sym_rune_literal] = ACTIONS(3309), + [sym_pseudo_compile_time_identifier] = ACTIONS(3309), + [anon_sym_shared] = ACTIONS(3309), + [anon_sym_map_LBRACK] = ACTIONS(3309), + [anon_sym_chan] = ACTIONS(3309), + [anon_sym_thread] = ACTIONS(3309), + [anon_sym_atomic] = ACTIONS(3309), + [anon_sym_assert] = ACTIONS(3309), + [anon_sym_defer] = ACTIONS(3309), + [anon_sym_goto] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_DOLLARfor] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_POUND] = ACTIONS(3309), + [anon_sym_asm] = ACTIONS(3309), + [anon_sym_AT_LBRACK] = ACTIONS(3309), + [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), + }, + [1071] = { + [sym_line_comment] = STATE(1071), + [sym_block_comment] = STATE(1071), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym___global] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_pub] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), + [anon_sym_AT_LBRACK] = ACTIONS(2833), + [sym___double_quote] = ACTIONS(2833), + [sym___single_quote] = ACTIONS(2833), + [sym___c_double_quote] = ACTIONS(2833), + [sym___c_single_quote] = ACTIONS(2833), + [sym___r_double_quote] = ACTIONS(2833), + [sym___r_single_quote] = ACTIONS(2833), + }, + [1072] = { + [sym_line_comment] = STATE(1072), + [sym_block_comment] = STATE(1072), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3359), + [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_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), + }, + [1073] = { + [sym_line_comment] = STATE(1073), + [sym_block_comment] = STATE(1073), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3203), + [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_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), + }, + [1074] = { + [sym_line_comment] = STATE(1074), + [sym_block_comment] = STATE(1074), + [ts_builtin_sym_end] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3249), + [anon_sym_LF] = ACTIONS(3249), + [anon_sym_CR] = ACTIONS(3249), + [anon_sym_CR_LF] = ACTIONS(3249), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym___global] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [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(3247), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_union] = ACTIONS(3249), + [anon_sym_pub] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3249), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_CARET] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_LT_LT] = ACTIONS(3249), + [anon_sym_GT_GT] = ACTIONS(3249), + [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(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3249), + [anon_sym_POUND_LBRACK] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3249), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3249), + [sym_rune_literal] = ACTIONS(3249), + [sym_pseudo_compile_time_identifier] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3249), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_defer] = ACTIONS(3249), + [anon_sym_goto] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_DOLLARfor] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_POUND] = ACTIONS(3249), + [anon_sym_asm] = ACTIONS(3249), + [anon_sym_AT_LBRACK] = ACTIONS(3249), + [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), }, - [1067] = { - [ts_builtin_sym_end] = ACTIONS(3171), - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym___global] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [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(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_pub] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [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(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [sym_pseudo_compile_time_identifier] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_defer] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_DOLLARfor] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_asm] = ACTIONS(3173), - [anon_sym_AT_LBRACK] = ACTIONS(3173), - [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), + [1075] = { + [sym_line_comment] = STATE(1075), + [sym_block_comment] = STATE(1075), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3407), + [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_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), }, - [1068] = { + [1076] = { + [sym_line_comment] = STATE(1076), + [sym_block_comment] = STATE(1076), [ts_builtin_sym_end] = ACTIONS(3243), [sym_identifier] = ACTIONS(3245), [anon_sym_LF] = ACTIONS(3245), [anon_sym_CR] = ACTIONS(3245), [anon_sym_CR_LF] = ACTIONS(3245), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3245), [anon_sym_DOT] = ACTIONS(3245), [anon_sym_as] = ACTIONS(3245), [anon_sym_LBRACE] = ACTIONS(3245), @@ -146595,7 +147654,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3245), [anon_sym_DASH] = ACTIONS(3245), [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), [anon_sym_PERCENT] = ACTIONS(3245), [anon_sym_LT] = ACTIONS(3245), [anon_sym_GT] = ACTIONS(3245), @@ -146674,3379 +147732,2567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3245), [sym___r_single_quote] = ACTIONS(3245), }, - [1069] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3313), - [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), - }, - [1070] = { - [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), - [sym_comment] = ACTIONS(495), - [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_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), - }, - [1071] = { - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3400), - [anon_sym_LF] = ACTIONS(3400), - [anon_sym_CR] = ACTIONS(3400), - [anon_sym_CR_LF] = ACTIONS(3400), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3400), - [anon_sym_as] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3400), - [anon_sym_COMMA] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_LPAREN] = ACTIONS(3400), - [anon_sym___global] = ACTIONS(3400), - [anon_sym_type] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_fn] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_SLASH] = ACTIONS(3400), - [anon_sym_PERCENT] = ACTIONS(3400), - [anon_sym_LT] = ACTIONS(3400), - [anon_sym_GT] = ACTIONS(3400), - [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(3398), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_union] = ACTIONS(3400), - [anon_sym_pub] = ACTIONS(3400), - [anon_sym_mut] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), - [anon_sym_interface] = ACTIONS(3400), - [anon_sym_PLUS_PLUS] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3400), - [anon_sym_QMARK] = ACTIONS(3400), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3400), - [anon_sym_json_DOTdecode] = ACTIONS(3400), - [anon_sym_LBRACK2] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(3400), - [anon_sym_CARET] = ACTIONS(3400), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_LT_DASH] = ACTIONS(3400), - [anon_sym_LT_LT] = ACTIONS(3400), - [anon_sym_GT_GT] = ACTIONS(3400), - [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(3400), - [sym_none] = ACTIONS(3400), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [sym_nil] = ACTIONS(3400), - [anon_sym_QMARK_DOT] = ACTIONS(3400), - [anon_sym_POUND_LBRACK] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_DOLLARif] = ACTIONS(3400), - [anon_sym_is] = ACTIONS(3400), - [anon_sym_BANGis] = ACTIONS(3400), - [anon_sym_in] = ACTIONS(3400), - [anon_sym_BANGin] = ACTIONS(3400), - [anon_sym_match] = ACTIONS(3400), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3400), - [anon_sym_rlock] = ACTIONS(3400), - [anon_sym_unsafe] = ACTIONS(3400), - [anon_sym_sql] = ACTIONS(3400), - [sym_int_literal] = ACTIONS(3400), - [sym_float_literal] = ACTIONS(3400), - [sym_rune_literal] = ACTIONS(3400), - [sym_pseudo_compile_time_identifier] = ACTIONS(3400), - [anon_sym_shared] = ACTIONS(3400), - [anon_sym_map_LBRACK] = ACTIONS(3400), - [anon_sym_chan] = ACTIONS(3400), - [anon_sym_thread] = ACTIONS(3400), - [anon_sym_atomic] = ACTIONS(3400), - [anon_sym_assert] = ACTIONS(3400), - [anon_sym_defer] = ACTIONS(3400), - [anon_sym_goto] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_DOLLARfor] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_POUND] = ACTIONS(3400), - [anon_sym_asm] = ACTIONS(3400), - [anon_sym_AT_LBRACK] = ACTIONS(3400), - [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), - }, - [1072] = { - [ts_builtin_sym_end] = ACTIONS(2897), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2899), - [anon_sym_CR] = ACTIONS(2899), - [anon_sym_CR_LF] = ACTIONS(2899), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_as] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(2899), - [anon_sym_const] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym___global] = ACTIONS(2899), - [anon_sym_type] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [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(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_union] = ACTIONS(2899), - [anon_sym_pub] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_enum] = ACTIONS(2899), - [anon_sym_interface] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2899), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [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(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2899), - [anon_sym_POUND_LBRACK] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2899), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2899), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_select] = ACTIONS(2899), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_sql] = ACTIONS(2899), - [sym_int_literal] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2899), - [sym_rune_literal] = ACTIONS(2899), - [sym_pseudo_compile_time_identifier] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2899), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [anon_sym_assert] = ACTIONS(2899), - [anon_sym_defer] = ACTIONS(2899), - [anon_sym_goto] = ACTIONS(2899), - [anon_sym_break] = ACTIONS(2899), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_return] = ACTIONS(2899), - [anon_sym_DOLLARfor] = ACTIONS(2899), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_asm] = ACTIONS(2899), - [anon_sym_AT_LBRACK] = ACTIONS(2899), - [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), - }, - [1073] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [sym_identifier] = ACTIONS(2903), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_CR] = ACTIONS(2903), - [anon_sym_CR_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym___global] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [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(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_pub] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_interface] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2903), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2903), - [anon_sym_GT_GT] = ACTIONS(2903), - [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(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2903), - [anon_sym_POUND_LBRACK] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2903), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - [sym_rune_literal] = ACTIONS(2903), - [sym_pseudo_compile_time_identifier] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2903), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [anon_sym_assert] = ACTIONS(2903), - [anon_sym_defer] = ACTIONS(2903), - [anon_sym_goto] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_DOLLARfor] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_asm] = ACTIONS(2903), - [anon_sym_AT_LBRACK] = ACTIONS(2903), - [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), - }, - [1074] = { - [ts_builtin_sym_end] = ACTIONS(3143), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LF] = ACTIONS(3145), - [anon_sym_CR] = ACTIONS(3145), - [anon_sym_CR_LF] = ACTIONS(3145), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym___global] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [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(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [anon_sym_pub] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [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(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3145), - [anon_sym_POUND_LBRACK] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [sym_pseudo_compile_time_identifier] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_defer] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_DOLLARfor] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym_AT_LBRACK] = ACTIONS(3145), - [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), - }, - [1075] = { - [ts_builtin_sym_end] = ACTIONS(3139), - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym___global] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [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(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_union] = ACTIONS(3141), - [anon_sym_pub] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3141), - [anon_sym_interface] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [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(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [sym_pseudo_compile_time_identifier] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [anon_sym_assert] = ACTIONS(3141), - [anon_sym_defer] = ACTIONS(3141), - [anon_sym_goto] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_DOLLARfor] = ACTIONS(3141), - [anon_sym_for] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_asm] = ACTIONS(3141), - [anon_sym_AT_LBRACK] = ACTIONS(3141), - [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), - }, - [1076] = { - [ts_builtin_sym_end] = ACTIONS(3255), - [sym_identifier] = ACTIONS(3257), - [anon_sym_LF] = ACTIONS(3257), - [anon_sym_CR] = ACTIONS(3257), - [anon_sym_CR_LF] = ACTIONS(3257), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3257), - [anon_sym_as] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_COMMA] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym___global] = ACTIONS(3257), - [anon_sym_type] = ACTIONS(3257), - [anon_sym_PIPE] = ACTIONS(3257), - [anon_sym_fn] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3257), - [anon_sym_PERCENT] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3257), - [anon_sym_GT] = ACTIONS(3257), - [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(3255), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_union] = ACTIONS(3257), - [anon_sym_pub] = ACTIONS(3257), - [anon_sym_mut] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_QMARK] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(3257), - [anon_sym_spawn] = ACTIONS(3257), - [anon_sym_json_DOTdecode] = ACTIONS(3257), - [anon_sym_LBRACK2] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_CARET] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3257), - [anon_sym_LT_DASH] = ACTIONS(3257), - [anon_sym_LT_LT] = ACTIONS(3257), - [anon_sym_GT_GT] = ACTIONS(3257), - [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(3257), - [sym_none] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_nil] = ACTIONS(3257), - [anon_sym_QMARK_DOT] = ACTIONS(3257), - [anon_sym_POUND_LBRACK] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_DOLLARif] = ACTIONS(3257), - [anon_sym_is] = ACTIONS(3257), - [anon_sym_BANGis] = ACTIONS(3257), - [anon_sym_in] = ACTIONS(3257), - [anon_sym_BANGin] = ACTIONS(3257), - [anon_sym_match] = ACTIONS(3257), - [anon_sym_select] = ACTIONS(3257), - [anon_sym_lock] = ACTIONS(3257), - [anon_sym_rlock] = ACTIONS(3257), - [anon_sym_unsafe] = ACTIONS(3257), - [anon_sym_sql] = ACTIONS(3257), - [sym_int_literal] = ACTIONS(3257), - [sym_float_literal] = ACTIONS(3257), - [sym_rune_literal] = ACTIONS(3257), - [sym_pseudo_compile_time_identifier] = ACTIONS(3257), - [anon_sym_shared] = ACTIONS(3257), - [anon_sym_map_LBRACK] = ACTIONS(3257), - [anon_sym_chan] = ACTIONS(3257), - [anon_sym_thread] = ACTIONS(3257), - [anon_sym_atomic] = ACTIONS(3257), - [anon_sym_assert] = ACTIONS(3257), - [anon_sym_defer] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_DOLLARfor] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(3257), - [anon_sym_asm] = ACTIONS(3257), - [anon_sym_AT_LBRACK] = ACTIONS(3257), - [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), - }, [1077] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LF] = ACTIONS(3219), - [anon_sym_CR] = ACTIONS(3219), - [anon_sym_CR_LF] = ACTIONS(3219), - [sym_comment] = ACTIONS(495), - [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(3222), - [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_line_comment] = STATE(1077), + [sym_block_comment] = STATE(1077), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3433), + [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_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), }, [1078] = { - [ts_builtin_sym_end] = ACTIONS(2909), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LF] = ACTIONS(2911), - [anon_sym_CR] = ACTIONS(2911), - [anon_sym_CR_LF] = ACTIONS(2911), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym___global] = ACTIONS(2911), - [anon_sym_type] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [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(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_pub] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2911), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2911), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2911), - [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(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2911), - [anon_sym_POUND_LBRACK] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2911), - [sym_rune_literal] = ACTIONS(2911), - [sym_pseudo_compile_time_identifier] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2911), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [anon_sym_assert] = ACTIONS(2911), - [anon_sym_defer] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_DOLLARfor] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym_AT_LBRACK] = ACTIONS(2911), - [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), - }, - [1079] = { - [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), - [sym_comment] = ACTIONS(495), - [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), - }, - [1080] = { - [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), - [sym_comment] = ACTIONS(495), - [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), - }, - [1081] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym___global] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [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(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_union] = ACTIONS(3129), - [anon_sym_pub] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3129), - [anon_sym_GT_GT] = ACTIONS(3129), - [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(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3129), - [anon_sym_POUND_LBRACK] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3129), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [sym_pseudo_compile_time_identifier] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_defer] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_DOLLARfor] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_asm] = ACTIONS(3129), - [anon_sym_AT_LBRACK] = ACTIONS(3129), - [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_line_comment] = STATE(1078), + [sym_block_comment] = STATE(1078), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3055), + [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_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), + }, + [1079] = { + [sym_line_comment] = STATE(1079), + [sym_block_comment] = STATE(1079), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3315), + [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_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), + }, + [1080] = { + [sym_line_comment] = STATE(1080), + [sym_block_comment] = STATE(1080), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3289), + [anon_sym_LF] = ACTIONS(3289), + [anon_sym_CR] = ACTIONS(3289), + [anon_sym_CR_LF] = ACTIONS(3289), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_as] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_COMMA] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym___global] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_fn] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [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(3287), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_union] = ACTIONS(3289), + [anon_sym_pub] = ACTIONS(3289), + [anon_sym_mut] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_go] = ACTIONS(3289), + [anon_sym_spawn] = ACTIONS(3289), + [anon_sym_json_DOTdecode] = ACTIONS(3289), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_LT_DASH] = ACTIONS(3289), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(3289), + [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(3289), + [sym_none] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_nil] = ACTIONS(3289), + [anon_sym_QMARK_DOT] = ACTIONS(3289), + [anon_sym_POUND_LBRACK] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_DOLLARif] = ACTIONS(3289), + [anon_sym_is] = ACTIONS(3289), + [anon_sym_BANGis] = ACTIONS(3289), + [anon_sym_in] = ACTIONS(3289), + [anon_sym_BANGin] = ACTIONS(3289), + [anon_sym_match] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_rlock] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_sql] = ACTIONS(3289), + [sym_int_literal] = ACTIONS(3289), + [sym_float_literal] = ACTIONS(3289), + [sym_rune_literal] = ACTIONS(3289), + [sym_pseudo_compile_time_identifier] = ACTIONS(3289), + [anon_sym_shared] = ACTIONS(3289), + [anon_sym_map_LBRACK] = ACTIONS(3289), + [anon_sym_chan] = ACTIONS(3289), + [anon_sym_thread] = ACTIONS(3289), + [anon_sym_atomic] = ACTIONS(3289), + [anon_sym_assert] = ACTIONS(3289), + [anon_sym_defer] = ACTIONS(3289), + [anon_sym_goto] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_DOLLARfor] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(3289), + [anon_sym_asm] = ACTIONS(3289), + [anon_sym_AT_LBRACK] = ACTIONS(3289), + [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), + }, + [1081] = { + [sym_line_comment] = STATE(1081), + [sym_block_comment] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(3143), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LF] = ACTIONS(3145), + [anon_sym_CR] = ACTIONS(3145), + [anon_sym_CR_LF] = ACTIONS(3145), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3145), + [anon_sym_as] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym___global] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_fn] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_PERCENT] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3145), + [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(3143), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_union] = ACTIONS(3145), + [anon_sym_pub] = ACTIONS(3145), + [anon_sym_mut] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_go] = ACTIONS(3145), + [anon_sym_spawn] = ACTIONS(3145), + [anon_sym_json_DOTdecode] = ACTIONS(3145), + [anon_sym_LBRACK2] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_LT_DASH] = ACTIONS(3145), + [anon_sym_LT_LT] = ACTIONS(3145), + [anon_sym_GT_GT] = ACTIONS(3145), + [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(3145), + [sym_none] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_nil] = ACTIONS(3145), + [anon_sym_QMARK_DOT] = ACTIONS(3145), + [anon_sym_POUND_LBRACK] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_DOLLARif] = ACTIONS(3145), + [anon_sym_is] = ACTIONS(3145), + [anon_sym_BANGis] = ACTIONS(3145), + [anon_sym_in] = ACTIONS(3145), + [anon_sym_BANGin] = ACTIONS(3145), + [anon_sym_match] = ACTIONS(3145), + [anon_sym_select] = ACTIONS(3145), + [anon_sym_lock] = ACTIONS(3145), + [anon_sym_rlock] = ACTIONS(3145), + [anon_sym_unsafe] = ACTIONS(3145), + [anon_sym_sql] = ACTIONS(3145), + [sym_int_literal] = ACTIONS(3145), + [sym_float_literal] = ACTIONS(3145), + [sym_rune_literal] = ACTIONS(3145), + [sym_pseudo_compile_time_identifier] = ACTIONS(3145), + [anon_sym_shared] = ACTIONS(3145), + [anon_sym_map_LBRACK] = ACTIONS(3145), + [anon_sym_chan] = ACTIONS(3145), + [anon_sym_thread] = ACTIONS(3145), + [anon_sym_atomic] = ACTIONS(3145), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_defer] = ACTIONS(3145), + [anon_sym_goto] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_DOLLARfor] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(3145), + [anon_sym_asm] = ACTIONS(3145), + [anon_sym_AT_LBRACK] = ACTIONS(3145), + [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), }, [1082] = { - [ts_builtin_sym_end] = ACTIONS(3326), - [sym_identifier] = ACTIONS(3328), - [anon_sym_LF] = ACTIONS(3328), - [anon_sym_CR] = ACTIONS(3328), - [anon_sym_CR_LF] = ACTIONS(3328), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym___global] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_PERCENT] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_GT] = ACTIONS(3328), - [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(3326), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [anon_sym_pub] = ACTIONS(3328), - [anon_sym_mut] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [anon_sym_QMARK] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_go] = ACTIONS(3328), - [anon_sym_spawn] = ACTIONS(3328), - [anon_sym_json_DOTdecode] = ACTIONS(3328), - [anon_sym_LBRACK2] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_LT_DASH] = ACTIONS(3328), - [anon_sym_LT_LT] = ACTIONS(3328), - [anon_sym_GT_GT] = ACTIONS(3328), - [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(3328), - [sym_none] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_nil] = ACTIONS(3328), - [anon_sym_QMARK_DOT] = ACTIONS(3328), - [anon_sym_POUND_LBRACK] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_DOLLARif] = ACTIONS(3328), - [anon_sym_is] = ACTIONS(3328), - [anon_sym_BANGis] = ACTIONS(3328), - [anon_sym_in] = ACTIONS(3328), - [anon_sym_BANGin] = ACTIONS(3328), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3328), - [anon_sym_lock] = ACTIONS(3328), - [anon_sym_rlock] = ACTIONS(3328), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3328), - [sym_int_literal] = ACTIONS(3328), - [sym_float_literal] = ACTIONS(3328), - [sym_rune_literal] = ACTIONS(3328), - [sym_pseudo_compile_time_identifier] = ACTIONS(3328), - [anon_sym_shared] = ACTIONS(3328), - [anon_sym_map_LBRACK] = ACTIONS(3328), - [anon_sym_chan] = ACTIONS(3328), - [anon_sym_thread] = ACTIONS(3328), - [anon_sym_atomic] = ACTIONS(3328), - [anon_sym_assert] = ACTIONS(3328), - [anon_sym_defer] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_DOLLARfor] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_POUND] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - [anon_sym_AT_LBRACK] = ACTIONS(3328), - [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), + [sym_line_comment] = STATE(1082), + [sym_block_comment] = STATE(1082), + [ts_builtin_sym_end] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LF] = ACTIONS(3047), + [anon_sym_CR] = ACTIONS(3047), + [anon_sym_CR_LF] = ACTIONS(3047), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3047), + [anon_sym_as] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3047), + [anon_sym_COMMA] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3047), + [anon_sym___global] = ACTIONS(3047), + [anon_sym_type] = ACTIONS(3047), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_fn] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_PERCENT] = ACTIONS(3047), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_EQ_EQ] = ACTIONS(3047), + [anon_sym_BANG_EQ] = ACTIONS(3047), + [anon_sym_LT_EQ] = ACTIONS(3047), + [anon_sym_GT_EQ] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3045), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_pub] = ACTIONS(3047), + [anon_sym_mut] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_interface] = ACTIONS(3047), + [anon_sym_PLUS_PLUS] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3047), + [anon_sym_QMARK] = ACTIONS(3047), + [anon_sym_BANG] = ACTIONS(3047), + [anon_sym_go] = ACTIONS(3047), + [anon_sym_spawn] = ACTIONS(3047), + [anon_sym_json_DOTdecode] = ACTIONS(3047), + [anon_sym_LBRACK2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3047), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_LT_DASH] = ACTIONS(3047), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(3047), + [anon_sym_GT_GT_GT] = ACTIONS(3047), + [anon_sym_AMP_CARET] = ACTIONS(3047), + [anon_sym_AMP_AMP] = ACTIONS(3047), + [anon_sym_PIPE_PIPE] = ACTIONS(3047), + [anon_sym_or] = ACTIONS(3047), + [sym_none] = ACTIONS(3047), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [sym_nil] = ACTIONS(3047), + [anon_sym_QMARK_DOT] = ACTIONS(3047), + [anon_sym_POUND_LBRACK] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_DOLLARif] = ACTIONS(3047), + [anon_sym_is] = ACTIONS(3047), + [anon_sym_BANGis] = ACTIONS(3047), + [anon_sym_in] = ACTIONS(3047), + [anon_sym_BANGin] = ACTIONS(3047), + [anon_sym_match] = ACTIONS(3047), + [anon_sym_select] = ACTIONS(3047), + [anon_sym_lock] = ACTIONS(3047), + [anon_sym_rlock] = ACTIONS(3047), + [anon_sym_unsafe] = ACTIONS(3047), + [anon_sym_sql] = ACTIONS(3047), + [sym_int_literal] = ACTIONS(3047), + [sym_float_literal] = ACTIONS(3047), + [sym_rune_literal] = ACTIONS(3047), + [sym_pseudo_compile_time_identifier] = ACTIONS(3047), + [anon_sym_shared] = ACTIONS(3047), + [anon_sym_map_LBRACK] = ACTIONS(3047), + [anon_sym_chan] = ACTIONS(3047), + [anon_sym_thread] = ACTIONS(3047), + [anon_sym_atomic] = ACTIONS(3047), + [anon_sym_assert] = ACTIONS(3047), + [anon_sym_defer] = ACTIONS(3047), + [anon_sym_goto] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_DOLLARfor] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_POUND] = ACTIONS(3047), + [anon_sym_asm] = ACTIONS(3047), + [anon_sym_AT_LBRACK] = ACTIONS(3047), + [sym___double_quote] = ACTIONS(3047), + [sym___single_quote] = ACTIONS(3047), + [sym___c_double_quote] = ACTIONS(3047), + [sym___c_single_quote] = ACTIONS(3047), + [sym___r_double_quote] = ACTIONS(3047), + [sym___r_single_quote] = ACTIONS(3047), }, [1083] = { - [ts_builtin_sym_end] = ACTIONS(3330), - [sym_identifier] = ACTIONS(3332), - [anon_sym_LF] = ACTIONS(3332), - [anon_sym_CR] = ACTIONS(3332), - [anon_sym_CR_LF] = ACTIONS(3332), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3332), - [anon_sym_as] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym___global] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_PIPE] = ACTIONS(3332), - [anon_sym_fn] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_PERCENT] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_GT] = ACTIONS(3332), - [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(3330), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_pub] = ACTIONS(3332), - [anon_sym_mut] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [anon_sym_QMARK] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_go] = ACTIONS(3332), - [anon_sym_spawn] = ACTIONS(3332), - [anon_sym_json_DOTdecode] = ACTIONS(3332), - [anon_sym_LBRACK2] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_CARET] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_LT_DASH] = ACTIONS(3332), - [anon_sym_LT_LT] = ACTIONS(3332), - [anon_sym_GT_GT] = ACTIONS(3332), - [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(3332), - [sym_none] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_nil] = ACTIONS(3332), - [anon_sym_QMARK_DOT] = ACTIONS(3332), - [anon_sym_POUND_LBRACK] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_DOLLARif] = ACTIONS(3332), - [anon_sym_is] = ACTIONS(3332), - [anon_sym_BANGis] = ACTIONS(3332), - [anon_sym_in] = ACTIONS(3332), - [anon_sym_BANGin] = ACTIONS(3332), - [anon_sym_match] = ACTIONS(3332), - [anon_sym_select] = ACTIONS(3332), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3332), - [anon_sym_sql] = ACTIONS(3332), - [sym_int_literal] = ACTIONS(3332), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3332), - [anon_sym_shared] = ACTIONS(3332), - [anon_sym_map_LBRACK] = ACTIONS(3332), - [anon_sym_chan] = ACTIONS(3332), - [anon_sym_thread] = ACTIONS(3332), - [anon_sym_atomic] = ACTIONS(3332), - [anon_sym_assert] = ACTIONS(3332), - [anon_sym_defer] = ACTIONS(3332), - [anon_sym_goto] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_DOLLARfor] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_POUND] = ACTIONS(3332), - [anon_sym_asm] = ACTIONS(3332), - [anon_sym_AT_LBRACK] = ACTIONS(3332), - [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), + [sym_line_comment] = STATE(1083), + [sym_block_comment] = STATE(1083), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3011), + [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_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), }, [1084] = { - [ts_builtin_sym_end] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_CR] = ACTIONS(3336), - [anon_sym_CR_LF] = ACTIONS(3336), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_as] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_COMMA] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym___global] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_PERCENT] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_GT] = ACTIONS(3336), - [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(3334), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_pub] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3336), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3336), - [anon_sym_LT_LT] = ACTIONS(3336), - [anon_sym_GT_GT] = ACTIONS(3336), - [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(3336), - [sym_none] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_nil] = ACTIONS(3336), - [anon_sym_QMARK_DOT] = ACTIONS(3336), - [anon_sym_POUND_LBRACK] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_DOLLARif] = ACTIONS(3336), - [anon_sym_is] = ACTIONS(3336), - [anon_sym_BANGis] = ACTIONS(3336), - [anon_sym_in] = ACTIONS(3336), - [anon_sym_BANGin] = ACTIONS(3336), - [anon_sym_match] = ACTIONS(3336), - [anon_sym_select] = ACTIONS(3336), - [anon_sym_lock] = ACTIONS(3336), - [anon_sym_rlock] = ACTIONS(3336), - [anon_sym_unsafe] = ACTIONS(3336), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3336), - [sym_float_literal] = ACTIONS(3336), - [sym_rune_literal] = ACTIONS(3336), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(3336), - [anon_sym_map_LBRACK] = ACTIONS(3336), - [anon_sym_chan] = ACTIONS(3336), - [anon_sym_thread] = ACTIONS(3336), - [anon_sym_atomic] = ACTIONS(3336), - [anon_sym_assert] = ACTIONS(3336), - [anon_sym_defer] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_DOLLARfor] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_POUND] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), - [anon_sym_AT_LBRACK] = ACTIONS(3336), - [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), + [sym_line_comment] = STATE(1084), + [sym_block_comment] = STATE(1084), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3199), + [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_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), }, [1085] = { - [ts_builtin_sym_end] = ACTIONS(3342), - [sym_identifier] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_CR] = ACTIONS(3344), - [anon_sym_CR_LF] = ACTIONS(3344), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_COMMA] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym___global] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_PIPE] = ACTIONS(3344), - [anon_sym_fn] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [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(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3344), - [anon_sym_pub] = ACTIONS(3344), - [anon_sym_mut] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [anon_sym_QMARK] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_go] = ACTIONS(3344), - [anon_sym_spawn] = ACTIONS(3344), - [anon_sym_json_DOTdecode] = ACTIONS(3344), - [anon_sym_LBRACK2] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_CARET] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), - [anon_sym_LT_DASH] = ACTIONS(3344), - [anon_sym_LT_LT] = ACTIONS(3344), - [anon_sym_GT_GT] = ACTIONS(3344), - [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(3344), - [sym_none] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_nil] = ACTIONS(3344), - [anon_sym_QMARK_DOT] = ACTIONS(3344), - [anon_sym_POUND_LBRACK] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_DOLLARif] = ACTIONS(3344), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_BANGin] = ACTIONS(3344), - [anon_sym_match] = ACTIONS(3344), - [anon_sym_select] = ACTIONS(3344), - [anon_sym_lock] = ACTIONS(3344), - [anon_sym_rlock] = ACTIONS(3344), - [anon_sym_unsafe] = ACTIONS(3344), - [anon_sym_sql] = ACTIONS(3344), - [sym_int_literal] = ACTIONS(3344), - [sym_float_literal] = ACTIONS(3344), - [sym_rune_literal] = ACTIONS(3344), - [sym_pseudo_compile_time_identifier] = ACTIONS(3344), - [anon_sym_shared] = ACTIONS(3344), - [anon_sym_map_LBRACK] = ACTIONS(3344), - [anon_sym_chan] = ACTIONS(3344), - [anon_sym_thread] = ACTIONS(3344), - [anon_sym_atomic] = ACTIONS(3344), - [anon_sym_assert] = ACTIONS(3344), - [anon_sym_defer] = ACTIONS(3344), - [anon_sym_goto] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_DOLLARfor] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_POUND] = ACTIONS(3344), - [anon_sym_asm] = ACTIONS(3344), - [anon_sym_AT_LBRACK] = ACTIONS(3344), - [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), + [sym_line_comment] = STATE(1085), + [sym_block_comment] = STATE(1085), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3379), + [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_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), }, [1086] = { - [ts_builtin_sym_end] = ACTIONS(3338), - [sym_identifier] = ACTIONS(3340), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_CR] = ACTIONS(3340), - [anon_sym_CR_LF] = ACTIONS(3340), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_COMMA] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym___global] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_fn] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [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(3338), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_union] = ACTIONS(3340), - [anon_sym_pub] = ACTIONS(3340), - [anon_sym_mut] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [anon_sym_QMARK] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_go] = ACTIONS(3340), - [anon_sym_spawn] = ACTIONS(3340), - [anon_sym_json_DOTdecode] = ACTIONS(3340), - [anon_sym_LBRACK2] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_CARET] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_LT_DASH] = ACTIONS(3340), - [anon_sym_LT_LT] = ACTIONS(3340), - [anon_sym_GT_GT] = ACTIONS(3340), - [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(3340), - [sym_none] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_nil] = ACTIONS(3340), - [anon_sym_QMARK_DOT] = ACTIONS(3340), - [anon_sym_POUND_LBRACK] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_DOLLARif] = ACTIONS(3340), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_BANGin] = ACTIONS(3340), - [anon_sym_match] = ACTIONS(3340), - [anon_sym_select] = ACTIONS(3340), - [anon_sym_lock] = ACTIONS(3340), - [anon_sym_rlock] = ACTIONS(3340), - [anon_sym_unsafe] = ACTIONS(3340), - [anon_sym_sql] = ACTIONS(3340), - [sym_int_literal] = ACTIONS(3340), - [sym_float_literal] = ACTIONS(3340), - [sym_rune_literal] = ACTIONS(3340), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(3340), - [anon_sym_map_LBRACK] = ACTIONS(3340), - [anon_sym_chan] = ACTIONS(3340), - [anon_sym_thread] = ACTIONS(3340), - [anon_sym_atomic] = ACTIONS(3340), - [anon_sym_assert] = ACTIONS(3340), - [anon_sym_defer] = ACTIONS(3340), - [anon_sym_goto] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_DOLLARfor] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_POUND] = ACTIONS(3340), - [anon_sym_asm] = ACTIONS(3340), - [anon_sym_AT_LBRACK] = ACTIONS(3340), - [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), + [sym_line_comment] = STATE(1086), + [sym_block_comment] = STATE(1086), + [ts_builtin_sym_end] = ACTIONS(3037), + [sym_identifier] = ACTIONS(3039), + [anon_sym_LF] = ACTIONS(3039), + [anon_sym_CR] = ACTIONS(3039), + [anon_sym_CR_LF] = ACTIONS(3039), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym___global] = ACTIONS(3039), + [anon_sym_type] = ACTIONS(3039), + [anon_sym_PIPE] = ACTIONS(3039), + [anon_sym_fn] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3039), + [anon_sym_GT] = ACTIONS(3039), + [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(3037), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_pub] = ACTIONS(3039), + [anon_sym_mut] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_interface] = ACTIONS(3039), + [anon_sym_PLUS_PLUS] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_go] = ACTIONS(3039), + [anon_sym_spawn] = ACTIONS(3039), + [anon_sym_json_DOTdecode] = ACTIONS(3039), + [anon_sym_LBRACK2] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3039), + [anon_sym_CARET] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_LT_LT] = ACTIONS(3039), + [anon_sym_GT_GT] = ACTIONS(3039), + [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(3039), + [sym_none] = ACTIONS(3039), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_nil] = ACTIONS(3039), + [anon_sym_QMARK_DOT] = ACTIONS(3039), + [anon_sym_POUND_LBRACK] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_DOLLARif] = ACTIONS(3039), + [anon_sym_is] = ACTIONS(3039), + [anon_sym_BANGis] = ACTIONS(3039), + [anon_sym_in] = ACTIONS(3039), + [anon_sym_BANGin] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_select] = ACTIONS(3039), + [anon_sym_lock] = ACTIONS(3039), + [anon_sym_rlock] = ACTIONS(3039), + [anon_sym_unsafe] = ACTIONS(3039), + [anon_sym_sql] = ACTIONS(3039), + [sym_int_literal] = ACTIONS(3039), + [sym_float_literal] = ACTIONS(3039), + [sym_rune_literal] = ACTIONS(3039), + [sym_pseudo_compile_time_identifier] = ACTIONS(3039), + [anon_sym_shared] = ACTIONS(3039), + [anon_sym_map_LBRACK] = ACTIONS(3039), + [anon_sym_chan] = ACTIONS(3039), + [anon_sym_thread] = ACTIONS(3039), + [anon_sym_atomic] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_defer] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_DOLLARfor] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_POUND] = ACTIONS(3039), + [anon_sym_asm] = ACTIONS(3039), + [anon_sym_AT_LBRACK] = ACTIONS(3039), + [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), }, [1087] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1087), + [sym_block_comment] = STATE(1087), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3427), + [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_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), }, [1088] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym___global] = ACTIONS(2649), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_pub] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_AMP_CARET] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2649), - [anon_sym_POUND_LBRACK] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [anon_sym_assert] = ACTIONS(2649), - [anon_sym_defer] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_DOLLARfor] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym_AT_LBRACK] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), + [sym_line_comment] = STATE(1088), + [sym_block_comment] = STATE(1088), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3383), + [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_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), }, [1089] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1089), + [sym_block_comment] = STATE(1089), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3367), + [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_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), }, [1090] = { - [ts_builtin_sym_end] = ACTIONS(3354), - [sym_identifier] = ACTIONS(3356), - [anon_sym_LF] = ACTIONS(3356), - [anon_sym_CR] = ACTIONS(3356), - [anon_sym_CR_LF] = ACTIONS(3356), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_as] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym___global] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_PIPE] = ACTIONS(3356), - [anon_sym_fn] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_STAR] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_GT] = ACTIONS(3356), - [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(3354), - [anon_sym_struct] = ACTIONS(3356), - [anon_sym_union] = ACTIONS(3356), - [anon_sym_pub] = ACTIONS(3356), - [anon_sym_mut] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(3356), - [anon_sym_spawn] = ACTIONS(3356), - [anon_sym_json_DOTdecode] = ACTIONS(3356), - [anon_sym_LBRACK2] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_CARET] = ACTIONS(3356), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_LT_LT] = ACTIONS(3356), - [anon_sym_GT_GT] = ACTIONS(3356), - [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(3356), - [sym_none] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_nil] = ACTIONS(3356), - [anon_sym_QMARK_DOT] = ACTIONS(3356), - [anon_sym_POUND_LBRACK] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_DOLLARif] = ACTIONS(3356), - [anon_sym_is] = ACTIONS(3356), - [anon_sym_BANGis] = ACTIONS(3356), - [anon_sym_in] = ACTIONS(3356), - [anon_sym_BANGin] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_select] = ACTIONS(3356), - [anon_sym_lock] = ACTIONS(3356), - [anon_sym_rlock] = ACTIONS(3356), - [anon_sym_unsafe] = ACTIONS(3356), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(3356), - [sym_float_literal] = ACTIONS(3356), - [sym_rune_literal] = ACTIONS(3356), - [sym_pseudo_compile_time_identifier] = ACTIONS(3356), - [anon_sym_shared] = ACTIONS(3356), - [anon_sym_map_LBRACK] = ACTIONS(3356), - [anon_sym_chan] = ACTIONS(3356), - [anon_sym_thread] = ACTIONS(3356), - [anon_sym_atomic] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_defer] = ACTIONS(3356), - [anon_sym_goto] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_DOLLARfor] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_POUND] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3356), - [anon_sym_AT_LBRACK] = ACTIONS(3356), - [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), + [sym_line_comment] = STATE(1090), + [sym_block_comment] = STATE(1090), + [ts_builtin_sym_end] = ACTIONS(3189), + [sym_identifier] = ACTIONS(3191), + [anon_sym_LF] = ACTIONS(3191), + [anon_sym_CR] = ACTIONS(3191), + [anon_sym_CR_LF] = ACTIONS(3191), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_as] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_COMMA] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym___global] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_PIPE] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_PERCENT] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3191), + [anon_sym_BANG_EQ] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_pub] = ACTIONS(3191), + [anon_sym_mut] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_go] = ACTIONS(3191), + [anon_sym_spawn] = ACTIONS(3191), + [anon_sym_json_DOTdecode] = ACTIONS(3191), + [anon_sym_LBRACK2] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_LT_DASH] = ACTIONS(3191), + [anon_sym_LT_LT] = ACTIONS(3191), + [anon_sym_GT_GT] = ACTIONS(3191), + [anon_sym_GT_GT_GT] = ACTIONS(3191), + [anon_sym_AMP_CARET] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_PIPE_PIPE] = ACTIONS(3191), + [anon_sym_or] = ACTIONS(3191), + [sym_none] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_nil] = ACTIONS(3191), + [anon_sym_QMARK_DOT] = ACTIONS(3191), + [anon_sym_POUND_LBRACK] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_DOLLARif] = ACTIONS(3191), + [anon_sym_is] = ACTIONS(3191), + [anon_sym_BANGis] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_BANGin] = ACTIONS(3191), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_select] = ACTIONS(3191), + [anon_sym_lock] = ACTIONS(3191), + [anon_sym_rlock] = ACTIONS(3191), + [anon_sym_unsafe] = ACTIONS(3191), + [anon_sym_sql] = ACTIONS(3191), + [sym_int_literal] = ACTIONS(3191), + [sym_float_literal] = ACTIONS(3191), + [sym_rune_literal] = ACTIONS(3191), + [sym_pseudo_compile_time_identifier] = ACTIONS(3191), + [anon_sym_shared] = ACTIONS(3191), + [anon_sym_map_LBRACK] = ACTIONS(3191), + [anon_sym_chan] = ACTIONS(3191), + [anon_sym_thread] = ACTIONS(3191), + [anon_sym_atomic] = ACTIONS(3191), + [anon_sym_assert] = ACTIONS(3191), + [anon_sym_defer] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_DOLLARfor] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_POUND] = ACTIONS(3191), + [anon_sym_asm] = ACTIONS(3191), + [anon_sym_AT_LBRACK] = ACTIONS(3191), + [sym___double_quote] = ACTIONS(3191), + [sym___single_quote] = ACTIONS(3191), + [sym___c_double_quote] = ACTIONS(3191), + [sym___c_single_quote] = ACTIONS(3191), + [sym___r_double_quote] = ACTIONS(3191), + [sym___r_single_quote] = ACTIONS(3191), }, [1091] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1091), + [sym_block_comment] = STATE(1091), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3331), + [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_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), }, [1092] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1092), + [sym_block_comment] = STATE(1092), + [ts_builtin_sym_end] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3149), + [anon_sym_LF] = ACTIONS(3149), + [anon_sym_CR] = ACTIONS(3149), + [anon_sym_CR_LF] = ACTIONS(3149), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3149), + [anon_sym_as] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym___global] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_fn] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_PERCENT] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_GT] = ACTIONS(3149), + [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(3147), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_pub] = ACTIONS(3149), + [anon_sym_mut] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_QMARK] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_go] = ACTIONS(3149), + [anon_sym_spawn] = ACTIONS(3149), + [anon_sym_json_DOTdecode] = ACTIONS(3149), + [anon_sym_LBRACK2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_LT_DASH] = ACTIONS(3149), + [anon_sym_LT_LT] = ACTIONS(3149), + [anon_sym_GT_GT] = ACTIONS(3149), + [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(3149), + [sym_none] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_nil] = ACTIONS(3149), + [anon_sym_QMARK_DOT] = ACTIONS(3149), + [anon_sym_POUND_LBRACK] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_DOLLARif] = ACTIONS(3149), + [anon_sym_is] = ACTIONS(3149), + [anon_sym_BANGis] = ACTIONS(3149), + [anon_sym_in] = ACTIONS(3149), + [anon_sym_BANGin] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_rlock] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_sql] = ACTIONS(3149), + [sym_int_literal] = ACTIONS(3149), + [sym_float_literal] = ACTIONS(3149), + [sym_rune_literal] = ACTIONS(3149), + [sym_pseudo_compile_time_identifier] = ACTIONS(3149), + [anon_sym_shared] = ACTIONS(3149), + [anon_sym_map_LBRACK] = ACTIONS(3149), + [anon_sym_chan] = ACTIONS(3149), + [anon_sym_thread] = ACTIONS(3149), + [anon_sym_atomic] = ACTIONS(3149), + [anon_sym_assert] = ACTIONS(3149), + [anon_sym_defer] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_DOLLARfor] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_POUND] = ACTIONS(3149), + [anon_sym_asm] = ACTIONS(3149), + [anon_sym_AT_LBRACK] = ACTIONS(3149), + [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), }, [1093] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1093), + [sym_block_comment] = STATE(1093), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2909), + [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_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), }, [1094] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1094), + [sym_block_comment] = STATE(1094), + [ts_builtin_sym_end] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2949), + [anon_sym_LF] = ACTIONS(2949), + [anon_sym_CR] = ACTIONS(2949), + [anon_sym_CR_LF] = ACTIONS(2949), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_as] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_COMMA] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_LPAREN] = ACTIONS(2949), + [anon_sym___global] = ACTIONS(2949), + [anon_sym_type] = ACTIONS(2949), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_fn] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_EQ_EQ] = ACTIONS(2949), + [anon_sym_BANG_EQ] = ACTIONS(2949), + [anon_sym_LT_EQ] = ACTIONS(2949), + [anon_sym_GT_EQ] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_pub] = ACTIONS(2949), + [anon_sym_mut] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_interface] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2949), + [anon_sym_DASH_DASH] = ACTIONS(2949), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_go] = ACTIONS(2949), + [anon_sym_spawn] = ACTIONS(2949), + [anon_sym_json_DOTdecode] = ACTIONS(2949), + [anon_sym_LBRACK2] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_CARET] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2949), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2949), + [anon_sym_AMP_CARET] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2949), + [anon_sym_PIPE_PIPE] = ACTIONS(2949), + [anon_sym_or] = ACTIONS(2949), + [sym_none] = ACTIONS(2949), + [sym_true] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [sym_nil] = ACTIONS(2949), + [anon_sym_QMARK_DOT] = ACTIONS(2949), + [anon_sym_POUND_LBRACK] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2949), + [anon_sym_is] = ACTIONS(2949), + [anon_sym_BANGis] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2949), + [anon_sym_BANGin] = ACTIONS(2949), + [anon_sym_match] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [anon_sym_lock] = ACTIONS(2949), + [anon_sym_rlock] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_sql] = ACTIONS(2949), + [sym_int_literal] = ACTIONS(2949), + [sym_float_literal] = ACTIONS(2949), + [sym_rune_literal] = ACTIONS(2949), + [sym_pseudo_compile_time_identifier] = ACTIONS(2949), + [anon_sym_shared] = ACTIONS(2949), + [anon_sym_map_LBRACK] = ACTIONS(2949), + [anon_sym_chan] = ACTIONS(2949), + [anon_sym_thread] = ACTIONS(2949), + [anon_sym_atomic] = ACTIONS(2949), + [anon_sym_assert] = ACTIONS(2949), + [anon_sym_defer] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_DOLLARfor] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_POUND] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym_AT_LBRACK] = ACTIONS(2949), + [sym___double_quote] = ACTIONS(2949), + [sym___single_quote] = ACTIONS(2949), + [sym___c_double_quote] = ACTIONS(2949), + [sym___c_single_quote] = ACTIONS(2949), + [sym___r_double_quote] = ACTIONS(2949), + [sym___r_single_quote] = ACTIONS(2949), }, [1095] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2727), - [anon_sym_as] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [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(2732), - [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_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), + [sym_line_comment] = STATE(1095), + [sym_block_comment] = STATE(1095), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3187), + [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_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), }, [1096] = { - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2715), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_CR] = ACTIONS(2715), - [anon_sym_CR_LF] = ACTIONS(2715), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_as] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_COMMA] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym___global] = ACTIONS(2715), - [anon_sym_type] = ACTIONS(2715), - [anon_sym_PIPE] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_SLASH] = ACTIONS(2715), - [anon_sym_PERCENT] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2715), - [anon_sym_GT] = ACTIONS(2715), - [anon_sym_EQ_EQ] = ACTIONS(2715), - [anon_sym_BANG_EQ] = ACTIONS(2715), - [anon_sym_LT_EQ] = ACTIONS(2715), - [anon_sym_GT_EQ] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_pub] = ACTIONS(2715), - [anon_sym_mut] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_interface] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_QMARK] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_go] = ACTIONS(2715), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(2715), - [anon_sym_LBRACK2] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_CARET] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_LT_DASH] = ACTIONS(2715), - [anon_sym_LT_LT] = ACTIONS(2715), - [anon_sym_GT_GT] = ACTIONS(2715), - [anon_sym_GT_GT_GT] = ACTIONS(2715), - [anon_sym_AMP_CARET] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_PIPE_PIPE] = ACTIONS(2715), - [anon_sym_or] = ACTIONS(2715), - [sym_none] = ACTIONS(2715), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [sym_nil] = ACTIONS(2715), - [anon_sym_QMARK_DOT] = ACTIONS(2715), - [anon_sym_POUND_LBRACK] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_DOLLARif] = ACTIONS(2715), - [anon_sym_is] = ACTIONS(2715), - [anon_sym_BANGis] = ACTIONS(2715), - [anon_sym_in] = ACTIONS(2715), - [anon_sym_BANGin] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_select] = ACTIONS(2715), - [anon_sym_lock] = ACTIONS(2715), - [anon_sym_rlock] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_sql] = ACTIONS(2715), - [sym_int_literal] = ACTIONS(2715), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(2715), - [anon_sym_shared] = ACTIONS(2715), - [anon_sym_map_LBRACK] = ACTIONS(2715), - [anon_sym_chan] = ACTIONS(2715), - [anon_sym_thread] = ACTIONS(2715), - [anon_sym_atomic] = ACTIONS(2715), - [anon_sym_assert] = ACTIONS(2715), - [anon_sym_defer] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_DOLLARfor] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_POUND] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym_AT_LBRACK] = ACTIONS(2715), - [sym___double_quote] = ACTIONS(2715), - [sym___single_quote] = ACTIONS(2715), - [sym___c_double_quote] = ACTIONS(2715), - [sym___c_single_quote] = ACTIONS(2715), - [sym___r_double_quote] = ACTIONS(2715), - [sym___r_single_quote] = ACTIONS(2715), + [sym_line_comment] = STATE(1096), + [sym_block_comment] = STATE(1096), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3442), + [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_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), }, [1097] = { - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3396), - [anon_sym_LF] = ACTIONS(3396), - [anon_sym_CR] = ACTIONS(3396), - [anon_sym_CR_LF] = ACTIONS(3396), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3396), - [anon_sym_as] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3396), - [anon_sym_COMMA] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_LPAREN] = ACTIONS(3396), - [anon_sym___global] = ACTIONS(3396), - [anon_sym_type] = ACTIONS(3396), - [anon_sym_PIPE] = ACTIONS(3396), - [anon_sym_fn] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_SLASH] = ACTIONS(3396), - [anon_sym_PERCENT] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(3396), - [anon_sym_GT] = ACTIONS(3396), - [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(3394), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [anon_sym_pub] = ACTIONS(3396), - [anon_sym_mut] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_interface] = ACTIONS(3396), - [anon_sym_PLUS_PLUS] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3396), - [anon_sym_QMARK] = ACTIONS(3396), - [anon_sym_BANG] = ACTIONS(3396), - [anon_sym_go] = ACTIONS(3396), - [anon_sym_spawn] = ACTIONS(3396), - [anon_sym_json_DOTdecode] = ACTIONS(3396), - [anon_sym_LBRACK2] = ACTIONS(3396), - [anon_sym_TILDE] = ACTIONS(3396), - [anon_sym_CARET] = ACTIONS(3396), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3396), - [anon_sym_LT_LT] = ACTIONS(3396), - [anon_sym_GT_GT] = ACTIONS(3396), - [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(3396), - [sym_none] = ACTIONS(3396), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [sym_nil] = ACTIONS(3396), - [anon_sym_QMARK_DOT] = ACTIONS(3396), - [anon_sym_POUND_LBRACK] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_DOLLARif] = ACTIONS(3396), - [anon_sym_is] = ACTIONS(3396), - [anon_sym_BANGis] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3396), - [anon_sym_BANGin] = ACTIONS(3396), - [anon_sym_match] = ACTIONS(3396), - [anon_sym_select] = ACTIONS(3396), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(3396), - [anon_sym_sql] = ACTIONS(3396), - [sym_int_literal] = ACTIONS(3396), - [sym_float_literal] = ACTIONS(3396), - [sym_rune_literal] = ACTIONS(3396), - [sym_pseudo_compile_time_identifier] = ACTIONS(3396), - [anon_sym_shared] = ACTIONS(3396), - [anon_sym_map_LBRACK] = ACTIONS(3396), - [anon_sym_chan] = ACTIONS(3396), - [anon_sym_thread] = ACTIONS(3396), - [anon_sym_atomic] = ACTIONS(3396), - [anon_sym_assert] = ACTIONS(3396), - [anon_sym_defer] = ACTIONS(3396), - [anon_sym_goto] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_DOLLARfor] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_POUND] = ACTIONS(3396), - [anon_sym_asm] = ACTIONS(3396), - [anon_sym_AT_LBRACK] = ACTIONS(3396), - [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), + [sym_line_comment] = STATE(1097), + [sym_block_comment] = STATE(1097), + [ts_builtin_sym_end] = ACTIONS(3155), + [sym_identifier] = ACTIONS(3157), + [anon_sym_LF] = ACTIONS(3157), + [anon_sym_CR] = ACTIONS(3157), + [anon_sym_CR_LF] = ACTIONS(3157), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3157), + [anon_sym_as] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym___global] = ACTIONS(3157), + [anon_sym_type] = ACTIONS(3157), + [anon_sym_PIPE] = ACTIONS(3157), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_PERCENT] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_GT] = ACTIONS(3157), + [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(3155), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_union] = ACTIONS(3157), + [anon_sym_pub] = ACTIONS(3157), + [anon_sym_mut] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_go] = ACTIONS(3157), + [anon_sym_spawn] = ACTIONS(3157), + [anon_sym_json_DOTdecode] = ACTIONS(3157), + [anon_sym_LBRACK2] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_CARET] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_LT_DASH] = ACTIONS(3157), + [anon_sym_LT_LT] = ACTIONS(3157), + [anon_sym_GT_GT] = ACTIONS(3157), + [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(3157), + [sym_none] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_nil] = ACTIONS(3157), + [anon_sym_QMARK_DOT] = ACTIONS(3157), + [anon_sym_POUND_LBRACK] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_DOLLARif] = ACTIONS(3157), + [anon_sym_is] = ACTIONS(3157), + [anon_sym_BANGis] = ACTIONS(3157), + [anon_sym_in] = ACTIONS(3157), + [anon_sym_BANGin] = ACTIONS(3157), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3157), + [anon_sym_lock] = ACTIONS(3157), + [anon_sym_rlock] = ACTIONS(3157), + [anon_sym_unsafe] = ACTIONS(3157), + [anon_sym_sql] = ACTIONS(3157), + [sym_int_literal] = ACTIONS(3157), + [sym_float_literal] = ACTIONS(3157), + [sym_rune_literal] = ACTIONS(3157), + [sym_pseudo_compile_time_identifier] = ACTIONS(3157), + [anon_sym_shared] = ACTIONS(3157), + [anon_sym_map_LBRACK] = ACTIONS(3157), + [anon_sym_chan] = ACTIONS(3157), + [anon_sym_thread] = ACTIONS(3157), + [anon_sym_atomic] = ACTIONS(3157), + [anon_sym_assert] = ACTIONS(3157), + [anon_sym_defer] = ACTIONS(3157), + [anon_sym_goto] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_DOLLARfor] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_POUND] = ACTIONS(3157), + [anon_sym_asm] = ACTIONS(3157), + [anon_sym_AT_LBRACK] = ACTIONS(3157), + [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), }, [1098] = { - [ts_builtin_sym_end] = ACTIONS(3247), - [sym_identifier] = ACTIONS(3249), - [anon_sym_LF] = ACTIONS(3249), - [anon_sym_CR] = ACTIONS(3249), - [anon_sym_CR_LF] = ACTIONS(3249), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3249), - [anon_sym_as] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_COMMA] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym___global] = ACTIONS(3249), - [anon_sym_type] = ACTIONS(3249), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_fn] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_PERCENT] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_GT] = ACTIONS(3249), - [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(3247), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3249), - [anon_sym_pub] = ACTIONS(3249), - [anon_sym_mut] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_go] = ACTIONS(3249), - [anon_sym_spawn] = ACTIONS(3249), - [anon_sym_json_DOTdecode] = ACTIONS(3249), - [anon_sym_LBRACK2] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_CARET] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3249), - [anon_sym_LT_DASH] = ACTIONS(3249), - [anon_sym_LT_LT] = ACTIONS(3249), - [anon_sym_GT_GT] = ACTIONS(3249), - [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(3249), - [sym_none] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_nil] = ACTIONS(3249), - [anon_sym_QMARK_DOT] = ACTIONS(3249), - [anon_sym_POUND_LBRACK] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_DOLLARif] = ACTIONS(3249), - [anon_sym_is] = ACTIONS(3249), - [anon_sym_BANGis] = ACTIONS(3249), - [anon_sym_in] = ACTIONS(3249), - [anon_sym_BANGin] = ACTIONS(3249), - [anon_sym_match] = ACTIONS(3249), - [anon_sym_select] = ACTIONS(3249), - [anon_sym_lock] = ACTIONS(3249), - [anon_sym_rlock] = ACTIONS(3249), - [anon_sym_unsafe] = ACTIONS(3249), - [anon_sym_sql] = ACTIONS(3249), - [sym_int_literal] = ACTIONS(3249), - [sym_float_literal] = ACTIONS(3249), - [sym_rune_literal] = ACTIONS(3249), - [sym_pseudo_compile_time_identifier] = ACTIONS(3249), - [anon_sym_shared] = ACTIONS(3249), - [anon_sym_map_LBRACK] = ACTIONS(3249), - [anon_sym_chan] = ACTIONS(3249), - [anon_sym_thread] = ACTIONS(3249), - [anon_sym_atomic] = ACTIONS(3249), - [anon_sym_assert] = ACTIONS(3249), - [anon_sym_defer] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_DOLLARfor] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_POUND] = ACTIONS(3249), - [anon_sym_asm] = ACTIONS(3249), - [anon_sym_AT_LBRACK] = ACTIONS(3249), - [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_line_comment] = STATE(1098), + [sym_block_comment] = STATE(1098), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2913), + [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_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), }, [1099] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1099), + [sym_block_comment] = STATE(1099), + [ts_builtin_sym_end] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3149), + [anon_sym_LF] = ACTIONS(3149), + [anon_sym_CR] = ACTIONS(3149), + [anon_sym_CR_LF] = ACTIONS(3149), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(2835), + [anon_sym_as] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym___global] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_fn] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_PERCENT] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_GT] = ACTIONS(3149), + [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(3147), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_pub] = ACTIONS(3149), + [anon_sym_mut] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_QMARK] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_go] = ACTIONS(3149), + [anon_sym_spawn] = ACTIONS(3149), + [anon_sym_json_DOTdecode] = ACTIONS(3149), + [anon_sym_LBRACK2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_LT_DASH] = ACTIONS(3149), + [anon_sym_LT_LT] = ACTIONS(3149), + [anon_sym_GT_GT] = ACTIONS(3149), + [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(3149), + [sym_none] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_nil] = ACTIONS(3149), + [anon_sym_QMARK_DOT] = ACTIONS(3149), + [anon_sym_POUND_LBRACK] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_DOLLARif] = ACTIONS(3149), + [anon_sym_is] = ACTIONS(3149), + [anon_sym_BANGis] = ACTIONS(3149), + [anon_sym_in] = ACTIONS(3149), + [anon_sym_BANGin] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_rlock] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_sql] = ACTIONS(3149), + [sym_int_literal] = ACTIONS(3149), + [sym_float_literal] = ACTIONS(3149), + [sym_rune_literal] = ACTIONS(3149), + [sym_pseudo_compile_time_identifier] = ACTIONS(3149), + [anon_sym_shared] = ACTIONS(3149), + [anon_sym_map_LBRACK] = ACTIONS(3149), + [anon_sym_chan] = ACTIONS(3149), + [anon_sym_thread] = ACTIONS(3149), + [anon_sym_atomic] = ACTIONS(3149), + [anon_sym_assert] = ACTIONS(3149), + [anon_sym_defer] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_DOLLARfor] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_POUND] = ACTIONS(3149), + [anon_sym_asm] = ACTIONS(3149), + [anon_sym_AT_LBRACK] = ACTIONS(3149), + [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), }, [1100] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1100), + [sym_block_comment] = STATE(1100), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3355), + [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_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), }, [1101] = { - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_CR] = ACTIONS(3412), - [anon_sym_CR_LF] = ACTIONS(3412), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_as] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_COMMA] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3412), - [anon_sym___global] = ACTIONS(3412), - [anon_sym_type] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_fn] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_SLASH] = ACTIONS(3412), - [anon_sym_PERCENT] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [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(3410), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_union] = ACTIONS(3412), - [anon_sym_pub] = ACTIONS(3412), - [anon_sym_mut] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_interface] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_QMARK] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_go] = ACTIONS(3412), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3412), - [anon_sym_LBRACK2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_CARET] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [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(3412), - [sym_none] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_nil] = ACTIONS(3412), - [anon_sym_QMARK_DOT] = ACTIONS(3412), - [anon_sym_POUND_LBRACK] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOLLARif] = ACTIONS(3412), - [anon_sym_is] = ACTIONS(3412), - [anon_sym_BANGis] = ACTIONS(3412), - [anon_sym_in] = ACTIONS(3412), - [anon_sym_BANGin] = ACTIONS(3412), - [anon_sym_match] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_rlock] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_sql] = ACTIONS(3412), - [sym_int_literal] = ACTIONS(3412), - [sym_float_literal] = ACTIONS(3412), - [sym_rune_literal] = ACTIONS(3412), - [sym_pseudo_compile_time_identifier] = ACTIONS(3412), - [anon_sym_shared] = ACTIONS(3412), - [anon_sym_map_LBRACK] = ACTIONS(3412), - [anon_sym_chan] = ACTIONS(3412), - [anon_sym_thread] = ACTIONS(3412), - [anon_sym_atomic] = ACTIONS(3412), - [anon_sym_assert] = ACTIONS(3412), - [anon_sym_defer] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_DOLLARfor] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_POUND] = ACTIONS(3412), - [anon_sym_asm] = ACTIONS(3412), - [anon_sym_AT_LBRACK] = ACTIONS(3412), - [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), + [sym_line_comment] = STATE(1101), + [sym_block_comment] = STATE(1101), + [ts_builtin_sym_end] = ACTIONS(3295), + [sym_identifier] = ACTIONS(3297), + [anon_sym_LF] = ACTIONS(3297), + [anon_sym_CR] = ACTIONS(3297), + [anon_sym_CR_LF] = ACTIONS(3297), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3297), + [anon_sym_as] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym___global] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_fn] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_PERCENT] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_GT] = ACTIONS(3297), + [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(3295), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_union] = ACTIONS(3297), + [anon_sym_pub] = ACTIONS(3297), + [anon_sym_mut] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_go] = ACTIONS(3297), + [anon_sym_spawn] = ACTIONS(3297), + [anon_sym_json_DOTdecode] = ACTIONS(3297), + [anon_sym_LBRACK2] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_LT_DASH] = ACTIONS(3297), + [anon_sym_LT_LT] = ACTIONS(3297), + [anon_sym_GT_GT] = ACTIONS(3297), + [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(3297), + [sym_none] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_nil] = ACTIONS(3297), + [anon_sym_QMARK_DOT] = ACTIONS(3297), + [anon_sym_POUND_LBRACK] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_DOLLARif] = ACTIONS(3297), + [anon_sym_is] = ACTIONS(3297), + [anon_sym_BANGis] = ACTIONS(3297), + [anon_sym_in] = ACTIONS(3297), + [anon_sym_BANGin] = ACTIONS(3297), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_rlock] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_sql] = ACTIONS(3297), + [sym_int_literal] = ACTIONS(3297), + [sym_float_literal] = ACTIONS(3297), + [sym_rune_literal] = ACTIONS(3297), + [sym_pseudo_compile_time_identifier] = ACTIONS(3297), + [anon_sym_shared] = ACTIONS(3297), + [anon_sym_map_LBRACK] = ACTIONS(3297), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3297), + [anon_sym_atomic] = ACTIONS(3297), + [anon_sym_assert] = ACTIONS(3297), + [anon_sym_defer] = ACTIONS(3297), + [anon_sym_goto] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_DOLLARfor] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_POUND] = ACTIONS(3297), + [anon_sym_asm] = ACTIONS(3297), + [anon_sym_AT_LBRACK] = ACTIONS(3297), + [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), }, [1102] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym___global] = ACTIONS(2649), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_pub] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_AMP_CARET] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2649), - [anon_sym_POUND_LBRACK] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [anon_sym_assert] = ACTIONS(2649), - [anon_sym_defer] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_DOLLARfor] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym_AT_LBRACK] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), - }, - [1103] = { + [sym_line_comment] = STATE(1102), + [sym_block_comment] = STATE(1102), [ts_builtin_sym_end] = ACTIONS(3239), [sym_identifier] = ACTIONS(3241), [anon_sym_LF] = ACTIONS(3241), [anon_sym_CR] = ACTIONS(3241), [anon_sym_CR_LF] = ACTIONS(3241), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3241), [anon_sym_DOT] = ACTIONS(3241), [anon_sym_as] = ACTIONS(3241), [anon_sym_LBRACE] = ACTIONS(3241), @@ -150060,7 +150306,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3241), [anon_sym_DASH] = ACTIONS(3241), [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), [anon_sym_PERCENT] = ACTIONS(3241), [anon_sym_LT] = ACTIONS(3241), [anon_sym_GT] = ACTIONS(3241), @@ -150139,2138 +150384,2810 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3241), [sym___r_single_quote] = ACTIONS(3241), }, + [1103] = { + [sym_line_comment] = STATE(1103), + [sym_block_comment] = STATE(1103), + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3305), + [anon_sym_LF] = ACTIONS(3305), + [anon_sym_CR] = ACTIONS(3305), + [anon_sym_CR_LF] = ACTIONS(3305), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_COMMA] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym___global] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [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(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_union] = ACTIONS(3305), + [anon_sym_pub] = ACTIONS(3305), + [anon_sym_mut] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_go] = ACTIONS(3305), + [anon_sym_spawn] = ACTIONS(3305), + [anon_sym_json_DOTdecode] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3305), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3305), + [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(3305), + [sym_none] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_nil] = ACTIONS(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3305), + [anon_sym_POUND_LBRACK] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_DOLLARif] = ACTIONS(3305), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3305), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_rlock] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_sql] = ACTIONS(3305), + [sym_int_literal] = ACTIONS(3305), + [sym_float_literal] = ACTIONS(3305), + [sym_rune_literal] = ACTIONS(3305), + [sym_pseudo_compile_time_identifier] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3305), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_defer] = ACTIONS(3305), + [anon_sym_goto] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_DOLLARfor] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_POUND] = ACTIONS(3305), + [anon_sym_asm] = ACTIONS(3305), + [anon_sym_AT_LBRACK] = ACTIONS(3305), + [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), + }, [1104] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1104), + [sym_block_comment] = STATE(1104), + [ts_builtin_sym_end] = ACTIONS(3291), + [sym_identifier] = ACTIONS(3293), + [anon_sym_LF] = ACTIONS(3293), + [anon_sym_CR] = ACTIONS(3293), + [anon_sym_CR_LF] = ACTIONS(3293), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_DOT] = ACTIONS(3293), + [anon_sym_as] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym___global] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3293), + [anon_sym_fn] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_PERCENT] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_GT] = ACTIONS(3293), + [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(3291), + [anon_sym_struct] = ACTIONS(3293), + [anon_sym_union] = ACTIONS(3293), + [anon_sym_pub] = ACTIONS(3293), + [anon_sym_mut] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_QMARK] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_go] = ACTIONS(3293), + [anon_sym_spawn] = ACTIONS(3293), + [anon_sym_json_DOTdecode] = ACTIONS(3293), + [anon_sym_LBRACK2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_LT_DASH] = ACTIONS(3293), + [anon_sym_LT_LT] = ACTIONS(3293), + [anon_sym_GT_GT] = ACTIONS(3293), + [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(3293), + [sym_none] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_nil] = ACTIONS(3293), + [anon_sym_QMARK_DOT] = ACTIONS(3293), + [anon_sym_POUND_LBRACK] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_DOLLARif] = ACTIONS(3293), + [anon_sym_is] = ACTIONS(3293), + [anon_sym_BANGis] = ACTIONS(3293), + [anon_sym_in] = ACTIONS(3293), + [anon_sym_BANGin] = ACTIONS(3293), + [anon_sym_match] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_rlock] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_sql] = ACTIONS(3293), + [sym_int_literal] = ACTIONS(3293), + [sym_float_literal] = ACTIONS(3293), + [sym_rune_literal] = ACTIONS(3293), + [sym_pseudo_compile_time_identifier] = ACTIONS(3293), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3293), + [anon_sym_chan] = ACTIONS(3293), + [anon_sym_thread] = ACTIONS(3293), + [anon_sym_atomic] = ACTIONS(3293), + [anon_sym_assert] = ACTIONS(3293), + [anon_sym_defer] = ACTIONS(3293), + [anon_sym_goto] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_DOLLARfor] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_asm] = ACTIONS(3293), + [anon_sym_AT_LBRACK] = ACTIONS(3293), + [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), }, [1105] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1105), + [sym_block_comment] = STATE(1105), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3195), + [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_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), }, [1106] = { - [ts_builtin_sym_end] = ACTIONS(3101), - [sym_identifier] = ACTIONS(3103), - [anon_sym_LF] = ACTIONS(3103), - [anon_sym_CR] = ACTIONS(3103), - [anon_sym_CR_LF] = ACTIONS(3103), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym___global] = ACTIONS(3103), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3103), - [anon_sym_EQ_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_union] = ACTIONS(3103), - [anon_sym_pub] = ACTIONS(3103), - [anon_sym_mut] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_interface] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_go] = ACTIONS(3103), - [anon_sym_spawn] = ACTIONS(3103), - [anon_sym_json_DOTdecode] = ACTIONS(3103), - [anon_sym_LBRACK2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LT_DASH] = ACTIONS(3103), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_GT_GT_GT] = ACTIONS(3103), - [anon_sym_AMP_CARET] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3103), - [sym_none] = ACTIONS(3103), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [sym_nil] = ACTIONS(3103), - [anon_sym_QMARK_DOT] = ACTIONS(3103), - [anon_sym_POUND_LBRACK] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_DOLLARif] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_BANGis] = ACTIONS(3103), - [anon_sym_in] = ACTIONS(3103), - [anon_sym_BANGin] = ACTIONS(3103), - [anon_sym_match] = ACTIONS(3103), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3103), - [anon_sym_rlock] = ACTIONS(3103), - [anon_sym_unsafe] = ACTIONS(3103), - [anon_sym_sql] = ACTIONS(3103), - [sym_int_literal] = ACTIONS(3103), - [sym_float_literal] = ACTIONS(3103), - [sym_rune_literal] = ACTIONS(3103), - [sym_pseudo_compile_time_identifier] = ACTIONS(3103), - [anon_sym_shared] = ACTIONS(3103), - [anon_sym_map_LBRACK] = ACTIONS(3103), - [anon_sym_chan] = ACTIONS(3103), - [anon_sym_thread] = ACTIONS(3103), - [anon_sym_atomic] = ACTIONS(3103), - [anon_sym_assert] = ACTIONS(3103), - [anon_sym_defer] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_DOLLARfor] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_POUND] = ACTIONS(3103), - [anon_sym_asm] = ACTIONS(3103), - [anon_sym_AT_LBRACK] = ACTIONS(3103), - [sym___double_quote] = ACTIONS(3103), - [sym___single_quote] = ACTIONS(3103), - [sym___c_double_quote] = ACTIONS(3103), - [sym___c_single_quote] = ACTIONS(3103), - [sym___r_double_quote] = ACTIONS(3103), - [sym___r_single_quote] = ACTIONS(3103), + [sym_line_comment] = STATE(1106), + [sym_block_comment] = STATE(1106), + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3133), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_CR] = ACTIONS(3133), + [anon_sym_CR_LF] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3133), + [anon_sym___global] = ACTIONS(3133), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_fn] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [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(3131), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_pub] = ACTIONS(3133), + [anon_sym_mut] = ACTIONS(3133), + [anon_sym_enum] = ACTIONS(3133), + [anon_sym_interface] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3133), + [anon_sym_DASH_DASH] = ACTIONS(3133), + [anon_sym_QMARK] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_go] = ACTIONS(3133), + [anon_sym_spawn] = ACTIONS(3133), + [anon_sym_json_DOTdecode] = ACTIONS(3133), + [anon_sym_LBRACK2] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_CARET] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_LT_DASH] = ACTIONS(3133), + [anon_sym_LT_LT] = ACTIONS(3133), + [anon_sym_GT_GT] = ACTIONS(3133), + [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(3133), + [sym_none] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_nil] = ACTIONS(3133), + [anon_sym_QMARK_DOT] = ACTIONS(3133), + [anon_sym_POUND_LBRACK] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_DOLLARif] = ACTIONS(3133), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3133), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_BANGin] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_rlock] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_sql] = ACTIONS(3133), + [sym_int_literal] = ACTIONS(3133), + [sym_float_literal] = ACTIONS(3133), + [sym_rune_literal] = ACTIONS(3133), + [sym_pseudo_compile_time_identifier] = ACTIONS(3133), + [anon_sym_shared] = ACTIONS(3133), + [anon_sym_map_LBRACK] = ACTIONS(3133), + [anon_sym_chan] = ACTIONS(3133), + [anon_sym_thread] = ACTIONS(3133), + [anon_sym_atomic] = ACTIONS(3133), + [anon_sym_assert] = ACTIONS(3133), + [anon_sym_defer] = ACTIONS(3133), + [anon_sym_goto] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_DOLLARfor] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_POUND] = ACTIONS(3133), + [anon_sym_asm] = ACTIONS(3133), + [anon_sym_AT_LBRACK] = ACTIONS(3133), + [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), }, [1107] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1107), + [sym_block_comment] = STATE(1107), + [ts_builtin_sym_end] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LF] = ACTIONS(2941), + [anon_sym_CR] = ACTIONS(2941), + [anon_sym_CR_LF] = ACTIONS(2941), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2941), + [anon_sym_DOT] = ACTIONS(2941), + [anon_sym_as] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2941), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2941), + [anon_sym___global] = ACTIONS(2941), + [anon_sym_type] = ACTIONS(2941), + [anon_sym_PIPE] = ACTIONS(2941), + [anon_sym_fn] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_PERCENT] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2941), + [anon_sym_GT] = ACTIONS(2941), + [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(2939), + [anon_sym_struct] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2941), + [anon_sym_pub] = ACTIONS(2941), + [anon_sym_mut] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2941), + [anon_sym_interface] = ACTIONS(2941), + [anon_sym_PLUS_PLUS] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2941), + [anon_sym_QMARK] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_go] = ACTIONS(2941), + [anon_sym_spawn] = ACTIONS(2941), + [anon_sym_json_DOTdecode] = ACTIONS(2941), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2941), + [anon_sym_CARET] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2941), + [anon_sym_LT_DASH] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2941), + [anon_sym_GT_GT] = ACTIONS(2941), + [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(2941), + [sym_none] = ACTIONS(2941), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [sym_nil] = ACTIONS(2941), + [anon_sym_QMARK_DOT] = ACTIONS(2941), + [anon_sym_POUND_LBRACK] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_DOLLARif] = ACTIONS(2941), + [anon_sym_is] = ACTIONS(2941), + [anon_sym_BANGis] = ACTIONS(2941), + [anon_sym_in] = ACTIONS(2941), + [anon_sym_BANGin] = ACTIONS(2941), + [anon_sym_match] = ACTIONS(2941), + [anon_sym_select] = ACTIONS(2941), + [anon_sym_lock] = ACTIONS(2941), + [anon_sym_rlock] = ACTIONS(2941), + [anon_sym_unsafe] = ACTIONS(2941), + [anon_sym_sql] = ACTIONS(2941), + [sym_int_literal] = ACTIONS(2941), + [sym_float_literal] = ACTIONS(2941), + [sym_rune_literal] = ACTIONS(2941), + [sym_pseudo_compile_time_identifier] = ACTIONS(2941), + [anon_sym_shared] = ACTIONS(2941), + [anon_sym_map_LBRACK] = ACTIONS(2941), + [anon_sym_chan] = ACTIONS(2941), + [anon_sym_thread] = ACTIONS(2941), + [anon_sym_atomic] = ACTIONS(2941), + [anon_sym_assert] = ACTIONS(2941), + [anon_sym_defer] = ACTIONS(2941), + [anon_sym_goto] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_DOLLARfor] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_POUND] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2941), + [anon_sym_AT_LBRACK] = ACTIONS(2941), + [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), }, [1108] = { - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3017), - [anon_sym_LF] = ACTIONS(3017), - [anon_sym_CR] = ACTIONS(3017), - [anon_sym_CR_LF] = ACTIONS(3017), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3017), - [anon_sym_const] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym___global] = ACTIONS(3017), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [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(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_union] = ACTIONS(3017), - [anon_sym_pub] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_enum] = ACTIONS(3017), - [anon_sym_interface] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_GT_GT] = ACTIONS(3017), - [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(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3017), - [anon_sym_POUND_LBRACK] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3017), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3017), - [sym_rune_literal] = ACTIONS(3017), - [sym_pseudo_compile_time_identifier] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3017), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_defer] = ACTIONS(3017), - [anon_sym_goto] = ACTIONS(3017), - [anon_sym_break] = ACTIONS(3017), - [anon_sym_continue] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_DOLLARfor] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_POUND] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3017), - [anon_sym_AT_LBRACK] = ACTIONS(3017), - [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_line_comment] = STATE(1108), + [sym_block_comment] = STATE(1108), + [ts_builtin_sym_end] = ACTIONS(2943), + [sym_identifier] = ACTIONS(2945), + [anon_sym_LF] = ACTIONS(2945), + [anon_sym_CR] = ACTIONS(2945), + [anon_sym_CR_LF] = ACTIONS(2945), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(2945), + [anon_sym_as] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2945), + [anon_sym_COMMA] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym___global] = ACTIONS(2945), + [anon_sym_type] = ACTIONS(2945), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_fn] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_PERCENT] = ACTIONS(2945), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_GT] = ACTIONS(2945), + [anon_sym_EQ_EQ] = ACTIONS(2945), + [anon_sym_BANG_EQ] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2945), + [anon_sym_GT_EQ] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(2945), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_pub] = ACTIONS(2945), + [anon_sym_mut] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_interface] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2945), + [anon_sym_QMARK] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2945), + [anon_sym_go] = ACTIONS(2945), + [anon_sym_spawn] = ACTIONS(2945), + [anon_sym_json_DOTdecode] = ACTIONS(2945), + [anon_sym_LBRACK2] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_LT_DASH] = ACTIONS(2945), + [anon_sym_LT_LT] = ACTIONS(2945), + [anon_sym_GT_GT] = ACTIONS(2945), + [anon_sym_GT_GT_GT] = ACTIONS(2945), + [anon_sym_AMP_CARET] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2945), + [anon_sym_PIPE_PIPE] = ACTIONS(2945), + [anon_sym_or] = ACTIONS(2945), + [sym_none] = ACTIONS(2945), + [sym_true] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [sym_nil] = ACTIONS(2945), + [anon_sym_QMARK_DOT] = ACTIONS(2945), + [anon_sym_POUND_LBRACK] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_DOLLARif] = ACTIONS(2945), + [anon_sym_is] = ACTIONS(2945), + [anon_sym_BANGis] = ACTIONS(2945), + [anon_sym_in] = ACTIONS(2945), + [anon_sym_BANGin] = ACTIONS(2945), + [anon_sym_match] = ACTIONS(2945), + [anon_sym_select] = ACTIONS(2945), + [anon_sym_lock] = ACTIONS(2945), + [anon_sym_rlock] = ACTIONS(2945), + [anon_sym_unsafe] = ACTIONS(2945), + [anon_sym_sql] = ACTIONS(2945), + [sym_int_literal] = ACTIONS(2945), + [sym_float_literal] = ACTIONS(2945), + [sym_rune_literal] = ACTIONS(2945), + [sym_pseudo_compile_time_identifier] = ACTIONS(2945), + [anon_sym_shared] = ACTIONS(2945), + [anon_sym_map_LBRACK] = ACTIONS(2945), + [anon_sym_chan] = ACTIONS(2945), + [anon_sym_thread] = ACTIONS(2945), + [anon_sym_atomic] = ACTIONS(2945), + [anon_sym_assert] = ACTIONS(2945), + [anon_sym_defer] = ACTIONS(2945), + [anon_sym_goto] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_DOLLARfor] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_asm] = ACTIONS(2945), + [anon_sym_AT_LBRACK] = ACTIONS(2945), + [sym___double_quote] = ACTIONS(2945), + [sym___single_quote] = ACTIONS(2945), + [sym___c_double_quote] = ACTIONS(2945), + [sym___c_single_quote] = ACTIONS(2945), + [sym___r_double_quote] = ACTIONS(2945), + [sym___r_single_quote] = ACTIONS(2945), }, [1109] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1109), + [sym_block_comment] = STATE(1109), + [ts_builtin_sym_end] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LF] = ACTIONS(2953), + [anon_sym_CR] = ACTIONS(2953), + [anon_sym_CR_LF] = ACTIONS(2953), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_as] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2953), + [anon_sym_COMMA] = ACTIONS(2953), + [anon_sym_const] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2953), + [anon_sym___global] = ACTIONS(2953), + [anon_sym_type] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_fn] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2953), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_EQ_EQ] = ACTIONS(2953), + [anon_sym_BANG_EQ] = ACTIONS(2953), + [anon_sym_LT_EQ] = ACTIONS(2953), + [anon_sym_GT_EQ] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2953), + [anon_sym_union] = ACTIONS(2953), + [anon_sym_pub] = ACTIONS(2953), + [anon_sym_mut] = ACTIONS(2953), + [anon_sym_enum] = ACTIONS(2953), + [anon_sym_interface] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_go] = ACTIONS(2953), + [anon_sym_spawn] = ACTIONS(2953), + [anon_sym_json_DOTdecode] = ACTIONS(2953), + [anon_sym_LBRACK2] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2953), + [anon_sym_CARET] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_LT_DASH] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2953), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2953), + [anon_sym_AMP_CARET] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2953), + [anon_sym_PIPE_PIPE] = ACTIONS(2953), + [anon_sym_or] = ACTIONS(2953), + [sym_none] = ACTIONS(2953), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [sym_nil] = ACTIONS(2953), + [anon_sym_QMARK_DOT] = ACTIONS(2953), + [anon_sym_POUND_LBRACK] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_DOLLARif] = ACTIONS(2953), + [anon_sym_is] = ACTIONS(2953), + [anon_sym_BANGis] = ACTIONS(2953), + [anon_sym_in] = ACTIONS(2953), + [anon_sym_BANGin] = ACTIONS(2953), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2953), + [anon_sym_lock] = ACTIONS(2953), + [anon_sym_rlock] = ACTIONS(2953), + [anon_sym_unsafe] = ACTIONS(2953), + [anon_sym_sql] = ACTIONS(2953), + [sym_int_literal] = ACTIONS(2953), + [sym_float_literal] = ACTIONS(2953), + [sym_rune_literal] = ACTIONS(2953), + [sym_pseudo_compile_time_identifier] = ACTIONS(2953), + [anon_sym_shared] = ACTIONS(2953), + [anon_sym_map_LBRACK] = ACTIONS(2953), + [anon_sym_chan] = ACTIONS(2953), + [anon_sym_thread] = ACTIONS(2953), + [anon_sym_atomic] = ACTIONS(2953), + [anon_sym_assert] = ACTIONS(2953), + [anon_sym_defer] = ACTIONS(2953), + [anon_sym_goto] = ACTIONS(2953), + [anon_sym_break] = ACTIONS(2953), + [anon_sym_continue] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2953), + [anon_sym_DOLLARfor] = ACTIONS(2953), + [anon_sym_for] = ACTIONS(2953), + [anon_sym_POUND] = ACTIONS(2953), + [anon_sym_asm] = ACTIONS(2953), + [anon_sym_AT_LBRACK] = ACTIONS(2953), + [sym___double_quote] = ACTIONS(2953), + [sym___single_quote] = ACTIONS(2953), + [sym___c_double_quote] = ACTIONS(2953), + [sym___c_single_quote] = ACTIONS(2953), + [sym___r_double_quote] = ACTIONS(2953), + [sym___r_single_quote] = ACTIONS(2953), }, [1110] = { - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2651), - [anon_sym_LF] = ACTIONS(2651), - [anon_sym_CR] = ACTIONS(2651), - [anon_sym_CR_LF] = ACTIONS(2651), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_as] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym___global] = ACTIONS(2651), - [anon_sym_type] = ACTIONS(2651), - [anon_sym_PIPE] = ACTIONS(2651), - [anon_sym_fn] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_SLASH] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2651), - [anon_sym_GT] = ACTIONS(2651), - [anon_sym_EQ_EQ] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2651), - [anon_sym_LT_EQ] = ACTIONS(2651), - [anon_sym_GT_EQ] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_pub] = ACTIONS(2651), - [anon_sym_mut] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_interface] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_go] = ACTIONS(2651), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_CARET] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_LT_LT] = ACTIONS(2651), - [anon_sym_GT_GT] = ACTIONS(2651), - [anon_sym_GT_GT_GT] = ACTIONS(2651), - [anon_sym_AMP_CARET] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_or] = ACTIONS(2651), - [sym_none] = ACTIONS(2651), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_nil] = ACTIONS(2651), - [anon_sym_QMARK_DOT] = ACTIONS(2651), - [anon_sym_POUND_LBRACK] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_DOLLARif] = ACTIONS(2651), - [anon_sym_is] = ACTIONS(2651), - [anon_sym_BANGis] = ACTIONS(2651), - [anon_sym_in] = ACTIONS(2651), - [anon_sym_BANGin] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_select] = ACTIONS(2651), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(2651), - [anon_sym_sql] = ACTIONS(2651), - [sym_int_literal] = ACTIONS(2651), - [sym_float_literal] = ACTIONS(2651), - [sym_rune_literal] = ACTIONS(2651), - [sym_pseudo_compile_time_identifier] = ACTIONS(2651), - [anon_sym_shared] = ACTIONS(2651), - [anon_sym_map_LBRACK] = ACTIONS(2651), - [anon_sym_chan] = ACTIONS(2651), - [anon_sym_thread] = ACTIONS(2651), - [anon_sym_atomic] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_defer] = ACTIONS(2651), - [anon_sym_goto] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_DOLLARfor] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_POUND] = ACTIONS(2651), - [anon_sym_asm] = ACTIONS(2651), - [anon_sym_AT_LBRACK] = ACTIONS(2651), - [sym___double_quote] = ACTIONS(2651), - [sym___single_quote] = ACTIONS(2651), - [sym___c_double_quote] = ACTIONS(2651), - [sym___c_single_quote] = ACTIONS(2651), - [sym___r_double_quote] = ACTIONS(2651), - [sym___r_single_quote] = ACTIONS(2651), + [sym_line_comment] = STATE(1110), + [sym_block_comment] = STATE(1110), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3403), + [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_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), }, [1111] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1111), + [sym_block_comment] = STATE(1111), + [ts_builtin_sym_end] = ACTIONS(3274), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3271), + [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_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(3274), + [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), }, [1112] = { - [ts_builtin_sym_end] = ACTIONS(3047), - [sym_identifier] = ACTIONS(3049), - [anon_sym_LF] = ACTIONS(3049), - [anon_sym_CR] = ACTIONS(3049), - [anon_sym_CR_LF] = ACTIONS(3049), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym___global] = ACTIONS(3049), - [anon_sym_type] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [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(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_pub] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_interface] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3049), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3049), - [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(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3049), - [sym_rune_literal] = ACTIONS(3049), - [sym_pseudo_compile_time_identifier] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [anon_sym_assert] = ACTIONS(3049), - [anon_sym_defer] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_DOLLARfor] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_POUND] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym_AT_LBRACK] = ACTIONS(3049), - [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_line_comment] = STATE(1112), + [sym_block_comment] = STATE(1112), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3399), + [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_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), }, [1113] = { - [ts_builtin_sym_end] = ACTIONS(3051), - [sym_identifier] = ACTIONS(3053), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_CR] = ACTIONS(3053), - [anon_sym_CR_LF] = ACTIONS(3053), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym___global] = ACTIONS(3053), - [anon_sym_type] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [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(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_pub] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_interface] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3053), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3053), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [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(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3053), - [anon_sym_POUND_LBRACK] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3053), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3053), - [sym_rune_literal] = ACTIONS(3053), - [sym_pseudo_compile_time_identifier] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3053), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [anon_sym_assert] = ACTIONS(3053), - [anon_sym_defer] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_DOLLARfor] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym_AT_LBRACK] = ACTIONS(3053), - [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_line_comment] = STATE(1113), + [sym_block_comment] = STATE(1113), + [ts_builtin_sym_end] = ACTIONS(3284), + [sym_identifier] = ACTIONS(3281), + [anon_sym_LF] = ACTIONS(3281), + [anon_sym_CR] = ACTIONS(3281), + [anon_sym_CR_LF] = ACTIONS(3281), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym___global] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [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(3284), + [anon_sym_struct] = ACTIONS(3281), + [anon_sym_union] = ACTIONS(3281), + [anon_sym_pub] = ACTIONS(3281), + [anon_sym_mut] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3281), + [anon_sym_spawn] = ACTIONS(3281), + [anon_sym_json_DOTdecode] = ACTIONS(3281), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [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(3281), + [sym_none] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_nil] = ACTIONS(3281), + [anon_sym_QMARK_DOT] = ACTIONS(3281), + [anon_sym_POUND_LBRACK] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_DOLLARif] = ACTIONS(3281), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3281), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_select] = ACTIONS(3281), + [anon_sym_lock] = ACTIONS(3281), + [anon_sym_rlock] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(3281), + [anon_sym_sql] = ACTIONS(3281), + [sym_int_literal] = ACTIONS(3281), + [sym_float_literal] = ACTIONS(3281), + [sym_rune_literal] = ACTIONS(3281), + [sym_pseudo_compile_time_identifier] = ACTIONS(3281), + [anon_sym_shared] = ACTIONS(3281), + [anon_sym_map_LBRACK] = ACTIONS(3281), + [anon_sym_chan] = ACTIONS(3281), + [anon_sym_thread] = ACTIONS(3281), + [anon_sym_atomic] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_defer] = ACTIONS(3281), + [anon_sym_goto] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_DOLLARfor] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_POUND] = ACTIONS(3281), + [anon_sym_asm] = ACTIONS(3281), + [anon_sym_AT_LBRACK] = ACTIONS(3281), + [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), }, [1114] = { - [ts_builtin_sym_end] = ACTIONS(3055), - [sym_identifier] = ACTIONS(3057), - [anon_sym_LF] = ACTIONS(3057), - [anon_sym_CR] = ACTIONS(3057), - [anon_sym_CR_LF] = ACTIONS(3057), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym___global] = ACTIONS(3057), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_EQ_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3057), - [anon_sym_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_EQ] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_pub] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_interface] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3057), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3057), - [anon_sym_LT_LT] = ACTIONS(3057), - [anon_sym_GT_GT] = ACTIONS(3057), - [anon_sym_GT_GT_GT] = ACTIONS(3057), - [anon_sym_AMP_CARET] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_PIPE_PIPE] = ACTIONS(3057), - [anon_sym_or] = ACTIONS(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3057), - [anon_sym_POUND_LBRACK] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3057), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3057), - [sym_rune_literal] = ACTIONS(3057), - [sym_pseudo_compile_time_identifier] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3057), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [anon_sym_assert] = ACTIONS(3057), - [anon_sym_defer] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_DOLLARfor] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_POUND] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym_AT_LBRACK] = ACTIONS(3057), - [sym___double_quote] = ACTIONS(3057), - [sym___single_quote] = ACTIONS(3057), - [sym___c_double_quote] = ACTIONS(3057), - [sym___c_single_quote] = ACTIONS(3057), - [sym___r_double_quote] = ACTIONS(3057), - [sym___r_single_quote] = ACTIONS(3057), + [sym_line_comment] = STATE(1114), + [sym_block_comment] = STATE(1114), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3395), + [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_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), }, [1115] = { - [ts_builtin_sym_end] = ACTIONS(3199), - [sym_identifier] = ACTIONS(3201), - [anon_sym_LF] = ACTIONS(3201), - [anon_sym_CR] = ACTIONS(3201), - [anon_sym_CR_LF] = ACTIONS(3201), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym___global] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_fn] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3201), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3201), - [anon_sym_GT] = ACTIONS(3201), - [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(3199), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_pub] = ACTIONS(3201), - [anon_sym_mut] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_interface] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_go] = ACTIONS(3201), - [anon_sym_spawn] = ACTIONS(3201), - [anon_sym_json_DOTdecode] = ACTIONS(3201), - [anon_sym_LBRACK2] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_LT_DASH] = ACTIONS(3201), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3201), - [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(3201), - [sym_none] = ACTIONS(3201), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [sym_nil] = ACTIONS(3201), - [anon_sym_QMARK_DOT] = ACTIONS(3201), - [anon_sym_POUND_LBRACK] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_DOLLARif] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_BANGis] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_BANGin] = ACTIONS(3201), - [anon_sym_match] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_lock] = ACTIONS(3201), - [anon_sym_rlock] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_sql] = ACTIONS(3201), - [sym_int_literal] = ACTIONS(3201), - [sym_float_literal] = ACTIONS(3201), - [sym_rune_literal] = ACTIONS(3201), - [sym_pseudo_compile_time_identifier] = ACTIONS(3201), - [anon_sym_shared] = ACTIONS(3201), - [anon_sym_map_LBRACK] = ACTIONS(3201), - [anon_sym_chan] = ACTIONS(3201), - [anon_sym_thread] = ACTIONS(3201), - [anon_sym_atomic] = ACTIONS(3201), - [anon_sym_assert] = ACTIONS(3201), - [anon_sym_defer] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_DOLLARfor] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_asm] = ACTIONS(3201), - [anon_sym_AT_LBRACK] = ACTIONS(3201), - [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_line_comment] = STATE(1115), + [sym_block_comment] = STATE(1115), + [ts_builtin_sym_end] = ACTIONS(2985), + [sym_identifier] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2987), + [anon_sym_CR] = ACTIONS(2987), + [anon_sym_CR_LF] = ACTIONS(2987), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2987), + [anon_sym_DOT] = ACTIONS(2987), + [anon_sym_as] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_COMMA] = ACTIONS(2987), + [anon_sym_const] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym___global] = ACTIONS(2987), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_fn] = ACTIONS(2987), + [anon_sym_PLUS] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_PERCENT] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [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(2985), + [anon_sym_struct] = ACTIONS(2987), + [anon_sym_union] = ACTIONS(2987), + [anon_sym_pub] = ACTIONS(2987), + [anon_sym_mut] = ACTIONS(2987), + [anon_sym_enum] = ACTIONS(2987), + [anon_sym_interface] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_QMARK] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_go] = ACTIONS(2987), + [anon_sym_spawn] = ACTIONS(2987), + [anon_sym_json_DOTdecode] = ACTIONS(2987), + [anon_sym_LBRACK2] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_CARET] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2987), + [anon_sym_LT_DASH] = ACTIONS(2987), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2987), + [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(2987), + [sym_none] = ACTIONS(2987), + [sym_true] = ACTIONS(2987), + [sym_false] = ACTIONS(2987), + [sym_nil] = ACTIONS(2987), + [anon_sym_QMARK_DOT] = ACTIONS(2987), + [anon_sym_POUND_LBRACK] = ACTIONS(2987), + [anon_sym_if] = ACTIONS(2987), + [anon_sym_DOLLARif] = ACTIONS(2987), + [anon_sym_is] = ACTIONS(2987), + [anon_sym_BANGis] = ACTIONS(2987), + [anon_sym_in] = ACTIONS(2987), + [anon_sym_BANGin] = ACTIONS(2987), + [anon_sym_match] = ACTIONS(2987), + [anon_sym_select] = ACTIONS(2987), + [anon_sym_lock] = ACTIONS(2987), + [anon_sym_rlock] = ACTIONS(2987), + [anon_sym_unsafe] = ACTIONS(2987), + [anon_sym_sql] = ACTIONS(2987), + [sym_int_literal] = ACTIONS(2987), + [sym_float_literal] = ACTIONS(2987), + [sym_rune_literal] = ACTIONS(2987), + [sym_pseudo_compile_time_identifier] = ACTIONS(2987), + [anon_sym_shared] = ACTIONS(2987), + [anon_sym_map_LBRACK] = ACTIONS(2987), + [anon_sym_chan] = ACTIONS(2987), + [anon_sym_thread] = ACTIONS(2987), + [anon_sym_atomic] = ACTIONS(2987), + [anon_sym_assert] = ACTIONS(2987), + [anon_sym_defer] = ACTIONS(2987), + [anon_sym_goto] = ACTIONS(2987), + [anon_sym_break] = ACTIONS(2987), + [anon_sym_continue] = ACTIONS(2987), + [anon_sym_return] = ACTIONS(2987), + [anon_sym_DOLLARfor] = ACTIONS(2987), + [anon_sym_for] = ACTIONS(2987), + [anon_sym_POUND] = ACTIONS(2987), + [anon_sym_asm] = ACTIONS(2987), + [anon_sym_AT_LBRACK] = ACTIONS(2987), + [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), }, [1116] = { - [ts_builtin_sym_end] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3061), - [anon_sym_CR] = ACTIONS(3061), - [anon_sym_CR_LF] = ACTIONS(3061), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym___global] = ACTIONS(3061), - [anon_sym_type] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_EQ] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_pub] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_interface] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3061), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_CARET] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3061), - [anon_sym_POUND_LBRACK] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3061), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3061), - [sym_rune_literal] = ACTIONS(3061), - [sym_pseudo_compile_time_identifier] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3061), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [anon_sym_assert] = ACTIONS(3061), - [anon_sym_defer] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_DOLLARfor] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_POUND] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym_AT_LBRACK] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3061), - [sym___single_quote] = ACTIONS(3061), - [sym___c_double_quote] = ACTIONS(3061), - [sym___c_single_quote] = ACTIONS(3061), - [sym___r_double_quote] = ACTIONS(3061), - [sym___r_single_quote] = ACTIONS(3061), + [sym_line_comment] = STATE(1116), + [sym_block_comment] = STATE(1116), + [ts_builtin_sym_end] = ACTIONS(2989), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LF] = ACTIONS(2991), + [anon_sym_CR] = ACTIONS(2991), + [anon_sym_CR_LF] = ACTIONS(2991), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2991), + [anon_sym_DOT] = ACTIONS(2991), + [anon_sym_as] = ACTIONS(2991), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2991), + [anon_sym___global] = ACTIONS(2991), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(2991), + [anon_sym_fn] = ACTIONS(2991), + [anon_sym_PLUS] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_LT] = ACTIONS(2991), + [anon_sym_GT] = ACTIONS(2991), + [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(2989), + [anon_sym_struct] = ACTIONS(2991), + [anon_sym_union] = ACTIONS(2991), + [anon_sym_pub] = ACTIONS(2991), + [anon_sym_mut] = ACTIONS(2991), + [anon_sym_enum] = ACTIONS(2991), + [anon_sym_interface] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_go] = ACTIONS(2991), + [anon_sym_spawn] = ACTIONS(2991), + [anon_sym_json_DOTdecode] = ACTIONS(2991), + [anon_sym_LBRACK2] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2991), + [anon_sym_LT_DASH] = ACTIONS(2991), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2991), + [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(2991), + [sym_none] = ACTIONS(2991), + [sym_true] = ACTIONS(2991), + [sym_false] = ACTIONS(2991), + [sym_nil] = ACTIONS(2991), + [anon_sym_QMARK_DOT] = ACTIONS(2991), + [anon_sym_POUND_LBRACK] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2991), + [anon_sym_DOLLARif] = ACTIONS(2991), + [anon_sym_is] = ACTIONS(2991), + [anon_sym_BANGis] = ACTIONS(2991), + [anon_sym_in] = ACTIONS(2991), + [anon_sym_BANGin] = ACTIONS(2991), + [anon_sym_match] = ACTIONS(2991), + [anon_sym_select] = ACTIONS(2991), + [anon_sym_lock] = ACTIONS(2991), + [anon_sym_rlock] = ACTIONS(2991), + [anon_sym_unsafe] = ACTIONS(2991), + [anon_sym_sql] = ACTIONS(2991), + [sym_int_literal] = ACTIONS(2991), + [sym_float_literal] = ACTIONS(2991), + [sym_rune_literal] = ACTIONS(2991), + [sym_pseudo_compile_time_identifier] = ACTIONS(2991), + [anon_sym_shared] = ACTIONS(2991), + [anon_sym_map_LBRACK] = ACTIONS(2991), + [anon_sym_chan] = ACTIONS(2991), + [anon_sym_thread] = ACTIONS(2991), + [anon_sym_atomic] = ACTIONS(2991), + [anon_sym_assert] = ACTIONS(2991), + [anon_sym_defer] = ACTIONS(2991), + [anon_sym_goto] = ACTIONS(2991), + [anon_sym_break] = ACTIONS(2991), + [anon_sym_continue] = ACTIONS(2991), + [anon_sym_return] = ACTIONS(2991), + [anon_sym_DOLLARfor] = ACTIONS(2991), + [anon_sym_for] = ACTIONS(2991), + [anon_sym_POUND] = ACTIONS(2991), + [anon_sym_asm] = ACTIONS(2991), + [anon_sym_AT_LBRACK] = ACTIONS(2991), + [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), }, [1117] = { - [ts_builtin_sym_end] = ACTIONS(3081), - [sym_identifier] = ACTIONS(3083), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_CR] = ACTIONS(3083), - [anon_sym_CR_LF] = ACTIONS(3083), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_as] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_const] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym___global] = ACTIONS(3083), - [anon_sym_type] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3083), - [anon_sym_fn] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3083), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_mut] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_interface] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_BANG] = ACTIONS(3083), - [anon_sym_go] = ACTIONS(3083), - [anon_sym_spawn] = ACTIONS(3083), - [anon_sym_json_DOTdecode] = ACTIONS(3083), - [anon_sym_LBRACK2] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3083), - [anon_sym_GT_GT_GT] = ACTIONS(3083), - [anon_sym_AMP_CARET] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_or] = ACTIONS(3083), - [sym_none] = ACTIONS(3083), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [sym_nil] = ACTIONS(3083), - [anon_sym_QMARK_DOT] = ACTIONS(3083), - [anon_sym_POUND_LBRACK] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_DOLLARif] = ACTIONS(3083), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_BANGis] = ACTIONS(3083), - [anon_sym_in] = ACTIONS(3083), - [anon_sym_BANGin] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_select] = ACTIONS(3083), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(3083), - [anon_sym_sql] = ACTIONS(3083), - [sym_int_literal] = ACTIONS(3083), - [sym_float_literal] = ACTIONS(3083), - [sym_rune_literal] = ACTIONS(3083), - [sym_pseudo_compile_time_identifier] = ACTIONS(3083), - [anon_sym_shared] = ACTIONS(3083), - [anon_sym_map_LBRACK] = ACTIONS(3083), - [anon_sym_chan] = ACTIONS(3083), - [anon_sym_thread] = ACTIONS(3083), - [anon_sym_atomic] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_defer] = ACTIONS(3083), - [anon_sym_goto] = ACTIONS(3083), - [anon_sym_break] = ACTIONS(3083), - [anon_sym_continue] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_DOLLARfor] = ACTIONS(3083), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_POUND] = ACTIONS(3083), - [anon_sym_asm] = ACTIONS(3083), - [anon_sym_AT_LBRACK] = ACTIONS(3083), - [sym___double_quote] = ACTIONS(3083), - [sym___single_quote] = ACTIONS(3083), - [sym___c_double_quote] = ACTIONS(3083), - [sym___c_single_quote] = ACTIONS(3083), - [sym___r_double_quote] = ACTIONS(3083), - [sym___r_single_quote] = ACTIONS(3083), + [sym_line_comment] = STATE(1117), + [sym_block_comment] = STATE(1117), + [ts_builtin_sym_end] = ACTIONS(2993), + [sym_identifier] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2995), + [anon_sym_CR] = ACTIONS(2995), + [anon_sym_CR_LF] = ACTIONS(2995), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_as] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym___global] = ACTIONS(2995), + [anon_sym_type] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_fn] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_PERCENT] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2995), + [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(2993), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [anon_sym_pub] = ACTIONS(2995), + [anon_sym_mut] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_interface] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_go] = ACTIONS(2995), + [anon_sym_spawn] = ACTIONS(2995), + [anon_sym_json_DOTdecode] = ACTIONS(2995), + [anon_sym_LBRACK2] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_CARET] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2995), + [anon_sym_LT_DASH] = ACTIONS(2995), + [anon_sym_LT_LT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2995), + [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(2995), + [sym_none] = ACTIONS(2995), + [sym_true] = ACTIONS(2995), + [sym_false] = ACTIONS(2995), + [sym_nil] = ACTIONS(2995), + [anon_sym_QMARK_DOT] = ACTIONS(2995), + [anon_sym_POUND_LBRACK] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_DOLLARif] = ACTIONS(2995), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2995), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_BANGin] = ACTIONS(2995), + [anon_sym_match] = ACTIONS(2995), + [anon_sym_select] = ACTIONS(2995), + [anon_sym_lock] = ACTIONS(2995), + [anon_sym_rlock] = ACTIONS(2995), + [anon_sym_unsafe] = ACTIONS(2995), + [anon_sym_sql] = ACTIONS(2995), + [sym_int_literal] = ACTIONS(2995), + [sym_float_literal] = ACTIONS(2995), + [sym_rune_literal] = ACTIONS(2995), + [sym_pseudo_compile_time_identifier] = ACTIONS(2995), + [anon_sym_shared] = ACTIONS(2995), + [anon_sym_map_LBRACK] = ACTIONS(2995), + [anon_sym_chan] = ACTIONS(2995), + [anon_sym_thread] = ACTIONS(2995), + [anon_sym_atomic] = ACTIONS(2995), + [anon_sym_assert] = ACTIONS(2995), + [anon_sym_defer] = ACTIONS(2995), + [anon_sym_goto] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_DOLLARfor] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2995), + [anon_sym_POUND] = ACTIONS(2995), + [anon_sym_asm] = ACTIONS(2995), + [anon_sym_AT_LBRACK] = ACTIONS(2995), + [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), }, [1118] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1118), + [sym_block_comment] = STATE(1118), + [ts_builtin_sym_end] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LF] = ACTIONS(3269), + [anon_sym_CR] = ACTIONS(3269), + [anon_sym_CR_LF] = ACTIONS(3269), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_DOT] = ACTIONS(3271), + [anon_sym_as] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_COMMA] = ACTIONS(3269), + [anon_sym_const] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym___global] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_STAR] = 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(3274), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_union] = ACTIONS(3269), + [anon_sym_pub] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3269), + [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(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3269), + [anon_sym_LBRACK2] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3271), + [anon_sym_AMP] = ACTIONS(3271), + [anon_sym_LT_DASH] = ACTIONS(3269), + [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(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3271), + [anon_sym_POUND_LBRACK] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3271), + [anon_sym_BANGis] = ACTIONS(3271), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3271), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3269), + [sym_rune_literal] = ACTIONS(3269), + [sym_pseudo_compile_time_identifier] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3269), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [anon_sym_assert] = ACTIONS(3269), + [anon_sym_defer] = ACTIONS(3269), + [anon_sym_goto] = ACTIONS(3269), + [anon_sym_break] = ACTIONS(3269), + [anon_sym_continue] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_DOLLARfor] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_POUND] = ACTIONS(3269), + [anon_sym_asm] = ACTIONS(3269), + [anon_sym_AT_LBRACK] = ACTIONS(3269), + [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), }, [1119] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1119), + [sym_block_comment] = STATE(1119), + [ts_builtin_sym_end] = ACTIONS(3151), + [sym_identifier] = ACTIONS(3153), + [anon_sym_LF] = ACTIONS(3153), + [anon_sym_CR] = ACTIONS(3153), + [anon_sym_CR_LF] = ACTIONS(3153), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3153), + [anon_sym_as] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3153), + [anon_sym___global] = ACTIONS(3153), + [anon_sym_type] = ACTIONS(3153), + [anon_sym_PIPE] = ACTIONS(3153), + [anon_sym_fn] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_PERCENT] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_GT] = ACTIONS(3153), + [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(3151), + [anon_sym_struct] = ACTIONS(3153), + [anon_sym_union] = ACTIONS(3153), + [anon_sym_pub] = ACTIONS(3153), + [anon_sym_mut] = ACTIONS(3153), + [anon_sym_enum] = ACTIONS(3153), + [anon_sym_interface] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_go] = ACTIONS(3153), + [anon_sym_spawn] = ACTIONS(3153), + [anon_sym_json_DOTdecode] = ACTIONS(3153), + [anon_sym_LBRACK2] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_CARET] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3153), + [anon_sym_LT_DASH] = ACTIONS(3153), + [anon_sym_LT_LT] = ACTIONS(3153), + [anon_sym_GT_GT] = ACTIONS(3153), + [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(3153), + [sym_none] = ACTIONS(3153), + [sym_true] = ACTIONS(3153), + [sym_false] = ACTIONS(3153), + [sym_nil] = ACTIONS(3153), + [anon_sym_QMARK_DOT] = ACTIONS(3153), + [anon_sym_POUND_LBRACK] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3153), + [anon_sym_is] = ACTIONS(3153), + [anon_sym_BANGis] = ACTIONS(3153), + [anon_sym_in] = ACTIONS(3153), + [anon_sym_BANGin] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(3153), + [anon_sym_select] = ACTIONS(3153), + [anon_sym_lock] = ACTIONS(3153), + [anon_sym_rlock] = ACTIONS(3153), + [anon_sym_unsafe] = ACTIONS(3153), + [anon_sym_sql] = ACTIONS(3153), + [sym_int_literal] = ACTIONS(3153), + [sym_float_literal] = ACTIONS(3153), + [sym_rune_literal] = ACTIONS(3153), + [sym_pseudo_compile_time_identifier] = ACTIONS(3153), + [anon_sym_shared] = ACTIONS(3153), + [anon_sym_map_LBRACK] = ACTIONS(3153), + [anon_sym_chan] = ACTIONS(3153), + [anon_sym_thread] = ACTIONS(3153), + [anon_sym_atomic] = ACTIONS(3153), + [anon_sym_assert] = ACTIONS(3153), + [anon_sym_defer] = ACTIONS(3153), + [anon_sym_goto] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_DOLLARfor] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_POUND] = ACTIONS(3153), + [anon_sym_asm] = ACTIONS(3153), + [anon_sym_AT_LBRACK] = ACTIONS(3153), + [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), }, [1120] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1120), + [sym_block_comment] = STATE(1120), + [ts_builtin_sym_end] = ACTIONS(3299), + [sym_identifier] = ACTIONS(3301), + [anon_sym_LF] = ACTIONS(3301), + [anon_sym_CR] = ACTIONS(3301), + [anon_sym_CR_LF] = ACTIONS(3301), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_COMMA] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym___global] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [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(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_union] = ACTIONS(3301), + [anon_sym_pub] = ACTIONS(3301), + [anon_sym_mut] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_go] = ACTIONS(3301), + [anon_sym_spawn] = ACTIONS(3301), + [anon_sym_json_DOTdecode] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_DASH] = ACTIONS(3301), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3301), + [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(3301), + [sym_none] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_nil] = ACTIONS(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3301), + [anon_sym_POUND_LBRACK] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_DOLLARif] = ACTIONS(3301), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3301), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = ACTIONS(3301), + [anon_sym_match] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_rlock] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_sql] = ACTIONS(3301), + [sym_int_literal] = ACTIONS(3301), + [sym_float_literal] = ACTIONS(3301), + [sym_rune_literal] = ACTIONS(3301), + [sym_pseudo_compile_time_identifier] = ACTIONS(3301), + [anon_sym_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3301), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + [anon_sym_assert] = ACTIONS(3301), + [anon_sym_defer] = ACTIONS(3301), + [anon_sym_goto] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_DOLLARfor] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_POUND] = ACTIONS(3301), + [anon_sym_asm] = ACTIONS(3301), + [anon_sym_AT_LBRACK] = ACTIONS(3301), + [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), }, [1121] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1121), + [sym_block_comment] = STATE(1121), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3179), + [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_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), }, [1122] = { - [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), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1122), + [sym_block_comment] = STATE(1122), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3391), + [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_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), }, [1123] = { - [ts_builtin_sym_end] = ACTIONS(3089), - [sym_identifier] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_CR] = ACTIONS(3091), - [anon_sym_CR_LF] = ACTIONS(3091), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_as] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym___global] = ACTIONS(3091), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3091), - [anon_sym_fn] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_SLASH] = ACTIONS(3091), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3091), - [anon_sym_GT] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_union] = ACTIONS(3091), - [anon_sym_pub] = ACTIONS(3091), - [anon_sym_mut] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_interface] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_BANG] = ACTIONS(3091), - [anon_sym_go] = ACTIONS(3091), - [anon_sym_spawn] = ACTIONS(3091), - [anon_sym_json_DOTdecode] = ACTIONS(3091), - [anon_sym_LBRACK2] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_LT_LT] = ACTIONS(3091), - [anon_sym_GT_GT] = ACTIONS(3091), - [anon_sym_GT_GT_GT] = ACTIONS(3091), - [anon_sym_AMP_CARET] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_or] = ACTIONS(3091), - [sym_none] = ACTIONS(3091), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [sym_nil] = ACTIONS(3091), - [anon_sym_QMARK_DOT] = ACTIONS(3091), - [anon_sym_POUND_LBRACK] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_DOLLARif] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3091), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_in] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_select] = ACTIONS(3091), - [anon_sym_lock] = ACTIONS(3091), - [anon_sym_rlock] = ACTIONS(3091), - [anon_sym_unsafe] = ACTIONS(3091), - [anon_sym_sql] = ACTIONS(3091), - [sym_int_literal] = ACTIONS(3091), - [sym_float_literal] = ACTIONS(3091), - [sym_rune_literal] = ACTIONS(3091), - [sym_pseudo_compile_time_identifier] = ACTIONS(3091), - [anon_sym_shared] = ACTIONS(3091), - [anon_sym_map_LBRACK] = ACTIONS(3091), - [anon_sym_chan] = ACTIONS(3091), - [anon_sym_thread] = ACTIONS(3091), - [anon_sym_atomic] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_defer] = ACTIONS(3091), - [anon_sym_goto] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_DOLLARfor] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_asm] = ACTIONS(3091), - [anon_sym_AT_LBRACK] = ACTIONS(3091), - [sym___double_quote] = ACTIONS(3091), - [sym___single_quote] = ACTIONS(3091), - [sym___c_double_quote] = ACTIONS(3091), - [sym___c_single_quote] = ACTIONS(3091), - [sym___r_double_quote] = ACTIONS(3091), - [sym___r_single_quote] = ACTIONS(3091), + [sym_line_comment] = STATE(1123), + [sym_block_comment] = STATE(1123), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3007), + [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_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), }, [1124] = { - [ts_builtin_sym_end] = ACTIONS(3093), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_CR] = ACTIONS(3095), - [anon_sym_CR_LF] = ACTIONS(3095), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_as] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym___global] = ACTIONS(3095), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_fn] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_SLASH] = ACTIONS(3095), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_union] = ACTIONS(3095), - [anon_sym_pub] = ACTIONS(3095), - [anon_sym_mut] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_interface] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3095), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3095), - [anon_sym_json_DOTdecode] = ACTIONS(3095), - [anon_sym_LBRACK2] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_GT_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_CARET] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3095), - [sym_none] = ACTIONS(3095), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [sym_nil] = ACTIONS(3095), - [anon_sym_QMARK_DOT] = ACTIONS(3095), - [anon_sym_POUND_LBRACK] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_DOLLARif] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_BANGis] = ACTIONS(3095), - [anon_sym_in] = ACTIONS(3095), - [anon_sym_BANGin] = ACTIONS(3095), - [anon_sym_match] = ACTIONS(3095), - [anon_sym_select] = ACTIONS(3095), - [anon_sym_lock] = ACTIONS(3095), - [anon_sym_rlock] = ACTIONS(3095), - [anon_sym_unsafe] = ACTIONS(3095), - [anon_sym_sql] = ACTIONS(3095), - [sym_int_literal] = ACTIONS(3095), - [sym_float_literal] = ACTIONS(3095), - [sym_rune_literal] = ACTIONS(3095), - [sym_pseudo_compile_time_identifier] = ACTIONS(3095), - [anon_sym_shared] = ACTIONS(3095), - [anon_sym_map_LBRACK] = ACTIONS(3095), - [anon_sym_chan] = ACTIONS(3095), - [anon_sym_thread] = ACTIONS(3095), - [anon_sym_atomic] = ACTIONS(3095), - [anon_sym_assert] = ACTIONS(3095), - [anon_sym_defer] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_DOLLARfor] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_POUND] = ACTIONS(3095), - [anon_sym_asm] = ACTIONS(3095), - [anon_sym_AT_LBRACK] = ACTIONS(3095), - [sym___double_quote] = ACTIONS(3095), - [sym___single_quote] = ACTIONS(3095), - [sym___c_double_quote] = ACTIONS(3095), - [sym___c_single_quote] = ACTIONS(3095), - [sym___r_double_quote] = ACTIONS(3095), - [sym___r_single_quote] = ACTIONS(3095), + [sym_line_comment] = STATE(1124), + [sym_block_comment] = STATE(1124), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3031), + [anon_sym_LF] = ACTIONS(3031), + [anon_sym_CR] = ACTIONS(3031), + [anon_sym_CR_LF] = ACTIONS(3031), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_as] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym___global] = ACTIONS(3031), + [anon_sym_type] = ACTIONS(3031), + [anon_sym_PIPE] = ACTIONS(3031), + [anon_sym_fn] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3031), + [anon_sym_EQ_EQ] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3031), + [anon_sym_LT_EQ] = ACTIONS(3031), + [anon_sym_GT_EQ] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), + [anon_sym_pub] = ACTIONS(3031), + [anon_sym_mut] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_interface] = ACTIONS(3031), + [anon_sym_PLUS_PLUS] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3031), + [anon_sym_go] = ACTIONS(3031), + [anon_sym_spawn] = ACTIONS(3031), + [anon_sym_json_DOTdecode] = ACTIONS(3031), + [anon_sym_LBRACK2] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_CARET] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_LT_LT] = ACTIONS(3031), + [anon_sym_GT_GT] = ACTIONS(3031), + [anon_sym_GT_GT_GT] = ACTIONS(3031), + [anon_sym_AMP_CARET] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_or] = ACTIONS(3031), + [sym_none] = ACTIONS(3031), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [sym_nil] = ACTIONS(3031), + [anon_sym_QMARK_DOT] = ACTIONS(3031), + [anon_sym_POUND_LBRACK] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_DOLLARif] = ACTIONS(3031), + [anon_sym_is] = ACTIONS(3031), + [anon_sym_BANGis] = ACTIONS(3031), + [anon_sym_in] = ACTIONS(3031), + [anon_sym_BANGin] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_select] = ACTIONS(3031), + [anon_sym_lock] = ACTIONS(3031), + [anon_sym_rlock] = ACTIONS(3031), + [anon_sym_unsafe] = ACTIONS(3031), + [anon_sym_sql] = ACTIONS(3031), + [sym_int_literal] = ACTIONS(3031), + [sym_float_literal] = ACTIONS(3031), + [sym_rune_literal] = ACTIONS(3031), + [sym_pseudo_compile_time_identifier] = ACTIONS(3031), + [anon_sym_shared] = ACTIONS(3031), + [anon_sym_map_LBRACK] = ACTIONS(3031), + [anon_sym_chan] = ACTIONS(3031), + [anon_sym_thread] = ACTIONS(3031), + [anon_sym_atomic] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_defer] = ACTIONS(3031), + [anon_sym_goto] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_DOLLARfor] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_POUND] = ACTIONS(3031), + [anon_sym_asm] = ACTIONS(3031), + [anon_sym_AT_LBRACK] = ACTIONS(3031), + [sym___double_quote] = ACTIONS(3031), + [sym___single_quote] = ACTIONS(3031), + [sym___c_double_quote] = ACTIONS(3031), + [sym___c_single_quote] = ACTIONS(3031), + [sym___r_double_quote] = ACTIONS(3031), + [sym___r_single_quote] = ACTIONS(3031), }, [1125] = { - [sym_reference_expression] = STATE(4563), - [sym_type_reference_expression] = STATE(1435), - [sym_plain_type] = STATE(1492), - [sym__plain_type_without_special] = STATE(1487), - [sym_anon_struct_type] = STATE(1449), - [sym_multi_return_type] = STATE(1487), - [sym_result_type] = STATE(1487), - [sym_option_type] = STATE(1487), - [sym_qualified_type] = STATE(1435), - [sym_fixed_array_type] = STATE(1449), - [sym_array_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_wrong_pointer_type] = STATE(1449), - [sym_map_type] = STATE(1449), - [sym_channel_type] = STATE(1449), - [sym_shared_type] = STATE(1449), - [sym_thread_type] = STATE(1449), - [sym_atomic_type] = STATE(1449), - [sym_generic_type] = STATE(1449), - [sym_function_type] = STATE(1449), + [sym_line_comment] = STATE(1125), + [sym_block_comment] = STATE(1125), + [ts_builtin_sym_end] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3141), + [anon_sym_LF] = ACTIONS(3141), + [anon_sym_CR] = ACTIONS(3141), + [anon_sym_CR_LF] = ACTIONS(3141), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3141), + [anon_sym_as] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym___global] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(3141), + [anon_sym_fn] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_PERCENT] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_GT] = ACTIONS(3141), + [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(3139), + [anon_sym_struct] = ACTIONS(3141), + [anon_sym_union] = ACTIONS(3141), + [anon_sym_pub] = ACTIONS(3141), + [anon_sym_mut] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [anon_sym_QMARK] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_go] = ACTIONS(3141), + [anon_sym_spawn] = ACTIONS(3141), + [anon_sym_json_DOTdecode] = ACTIONS(3141), + [anon_sym_LBRACK2] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_CARET] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_LT_DASH] = ACTIONS(3141), + [anon_sym_LT_LT] = ACTIONS(3141), + [anon_sym_GT_GT] = ACTIONS(3141), + [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(3141), + [sym_none] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_nil] = ACTIONS(3141), + [anon_sym_QMARK_DOT] = ACTIONS(3141), + [anon_sym_POUND_LBRACK] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_DOLLARif] = ACTIONS(3141), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3141), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_BANGin] = ACTIONS(3141), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_select] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_rlock] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_sql] = ACTIONS(3141), + [sym_int_literal] = ACTIONS(3141), + [sym_float_literal] = ACTIONS(3141), + [sym_rune_literal] = ACTIONS(3141), + [sym_pseudo_compile_time_identifier] = ACTIONS(3141), + [anon_sym_shared] = ACTIONS(3141), + [anon_sym_map_LBRACK] = ACTIONS(3141), + [anon_sym_chan] = ACTIONS(3141), + [anon_sym_thread] = ACTIONS(3141), + [anon_sym_atomic] = ACTIONS(3141), + [anon_sym_assert] = ACTIONS(3141), + [anon_sym_defer] = ACTIONS(3141), + [anon_sym_goto] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_DOLLARfor] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_POUND] = ACTIONS(3141), + [anon_sym_asm] = ACTIONS(3141), + [anon_sym_AT_LBRACK] = ACTIONS(3141), + [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), + }, + [1126] = { + [sym_line_comment] = STATE(1126), + [sym_block_comment] = STATE(1126), + [ts_builtin_sym_end] = ACTIONS(3135), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LF] = ACTIONS(3137), + [anon_sym_CR] = ACTIONS(3137), + [anon_sym_CR_LF] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_as] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym___global] = ACTIONS(3137), + [anon_sym_type] = ACTIONS(3137), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_fn] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3137), + [anon_sym_PERCENT] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3137), + [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(3135), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_union] = ACTIONS(3137), + [anon_sym_pub] = ACTIONS(3137), + [anon_sym_mut] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_go] = ACTIONS(3137), + [anon_sym_spawn] = ACTIONS(3137), + [anon_sym_json_DOTdecode] = ACTIONS(3137), + [anon_sym_LBRACK2] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_CARET] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_LT_DASH] = ACTIONS(3137), + [anon_sym_LT_LT] = ACTIONS(3137), + [anon_sym_GT_GT] = ACTIONS(3137), + [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(3137), + [sym_none] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_nil] = ACTIONS(3137), + [anon_sym_QMARK_DOT] = ACTIONS(3137), + [anon_sym_POUND_LBRACK] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_DOLLARif] = ACTIONS(3137), + [anon_sym_is] = ACTIONS(3137), + [anon_sym_BANGis] = ACTIONS(3137), + [anon_sym_in] = ACTIONS(3137), + [anon_sym_BANGin] = ACTIONS(3137), + [anon_sym_match] = ACTIONS(3137), + [anon_sym_select] = ACTIONS(3137), + [anon_sym_lock] = ACTIONS(3137), + [anon_sym_rlock] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(3137), + [anon_sym_sql] = ACTIONS(3137), + [sym_int_literal] = ACTIONS(3137), + [sym_float_literal] = ACTIONS(3137), + [sym_rune_literal] = ACTIONS(3137), + [sym_pseudo_compile_time_identifier] = ACTIONS(3137), + [anon_sym_shared] = ACTIONS(3137), + [anon_sym_map_LBRACK] = ACTIONS(3137), + [anon_sym_chan] = ACTIONS(3137), + [anon_sym_thread] = ACTIONS(3137), + [anon_sym_atomic] = ACTIONS(3137), + [anon_sym_assert] = ACTIONS(3137), + [anon_sym_defer] = ACTIONS(3137), + [anon_sym_goto] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_DOLLARfor] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_POUND] = ACTIONS(3137), + [anon_sym_asm] = ACTIONS(3137), + [anon_sym_AT_LBRACK] = ACTIONS(3137), + [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), + }, + [1127] = { + [sym_line_comment] = STATE(1127), + [sym_block_comment] = STATE(1127), + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2757), + [anon_sym_LF] = ACTIONS(2757), + [anon_sym_CR] = ACTIONS(2757), + [anon_sym_CR_LF] = ACTIONS(2757), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2757), + [anon_sym_DOT] = ACTIONS(2757), + [anon_sym_as] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2757), + [anon_sym_COMMA] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_LPAREN] = ACTIONS(2757), + [anon_sym___global] = ACTIONS(2757), + [anon_sym_type] = ACTIONS(2757), + [anon_sym_PIPE] = ACTIONS(2757), + [anon_sym_fn] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_PERCENT] = ACTIONS(2757), + [anon_sym_LT] = ACTIONS(2757), + [anon_sym_GT] = ACTIONS(2757), + [anon_sym_EQ_EQ] = ACTIONS(2757), + [anon_sym_BANG_EQ] = ACTIONS(2757), + [anon_sym_LT_EQ] = ACTIONS(2757), + [anon_sym_GT_EQ] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_pub] = ACTIONS(2757), + [anon_sym_mut] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_interface] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_QMARK] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_go] = ACTIONS(2757), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2757), + [anon_sym_LBRACK2] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [anon_sym_CARET] = ACTIONS(2757), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_LT_DASH] = ACTIONS(2757), + [anon_sym_LT_LT] = ACTIONS(2757), + [anon_sym_GT_GT] = ACTIONS(2757), + [anon_sym_GT_GT_GT] = ACTIONS(2757), + [anon_sym_AMP_CARET] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2757), + [anon_sym_PIPE_PIPE] = ACTIONS(2757), + [anon_sym_or] = ACTIONS(2757), + [sym_none] = ACTIONS(2757), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_nil] = ACTIONS(2757), + [anon_sym_QMARK_DOT] = ACTIONS(2757), + [anon_sym_POUND_LBRACK] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_DOLLARif] = ACTIONS(2757), + [anon_sym_is] = ACTIONS(2757), + [anon_sym_BANGis] = ACTIONS(2757), + [anon_sym_in] = ACTIONS(2757), + [anon_sym_BANGin] = ACTIONS(2757), + [anon_sym_match] = ACTIONS(2757), + [anon_sym_select] = ACTIONS(2757), + [anon_sym_lock] = ACTIONS(2757), + [anon_sym_rlock] = ACTIONS(2757), + [anon_sym_unsafe] = ACTIONS(2757), + [anon_sym_sql] = ACTIONS(2757), + [sym_int_literal] = ACTIONS(2757), + [sym_float_literal] = ACTIONS(2757), + [sym_rune_literal] = ACTIONS(2757), + [sym_pseudo_compile_time_identifier] = ACTIONS(2757), + [anon_sym_shared] = ACTIONS(2757), + [anon_sym_map_LBRACK] = ACTIONS(2757), + [anon_sym_chan] = ACTIONS(2757), + [anon_sym_thread] = ACTIONS(2757), + [anon_sym_atomic] = ACTIONS(2757), + [anon_sym_assert] = ACTIONS(2757), + [anon_sym_defer] = ACTIONS(2757), + [anon_sym_goto] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_DOLLARfor] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_POUND] = ACTIONS(2757), + [anon_sym_asm] = ACTIONS(2757), + [anon_sym_AT_LBRACK] = ACTIONS(2757), + [sym___double_quote] = ACTIONS(2757), + [sym___single_quote] = ACTIONS(2757), + [sym___c_double_quote] = ACTIONS(2757), + [sym___c_single_quote] = ACTIONS(2757), + [sym___r_double_quote] = ACTIONS(2757), + [sym___r_single_quote] = ACTIONS(2757), + }, + [1128] = { + [sym_line_comment] = STATE(1128), + [sym_block_comment] = STATE(1128), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_as] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_COMMA] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym___global] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_PIPE] = ACTIONS(3183), + [anon_sym_fn] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_PERCENT] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT_EQ] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3181), + [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(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_go] = ACTIONS(3183), + [anon_sym_spawn] = ACTIONS(3183), + [anon_sym_json_DOTdecode] = ACTIONS(3183), + [anon_sym_LBRACK2] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_LT_DASH] = ACTIONS(3183), + [anon_sym_LT_LT] = ACTIONS(3183), + [anon_sym_GT_GT] = ACTIONS(3183), + [anon_sym_GT_GT_GT] = ACTIONS(3183), + [anon_sym_AMP_CARET] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_PIPE_PIPE] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [sym_none] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_nil] = ACTIONS(3183), + [anon_sym_QMARK_DOT] = ACTIONS(3183), + [anon_sym_POUND_LBRACK] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_DOLLARif] = ACTIONS(3183), + [anon_sym_is] = ACTIONS(3183), + [anon_sym_BANGis] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_BANGin] = ACTIONS(3183), + [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), + }, + [1129] = { + [sym_line_comment] = STATE(1129), + [sym_block_comment] = STATE(1129), + [sym_reference_expression] = STATE(4594), + [sym_type_reference_expression] = STATE(1443), + [sym_plain_type] = STATE(1469), + [sym__plain_type_without_special] = STATE(1486), + [sym_anon_struct_type] = STATE(1485), + [sym_multi_return_type] = STATE(1486), + [sym_result_type] = STATE(1486), + [sym_option_type] = STATE(1486), + [sym_qualified_type] = STATE(1443), + [sym_fixed_array_type] = STATE(1485), + [sym_array_type] = STATE(1485), + [sym_pointer_type] = STATE(1485), + [sym_wrong_pointer_type] = STATE(1485), + [sym_map_type] = STATE(1485), + [sym_channel_type] = STATE(1485), + [sym_shared_type] = STATE(1485), + [sym_thread_type] = STATE(1485), + [sym_atomic_type] = STATE(1485), + [sym_generic_type] = STATE(1485), + [sym_function_type] = STATE(1485), + [ts_builtin_sym_end] = ACTIONS(625), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_const] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym___global] = ACTIONS(627), + [anon_sym_type] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [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_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_LBRACK2] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [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_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), + }, + [1130] = { + [sym_line_comment] = STATE(1130), + [sym_block_comment] = STATE(1130), + [sym_reference_expression] = STATE(4594), + [sym_type_reference_expression] = STATE(1443), + [sym_plain_type] = STATE(1494), + [sym__plain_type_without_special] = STATE(1486), + [sym_anon_struct_type] = STATE(1485), + [sym_multi_return_type] = STATE(1486), + [sym_result_type] = STATE(1486), + [sym_option_type] = STATE(1486), + [sym_qualified_type] = STATE(1443), + [sym_fixed_array_type] = STATE(1485), + [sym_array_type] = STATE(1485), + [sym_pointer_type] = STATE(1485), + [sym_wrong_pointer_type] = STATE(1485), + [sym_map_type] = STATE(1485), + [sym_channel_type] = STATE(1485), + [sym_shared_type] = STATE(1485), + [sym_thread_type] = STATE(1485), + [sym_atomic_type] = STATE(1485), + [sym_generic_type] = STATE(1485), + [sym_function_type] = STATE(1485), [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(3638), + [sym_identifier] = ACTIONS(3628), [anon_sym_LF] = ACTIONS(623), [anon_sym_CR] = ACTIONS(623), [anon_sym_CR_LF] = ACTIONS(623), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(623), [anon_sym_LBRACE] = ACTIONS(623), [anon_sym_const] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3630), [anon_sym___global] = ACTIONS(623), [anon_sym_type] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3642), + [anon_sym_fn] = ACTIONS(3632), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3646), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(3636), [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_QMARK] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3640), [anon_sym_go] = ACTIONS(623), [anon_sym_spawn] = ACTIONS(623), [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(3652), + [anon_sym_LBRACK2] = ACTIONS(3642), [anon_sym_TILDE] = ACTIONS(623), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3644), [anon_sym_LT_DASH] = ACTIONS(623), [sym_none] = ACTIONS(623), [sym_true] = ACTIONS(623), @@ -152288,11 +153205,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(623), [sym_rune_literal] = ACTIONS(623), [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3656), - [anon_sym_map_LBRACK] = ACTIONS(3658), - [anon_sym_chan] = ACTIONS(3660), - [anon_sym_thread] = ACTIONS(3662), - [anon_sym_atomic] = ACTIONS(3664), + [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(623), [anon_sym_defer] = ACTIONS(623), [anon_sym_goto] = ACTIONS(623), @@ -152311,671 +153228,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(623), [sym___r_single_quote] = ACTIONS(623), }, - [1126] = { - [sym_reference_expression] = STATE(4563), - [sym_type_reference_expression] = STATE(1435), - [sym_plain_type] = STATE(1501), - [sym__plain_type_without_special] = STATE(1487), - [sym_anon_struct_type] = STATE(1449), - [sym_multi_return_type] = STATE(1487), - [sym_result_type] = STATE(1487), - [sym_option_type] = STATE(1487), - [sym_qualified_type] = STATE(1435), - [sym_fixed_array_type] = STATE(1449), - [sym_array_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_wrong_pointer_type] = STATE(1449), - [sym_map_type] = STATE(1449), - [sym_channel_type] = STATE(1449), - [sym_shared_type] = STATE(1449), - [sym_thread_type] = STATE(1449), - [sym_atomic_type] = STATE(1449), - [sym_generic_type] = STATE(1449), - [sym_function_type] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(3638), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3640), - [anon_sym___global] = ACTIONS(619), - [anon_sym_type] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3646), - [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_QMARK] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3654), - [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_shared] = ACTIONS(3656), - [anon_sym_map_LBRACK] = ACTIONS(3658), - [anon_sym_chan] = ACTIONS(3660), - [anon_sym_thread] = ACTIONS(3662), - [anon_sym_atomic] = ACTIONS(3664), - [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), - }, - [1127] = { - [sym_reference_expression] = STATE(4563), - [sym_type_reference_expression] = STATE(1435), - [sym_plain_type] = STATE(1448), - [sym__plain_type_without_special] = STATE(1487), - [sym_anon_struct_type] = STATE(1449), - [sym_multi_return_type] = STATE(1487), - [sym_result_type] = STATE(1487), - [sym_option_type] = STATE(1487), - [sym_qualified_type] = STATE(1435), - [sym_fixed_array_type] = STATE(1449), - [sym_array_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_wrong_pointer_type] = STATE(1449), - [sym_map_type] = STATE(1449), - [sym_channel_type] = STATE(1449), - [sym_shared_type] = STATE(1449), - [sym_thread_type] = STATE(1449), - [sym_atomic_type] = STATE(1449), - [sym_generic_type] = STATE(1449), - [sym_function_type] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(581), - [sym_identifier] = ACTIONS(3638), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_const] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3640), - [anon_sym___global] = ACTIONS(585), - [anon_sym_type] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3646), - [anon_sym_union] = ACTIONS(585), - [anon_sym_pub] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_enum] = ACTIONS(585), - [anon_sym_interface] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_DASH] = ACTIONS(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [sym_pseudo_compile_time_identifier] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(3656), - [anon_sym_map_LBRACK] = ACTIONS(3658), - [anon_sym_chan] = ACTIONS(3660), - [anon_sym_thread] = ACTIONS(3662), - [anon_sym_atomic] = ACTIONS(3664), - [anon_sym_assert] = ACTIONS(585), - [anon_sym_defer] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(585), - [anon_sym_break] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_return] = ACTIONS(585), - [anon_sym_DOLLARfor] = ACTIONS(585), - [anon_sym_for] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_asm] = ACTIONS(585), - [anon_sym_AT_LBRACK] = ACTIONS(585), - [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), - }, - [1128] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1129] = { - [sym_reference_expression] = STATE(4460), - [sym_type_reference_expression] = STATE(1688), - [sym_plain_type] = STATE(1694), - [sym__plain_type_without_special] = STATE(1687), - [sym_anon_struct_type] = STATE(1686), - [sym_multi_return_type] = STATE(1687), - [sym_result_type] = STATE(1687), - [sym_option_type] = STATE(1687), - [sym_qualified_type] = STATE(1688), - [sym_fixed_array_type] = STATE(1686), - [sym_array_type] = STATE(1686), - [sym_pointer_type] = STATE(1686), - [sym_wrong_pointer_type] = STATE(1686), - [sym_map_type] = STATE(1686), - [sym_channel_type] = STATE(1686), - [sym_shared_type] = STATE(1686), - [sym_thread_type] = STATE(1686), - [sym_atomic_type] = STATE(1686), - [sym_generic_type] = STATE(1686), - [sym_function_type] = STATE(1686), - [sym_identifier] = ACTIONS(3666), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [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(581), - [anon_sym_struct] = ACTIONS(3674), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(3682), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [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(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [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_shared] = ACTIONS(3684), - [anon_sym_map_LBRACK] = ACTIONS(3686), - [anon_sym_chan] = ACTIONS(3688), - [anon_sym_thread] = ACTIONS(3690), - [anon_sym_atomic] = ACTIONS(3692), - }, - [1130] = { - [sym_reference_expression] = STATE(4460), - [sym_type_reference_expression] = STATE(1688), - [sym_plain_type] = STATE(1667), - [sym__plain_type_without_special] = STATE(1687), - [sym_anon_struct_type] = STATE(1686), - [sym_multi_return_type] = STATE(1687), - [sym_result_type] = STATE(1687), - [sym_option_type] = STATE(1687), - [sym_qualified_type] = STATE(1688), - [sym_fixed_array_type] = STATE(1686), - [sym_array_type] = STATE(1686), - [sym_pointer_type] = STATE(1686), - [sym_wrong_pointer_type] = STATE(1686), - [sym_map_type] = STATE(1686), - [sym_channel_type] = STATE(1686), - [sym_shared_type] = STATE(1686), - [sym_thread_type] = STATE(1686), - [sym_atomic_type] = STATE(1686), - [sym_generic_type] = STATE(1686), - [sym_function_type] = STATE(1686), - [sym_identifier] = ACTIONS(3666), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3672), - [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(3674), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3682), - [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(3684), - [anon_sym_map_LBRACK] = ACTIONS(3686), - [anon_sym_chan] = ACTIONS(3688), - [anon_sym_thread] = ACTIONS(3690), - [anon_sym_atomic] = ACTIONS(3692), - }, [1131] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_CR] = ACTIONS(1759), - [anon_sym_CR_LF] = ACTIONS(1759), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_EQ] = ACTIONS(1761), - [anon_sym___global] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_fn] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [anon_sym_pub] = ACTIONS(1759), - [anon_sym_mut] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_QMARK] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1759), - [anon_sym_go] = ACTIONS(1759), - [anon_sym_spawn] = ACTIONS(1759), - [anon_sym_json_DOTdecode] = ACTIONS(1759), - [anon_sym_LBRACK2] = ACTIONS(1759), - [anon_sym_TILDE] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_LT_DASH] = ACTIONS(1759), - [sym_none] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_nil] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_DOLLARif] = ACTIONS(1759), - [anon_sym_match] = ACTIONS(1759), - [anon_sym_select] = ACTIONS(1759), - [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(1759), - [anon_sym_rlock] = ACTIONS(1759), - [anon_sym_unsafe] = ACTIONS(1759), - [anon_sym_sql] = ACTIONS(1759), - [sym_int_literal] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), - [sym_rune_literal] = ACTIONS(1759), - [sym_pseudo_compile_time_identifier] = ACTIONS(1759), - [anon_sym_shared] = ACTIONS(1759), - [anon_sym_map_LBRACK] = ACTIONS(1759), - [anon_sym_chan] = ACTIONS(1759), - [anon_sym_thread] = ACTIONS(1759), - [anon_sym_atomic] = ACTIONS(1759), - [anon_sym_assert] = ACTIONS(1759), - [anon_sym_defer] = ACTIONS(1759), - [anon_sym_goto] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_DOLLARfor] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_asm] = ACTIONS(1759), - [anon_sym_AT_LBRACK] = ACTIONS(1759), - [sym___double_quote] = ACTIONS(1759), - [sym___single_quote] = ACTIONS(1759), - [sym___c_double_quote] = ACTIONS(1759), - [sym___c_single_quote] = ACTIONS(1759), - [sym___r_double_quote] = ACTIONS(1759), - [sym___r_single_quote] = ACTIONS(1759), + [sym_line_comment] = STATE(1131), + [sym_block_comment] = STATE(1131), + [sym_reference_expression] = STATE(4594), + [sym_type_reference_expression] = STATE(1443), + [sym_plain_type] = STATE(1457), + [sym__plain_type_without_special] = STATE(1486), + [sym_anon_struct_type] = STATE(1485), + [sym_multi_return_type] = STATE(1486), + [sym_result_type] = STATE(1486), + [sym_option_type] = STATE(1486), + [sym_qualified_type] = STATE(1443), + [sym_fixed_array_type] = STATE(1485), + [sym_array_type] = STATE(1485), + [sym_pointer_type] = STATE(1485), + [sym_wrong_pointer_type] = STATE(1485), + [sym_map_type] = STATE(1485), + [sym_channel_type] = STATE(1485), + [sym_shared_type] = STATE(1485), + [sym_thread_type] = STATE(1485), + [sym_atomic_type] = STATE(1485), + [sym_generic_type] = STATE(1485), + [sym_function_type] = STATE(1485), + [ts_builtin_sym_end] = ACTIONS(567), + [sym_identifier] = ACTIONS(3628), + [anon_sym_LF] = ACTIONS(571), + [anon_sym_CR] = ACTIONS(571), + [anon_sym_CR_LF] = ACTIONS(571), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_const] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym___global] = ACTIONS(571), + [anon_sym_type] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(571), + [anon_sym_pub] = ACTIONS(571), + [anon_sym_mut] = ACTIONS(571), + [anon_sym_enum] = ACTIONS(571), + [anon_sym_interface] = ACTIONS(571), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_go] = ACTIONS(571), + [anon_sym_spawn] = ACTIONS(571), + [anon_sym_json_DOTdecode] = ACTIONS(571), + [anon_sym_LBRACK2] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_LT_DASH] = ACTIONS(571), + [sym_none] = ACTIONS(571), + [sym_true] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [sym_nil] = ACTIONS(571), + [anon_sym_if] = ACTIONS(571), + [anon_sym_DOLLARif] = ACTIONS(571), + [anon_sym_match] = ACTIONS(571), + [anon_sym_select] = ACTIONS(571), + [anon_sym_lock] = ACTIONS(571), + [anon_sym_rlock] = ACTIONS(571), + [anon_sym_unsafe] = ACTIONS(571), + [anon_sym_sql] = ACTIONS(571), + [sym_int_literal] = ACTIONS(571), + [sym_float_literal] = ACTIONS(571), + [sym_rune_literal] = ACTIONS(571), + [sym_pseudo_compile_time_identifier] = ACTIONS(571), + [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(571), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(571), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_return] = ACTIONS(571), + [anon_sym_DOLLARfor] = ACTIONS(571), + [anon_sym_for] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_asm] = ACTIONS(571), + [anon_sym_AT_LBRACK] = ACTIONS(571), + [sym___double_quote] = ACTIONS(571), + [sym___single_quote] = ACTIONS(571), + [sym___c_double_quote] = ACTIONS(571), + [sym___c_single_quote] = ACTIONS(571), + [sym___r_double_quote] = ACTIONS(571), + [sym___r_single_quote] = ACTIONS(571), }, [1132] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(563), - [anon_sym_CR] = ACTIONS(563), - [anon_sym_CR_LF] = ACTIONS(563), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_RBRACE] = ACTIONS(563), + [sym_line_comment] = STATE(1132), + [sym_block_comment] = STATE(1132), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(565), + [anon_sym_CR] = ACTIONS(565), + [anon_sym_CR_LF] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_RBRACE] = ACTIONS(565), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [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(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_DASH] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [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(563), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(563), - [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(579), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_EQ_EQ] = ACTIONS(565), + [anon_sym_BANG_EQ] = ACTIONS(565), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_DASH] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_AMP_CARET] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_POUND_LBRACK] = ACTIONS(565), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_BANGin] = ACTIONS(565), + [anon_sym_STAR_EQ] = ACTIONS(565), + [anon_sym_SLASH_EQ] = ACTIONS(565), + [anon_sym_PERCENT_EQ] = ACTIONS(565), + [anon_sym_LT_LT_EQ] = ACTIONS(565), + [anon_sym_GT_GT_EQ] = ACTIONS(565), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(565), + [anon_sym_AMP_EQ] = ACTIONS(565), + [anon_sym_AMP_CARET_EQ] = ACTIONS(565), + [anon_sym_PLUS_EQ] = ACTIONS(565), + [anon_sym_DASH_EQ] = ACTIONS(565), + [anon_sym_PIPE_EQ] = ACTIONS(565), + [anon_sym_CARET_EQ] = ACTIONS(565), + [anon_sym_COLON_EQ] = ACTIONS(565), + [anon_sym_shared] = ACTIONS(619), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, [1133] = { - [sym_reference_expression] = STATE(4460), - [sym_type_reference_expression] = STATE(1688), - [sym_plain_type] = STATE(1665), - [sym__plain_type_without_special] = STATE(1687), - [sym_anon_struct_type] = STATE(1686), - [sym_multi_return_type] = STATE(1687), - [sym_result_type] = STATE(1687), - [sym_option_type] = STATE(1687), - [sym_qualified_type] = STATE(1688), - [sym_fixed_array_type] = STATE(1686), - [sym_array_type] = STATE(1686), - [sym_pointer_type] = STATE(1686), - [sym_wrong_pointer_type] = STATE(1686), - [sym_map_type] = STATE(1686), - [sym_channel_type] = STATE(1686), - [sym_shared_type] = STATE(1686), - [sym_thread_type] = STATE(1686), - [sym_atomic_type] = STATE(1686), - [sym_generic_type] = STATE(1686), - [sym_function_type] = STATE(1686), - [sym_identifier] = ACTIONS(3666), + [sym_line_comment] = STATE(1133), + [sym_block_comment] = STATE(1133), + [sym_reference_expression] = STATE(4591), + [sym_type_reference_expression] = STATE(1708), + [sym_plain_type] = STATE(1678), + [sym__plain_type_without_special] = STATE(1709), + [sym_anon_struct_type] = STATE(1701), + [sym_multi_return_type] = STATE(1709), + [sym_result_type] = STATE(1709), + [sym_option_type] = STATE(1709), + [sym_qualified_type] = STATE(1708), + [sym_fixed_array_type] = STATE(1701), + [sym_array_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_wrong_pointer_type] = STATE(1701), + [sym_map_type] = STATE(1701), + [sym_channel_type] = STATE(1701), + [sym_shared_type] = STATE(1701), + [sym_thread_type] = STATE(1701), + [sym_atomic_type] = STATE(1701), + [sym_generic_type] = STATE(1701), + [sym_function_type] = STATE(1701), + [sym_identifier] = ACTIONS(3656), [anon_sym_LF] = ACTIONS(623), [anon_sym_CR] = ACTIONS(623), [anon_sym_CR_LF] = ACTIONS(623), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(623), [anon_sym_DOT] = ACTIONS(623), [anon_sym_as] = ACTIONS(623), [anon_sym_COMMA] = ACTIONS(623), [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3658), [anon_sym_EQ] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3670), + [anon_sym_fn] = ACTIONS(3660), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3662), [anon_sym_PERCENT] = ACTIONS(623), [anon_sym_LT] = ACTIONS(623), [anon_sym_GT] = ACTIONS(623), @@ -152984,15 +153465,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(623), [anon_sym_GT_EQ] = ACTIONS(623), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(3664), [anon_sym_COLON] = ACTIONS(623), [anon_sym_PLUS_PLUS] = ACTIONS(623), [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_LBRACK2] = ACTIONS(3670), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3672), [anon_sym_LT_DASH] = ACTIONS(623), [anon_sym_LT_LT] = ACTIONS(623), [anon_sym_GT_GT] = ACTIONS(623), @@ -153020,1094 +153501,1675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(623), [anon_sym_CARET_EQ] = ACTIONS(623), [anon_sym_COLON_EQ] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3684), - [anon_sym_map_LBRACK] = ACTIONS(3686), - [anon_sym_chan] = ACTIONS(3688), - [anon_sym_thread] = ACTIONS(3690), - [anon_sym_atomic] = ACTIONS(3692), + [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_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(3700), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(3706), - [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(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [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(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_BANGin] = ACTIONS(3716), - [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), + [sym_line_comment] = STATE(1134), + [sym_block_comment] = STATE(1134), + [sym_reference_expression] = STATE(4591), + [sym_type_reference_expression] = STATE(1708), + [sym_plain_type] = STATE(1706), + [sym__plain_type_without_special] = STATE(1709), + [sym_anon_struct_type] = STATE(1701), + [sym_multi_return_type] = STATE(1709), + [sym_result_type] = STATE(1709), + [sym_option_type] = STATE(1709), + [sym_qualified_type] = STATE(1708), + [sym_fixed_array_type] = STATE(1701), + [sym_array_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_wrong_pointer_type] = STATE(1701), + [sym_map_type] = STATE(1701), + [sym_channel_type] = STATE(1701), + [sym_shared_type] = STATE(1701), + [sym_thread_type] = STATE(1701), + [sym_atomic_type] = STATE(1701), + [sym_generic_type] = STATE(1701), + [sym_function_type] = STATE(1701), + [sym_identifier] = ACTIONS(3656), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_CR] = ACTIONS(627), + [anon_sym_CR_LF] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = 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(3658), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(3662), + [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(3664), + [anon_sym_COLON] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_LBRACK2] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(3672), + [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(3674), + [anon_sym_map_LBRACK] = ACTIONS(3676), + [anon_sym_chan] = ACTIONS(3678), + [anon_sym_thread] = ACTIONS(3680), + [anon_sym_atomic] = ACTIONS(3682), }, [1135] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(3700), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [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(3706), - [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(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [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(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [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), + [sym_line_comment] = STATE(1135), + [sym_block_comment] = STATE(1135), + [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(497), + [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), }, [1136] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(1861), - [anon_sym_LF] = ACTIONS(1861), - [anon_sym_CR] = ACTIONS(1861), - [anon_sym_CR_LF] = ACTIONS(1861), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3718), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_COMMA] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(3700), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(1861), - [anon_sym_spawn] = ACTIONS(1861), - [anon_sym_json_DOTdecode] = ACTIONS(1861), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3726), - [anon_sym_or] = ACTIONS(3728), - [sym_none] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_nil] = ACTIONS(1861), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_DOLLARif] = ACTIONS(1861), - [anon_sym_is] = ACTIONS(3730), - [anon_sym_BANGis] = ACTIONS(3732), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_BANGin] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_select] = ACTIONS(1861), - [anon_sym_lock] = ACTIONS(1861), - [anon_sym_rlock] = ACTIONS(1861), - [anon_sym_unsafe] = ACTIONS(1861), - [anon_sym_sql] = ACTIONS(1861), - [sym_int_literal] = ACTIONS(1861), - [sym_float_literal] = ACTIONS(1861), - [sym_rune_literal] = ACTIONS(1861), - [sym_pseudo_compile_time_identifier] = ACTIONS(1861), - [anon_sym_shared] = ACTIONS(1861), - [anon_sym_map_LBRACK] = ACTIONS(1861), - [anon_sym_chan] = ACTIONS(1861), - [anon_sym_thread] = ACTIONS(1861), - [anon_sym_atomic] = ACTIONS(1861), - [sym___double_quote] = ACTIONS(1861), - [sym___single_quote] = ACTIONS(1861), - [sym___c_double_quote] = ACTIONS(1861), - [sym___c_single_quote] = ACTIONS(1861), - [sym___r_double_quote] = ACTIONS(1861), - [sym___r_single_quote] = ACTIONS(1861), + [sym_line_comment] = STATE(1136), + [sym_block_comment] = STATE(1136), + [sym_reference_expression] = STATE(4591), + [sym_type_reference_expression] = STATE(1708), + [sym_plain_type] = STATE(1684), + [sym__plain_type_without_special] = STATE(1709), + [sym_anon_struct_type] = STATE(1701), + [sym_multi_return_type] = STATE(1709), + [sym_result_type] = STATE(1709), + [sym_option_type] = STATE(1709), + [sym_qualified_type] = STATE(1708), + [sym_fixed_array_type] = STATE(1701), + [sym_array_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_wrong_pointer_type] = STATE(1701), + [sym_map_type] = STATE(1701), + [sym_channel_type] = STATE(1701), + [sym_shared_type] = STATE(1701), + [sym_thread_type] = STATE(1701), + [sym_atomic_type] = STATE(1701), + [sym_generic_type] = STATE(1701), + [sym_function_type] = STATE(1701), + [sym_identifier] = ACTIONS(3656), + [anon_sym_LF] = ACTIONS(571), + [anon_sym_CR] = ACTIONS(571), + [anon_sym_CR_LF] = ACTIONS(571), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_as] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_EQ] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(571), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_LBRACK2] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_LT_DASH] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_GT_GT_GT] = ACTIONS(571), + [anon_sym_AMP_CARET] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_or] = ACTIONS(571), + [anon_sym_QMARK_DOT] = ACTIONS(571), + [anon_sym_POUND_LBRACK] = ACTIONS(571), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(571), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_AMP_CARET_EQ] = ACTIONS(571), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_COLON_EQ] = ACTIONS(571), + [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_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), + [sym_line_comment] = STATE(1137), + [sym_block_comment] = STATE(1137), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(603), + [anon_sym_CR] = ACTIONS(603), + [anon_sym_CR_LF] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_EQ] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(599), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3684), [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(603), + [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(619), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, [1138] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [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(3706), - [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(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_AMP_CARET] = ACTIONS(1881), - [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(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [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), + [sym_line_comment] = STATE(1138), + [sym_block_comment] = STATE(1138), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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_DOT_DOT_DOT] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), }, [1139] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LF] = ACTIONS(2067), - [anon_sym_CR] = ACTIONS(2067), - [anon_sym_CR_LF] = ACTIONS(2067), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(3700), - [anon_sym_fn] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(2067), - [anon_sym_spawn] = ACTIONS(2067), - [anon_sym_json_DOTdecode] = ACTIONS(2067), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_DASH] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_or] = ACTIONS(2067), - [sym_none] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_nil] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_DOLLARif] = ACTIONS(2067), - [anon_sym_is] = ACTIONS(2067), - [anon_sym_BANGis] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_BANGin] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_select] = ACTIONS(2067), - [anon_sym_lock] = ACTIONS(2067), - [anon_sym_rlock] = ACTIONS(2067), - [anon_sym_unsafe] = ACTIONS(2067), - [anon_sym_sql] = ACTIONS(2067), - [sym_int_literal] = ACTIONS(2067), - [sym_float_literal] = ACTIONS(2067), - [sym_rune_literal] = ACTIONS(2067), - [sym_pseudo_compile_time_identifier] = ACTIONS(2067), - [anon_sym_shared] = ACTIONS(2067), - [anon_sym_map_LBRACK] = ACTIONS(2067), - [anon_sym_chan] = ACTIONS(2067), - [anon_sym_thread] = ACTIONS(2067), - [anon_sym_atomic] = ACTIONS(2067), - [sym___double_quote] = ACTIONS(2067), - [sym___single_quote] = ACTIONS(2067), - [sym___c_double_quote] = ACTIONS(2067), - [sym___c_single_quote] = ACTIONS(2067), - [sym___r_double_quote] = ACTIONS(2067), - [sym___r_single_quote] = ACTIONS(2067), + [sym_line_comment] = STATE(1139), + [sym_block_comment] = STATE(1139), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(3704), + [anon_sym_BANGin] = ACTIONS(3706), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), }, [1140] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(1865), - [anon_sym_LF] = ACTIONS(1865), - [anon_sym_CR] = ACTIONS(1865), - [anon_sym_CR_LF] = ACTIONS(1865), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_COMMA] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(3700), - [anon_sym_fn] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_GT] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1865), - [anon_sym_BANG_EQ] = ACTIONS(1865), - [anon_sym_LT_EQ] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(1865), - [anon_sym_mut] = ACTIONS(1865), - [anon_sym_PLUS_PLUS] = ACTIONS(1865), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(1865), - [anon_sym_spawn] = ACTIONS(1865), - [anon_sym_json_DOTdecode] = ACTIONS(1865), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_DASH] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_PIPE_PIPE] = ACTIONS(1865), - [anon_sym_or] = ACTIONS(1865), - [sym_none] = ACTIONS(1865), - [sym_true] = ACTIONS(1865), - [sym_false] = ACTIONS(1865), - [sym_nil] = ACTIONS(1865), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1865), - [anon_sym_is] = ACTIONS(1865), - [anon_sym_BANGis] = ACTIONS(1865), - [anon_sym_in] = ACTIONS(1865), - [anon_sym_BANGin] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_select] = ACTIONS(1865), - [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), - [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), + [sym_line_comment] = STATE(1140), + [sym_block_comment] = STATE(1140), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(1937), + [anon_sym_LF] = ACTIONS(1937), + [anon_sym_CR] = ACTIONS(1937), + [anon_sym_CR_LF] = ACTIONS(1937), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(1937), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_RBRACE] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1937), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_fn] = ACTIONS(1937), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1937), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1937), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1937), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(1937), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_PIPE_PIPE] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3718), + [sym_none] = ACTIONS(1937), + [sym_true] = ACTIONS(1937), + [sym_false] = ACTIONS(1937), + [sym_nil] = ACTIONS(1937), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_DOLLARif] = ACTIONS(1937), + [anon_sym_is] = ACTIONS(3720), + [anon_sym_BANGis] = ACTIONS(3722), + [anon_sym_in] = ACTIONS(3704), + [anon_sym_BANGin] = ACTIONS(3706), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_select] = ACTIONS(1937), + [anon_sym_lock] = ACTIONS(1937), + [anon_sym_rlock] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_sql] = ACTIONS(1937), + [sym_int_literal] = ACTIONS(1937), + [sym_float_literal] = ACTIONS(1937), + [sym_rune_literal] = ACTIONS(1937), + [sym_pseudo_compile_time_identifier] = ACTIONS(1937), + [anon_sym_shared] = ACTIONS(1937), + [anon_sym_map_LBRACK] = ACTIONS(1937), + [anon_sym_chan] = ACTIONS(1937), + [anon_sym_thread] = ACTIONS(1937), + [anon_sym_atomic] = ACTIONS(1937), + [sym___double_quote] = ACTIONS(1937), + [sym___single_quote] = ACTIONS(1937), + [sym___c_double_quote] = ACTIONS(1937), + [sym___c_single_quote] = ACTIONS(1937), + [sym___r_double_quote] = ACTIONS(1937), + [sym___r_single_quote] = ACTIONS(1937), }, [1141] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(1853), - [anon_sym_LF] = ACTIONS(1853), - [anon_sym_CR] = ACTIONS(1853), - [anon_sym_CR_LF] = ACTIONS(1853), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_fn] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_SLASH] = ACTIONS(1853), - [anon_sym_PERCENT] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_GT] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1853), - [anon_sym_BANG_EQ] = ACTIONS(1853), - [anon_sym_LT_EQ] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_mut] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(1853), - [anon_sym_spawn] = ACTIONS(1853), - [anon_sym_json_DOTdecode] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_LT_DASH] = ACTIONS(1853), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1853), - [anon_sym_GT_GT_GT] = ACTIONS(1853), - [anon_sym_AMP_CARET] = ACTIONS(1853), - [anon_sym_AMP_AMP] = ACTIONS(1853), - [anon_sym_PIPE_PIPE] = ACTIONS(1853), - [anon_sym_or] = ACTIONS(1853), - [sym_none] = ACTIONS(1853), - [sym_true] = ACTIONS(1853), - [sym_false] = ACTIONS(1853), - [sym_nil] = ACTIONS(1853), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_DOLLARif] = ACTIONS(1853), - [anon_sym_is] = ACTIONS(1853), - [anon_sym_BANGis] = ACTIONS(1853), - [anon_sym_in] = ACTIONS(1853), - [anon_sym_BANGin] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_select] = ACTIONS(1853), - [anon_sym_lock] = ACTIONS(1853), - [anon_sym_rlock] = ACTIONS(1853), - [anon_sym_unsafe] = ACTIONS(1853), - [anon_sym_sql] = ACTIONS(1853), - [sym_int_literal] = ACTIONS(1853), - [sym_float_literal] = ACTIONS(1853), - [sym_rune_literal] = ACTIONS(1853), - [sym_pseudo_compile_time_identifier] = ACTIONS(1853), - [anon_sym_shared] = ACTIONS(1853), - [anon_sym_map_LBRACK] = ACTIONS(1853), - [anon_sym_chan] = ACTIONS(1853), - [anon_sym_thread] = ACTIONS(1853), - [anon_sym_atomic] = ACTIONS(1853), - [sym___double_quote] = ACTIONS(1853), - [sym___single_quote] = ACTIONS(1853), - [sym___c_double_quote] = ACTIONS(1853), - [sym___c_single_quote] = ACTIONS(1853), - [sym___r_double_quote] = ACTIONS(1853), - [sym___r_single_quote] = ACTIONS(1853), + [sym_line_comment] = STATE(1141), + [sym_block_comment] = STATE(1141), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LF] = ACTIONS(1931), + [anon_sym_CR] = ACTIONS(1931), + [anon_sym_CR_LF] = ACTIONS(1931), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_fn] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1931), + [anon_sym_spawn] = ACTIONS(1931), + [anon_sym_json_DOTdecode] = ACTIONS(1931), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1931), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(1931), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_PIPE_PIPE] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3718), + [sym_none] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_nil] = ACTIONS(1931), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_DOLLARif] = ACTIONS(1931), + [anon_sym_is] = ACTIONS(3720), + [anon_sym_BANGis] = ACTIONS(3722), + [anon_sym_in] = ACTIONS(3704), + [anon_sym_BANGin] = ACTIONS(3706), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_select] = ACTIONS(1931), + [anon_sym_lock] = ACTIONS(1931), + [anon_sym_rlock] = ACTIONS(1931), + [anon_sym_unsafe] = ACTIONS(1931), + [anon_sym_sql] = ACTIONS(1931), + [sym_int_literal] = ACTIONS(1931), + [sym_float_literal] = ACTIONS(1931), + [sym_rune_literal] = ACTIONS(1931), + [sym_pseudo_compile_time_identifier] = ACTIONS(1931), + [anon_sym_shared] = ACTIONS(1931), + [anon_sym_map_LBRACK] = ACTIONS(1931), + [anon_sym_chan] = ACTIONS(1931), + [anon_sym_thread] = ACTIONS(1931), + [anon_sym_atomic] = ACTIONS(1931), + [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), }, [1142] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(3700), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(3706), - [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(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3724), - [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(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_BANGin] = ACTIONS(3716), - [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), + [sym_line_comment] = STATE(1142), + [sym_block_comment] = STATE(1142), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(1875), + [anon_sym_LF] = ACTIONS(1875), + [anon_sym_CR] = ACTIONS(1875), + [anon_sym_CR_LF] = ACTIONS(1875), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_fn] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_GT] = ACTIONS(1875), + [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_DOT_DOT_DOT] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1875), + [anon_sym_spawn] = ACTIONS(1875), + [anon_sym_json_DOTdecode] = ACTIONS(1875), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(1875), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(1875), + [anon_sym_PIPE_PIPE] = ACTIONS(1875), + [anon_sym_or] = ACTIONS(1875), + [sym_none] = ACTIONS(1875), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [sym_nil] = ACTIONS(1875), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_DOLLARif] = ACTIONS(1875), + [anon_sym_is] = ACTIONS(1875), + [anon_sym_BANGis] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1875), + [anon_sym_BANGin] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_select] = ACTIONS(1875), + [anon_sym_lock] = ACTIONS(1875), + [anon_sym_rlock] = ACTIONS(1875), + [anon_sym_unsafe] = ACTIONS(1875), + [anon_sym_sql] = ACTIONS(1875), + [sym_int_literal] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1875), + [sym_rune_literal] = ACTIONS(1875), + [sym_pseudo_compile_time_identifier] = ACTIONS(1875), + [anon_sym_shared] = ACTIONS(1875), + [anon_sym_map_LBRACK] = ACTIONS(1875), + [anon_sym_chan] = ACTIONS(1875), + [anon_sym_thread] = ACTIONS(1875), + [anon_sym_atomic] = ACTIONS(1875), + [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), + }, + [1143] = { + [sym_line_comment] = STATE(1143), + [sym_block_comment] = STATE(1143), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(1903), + [anon_sym_LF] = ACTIONS(1903), + [anon_sym_CR] = ACTIONS(1903), + [anon_sym_CR_LF] = ACTIONS(1903), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_fn] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1903), + [anon_sym_BANG_EQ] = ACTIONS(1903), + [anon_sym_LT_EQ] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_mut] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1903), + [anon_sym_spawn] = ACTIONS(1903), + [anon_sym_json_DOTdecode] = ACTIONS(1903), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_LT_DASH] = ACTIONS(1903), + [anon_sym_LT_LT] = ACTIONS(1903), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym_GT_GT_GT] = ACTIONS(1903), + [anon_sym_AMP_CARET] = ACTIONS(1903), + [anon_sym_AMP_AMP] = ACTIONS(1903), + [anon_sym_PIPE_PIPE] = ACTIONS(1903), + [anon_sym_or] = ACTIONS(1903), + [sym_none] = ACTIONS(1903), + [sym_true] = ACTIONS(1903), + [sym_false] = ACTIONS(1903), + [sym_nil] = ACTIONS(1903), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_DOLLARif] = ACTIONS(1903), + [anon_sym_is] = ACTIONS(1903), + [anon_sym_BANGis] = ACTIONS(1903), + [anon_sym_in] = ACTIONS(1903), + [anon_sym_BANGin] = ACTIONS(1903), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_select] = ACTIONS(1903), + [anon_sym_lock] = ACTIONS(1903), + [anon_sym_rlock] = ACTIONS(1903), + [anon_sym_unsafe] = ACTIONS(1903), + [anon_sym_sql] = ACTIONS(1903), + [sym_int_literal] = ACTIONS(1903), + [sym_float_literal] = ACTIONS(1903), + [sym_rune_literal] = ACTIONS(1903), + [sym_pseudo_compile_time_identifier] = ACTIONS(1903), + [anon_sym_shared] = ACTIONS(1903), + [anon_sym_map_LBRACK] = ACTIONS(1903), + [anon_sym_chan] = ACTIONS(1903), + [anon_sym_thread] = ACTIONS(1903), + [anon_sym_atomic] = ACTIONS(1903), + [sym___double_quote] = ACTIONS(1903), + [sym___single_quote] = ACTIONS(1903), + [sym___c_double_quote] = ACTIONS(1903), + [sym___c_single_quote] = ACTIONS(1903), + [sym___r_double_quote] = ACTIONS(1903), + [sym___r_single_quote] = ACTIONS(1903), + }, + [1144] = { + [sym_line_comment] = STATE(1144), + [sym_block_comment] = STATE(1144), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_PERCENT] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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_DOT_DOT_DOT] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1879), + [anon_sym_GT_GT] = ACTIONS(1879), + [anon_sym_GT_GT_GT] = ACTIONS(1879), + [anon_sym_AMP_CARET] = ACTIONS(1879), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), + }, + [1145] = { + [sym_line_comment] = STATE(1145), + [sym_block_comment] = STATE(1145), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1871), + [anon_sym_spawn] = ACTIONS(1871), + [anon_sym_json_DOTdecode] = ACTIONS(1871), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [sym_none] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_nil] = ACTIONS(1871), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_DOLLARif] = ACTIONS(1871), + [anon_sym_is] = ACTIONS(1871), + [anon_sym_BANGis] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_BANGin] = ACTIONS(1871), + [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), + }, + [1146] = { + [sym_line_comment] = STATE(1146), + [sym_block_comment] = STATE(1146), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(3704), + [anon_sym_BANGin] = ACTIONS(3706), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), + }, + [1147] = { + [sym_line_comment] = STATE(1147), + [sym_block_comment] = STATE(1147), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(565), + [anon_sym_CR] = ACTIONS(565), + [anon_sym_CR_LF] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_EQ_EQ] = ACTIONS(565), + [anon_sym_BANG_EQ] = ACTIONS(565), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_AMP_CARET] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_POUND_LBRACK] = ACTIONS(565), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_BANGin] = ACTIONS(565), + [anon_sym_STAR_EQ] = ACTIONS(565), + [anon_sym_SLASH_EQ] = ACTIONS(565), + [anon_sym_PERCENT_EQ] = ACTIONS(565), + [anon_sym_LT_LT_EQ] = ACTIONS(565), + [anon_sym_GT_GT_EQ] = ACTIONS(565), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(565), + [anon_sym_AMP_EQ] = ACTIONS(565), + [anon_sym_AMP_CARET_EQ] = ACTIONS(565), + [anon_sym_PLUS_EQ] = ACTIONS(565), + [anon_sym_DASH_EQ] = ACTIONS(565), + [anon_sym_PIPE_EQ] = ACTIONS(565), + [anon_sym_CARET_EQ] = ACTIONS(565), + [anon_sym_COLON_EQ] = ACTIONS(565), + [anon_sym_shared] = ACTIONS(619), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1148] = { + [sym_line_comment] = STATE(1148), + [sym_block_comment] = STATE(1148), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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_DOT_DOT_DOT] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), }, - [1143] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(1849), - [anon_sym_LF] = ACTIONS(1849), - [anon_sym_CR] = ACTIONS(1849), - [anon_sym_CR_LF] = ACTIONS(1849), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3718), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(3700), - [anon_sym_fn] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(1849), - [anon_sym_mut] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(1849), - [anon_sym_spawn] = ACTIONS(1849), - [anon_sym_json_DOTdecode] = ACTIONS(1849), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_DASH] = ACTIONS(1849), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3726), - [anon_sym_or] = ACTIONS(3728), - [sym_none] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_nil] = ACTIONS(1849), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_DOLLARif] = ACTIONS(1849), - [anon_sym_is] = ACTIONS(3730), - [anon_sym_BANGis] = ACTIONS(3732), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_BANGin] = ACTIONS(3716), - [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_block_comment] = STATE(1149), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(1915), + [anon_sym_LF] = ACTIONS(1915), + [anon_sym_CR] = ACTIONS(1915), + [anon_sym_CR_LF] = ACTIONS(1915), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_COMMA] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_fn] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_EQ_EQ] = ACTIONS(1915), + [anon_sym_BANG_EQ] = ACTIONS(1915), + [anon_sym_LT_EQ] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1915), + [anon_sym_mut] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1915), + [anon_sym_spawn] = ACTIONS(1915), + [anon_sym_json_DOTdecode] = ACTIONS(1915), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_LT_DASH] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1915), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_GT_GT_GT] = ACTIONS(1915), + [anon_sym_AMP_CARET] = ACTIONS(1915), + [anon_sym_AMP_AMP] = ACTIONS(1915), + [anon_sym_PIPE_PIPE] = ACTIONS(1915), + [anon_sym_or] = ACTIONS(1915), + [sym_none] = ACTIONS(1915), + [sym_true] = ACTIONS(1915), + [sym_false] = ACTIONS(1915), + [sym_nil] = ACTIONS(1915), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_DOLLARif] = ACTIONS(1915), + [anon_sym_is] = ACTIONS(1915), + [anon_sym_BANGis] = ACTIONS(1915), + [anon_sym_in] = ACTIONS(1915), + [anon_sym_BANGin] = ACTIONS(1915), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_select] = ACTIONS(1915), + [anon_sym_lock] = ACTIONS(1915), + [anon_sym_rlock] = ACTIONS(1915), + [anon_sym_unsafe] = ACTIONS(1915), + [anon_sym_sql] = ACTIONS(1915), + [sym_int_literal] = ACTIONS(1915), + [sym_float_literal] = ACTIONS(1915), + [sym_rune_literal] = ACTIONS(1915), + [sym_pseudo_compile_time_identifier] = ACTIONS(1915), + [anon_sym_shared] = ACTIONS(1915), + [anon_sym_map_LBRACK] = ACTIONS(1915), + [anon_sym_chan] = ACTIONS(1915), + [anon_sym_thread] = ACTIONS(1915), + [anon_sym_atomic] = ACTIONS(1915), + [sym___double_quote] = ACTIONS(1915), + [sym___single_quote] = ACTIONS(1915), + [sym___c_double_quote] = ACTIONS(1915), + [sym___c_single_quote] = ACTIONS(1915), + [sym___r_double_quote] = ACTIONS(1915), + [sym___r_single_quote] = ACTIONS(1915), }, - [1144] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(1869), - [anon_sym_LF] = ACTIONS(1869), - [anon_sym_CR] = ACTIONS(1869), - [anon_sym_CR_LF] = ACTIONS(1869), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(1869), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_COMMA] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_fn] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_PERCENT] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1869), - [anon_sym_BANG_EQ] = ACTIONS(1869), - [anon_sym_LT_EQ] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_mut] = ACTIONS(1869), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1869), - [anon_sym_json_DOTdecode] = ACTIONS(1869), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_LT_DASH] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1869), - [anon_sym_GT_GT_GT] = ACTIONS(1869), - [anon_sym_AMP_CARET] = ACTIONS(1869), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_PIPE_PIPE] = ACTIONS(1869), - [anon_sym_or] = ACTIONS(1869), - [sym_none] = ACTIONS(1869), - [sym_true] = ACTIONS(1869), - [sym_false] = ACTIONS(1869), - [sym_nil] = ACTIONS(1869), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_DOLLARif] = ACTIONS(1869), - [anon_sym_is] = ACTIONS(1869), - [anon_sym_BANGis] = ACTIONS(1869), - [anon_sym_in] = ACTIONS(1869), - [anon_sym_BANGin] = ACTIONS(1869), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_select] = ACTIONS(1869), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1869), - [anon_sym_sql] = ACTIONS(1869), - [sym_int_literal] = ACTIONS(1869), - [sym_float_literal] = ACTIONS(1869), - [sym_rune_literal] = ACTIONS(1869), - [sym_pseudo_compile_time_identifier] = ACTIONS(1869), - [anon_sym_shared] = ACTIONS(1869), - [anon_sym_map_LBRACK] = ACTIONS(1869), - [anon_sym_chan] = ACTIONS(1869), - [anon_sym_thread] = ACTIONS(1869), - [anon_sym_atomic] = ACTIONS(1869), - [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), + [1150] = { + [sym_line_comment] = STATE(1150), + [sym_block_comment] = STATE(1150), + [sym_else_branch] = STATE(1180), + [sym_identifier] = ACTIONS(2449), + [anon_sym_LF] = ACTIONS(2449), + [anon_sym_CR] = ACTIONS(2449), + [anon_sym_CR_LF] = ACTIONS(2449), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [anon_sym_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2449), + [anon_sym_go] = ACTIONS(2449), + [anon_sym_spawn] = ACTIONS(2449), + [anon_sym_json_DOTdecode] = ACTIONS(2449), + [anon_sym_LBRACK2] = ACTIONS(2449), + [anon_sym_TILDE] = ACTIONS(2449), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_LT_DASH] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2449), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_AMP_CARET] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_or] = ACTIONS(2449), + [sym_none] = ACTIONS(2449), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_nil] = ACTIONS(2449), + [anon_sym_QMARK_DOT] = ACTIONS(2449), + [anon_sym_POUND_LBRACK] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(3724), + [anon_sym_DOLLARif] = ACTIONS(2449), + [anon_sym_is] = ACTIONS(2449), + [anon_sym_BANGis] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_BANGin] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_select] = ACTIONS(2449), + [anon_sym_lock] = ACTIONS(2449), + [anon_sym_rlock] = ACTIONS(2449), + [anon_sym_unsafe] = ACTIONS(2449), + [anon_sym_sql] = ACTIONS(2449), + [sym_int_literal] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2449), + [sym_rune_literal] = ACTIONS(2449), + [sym_pseudo_compile_time_identifier] = ACTIONS(2449), + [anon_sym_shared] = ACTIONS(2449), + [anon_sym_map_LBRACK] = ACTIONS(2449), + [anon_sym_chan] = ACTIONS(2449), + [anon_sym_thread] = ACTIONS(2449), + [anon_sym_atomic] = ACTIONS(2449), + [sym___double_quote] = ACTIONS(2449), + [sym___single_quote] = ACTIONS(2449), + [sym___c_double_quote] = ACTIONS(2449), + [sym___c_single_quote] = ACTIONS(2449), + [sym___r_double_quote] = ACTIONS(2449), + [sym___r_single_quote] = ACTIONS(2449), }, - [1145] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [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(3706), - [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(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [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(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [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), + [1151] = { + [sym_line_comment] = STATE(1151), + [sym_block_comment] = STATE(1151), + [sym_else_branch] = STATE(1181), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_RPAREN] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(3724), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + [sym___double_quote] = ACTIONS(2457), + [sym___single_quote] = ACTIONS(2457), + [sym___c_double_quote] = ACTIONS(2457), + [sym___c_single_quote] = ACTIONS(2457), + [sym___r_double_quote] = ACTIONS(2457), + [sym___r_single_quote] = ACTIONS(2457), }, - [1146] = { - [sym_reference_expression] = STATE(4508), - [sym_type_reference_expression] = STATE(1797), - [sym_plain_type] = STATE(1925), - [sym__plain_type_without_special] = STATE(1930), - [sym_anon_struct_type] = STATE(1928), - [sym_multi_return_type] = STATE(1930), - [sym_result_type] = STATE(1930), - [sym_option_type] = STATE(1930), - [sym_qualified_type] = STATE(1797), - [sym_fixed_array_type] = STATE(1928), - [sym_array_type] = STATE(1928), - [sym_pointer_type] = STATE(1928), - [sym_wrong_pointer_type] = STATE(1928), - [sym_map_type] = STATE(1928), - [sym_channel_type] = STATE(1928), - [sym_shared_type] = STATE(1928), - [sym_thread_type] = STATE(1928), - [sym_atomic_type] = STATE(1928), - [sym_generic_type] = STATE(1928), - [sym_function_type] = STATE(1928), - [sym_identifier] = ACTIONS(3734), + [1152] = { + [sym_line_comment] = STATE(1152), + [sym_block_comment] = STATE(1152), + [sym_reference_expression] = STATE(4549), + [sym_type_reference_expression] = STATE(1802), + [sym_plain_type] = STATE(1897), + [sym__plain_type_without_special] = STATE(1828), + [sym_anon_struct_type] = STATE(1893), + [sym_multi_return_type] = STATE(1828), + [sym_result_type] = STATE(1828), + [sym_option_type] = STATE(1828), + [sym_qualified_type] = STATE(1802), + [sym_fixed_array_type] = STATE(1893), + [sym_array_type] = STATE(1893), + [sym_pointer_type] = STATE(1893), + [sym_wrong_pointer_type] = STATE(1893), + [sym_map_type] = STATE(1893), + [sym_channel_type] = STATE(1893), + [sym_shared_type] = STATE(1893), + [sym_thread_type] = STATE(1893), + [sym_atomic_type] = STATE(1893), + [sym_generic_type] = STATE(1893), + [sym_function_type] = STATE(1893), + [sym_identifier] = ACTIONS(3726), [anon_sym_LF] = ACTIONS(623), [anon_sym_CR] = ACTIONS(623), [anon_sym_CR_LF] = ACTIONS(623), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(623), [anon_sym_DOT] = ACTIONS(623), [anon_sym_as] = ACTIONS(623), [anon_sym_COMMA] = ACTIONS(623), [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3728), [anon_sym_EQ] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3738), + [anon_sym_fn] = ACTIONS(3730), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3732), [anon_sym_PERCENT] = ACTIONS(623), [anon_sym_LT] = ACTIONS(623), [anon_sym_GT] = ACTIONS(623), @@ -154116,14 +155178,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(623), [anon_sym_GT_EQ] = ACTIONS(623), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3734), [anon_sym_PLUS_PLUS] = ACTIONS(623), [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(3744), - [anon_sym_BANG] = ACTIONS(3746), - [anon_sym_LBRACK2] = ACTIONS(3748), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3738), + [anon_sym_LBRACK2] = ACTIONS(3740), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_AMP] = ACTIONS(3742), [anon_sym_LT_LT] = ACTIONS(623), [anon_sym_GT_GT] = ACTIONS(623), [anon_sym_GT_GT_GT] = ACTIONS(623), @@ -154150,76 +155212,524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(623), [anon_sym_CARET_EQ] = ACTIONS(623), [anon_sym_COLON_EQ] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3752), - [anon_sym_map_LBRACK] = ACTIONS(3754), - [anon_sym_chan] = ACTIONS(3756), + [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_block_comment] = STATE(1153), + [sym_reference_expression] = STATE(4549), + [sym_type_reference_expression] = STATE(1802), + [sym_plain_type] = STATE(1848), + [sym__plain_type_without_special] = STATE(1828), + [sym_anon_struct_type] = STATE(1893), + [sym_multi_return_type] = STATE(1828), + [sym_result_type] = STATE(1828), + [sym_option_type] = STATE(1828), + [sym_qualified_type] = STATE(1802), + [sym_fixed_array_type] = STATE(1893), + [sym_array_type] = STATE(1893), + [sym_pointer_type] = STATE(1893), + [sym_wrong_pointer_type] = STATE(1893), + [sym_map_type] = STATE(1893), + [sym_channel_type] = STATE(1893), + [sym_shared_type] = STATE(1893), + [sym_thread_type] = STATE(1893), + [sym_atomic_type] = STATE(1893), + [sym_generic_type] = STATE(1893), + [sym_function_type] = STATE(1893), + [sym_identifier] = ACTIONS(3726), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_CR] = ACTIONS(627), + [anon_sym_CR_LF] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = 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(3728), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(3732), + [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(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3738), + [anon_sym_LBRACK2] = ACTIONS(3740), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(3742), + [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(3744), + [anon_sym_map_LBRACK] = ACTIONS(3746), + [anon_sym_chan] = ACTIONS(3748), + [anon_sym_thread] = ACTIONS(3750), + [anon_sym_atomic] = ACTIONS(3752), + }, + [1154] = { + [sym_line_comment] = STATE(1154), + [sym_block_comment] = STATE(1154), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_CR] = ACTIONS(1919), + [anon_sym_CR_LF] = ACTIONS(1919), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_COMMA] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_fn] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(1919), + [anon_sym_spawn] = ACTIONS(1919), + [anon_sym_json_DOTdecode] = ACTIONS(1919), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(1919), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(1919), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_PIPE_PIPE] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3718), + [sym_none] = ACTIONS(1919), + [sym_true] = ACTIONS(1919), + [sym_false] = ACTIONS(1919), + [sym_nil] = ACTIONS(1919), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_DOLLARif] = ACTIONS(1919), + [anon_sym_is] = ACTIONS(3754), + [anon_sym_BANGis] = ACTIONS(3756), + [anon_sym_in] = ACTIONS(3704), + [anon_sym_BANGin] = ACTIONS(3706), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_select] = ACTIONS(1919), + [anon_sym_lock] = ACTIONS(1919), + [anon_sym_rlock] = ACTIONS(1919), + [anon_sym_unsafe] = ACTIONS(1919), + [anon_sym_sql] = ACTIONS(1919), + [sym_int_literal] = ACTIONS(1919), + [sym_float_literal] = ACTIONS(1919), + [sym_rune_literal] = ACTIONS(1919), + [sym_pseudo_compile_time_identifier] = ACTIONS(1919), + [anon_sym_shared] = ACTIONS(1919), + [anon_sym_map_LBRACK] = ACTIONS(1919), + [anon_sym_chan] = ACTIONS(1919), + [anon_sym_thread] = ACTIONS(1919), + [anon_sym_atomic] = ACTIONS(1919), + [sym___double_quote] = ACTIONS(1919), + [sym___single_quote] = ACTIONS(1919), + [sym___c_double_quote] = ACTIONS(1919), + [sym___c_single_quote] = ACTIONS(1919), + [sym___r_double_quote] = ACTIONS(1919), + [sym___r_single_quote] = ACTIONS(1919), + }, + [1155] = { + [sym_line_comment] = STATE(1155), + [sym_block_comment] = STATE(1155), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [sym_identifier] = ACTIONS(3758), + [anon_sym_LF] = ACTIONS(3758), + [anon_sym_CR] = ACTIONS(3758), + [anon_sym_CR_LF] = ACTIONS(3758), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3758), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3758), + [anon_sym_COMMA] = ACTIONS(3758), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(3758), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_fn] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3758), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3758), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(3758), + [anon_sym_mut] = ACTIONS(3758), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(3758), + [anon_sym_spawn] = ACTIONS(3758), + [anon_sym_json_DOTdecode] = ACTIONS(3758), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3758), + [anon_sym_CARET] = ACTIONS(3758), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_LT_DASH] = ACTIONS(3758), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_PIPE_PIPE] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3718), + [sym_none] = ACTIONS(3758), + [sym_true] = ACTIONS(3758), + [sym_false] = ACTIONS(3758), + [sym_nil] = ACTIONS(3758), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3758), + [anon_sym_DOLLARif] = ACTIONS(3758), + [anon_sym_is] = ACTIONS(3720), + [anon_sym_BANGis] = ACTIONS(3722), + [anon_sym_in] = ACTIONS(3704), + [anon_sym_BANGin] = ACTIONS(3706), + [anon_sym_match] = ACTIONS(3758), + [anon_sym_select] = ACTIONS(3758), + [anon_sym_lock] = ACTIONS(3758), + [anon_sym_rlock] = ACTIONS(3758), + [anon_sym_unsafe] = ACTIONS(3758), + [anon_sym_sql] = ACTIONS(3758), + [sym_int_literal] = ACTIONS(3758), + [sym_float_literal] = ACTIONS(3758), + [sym_rune_literal] = ACTIONS(3758), + [sym_pseudo_compile_time_identifier] = ACTIONS(3758), + [anon_sym_shared] = ACTIONS(3758), + [anon_sym_map_LBRACK] = ACTIONS(3758), + [anon_sym_chan] = ACTIONS(3758), [anon_sym_thread] = ACTIONS(3758), + [anon_sym_atomic] = ACTIONS(3758), + [sym___double_quote] = ACTIONS(3758), + [sym___single_quote] = ACTIONS(3758), + [sym___c_double_quote] = ACTIONS(3758), + [sym___c_single_quote] = ACTIONS(3758), + [sym___r_double_quote] = ACTIONS(3758), + [sym___r_single_quote] = ACTIONS(3758), + }, + [1156] = { + [sym_line_comment] = STATE(1156), + [sym_block_comment] = STATE(1156), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_COMMA] = ACTIONS(3760), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_RPAREN] = ACTIONS(3760), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_fn] = ACTIONS(3760), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(3760), + [anon_sym_mut] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(3760), + [anon_sym_spawn] = ACTIONS(3760), + [anon_sym_json_DOTdecode] = ACTIONS(3760), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3760), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [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(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3760), + [anon_sym_DOLLARif] = ACTIONS(3760), + [anon_sym_is] = ACTIONS(3720), + [anon_sym_BANGis] = ACTIONS(3722), + [anon_sym_in] = ACTIONS(3704), + [anon_sym_BANGin] = ACTIONS(3706), + [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), }, - [1147] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), + [1157] = { + [sym_line_comment] = STATE(1157), + [sym_block_comment] = STATE(1157), + [sym_reference_expression] = STATE(4549), + [sym_type_reference_expression] = STATE(1802), + [sym_plain_type] = STATE(1891), + [sym__plain_type_without_special] = STATE(1828), + [sym_anon_struct_type] = STATE(1893), + [sym_multi_return_type] = STATE(1828), + [sym_result_type] = STATE(1828), + [sym_option_type] = STATE(1828), + [sym_qualified_type] = STATE(1802), + [sym_fixed_array_type] = STATE(1893), + [sym_array_type] = STATE(1893), + [sym_pointer_type] = STATE(1893), + [sym_wrong_pointer_type] = STATE(1893), + [sym_map_type] = STATE(1893), + [sym_channel_type] = STATE(1893), + [sym_shared_type] = STATE(1893), + [sym_thread_type] = STATE(1893), + [sym_atomic_type] = STATE(1893), + [sym_generic_type] = STATE(1893), + [sym_function_type] = STATE(1893), + [sym_identifier] = ACTIONS(3726), + [anon_sym_LF] = ACTIONS(571), + [anon_sym_CR] = ACTIONS(571), + [anon_sym_CR_LF] = ACTIONS(571), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_as] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(3728), + [anon_sym_EQ] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(3732), + [anon_sym_PERCENT] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_struct] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(571), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3738), + [anon_sym_LBRACK2] = ACTIONS(3740), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_GT_GT_GT] = ACTIONS(571), + [anon_sym_AMP_CARET] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_or] = ACTIONS(571), + [anon_sym_QMARK_DOT] = ACTIONS(571), + [anon_sym_POUND_LBRACK] = ACTIONS(571), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(571), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_AMP_CARET_EQ] = ACTIONS(571), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_COLON_EQ] = ACTIONS(571), + [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), + }, + [1158] = { + [sym_line_comment] = STATE(1158), + [sym_block_comment] = STATE(1158), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), [sym_identifier] = ACTIONS(3762), [anon_sym_LF] = ACTIONS(3762), [anon_sym_CR] = ACTIONS(3762), [anon_sym_CR_LF] = ACTIONS(3762), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), [anon_sym_SEMI] = ACTIONS(3762), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(3708), [anon_sym_LBRACE] = ACTIONS(3762), [anon_sym_COMMA] = ACTIONS(3762), - [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3690), [anon_sym_RPAREN] = ACTIONS(3762), - [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_PIPE] = ACTIONS(3692), [anon_sym_fn] = ACTIONS(3762), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), [anon_sym_DOT_DOT_DOT] = ACTIONS(3762), - [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_LBRACK] = ACTIONS(3694), [anon_sym_struct] = ACTIONS(3762), [anon_sym_mut] = ACTIONS(3762), - [anon_sym_PLUS_PLUS] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), [anon_sym_go] = ACTIONS(3762), [anon_sym_spawn] = ACTIONS(3762), [anon_sym_json_DOTdecode] = ACTIONS(3762), - [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_LBRACK2] = ACTIONS(3700), [anon_sym_TILDE] = ACTIONS(3762), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), [anon_sym_LT_DASH] = ACTIONS(3762), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3726), - [anon_sym_or] = ACTIONS(3728), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_PIPE_PIPE] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3718), [sym_none] = ACTIONS(3762), [sym_true] = ACTIONS(3762), [sym_false] = ACTIONS(3762), [sym_nil] = ACTIONS(3762), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), [anon_sym_if] = ACTIONS(3762), [anon_sym_DOLLARif] = ACTIONS(3762), - [anon_sym_is] = ACTIONS(3730), - [anon_sym_BANGis] = ACTIONS(3732), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3720), + [anon_sym_BANGis] = ACTIONS(3722), + [anon_sym_in] = ACTIONS(3704), + [anon_sym_BANGin] = ACTIONS(3706), [anon_sym_match] = ACTIONS(3762), [anon_sym_select] = ACTIONS(3762), [anon_sym_lock] = ACTIONS(3762), @@ -154242,586 +155752,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3762), [sym___r_single_quote] = ACTIONS(3762), }, - [1148] = { - [sym_reference_expression] = STATE(4508), - [sym_type_reference_expression] = STATE(1797), - [sym_plain_type] = STATE(1896), - [sym__plain_type_without_special] = STATE(1930), - [sym_anon_struct_type] = STATE(1928), - [sym_multi_return_type] = STATE(1930), - [sym_result_type] = STATE(1930), - [sym_option_type] = STATE(1930), - [sym_qualified_type] = STATE(1797), - [sym_fixed_array_type] = STATE(1928), - [sym_array_type] = STATE(1928), - [sym_pointer_type] = STATE(1928), - [sym_wrong_pointer_type] = STATE(1928), - [sym_map_type] = STATE(1928), - [sym_channel_type] = STATE(1928), - [sym_shared_type] = STATE(1928), - [sym_thread_type] = STATE(1928), - [sym_atomic_type] = STATE(1928), - [sym_generic_type] = STATE(1928), - [sym_function_type] = STATE(1928), - [sym_identifier] = ACTIONS(3734), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3736), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(3738), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [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(581), - [anon_sym_struct] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(3744), - [anon_sym_BANG] = ACTIONS(3746), - [anon_sym_LBRACK2] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(3750), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [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(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [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_shared] = ACTIONS(3752), - [anon_sym_map_LBRACK] = ACTIONS(3754), - [anon_sym_chan] = ACTIONS(3756), - [anon_sym_thread] = ACTIONS(3758), - [anon_sym_atomic] = ACTIONS(3760), + [1159] = { + [sym_line_comment] = STATE(1159), + [sym_block_comment] = STATE(1159), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(603), + [anon_sym_CR] = ACTIONS(603), + [anon_sym_CR_LF] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_EQ] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(599), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3764), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(603), + [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(619), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, - [1149] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(3764), - [anon_sym_LF] = ACTIONS(3764), - [anon_sym_CR] = ACTIONS(3764), - [anon_sym_CR_LF] = ACTIONS(3764), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3764), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3718), - [anon_sym_LBRACE] = ACTIONS(3764), - [anon_sym_COMMA] = ACTIONS(3764), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(3764), - [anon_sym_PIPE] = ACTIONS(3700), - [anon_sym_fn] = ACTIONS(3764), - [anon_sym_PLUS] = ACTIONS(3764), - [anon_sym_DASH] = ACTIONS(3764), - [anon_sym_STAR] = ACTIONS(3764), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3764), - [anon_sym_mut] = ACTIONS(3764), - [anon_sym_PLUS_PLUS] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(3764), - [anon_sym_spawn] = ACTIONS(3764), - [anon_sym_json_DOTdecode] = ACTIONS(3764), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3764), - [anon_sym_CARET] = ACTIONS(3764), - [anon_sym_AMP] = ACTIONS(3764), - [anon_sym_LT_DASH] = ACTIONS(3764), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3726), - [anon_sym_or] = ACTIONS(3728), - [sym_none] = ACTIONS(3764), - [sym_true] = ACTIONS(3764), - [sym_false] = ACTIONS(3764), - [sym_nil] = ACTIONS(3764), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(3764), - [anon_sym_DOLLARif] = ACTIONS(3764), - [anon_sym_is] = ACTIONS(3730), - [anon_sym_BANGis] = ACTIONS(3732), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_BANGin] = ACTIONS(3716), - [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), + [1160] = { + [sym_line_comment] = STATE(1160), + [sym_block_comment] = STATE(1160), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_RPAREN] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2829), + [anon_sym_BANG_EQ] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2829), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2829), + [anon_sym_AMP_CARET] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_PIPE_PIPE] = ACTIONS(2829), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2829), + [anon_sym_POUND_LBRACK] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_DOLLARelse] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [sym___double_quote] = ACTIONS(2829), + [sym___single_quote] = ACTIONS(2829), + [sym___c_double_quote] = ACTIONS(2829), + [sym___c_single_quote] = ACTIONS(2829), + [sym___r_double_quote] = ACTIONS(2829), + [sym___r_single_quote] = ACTIONS(2829), }, - [1150] = { - [sym_else_branch] = STATE(1280), - [sym_identifier] = ACTIONS(2635), - [anon_sym_LF] = ACTIONS(2635), - [anon_sym_CR] = ACTIONS(2635), - [anon_sym_CR_LF] = ACTIONS(2635), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_DOT] = ACTIONS(2635), - [anon_sym_as] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_fn] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_SLASH] = ACTIONS(2635), - [anon_sym_PERCENT] = ACTIONS(2635), - [anon_sym_LT] = ACTIONS(2635), - [anon_sym_GT] = ACTIONS(2635), - [anon_sym_EQ_EQ] = ACTIONS(2635), - [anon_sym_BANG_EQ] = ACTIONS(2635), - [anon_sym_LT_EQ] = ACTIONS(2635), - [anon_sym_GT_EQ] = ACTIONS(2635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_mut] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_QMARK] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_go] = ACTIONS(2635), - [anon_sym_spawn] = ACTIONS(2635), - [anon_sym_json_DOTdecode] = ACTIONS(2635), - [anon_sym_LBRACK2] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_LT_DASH] = ACTIONS(2635), - [anon_sym_LT_LT] = ACTIONS(2635), - [anon_sym_GT_GT] = ACTIONS(2635), - [anon_sym_GT_GT_GT] = ACTIONS(2635), - [anon_sym_AMP_CARET] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_PIPE_PIPE] = ACTIONS(2635), - [anon_sym_or] = ACTIONS(2635), - [sym_none] = ACTIONS(2635), - [sym_true] = ACTIONS(2635), - [sym_false] = ACTIONS(2635), - [sym_nil] = ACTIONS(2635), - [anon_sym_QMARK_DOT] = ACTIONS(2635), - [anon_sym_POUND_LBRACK] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(3766), - [anon_sym_DOLLARif] = ACTIONS(2635), - [anon_sym_is] = ACTIONS(2635), - [anon_sym_BANGis] = ACTIONS(2635), - [anon_sym_in] = ACTIONS(2635), - [anon_sym_BANGin] = ACTIONS(2635), - [anon_sym_match] = ACTIONS(2635), - [anon_sym_select] = ACTIONS(2635), - [anon_sym_lock] = ACTIONS(2635), - [anon_sym_rlock] = ACTIONS(2635), - [anon_sym_unsafe] = ACTIONS(2635), - [anon_sym_sql] = ACTIONS(2635), - [sym_int_literal] = ACTIONS(2635), - [sym_float_literal] = ACTIONS(2635), - [sym_rune_literal] = ACTIONS(2635), - [sym_pseudo_compile_time_identifier] = ACTIONS(2635), - [anon_sym_shared] = ACTIONS(2635), - [anon_sym_map_LBRACK] = ACTIONS(2635), - [anon_sym_chan] = ACTIONS(2635), - [anon_sym_thread] = ACTIONS(2635), - [anon_sym_atomic] = ACTIONS(2635), - [sym___double_quote] = ACTIONS(2635), - [sym___single_quote] = ACTIONS(2635), - [sym___c_double_quote] = ACTIONS(2635), - [sym___c_single_quote] = ACTIONS(2635), - [sym___r_double_quote] = ACTIONS(2635), - [sym___r_single_quote] = ACTIONS(2635), + [1161] = { + [sym_line_comment] = STATE(1161), + [sym_block_comment] = STATE(1161), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), }, - [1151] = { - [sym_reference_expression] = STATE(4508), - [sym_type_reference_expression] = STATE(1797), - [sym_plain_type] = STATE(1903), - [sym__plain_type_without_special] = STATE(1930), - [sym_anon_struct_type] = STATE(1928), - [sym_multi_return_type] = STATE(1930), - [sym_result_type] = STATE(1930), - [sym_option_type] = STATE(1930), - [sym_qualified_type] = STATE(1797), - [sym_fixed_array_type] = STATE(1928), - [sym_array_type] = STATE(1928), - [sym_pointer_type] = STATE(1928), - [sym_wrong_pointer_type] = STATE(1928), - [sym_map_type] = STATE(1928), - [sym_channel_type] = STATE(1928), - [sym_shared_type] = STATE(1928), - [sym_thread_type] = STATE(1928), - [sym_atomic_type] = STATE(1928), - [sym_generic_type] = STATE(1928), - [sym_function_type] = STATE(1928), - [sym_identifier] = ACTIONS(3734), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3736), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3738), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3740), - [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(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3744), - [anon_sym_BANG] = ACTIONS(3746), - [anon_sym_LBRACK2] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3750), - [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(3752), - [anon_sym_map_LBRACK] = ACTIONS(3754), - [anon_sym_chan] = ACTIONS(3756), - [anon_sym_thread] = ACTIONS(3758), - [anon_sym_atomic] = ACTIONS(3760), + [1162] = { + [sym_line_comment] = STATE(1162), + [sym_block_comment] = STATE(1162), + [sym_type_parameters] = STATE(1265), + [sym_identifier] = ACTIONS(2743), + [anon_sym_LF] = ACTIONS(2743), + [anon_sym_CR] = ACTIONS(2743), + [anon_sym_CR_LF] = ACTIONS(2743), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_as] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_RPAREN] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [anon_sym_EQ_EQ] = ACTIONS(2743), + [anon_sym_BANG_EQ] = ACTIONS(2743), + [anon_sym_LT_EQ] = ACTIONS(2743), + [anon_sym_GT_EQ] = ACTIONS(2743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_mut] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_go] = ACTIONS(2743), + [anon_sym_spawn] = ACTIONS(2743), + [anon_sym_json_DOTdecode] = ACTIONS(2743), + [anon_sym_LBRACK2] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2743), + [anon_sym_LT_LT] = ACTIONS(2743), + [anon_sym_GT_GT] = ACTIONS(2743), + [anon_sym_GT_GT_GT] = ACTIONS(2743), + [anon_sym_AMP_CARET] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_PIPE_PIPE] = ACTIONS(2743), + [anon_sym_or] = ACTIONS(2743), + [sym_none] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_nil] = ACTIONS(2743), + [anon_sym_QMARK_DOT] = ACTIONS(2743), + [anon_sym_POUND_LBRACK] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_DOLLARif] = ACTIONS(2743), + [anon_sym_is] = ACTIONS(2743), + [anon_sym_BANGis] = ACTIONS(2743), + [anon_sym_in] = ACTIONS(2743), + [anon_sym_BANGin] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_select] = ACTIONS(2743), + [anon_sym_lock] = ACTIONS(2743), + [anon_sym_rlock] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_sql] = ACTIONS(2743), + [sym_int_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), + [sym_rune_literal] = ACTIONS(2743), + [sym_pseudo_compile_time_identifier] = ACTIONS(2743), + [anon_sym_shared] = ACTIONS(2743), + [anon_sym_map_LBRACK] = ACTIONS(2743), + [anon_sym_chan] = ACTIONS(2743), + [anon_sym_thread] = ACTIONS(2743), + [anon_sym_atomic] = ACTIONS(2743), + [sym___double_quote] = ACTIONS(2743), + [sym___single_quote] = ACTIONS(2743), + [sym___c_double_quote] = ACTIONS(2743), + [sym___c_single_quote] = ACTIONS(2743), + [sym___r_double_quote] = ACTIONS(2743), + [sym___r_single_quote] = ACTIONS(2743), }, - [1152] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(1933), - [anon_sym_LF] = ACTIONS(1933), - [anon_sym_CR] = ACTIONS(1933), - [anon_sym_CR_LF] = ACTIONS(1933), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3718), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_COMMA] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(3700), - [anon_sym_fn] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_PLUS_PLUS] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(1933), - [anon_sym_spawn] = ACTIONS(1933), - [anon_sym_json_DOTdecode] = ACTIONS(1933), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(1933), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_DASH] = ACTIONS(1933), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3726), - [anon_sym_or] = ACTIONS(3728), - [sym_none] = ACTIONS(1933), - [sym_true] = ACTIONS(1933), - [sym_false] = ACTIONS(1933), - [sym_nil] = ACTIONS(1933), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_DOLLARif] = ACTIONS(1933), - [anon_sym_is] = ACTIONS(3768), - [anon_sym_BANGis] = ACTIONS(3770), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_BANGin] = ACTIONS(3716), - [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), + [1163] = { + [sym_line_comment] = STATE(1163), + [sym_block_comment] = STATE(1163), + [sym_identifier] = ACTIONS(2765), + [anon_sym_LF] = ACTIONS(2765), + [anon_sym_CR] = ACTIONS(2765), + [anon_sym_CR_LF] = ACTIONS(2765), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2765), + [anon_sym_DOT] = ACTIONS(2765), + [anon_sym_as] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_COMMA] = ACTIONS(2765), + [anon_sym_RBRACE] = ACTIONS(2765), + [anon_sym_LPAREN] = ACTIONS(2765), + [anon_sym_RPAREN] = ACTIONS(2765), + [anon_sym_PIPE] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_PERCENT] = ACTIONS(2765), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_GT] = ACTIONS(2765), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_mut] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2765), + [anon_sym_QMARK] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_go] = ACTIONS(2765), + [anon_sym_spawn] = ACTIONS(2765), + [anon_sym_json_DOTdecode] = ACTIONS(2765), + [anon_sym_LBRACK2] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_CARET] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_LT_DASH] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2765), + [anon_sym_GT_GT] = ACTIONS(2765), + [anon_sym_GT_GT_GT] = ACTIONS(2765), + [anon_sym_AMP_CARET] = ACTIONS(2765), + [anon_sym_AMP_AMP] = ACTIONS(2765), + [anon_sym_PIPE_PIPE] = ACTIONS(2765), + [anon_sym_or] = ACTIONS(2765), + [sym_none] = ACTIONS(2765), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_nil] = ACTIONS(2765), + [anon_sym_QMARK_DOT] = ACTIONS(2765), + [anon_sym_POUND_LBRACK] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_DOLLARif] = ACTIONS(2765), + [anon_sym_DOLLARelse] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(2765), + [anon_sym_BANGis] = ACTIONS(2765), + [anon_sym_in] = ACTIONS(2765), + [anon_sym_BANGin] = ACTIONS(2765), + [anon_sym_match] = ACTIONS(2765), + [anon_sym_select] = ACTIONS(2765), + [anon_sym_lock] = ACTIONS(2765), + [anon_sym_rlock] = ACTIONS(2765), + [anon_sym_unsafe] = ACTIONS(2765), + [anon_sym_sql] = ACTIONS(2765), + [sym_int_literal] = ACTIONS(2765), + [sym_float_literal] = ACTIONS(2765), + [sym_rune_literal] = ACTIONS(2765), + [sym_pseudo_compile_time_identifier] = ACTIONS(2765), + [anon_sym_shared] = ACTIONS(2765), + [anon_sym_map_LBRACK] = ACTIONS(2765), + [anon_sym_chan] = ACTIONS(2765), + [anon_sym_thread] = ACTIONS(2765), + [anon_sym_atomic] = ACTIONS(2765), + [sym___double_quote] = ACTIONS(2765), + [sym___single_quote] = ACTIONS(2765), + [sym___c_double_quote] = ACTIONS(2765), + [sym___c_single_quote] = ACTIONS(2765), + [sym___r_double_quote] = ACTIONS(2765), + [sym___r_single_quote] = ACTIONS(2765), }, - [1153] = { - [sym_else_branch] = STATE(1281), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LF] = ACTIONS(2505), - [anon_sym_CR] = ACTIONS(2505), - [anon_sym_CR_LF] = ACTIONS(2505), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_DOT] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_COMMA] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_fn] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), - [anon_sym_EQ_EQ] = ACTIONS(2505), - [anon_sym_BANG_EQ] = ACTIONS(2505), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_QMARK] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_go] = ACTIONS(2505), - [anon_sym_spawn] = ACTIONS(2505), - [anon_sym_json_DOTdecode] = ACTIONS(2505), - [anon_sym_LBRACK2] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_CARET] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_LT_DASH] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_GT_GT] = ACTIONS(2505), - [anon_sym_GT_GT_GT] = ACTIONS(2505), - [anon_sym_AMP_CARET] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_PIPE_PIPE] = ACTIONS(2505), - [anon_sym_or] = ACTIONS(2505), - [sym_none] = ACTIONS(2505), - [sym_true] = ACTIONS(2505), - [sym_false] = ACTIONS(2505), - [sym_nil] = ACTIONS(2505), - [anon_sym_QMARK_DOT] = ACTIONS(2505), - [anon_sym_POUND_LBRACK] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(3766), - [anon_sym_DOLLARif] = ACTIONS(2505), - [anon_sym_is] = ACTIONS(2505), - [anon_sym_BANGis] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [anon_sym_BANGin] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_select] = ACTIONS(2505), - [anon_sym_lock] = ACTIONS(2505), - [anon_sym_rlock] = ACTIONS(2505), - [anon_sym_unsafe] = ACTIONS(2505), - [anon_sym_sql] = ACTIONS(2505), - [sym_int_literal] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2505), - [sym_rune_literal] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(2505), - [anon_sym_shared] = ACTIONS(2505), - [anon_sym_map_LBRACK] = ACTIONS(2505), - [anon_sym_chan] = ACTIONS(2505), - [anon_sym_thread] = ACTIONS(2505), - [anon_sym_atomic] = ACTIONS(2505), - [sym___double_quote] = ACTIONS(2505), - [sym___single_quote] = ACTIONS(2505), - [sym___c_double_quote] = ACTIONS(2505), - [sym___c_single_quote] = ACTIONS(2505), - [sym___r_double_quote] = ACTIONS(2505), - [sym___r_single_quote] = ACTIONS(2505), + [1164] = { + [sym_line_comment] = STATE(1164), + [sym_block_comment] = STATE(1164), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(2829), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_RPAREN] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2829), + [anon_sym_BANG_EQ] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2829), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2829), + [anon_sym_AMP_CARET] = ACTIONS(2829), + [anon_sym_AMP_AMP] = ACTIONS(2829), + [anon_sym_PIPE_PIPE] = ACTIONS(2829), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2829), + [anon_sym_POUND_LBRACK] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_else] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [sym___double_quote] = ACTIONS(2829), + [sym___single_quote] = ACTIONS(2829), + [sym___c_double_quote] = ACTIONS(2829), + [sym___c_single_quote] = ACTIONS(2829), + [sym___r_double_quote] = ACTIONS(2829), + [sym___r_single_quote] = ACTIONS(2829), }, - [1154] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), + [1165] = { + [sym_line_comment] = STATE(1165), + [sym_block_comment] = STATE(1165), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_RBRACE] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [sym___double_quote] = ACTIONS(2833), + [sym___single_quote] = ACTIONS(2833), + [sym___c_double_quote] = ACTIONS(2833), + [sym___c_single_quote] = ACTIONS(2833), + [sym___r_double_quote] = ACTIONS(2833), + [sym___r_single_quote] = ACTIONS(2833), + }, + [1166] = { + [sym_line_comment] = STATE(1166), + [sym_block_comment] = STATE(1166), + [sym_identifier] = ACTIONS(2821), + [anon_sym_LF] = ACTIONS(2821), + [anon_sym_CR] = ACTIONS(2821), + [anon_sym_CR_LF] = ACTIONS(2821), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_as] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_COMMA] = ACTIONS(2821), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym_RPAREN] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_fn] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_PERCENT] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_EQ_EQ] = ACTIONS(2821), + [anon_sym_BANG_EQ] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2821), + [anon_sym_GT_EQ] = ACTIONS(2821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_mut] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_go] = ACTIONS(2821), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(2821), + [anon_sym_LBRACK2] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_CARET] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_LT_DASH] = ACTIONS(2821), + [anon_sym_LT_LT] = ACTIONS(2821), + [anon_sym_GT_GT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2821), + [anon_sym_AMP_CARET] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_PIPE_PIPE] = ACTIONS(2821), + [anon_sym_or] = ACTIONS(2821), + [sym_none] = ACTIONS(2821), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_nil] = ACTIONS(2821), + [anon_sym_QMARK_DOT] = ACTIONS(2821), + [anon_sym_POUND_LBRACK] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_DOLLARif] = ACTIONS(2821), + [anon_sym_DOLLARelse] = ACTIONS(3768), + [anon_sym_is] = ACTIONS(2821), + [anon_sym_BANGis] = ACTIONS(2821), + [anon_sym_in] = ACTIONS(2821), + [anon_sym_BANGin] = ACTIONS(2821), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2821), + [anon_sym_lock] = ACTIONS(2821), + [anon_sym_rlock] = ACTIONS(2821), + [anon_sym_unsafe] = ACTIONS(2821), + [anon_sym_sql] = ACTIONS(2821), + [sym_int_literal] = ACTIONS(2821), + [sym_float_literal] = ACTIONS(2821), + [sym_rune_literal] = ACTIONS(2821), + [sym_pseudo_compile_time_identifier] = ACTIONS(2821), + [anon_sym_shared] = ACTIONS(2821), + [anon_sym_map_LBRACK] = ACTIONS(2821), + [anon_sym_chan] = ACTIONS(2821), + [anon_sym_thread] = ACTIONS(2821), + [anon_sym_atomic] = ACTIONS(2821), + [sym___double_quote] = ACTIONS(2821), + [sym___single_quote] = ACTIONS(2821), + [sym___c_double_quote] = ACTIONS(2821), + [sym___c_single_quote] = ACTIONS(2821), + [sym___r_double_quote] = ACTIONS(2821), + [sym___r_single_quote] = ACTIONS(2821), + }, + [1167] = { + [sym_line_comment] = STATE(1167), + [sym_block_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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), + }, + [1168] = { + [sym_line_comment] = STATE(1168), + [sym_block_comment] = STATE(1168), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3770), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_PIPE] = ACTIONS(3692), + [anon_sym_fn] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(3770), + [anon_sym_mut] = ACTIONS(3770), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_go] = ACTIONS(3770), + [anon_sym_spawn] = ACTIONS(3770), + [anon_sym_json_DOTdecode] = ACTIONS(3770), + [anon_sym_LBRACK2] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3770), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_PIPE_PIPE] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3718), + [sym_none] = ACTIONS(3770), + [sym_true] = ACTIONS(3770), + [sym_false] = ACTIONS(3770), + [sym_nil] = ACTIONS(3770), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_DOLLARif] = ACTIONS(3770), + [anon_sym_is] = ACTIONS(3720), + [anon_sym_BANGis] = ACTIONS(3722), + [anon_sym_in] = ACTIONS(3704), + [anon_sym_BANGin] = ACTIONS(3706), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_select] = ACTIONS(3770), + [anon_sym_lock] = ACTIONS(3770), + [anon_sym_rlock] = ACTIONS(3770), + [anon_sym_unsafe] = ACTIONS(3770), + [anon_sym_sql] = ACTIONS(3770), + [sym_int_literal] = ACTIONS(3770), + [sym_float_literal] = ACTIONS(3770), + [sym_rune_literal] = ACTIONS(3770), + [sym_pseudo_compile_time_identifier] = ACTIONS(3770), + [anon_sym_shared] = ACTIONS(3770), + [anon_sym_map_LBRACK] = ACTIONS(3770), + [anon_sym_chan] = ACTIONS(3770), + [anon_sym_thread] = ACTIONS(3770), + [anon_sym_atomic] = ACTIONS(3770), + [sym___double_quote] = ACTIONS(3770), + [sym___single_quote] = ACTIONS(3770), + [sym___c_double_quote] = ACTIONS(3770), + [sym___c_single_quote] = ACTIONS(3770), + [sym___r_double_quote] = ACTIONS(3770), + [sym___r_single_quote] = ACTIONS(3770), + }, + [1169] = { + [sym_line_comment] = STATE(1169), + [sym_block_comment] = STATE(1169), + [sym_type_parameters] = STATE(4265), + [sym_argument_list] = STATE(1270), + [sym_or_block] = STATE(1269), [sym_identifier] = ACTIONS(3772), - [anon_sym_LF] = ACTIONS(3772), - [anon_sym_CR] = ACTIONS(3772), - [anon_sym_CR_LF] = ACTIONS(3772), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3772), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3718), + [anon_sym_LF] = ACTIONS(3774), + [anon_sym_CR] = ACTIONS(3774), + [anon_sym_CR_LF] = ACTIONS(3774), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3688), + [anon_sym_as] = ACTIONS(3708), [anon_sym_LBRACE] = ACTIONS(3772), - [anon_sym_COMMA] = ACTIONS(3772), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_RPAREN] = ACTIONS(3772), - [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_COMMA] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_PIPE] = ACTIONS(3692), [anon_sym_fn] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3694), [anon_sym_struct] = ACTIONS(3772), [anon_sym_mut] = ACTIONS(3772), - [anon_sym_PLUS_PLUS] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3698), [anon_sym_go] = ACTIONS(3772), [anon_sym_spawn] = ACTIONS(3772), [anon_sym_json_DOTdecode] = ACTIONS(3772), - [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_LBRACK2] = ACTIONS(3700), [anon_sym_TILDE] = ACTIONS(3772), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_CARET] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3686), [anon_sym_LT_DASH] = ACTIONS(3772), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3726), - [anon_sym_or] = ACTIONS(3728), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_GT_GT_GT] = ACTIONS(3686), + [anon_sym_AMP_CARET] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_PIPE_PIPE] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3718), [sym_none] = ACTIONS(3772), [sym_true] = ACTIONS(3772), [sym_false] = ACTIONS(3772), [sym_nil] = ACTIONS(3772), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_QMARK_DOT] = ACTIONS(3688), + [anon_sym_POUND_LBRACK] = ACTIONS(3700), [anon_sym_if] = ACTIONS(3772), [anon_sym_DOLLARif] = ACTIONS(3772), - [anon_sym_is] = ACTIONS(3730), - [anon_sym_BANGis] = ACTIONS(3732), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3720), + [anon_sym_BANGis] = ACTIONS(3722), + [anon_sym_in] = ACTIONS(3704), + [anon_sym_BANGin] = ACTIONS(3706), [anon_sym_match] = ACTIONS(3772), [anon_sym_select] = ACTIONS(3772), [anon_sym_lock] = ACTIONS(3772), @@ -154844,5232 +156721,5671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3772), [sym___r_single_quote] = ACTIONS(3772), }, - [1155] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(563), - [anon_sym_CR] = ACTIONS(563), - [anon_sym_CR_LF] = ACTIONS(563), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [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(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3774), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [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(563), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(563), - [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(579), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1156] = { - [sym_identifier] = ACTIONS(2727), - [anon_sym_LF] = ACTIONS(2727), - [anon_sym_CR] = ACTIONS(2727), - [anon_sym_CR_LF] = ACTIONS(2727), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_DOT] = ACTIONS(2727), - [anon_sym_as] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [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(2732), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_mut] = ACTIONS(2727), - [anon_sym_COLON] = 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_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), - }, - [1157] = { - [sym_identifier] = ACTIONS(2643), - [anon_sym_LF] = ACTIONS(2643), - [anon_sym_CR] = ACTIONS(2643), - [anon_sym_CR_LF] = ACTIONS(2643), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_RPAREN] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2643), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_EQ_EQ] = ACTIONS(2643), - [anon_sym_BANG_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_mut] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_go] = ACTIONS(2643), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(2643), - [anon_sym_LBRACK2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_LT_DASH] = ACTIONS(2643), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_GT_GT_GT] = ACTIONS(2643), - [anon_sym_AMP_CARET] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_PIPE_PIPE] = ACTIONS(2643), - [anon_sym_or] = ACTIONS(2643), - [sym_none] = ACTIONS(2643), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_nil] = ACTIONS(2643), - [anon_sym_QMARK_DOT] = ACTIONS(2643), - [anon_sym_POUND_LBRACK] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_DOLLARif] = ACTIONS(2643), - [anon_sym_DOLLARelse] = ACTIONS(3776), - [anon_sym_is] = ACTIONS(2643), - [anon_sym_BANGis] = ACTIONS(2643), - [anon_sym_in] = ACTIONS(2643), - [anon_sym_BANGin] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_select] = ACTIONS(2643), - [anon_sym_lock] = ACTIONS(2643), - [anon_sym_rlock] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_sql] = ACTIONS(2643), - [sym_int_literal] = ACTIONS(2643), - [sym_float_literal] = ACTIONS(2643), - [sym_rune_literal] = ACTIONS(2643), - [sym_pseudo_compile_time_identifier] = ACTIONS(2643), - [anon_sym_shared] = ACTIONS(2643), - [anon_sym_map_LBRACK] = ACTIONS(2643), - [anon_sym_chan] = ACTIONS(2643), - [anon_sym_thread] = ACTIONS(2643), - [anon_sym_atomic] = ACTIONS(2643), - [sym___double_quote] = ACTIONS(2643), - [sym___single_quote] = ACTIONS(2643), - [sym___c_double_quote] = ACTIONS(2643), - [sym___c_single_quote] = ACTIONS(2643), - [sym___r_double_quote] = ACTIONS(2643), - [sym___r_single_quote] = ACTIONS(2643), - }, - [1158] = { - [sym_identifier] = ACTIONS(2685), - [anon_sym_LF] = ACTIONS(2685), - [anon_sym_CR] = ACTIONS(2685), - [anon_sym_CR_LF] = ACTIONS(2685), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_DOT] = ACTIONS(2685), - [anon_sym_as] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_COMMA] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym_RPAREN] = ACTIONS(2685), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_fn] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_SLASH] = ACTIONS(2685), - [anon_sym_PERCENT] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_mut] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_QMARK] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_go] = ACTIONS(2685), - [anon_sym_spawn] = ACTIONS(2685), - [anon_sym_json_DOTdecode] = ACTIONS(2685), - [anon_sym_LBRACK2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_LT_DASH] = ACTIONS(2685), - [anon_sym_LT_LT] = ACTIONS(2685), - [anon_sym_GT_GT] = ACTIONS(2685), - [anon_sym_GT_GT_GT] = ACTIONS(2685), - [anon_sym_AMP_CARET] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_PIPE_PIPE] = ACTIONS(2685), - [anon_sym_or] = ACTIONS(2685), - [sym_none] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nil] = ACTIONS(2685), - [anon_sym_QMARK_DOT] = ACTIONS(2685), - [anon_sym_POUND_LBRACK] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_DOLLARif] = ACTIONS(2685), - [anon_sym_DOLLARelse] = ACTIONS(2685), - [anon_sym_is] = ACTIONS(2685), - [anon_sym_BANGis] = ACTIONS(2685), - [anon_sym_in] = ACTIONS(2685), - [anon_sym_BANGin] = ACTIONS(2685), - [anon_sym_match] = ACTIONS(2685), - [anon_sym_select] = ACTIONS(2685), - [anon_sym_lock] = ACTIONS(2685), - [anon_sym_rlock] = ACTIONS(2685), - [anon_sym_unsafe] = ACTIONS(2685), - [anon_sym_sql] = ACTIONS(2685), - [sym_int_literal] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2685), - [sym_rune_literal] = ACTIONS(2685), - [sym_pseudo_compile_time_identifier] = ACTIONS(2685), - [anon_sym_shared] = ACTIONS(2685), - [anon_sym_map_LBRACK] = ACTIONS(2685), - [anon_sym_chan] = ACTIONS(2685), - [anon_sym_thread] = ACTIONS(2685), - [anon_sym_atomic] = ACTIONS(2685), - [sym___double_quote] = ACTIONS(2685), - [sym___single_quote] = ACTIONS(2685), - [sym___c_double_quote] = ACTIONS(2685), - [sym___c_single_quote] = ACTIONS(2685), - [sym___r_double_quote] = ACTIONS(2685), - [sym___r_single_quote] = ACTIONS(2685), - }, - [1159] = { - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_RPAREN] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_AMP_CARET] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2649), - [anon_sym_POUND_LBRACK] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), - }, - [1160] = { - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_RPAREN] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_AMP_CARET] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2649), - [anon_sym_POUND_LBRACK] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_DOLLARelse] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), - }, - [1161] = { - [sym_identifier] = ACTIONS(2873), - [anon_sym_LF] = ACTIONS(2873), - [anon_sym_CR] = ACTIONS(2873), - [anon_sym_CR_LF] = ACTIONS(2873), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2873), - [anon_sym_as] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_COMMA] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_fn] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2873), - [anon_sym_PERCENT] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_GT] = ACTIONS(2873), - [anon_sym_EQ_EQ] = ACTIONS(2873), - [anon_sym_BANG_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2873), - [anon_sym_GT_EQ] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_mut] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_QMARK] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_go] = ACTIONS(2873), - [anon_sym_spawn] = ACTIONS(2873), - [anon_sym_json_DOTdecode] = ACTIONS(2873), - [anon_sym_LBRACK2] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_CARET] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_LT_DASH] = ACTIONS(2873), - [anon_sym_LT_LT] = ACTIONS(2873), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_GT_GT_GT] = ACTIONS(2873), - [anon_sym_AMP_CARET] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [anon_sym_or] = ACTIONS(2873), - [sym_none] = ACTIONS(2873), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [sym_nil] = ACTIONS(2873), - [anon_sym_QMARK_DOT] = ACTIONS(2873), - [anon_sym_POUND_LBRACK] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_DOLLARif] = ACTIONS(2873), - [anon_sym_DOLLARelse] = ACTIONS(3778), - [anon_sym_is] = ACTIONS(2873), - [anon_sym_BANGis] = ACTIONS(2873), - [anon_sym_in] = ACTIONS(2873), - [anon_sym_BANGin] = ACTIONS(2873), - [anon_sym_match] = ACTIONS(2873), - [anon_sym_select] = ACTIONS(2873), - [anon_sym_lock] = ACTIONS(2873), - [anon_sym_rlock] = ACTIONS(2873), - [anon_sym_unsafe] = ACTIONS(2873), - [anon_sym_sql] = ACTIONS(2873), - [sym_int_literal] = ACTIONS(2873), - [sym_float_literal] = ACTIONS(2873), - [sym_rune_literal] = ACTIONS(2873), - [sym_pseudo_compile_time_identifier] = ACTIONS(2873), - [anon_sym_shared] = ACTIONS(2873), - [anon_sym_map_LBRACK] = ACTIONS(2873), - [anon_sym_chan] = ACTIONS(2873), - [anon_sym_thread] = ACTIONS(2873), - [anon_sym_atomic] = ACTIONS(2873), - [sym___double_quote] = ACTIONS(2873), - [sym___single_quote] = ACTIONS(2873), - [sym___c_double_quote] = ACTIONS(2873), - [sym___c_single_quote] = ACTIONS(2873), - [sym___r_double_quote] = ACTIONS(2873), - [sym___r_single_quote] = ACTIONS(2873), - }, - [1162] = { - [sym_type_parameters] = STATE(1213), - [sym_identifier] = ACTIONS(2715), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_CR] = ACTIONS(2715), - [anon_sym_CR_LF] = ACTIONS(2715), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_as] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_COMMA] = ACTIONS(2715), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_RPAREN] = ACTIONS(2715), - [anon_sym_PIPE] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_SLASH] = ACTIONS(2715), - [anon_sym_PERCENT] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2715), - [anon_sym_GT] = ACTIONS(2715), - [anon_sym_EQ_EQ] = ACTIONS(2715), - [anon_sym_BANG_EQ] = ACTIONS(2715), - [anon_sym_LT_EQ] = ACTIONS(2715), - [anon_sym_GT_EQ] = ACTIONS(2715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_mut] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_QMARK] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_go] = ACTIONS(2715), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(2715), - [anon_sym_LBRACK2] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_CARET] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_LT_DASH] = ACTIONS(2715), - [anon_sym_LT_LT] = ACTIONS(2715), - [anon_sym_GT_GT] = ACTIONS(2715), - [anon_sym_GT_GT_GT] = ACTIONS(2715), - [anon_sym_AMP_CARET] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_PIPE_PIPE] = ACTIONS(2715), - [anon_sym_or] = ACTIONS(2715), - [sym_none] = ACTIONS(2715), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [sym_nil] = ACTIONS(2715), - [anon_sym_QMARK_DOT] = ACTIONS(2715), - [anon_sym_POUND_LBRACK] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_DOLLARif] = ACTIONS(2715), - [anon_sym_is] = ACTIONS(2715), - [anon_sym_BANGis] = ACTIONS(2715), - [anon_sym_in] = ACTIONS(2715), - [anon_sym_BANGin] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_select] = ACTIONS(2715), - [anon_sym_lock] = ACTIONS(2715), - [anon_sym_rlock] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_sql] = ACTIONS(2715), - [sym_int_literal] = ACTIONS(2715), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(2715), - [anon_sym_shared] = ACTIONS(2715), - [anon_sym_map_LBRACK] = ACTIONS(2715), - [anon_sym_chan] = ACTIONS(2715), - [anon_sym_thread] = ACTIONS(2715), - [anon_sym_atomic] = ACTIONS(2715), - [sym___double_quote] = ACTIONS(2715), - [sym___single_quote] = ACTIONS(2715), - [sym___c_double_quote] = ACTIONS(2715), - [sym___c_single_quote] = ACTIONS(2715), - [sym___r_double_quote] = ACTIONS(2715), - [sym___r_single_quote] = ACTIONS(2715), - }, - [1163] = { - [sym_identifier] = ACTIONS(2685), - [anon_sym_LF] = ACTIONS(2685), - [anon_sym_CR] = ACTIONS(2685), - [anon_sym_CR_LF] = ACTIONS(2685), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_DOT] = ACTIONS(2685), - [anon_sym_as] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_COMMA] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym_RPAREN] = ACTIONS(2685), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_fn] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_SLASH] = ACTIONS(2685), - [anon_sym_PERCENT] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_EQ_EQ] = ACTIONS(2685), - [anon_sym_BANG_EQ] = ACTIONS(2685), - [anon_sym_LT_EQ] = ACTIONS(2685), - [anon_sym_GT_EQ] = ACTIONS(2685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_mut] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_QMARK] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_go] = ACTIONS(2685), - [anon_sym_spawn] = ACTIONS(2685), - [anon_sym_json_DOTdecode] = ACTIONS(2685), - [anon_sym_LBRACK2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_LT_DASH] = ACTIONS(2685), - [anon_sym_LT_LT] = ACTIONS(2685), - [anon_sym_GT_GT] = ACTIONS(2685), - [anon_sym_GT_GT_GT] = ACTIONS(2685), - [anon_sym_AMP_CARET] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_PIPE_PIPE] = ACTIONS(2685), - [anon_sym_or] = ACTIONS(2685), - [sym_none] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nil] = ACTIONS(2685), - [anon_sym_QMARK_DOT] = ACTIONS(2685), - [anon_sym_POUND_LBRACK] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_else] = ACTIONS(2685), - [anon_sym_DOLLARif] = ACTIONS(2685), - [anon_sym_is] = ACTIONS(2685), - [anon_sym_BANGis] = ACTIONS(2685), - [anon_sym_in] = ACTIONS(2685), - [anon_sym_BANGin] = ACTIONS(2685), - [anon_sym_match] = ACTIONS(2685), - [anon_sym_select] = ACTIONS(2685), - [anon_sym_lock] = ACTIONS(2685), - [anon_sym_rlock] = ACTIONS(2685), - [anon_sym_unsafe] = ACTIONS(2685), - [anon_sym_sql] = ACTIONS(2685), - [sym_int_literal] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2685), - [sym_rune_literal] = ACTIONS(2685), - [sym_pseudo_compile_time_identifier] = ACTIONS(2685), - [anon_sym_shared] = ACTIONS(2685), - [anon_sym_map_LBRACK] = ACTIONS(2685), - [anon_sym_chan] = ACTIONS(2685), - [anon_sym_thread] = ACTIONS(2685), - [anon_sym_atomic] = ACTIONS(2685), - [sym___double_quote] = ACTIONS(2685), - [sym___single_quote] = ACTIONS(2685), - [sym___c_double_quote] = ACTIONS(2685), - [sym___c_single_quote] = ACTIONS(2685), - [sym___r_double_quote] = ACTIONS(2685), - [sym___r_single_quote] = ACTIONS(2685), - }, - [1164] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(3780), - [anon_sym_LF] = ACTIONS(3780), - [anon_sym_CR] = ACTIONS(3780), - [anon_sym_CR_LF] = ACTIONS(3780), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3780), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3718), - [anon_sym_LBRACE] = ACTIONS(3780), - [anon_sym_COMMA] = ACTIONS(3780), - [anon_sym_RBRACE] = ACTIONS(3780), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3700), - [anon_sym_fn] = ACTIONS(3780), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3780), - [anon_sym_mut] = ACTIONS(3780), - [anon_sym_PLUS_PLUS] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(3780), - [anon_sym_spawn] = ACTIONS(3780), - [anon_sym_json_DOTdecode] = ACTIONS(3780), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3780), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_DASH] = ACTIONS(3780), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3726), - [anon_sym_or] = ACTIONS(3728), - [sym_none] = ACTIONS(3780), - [sym_true] = ACTIONS(3780), - [sym_false] = ACTIONS(3780), - [sym_nil] = ACTIONS(3780), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(3780), - [anon_sym_DOLLARif] = ACTIONS(3780), - [anon_sym_is] = ACTIONS(3730), - [anon_sym_BANGis] = ACTIONS(3732), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_BANGin] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3780), - [anon_sym_select] = ACTIONS(3780), - [anon_sym_lock] = ACTIONS(3780), - [anon_sym_rlock] = ACTIONS(3780), - [anon_sym_unsafe] = ACTIONS(3780), - [anon_sym_sql] = ACTIONS(3780), - [sym_int_literal] = ACTIONS(3780), - [sym_float_literal] = ACTIONS(3780), - [sym_rune_literal] = ACTIONS(3780), - [sym_pseudo_compile_time_identifier] = ACTIONS(3780), - [anon_sym_shared] = ACTIONS(3780), - [anon_sym_map_LBRACK] = ACTIONS(3780), - [anon_sym_chan] = ACTIONS(3780), - [anon_sym_thread] = ACTIONS(3780), - [anon_sym_atomic] = ACTIONS(3780), - [sym___double_quote] = ACTIONS(3780), - [sym___single_quote] = ACTIONS(3780), - [sym___c_double_quote] = ACTIONS(3780), - [sym___c_single_quote] = ACTIONS(3780), - [sym___r_double_quote] = ACTIONS(3780), - [sym___r_single_quote] = ACTIONS(3780), - }, - [1165] = { - [sym_type_parameters] = STATE(4331), - [sym_argument_list] = STATE(1224), - [sym_or_block] = STATE(1243), - [sym_identifier] = ACTIONS(3782), - [anon_sym_LF] = ACTIONS(3784), - [anon_sym_CR] = ACTIONS(3784), - [anon_sym_CR_LF] = ACTIONS(3784), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3784), - [anon_sym_DOT] = ACTIONS(3696), - [anon_sym_as] = ACTIONS(3718), - [anon_sym_LBRACE] = ACTIONS(3782), - [anon_sym_COMMA] = ACTIONS(3784), - [anon_sym_RBRACE] = ACTIONS(3782), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_PIPE] = ACTIONS(3700), - [anon_sym_fn] = ACTIONS(3782), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3704), - [anon_sym_BANG_EQ] = ACTIONS(3704), - [anon_sym_LT_EQ] = ACTIONS(3704), - [anon_sym_GT_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3782), - [anon_sym_mut] = ACTIONS(3782), - [anon_sym_PLUS_PLUS] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_go] = ACTIONS(3782), - [anon_sym_spawn] = ACTIONS(3782), - [anon_sym_json_DOTdecode] = ACTIONS(3782), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3782), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_DASH] = ACTIONS(3782), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_AMP_CARET] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3726), - [anon_sym_or] = ACTIONS(3728), - [sym_none] = ACTIONS(3782), - [sym_true] = ACTIONS(3782), - [sym_false] = ACTIONS(3782), - [sym_nil] = ACTIONS(3782), - [anon_sym_QMARK_DOT] = ACTIONS(3696), - [anon_sym_POUND_LBRACK] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(3782), - [anon_sym_DOLLARif] = ACTIONS(3782), - [anon_sym_is] = ACTIONS(3730), - [anon_sym_BANGis] = ACTIONS(3732), - [anon_sym_in] = ACTIONS(3714), - [anon_sym_BANGin] = ACTIONS(3716), - [anon_sym_match] = ACTIONS(3782), - [anon_sym_select] = ACTIONS(3782), - [anon_sym_lock] = ACTIONS(3782), - [anon_sym_rlock] = ACTIONS(3782), - [anon_sym_unsafe] = ACTIONS(3782), - [anon_sym_sql] = ACTIONS(3782), - [sym_int_literal] = ACTIONS(3782), - [sym_float_literal] = ACTIONS(3782), - [sym_rune_literal] = ACTIONS(3782), - [sym_pseudo_compile_time_identifier] = ACTIONS(3782), - [anon_sym_shared] = ACTIONS(3782), - [anon_sym_map_LBRACK] = ACTIONS(3782), - [anon_sym_chan] = ACTIONS(3782), - [anon_sym_thread] = ACTIONS(3782), - [anon_sym_atomic] = ACTIONS(3782), - [sym___double_quote] = ACTIONS(3782), - [sym___single_quote] = ACTIONS(3782), - [sym___c_double_quote] = ACTIONS(3782), - [sym___c_single_quote] = ACTIONS(3782), - [sym___r_double_quote] = ACTIONS(3782), - [sym___r_single_quote] = ACTIONS(3782), - }, - [1166] = { - [sym_identifier] = ACTIONS(3444), - [anon_sym_LF] = ACTIONS(3444), - [anon_sym_CR] = ACTIONS(3444), - [anon_sym_CR_LF] = ACTIONS(3444), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_DOT] = ACTIONS(3444), - [anon_sym_as] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_RPAREN] = ACTIONS(3444), - [anon_sym_PIPE] = ACTIONS(3444), - [anon_sym_fn] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3444), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_PERCENT] = ACTIONS(3444), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_GT] = ACTIONS(3444), - [anon_sym_EQ_EQ] = ACTIONS(3444), - [anon_sym_BANG_EQ] = ACTIONS(3444), - [anon_sym_LT_EQ] = ACTIONS(3444), - [anon_sym_GT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_mut] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_QMARK] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_go] = ACTIONS(3444), - [anon_sym_spawn] = ACTIONS(3444), - [anon_sym_json_DOTdecode] = ACTIONS(3444), - [anon_sym_LBRACK2] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_LT_DASH] = ACTIONS(3444), - [anon_sym_LT_LT] = ACTIONS(3444), - [anon_sym_GT_GT] = ACTIONS(3444), - [anon_sym_GT_GT_GT] = ACTIONS(3444), - [anon_sym_AMP_CARET] = ACTIONS(3444), - [anon_sym_AMP_AMP] = ACTIONS(3444), - [anon_sym_PIPE_PIPE] = ACTIONS(3444), - [anon_sym_or] = ACTIONS(3444), - [sym_none] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_nil] = ACTIONS(3444), - [anon_sym_QMARK_DOT] = ACTIONS(3444), - [anon_sym_POUND_LBRACK] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_DOLLARif] = ACTIONS(3444), - [anon_sym_is] = ACTIONS(3444), - [anon_sym_BANGis] = ACTIONS(3444), - [anon_sym_in] = ACTIONS(3444), - [anon_sym_BANGin] = ACTIONS(3444), - [anon_sym_match] = ACTIONS(3444), - [anon_sym_select] = ACTIONS(3444), - [anon_sym_lock] = ACTIONS(3444), - [anon_sym_rlock] = ACTIONS(3444), - [anon_sym_unsafe] = ACTIONS(3444), - [anon_sym_sql] = ACTIONS(3444), - [sym_int_literal] = ACTIONS(3444), - [sym_float_literal] = ACTIONS(3444), - [sym_rune_literal] = ACTIONS(3444), - [sym_pseudo_compile_time_identifier] = ACTIONS(3444), - [anon_sym_shared] = ACTIONS(3444), - [anon_sym_map_LBRACK] = ACTIONS(3444), - [anon_sym_chan] = ACTIONS(3444), - [anon_sym_thread] = ACTIONS(3444), - [anon_sym_atomic] = ACTIONS(3444), - [sym___double_quote] = ACTIONS(3444), - [sym___single_quote] = ACTIONS(3444), - [sym___c_double_quote] = ACTIONS(3444), - [sym___c_single_quote] = ACTIONS(3444), - [sym___r_double_quote] = ACTIONS(3444), - [sym___r_single_quote] = ACTIONS(3444), - }, - [1167] = { - [sym_identifier] = ACTIONS(3193), - [anon_sym_LF] = ACTIONS(3193), - [anon_sym_CR] = ACTIONS(3193), - [anon_sym_CR_LF] = ACTIONS(3193), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_RPAREN] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [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_DOT_DOT_DOT] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3193), - [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(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [sym_pseudo_compile_time_identifier] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [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), - }, - [1168] = { - [sym_identifier] = ACTIONS(3392), - [anon_sym_LF] = ACTIONS(3392), - [anon_sym_CR] = ACTIONS(3392), - [anon_sym_CR_LF] = ACTIONS(3392), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3392), - [anon_sym_DOT] = ACTIONS(3392), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3392), - [anon_sym_COMMA] = ACTIONS(3392), - [anon_sym_RBRACE] = ACTIONS(3392), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym_RPAREN] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3392), - [anon_sym_fn] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3392), - [anon_sym_SLASH] = ACTIONS(3392), - [anon_sym_PERCENT] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(3392), - [anon_sym_GT] = ACTIONS(3392), - [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_DOT_DOT_DOT] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_mut] = ACTIONS(3392), - [anon_sym_PLUS_PLUS] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3392), - [anon_sym_QMARK] = ACTIONS(3392), - [anon_sym_BANG] = ACTIONS(3392), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3392), - [anon_sym_json_DOTdecode] = ACTIONS(3392), - [anon_sym_LBRACK2] = ACTIONS(3392), - [anon_sym_TILDE] = ACTIONS(3392), - [anon_sym_CARET] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym_LT_DASH] = ACTIONS(3392), - [anon_sym_LT_LT] = ACTIONS(3392), - [anon_sym_GT_GT] = ACTIONS(3392), - [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(3392), - [sym_none] = ACTIONS(3392), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [sym_nil] = ACTIONS(3392), - [anon_sym_QMARK_DOT] = ACTIONS(3392), - [anon_sym_POUND_LBRACK] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_DOLLARif] = ACTIONS(3392), - [anon_sym_is] = ACTIONS(3392), - [anon_sym_BANGis] = ACTIONS(3392), - [anon_sym_in] = ACTIONS(3392), - [anon_sym_BANGin] = ACTIONS(3392), - [anon_sym_match] = ACTIONS(3392), - [anon_sym_select] = ACTIONS(3392), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3392), - [anon_sym_sql] = ACTIONS(3392), - [sym_int_literal] = ACTIONS(3392), - [sym_float_literal] = ACTIONS(3392), - [sym_rune_literal] = ACTIONS(3392), - [sym_pseudo_compile_time_identifier] = ACTIONS(3392), - [anon_sym_shared] = ACTIONS(3392), - [anon_sym_map_LBRACK] = ACTIONS(3392), - [anon_sym_chan] = ACTIONS(3392), - [anon_sym_thread] = ACTIONS(3392), - [anon_sym_atomic] = ACTIONS(3392), - [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), - }, - [1169] = { - [sym_identifier] = ACTIONS(3388), - [anon_sym_LF] = ACTIONS(3388), - [anon_sym_CR] = ACTIONS(3388), - [anon_sym_CR_LF] = ACTIONS(3388), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3388), - [anon_sym_DOT] = ACTIONS(3388), - [anon_sym_as] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_COMMA] = ACTIONS(3388), - [anon_sym_RBRACE] = ACTIONS(3388), - [anon_sym_LPAREN] = ACTIONS(3388), - [anon_sym_RPAREN] = ACTIONS(3388), - [anon_sym_PIPE] = ACTIONS(3388), - [anon_sym_fn] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_SLASH] = ACTIONS(3388), - [anon_sym_PERCENT] = ACTIONS(3388), - [anon_sym_LT] = ACTIONS(3388), - [anon_sym_GT] = ACTIONS(3388), - [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_DOT_DOT_DOT] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3386), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_mut] = ACTIONS(3388), - [anon_sym_PLUS_PLUS] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3388), - [anon_sym_QMARK] = ACTIONS(3388), - [anon_sym_BANG] = ACTIONS(3388), - [anon_sym_go] = ACTIONS(3388), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(3388), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3388), - [anon_sym_CARET] = ACTIONS(3388), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_LT_DASH] = ACTIONS(3388), - [anon_sym_LT_LT] = ACTIONS(3388), - [anon_sym_GT_GT] = ACTIONS(3388), - [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(3388), - [sym_none] = ACTIONS(3388), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [sym_nil] = ACTIONS(3388), - [anon_sym_QMARK_DOT] = ACTIONS(3388), - [anon_sym_POUND_LBRACK] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_DOLLARif] = ACTIONS(3388), - [anon_sym_is] = ACTIONS(3388), - [anon_sym_BANGis] = ACTIONS(3388), - [anon_sym_in] = ACTIONS(3388), - [anon_sym_BANGin] = ACTIONS(3388), - [anon_sym_match] = ACTIONS(3388), - [anon_sym_select] = ACTIONS(3388), - [anon_sym_lock] = ACTIONS(3388), - [anon_sym_rlock] = ACTIONS(3388), - [anon_sym_unsafe] = ACTIONS(3388), - [anon_sym_sql] = ACTIONS(3388), - [sym_int_literal] = ACTIONS(3388), - [sym_float_literal] = ACTIONS(3388), - [sym_rune_literal] = ACTIONS(3388), - [sym_pseudo_compile_time_identifier] = ACTIONS(3388), - [anon_sym_shared] = ACTIONS(3388), - [anon_sym_map_LBRACK] = ACTIONS(3388), - [anon_sym_chan] = ACTIONS(3388), - [anon_sym_thread] = ACTIONS(3388), - [anon_sym_atomic] = ACTIONS(3388), - [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), - }, [1170] = { - [sym_identifier] = ACTIONS(3396), - [anon_sym_LF] = ACTIONS(3396), - [anon_sym_CR] = ACTIONS(3396), - [anon_sym_CR_LF] = ACTIONS(3396), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3396), - [anon_sym_DOT] = ACTIONS(3396), - [anon_sym_as] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3396), - [anon_sym_COMMA] = ACTIONS(3396), - [anon_sym_RBRACE] = ACTIONS(3396), - [anon_sym_LPAREN] = ACTIONS(3396), - [anon_sym_RPAREN] = ACTIONS(3396), - [anon_sym_PIPE] = ACTIONS(3396), - [anon_sym_fn] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_SLASH] = ACTIONS(3396), - [anon_sym_PERCENT] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(3396), - [anon_sym_GT] = ACTIONS(3396), - [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_DOT_DOT_DOT] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3394), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_mut] = ACTIONS(3396), - [anon_sym_PLUS_PLUS] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3396), - [anon_sym_QMARK] = ACTIONS(3396), - [anon_sym_BANG] = ACTIONS(3396), - [anon_sym_go] = ACTIONS(3396), - [anon_sym_spawn] = ACTIONS(3396), - [anon_sym_json_DOTdecode] = ACTIONS(3396), - [anon_sym_LBRACK2] = ACTIONS(3396), - [anon_sym_TILDE] = ACTIONS(3396), - [anon_sym_CARET] = ACTIONS(3396), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3396), - [anon_sym_LT_LT] = ACTIONS(3396), - [anon_sym_GT_GT] = ACTIONS(3396), - [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(3396), - [sym_none] = ACTIONS(3396), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [sym_nil] = ACTIONS(3396), - [anon_sym_QMARK_DOT] = ACTIONS(3396), - [anon_sym_POUND_LBRACK] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_DOLLARif] = ACTIONS(3396), - [anon_sym_is] = ACTIONS(3396), - [anon_sym_BANGis] = ACTIONS(3396), - [anon_sym_in] = ACTIONS(3396), - [anon_sym_BANGin] = ACTIONS(3396), - [anon_sym_match] = ACTIONS(3396), - [anon_sym_select] = ACTIONS(3396), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(3396), - [anon_sym_sql] = ACTIONS(3396), - [sym_int_literal] = ACTIONS(3396), - [sym_float_literal] = ACTIONS(3396), - [sym_rune_literal] = ACTIONS(3396), - [sym_pseudo_compile_time_identifier] = ACTIONS(3396), - [anon_sym_shared] = ACTIONS(3396), - [anon_sym_map_LBRACK] = ACTIONS(3396), - [anon_sym_chan] = ACTIONS(3396), - [anon_sym_thread] = ACTIONS(3396), - [anon_sym_atomic] = ACTIONS(3396), - [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), + [sym_line_comment] = STATE(1170), + [sym_block_comment] = STATE(1170), + [sym_identifier] = ACTIONS(3309), + [anon_sym_LF] = ACTIONS(3309), + [anon_sym_CR] = ACTIONS(3309), + [anon_sym_CR_LF] = ACTIONS(3309), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_DOT] = ACTIONS(3309), + [anon_sym_as] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_RPAREN] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_fn] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [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_DOT_DOT_DOT] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3309), + [anon_sym_mut] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_QMARK] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3776), + [anon_sym_go] = ACTIONS(3309), + [anon_sym_spawn] = ACTIONS(3309), + [anon_sym_json_DOTdecode] = ACTIONS(3309), + [anon_sym_LBRACK2] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_LT_DASH] = ACTIONS(3309), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3309), + [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(3309), + [sym_none] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_nil] = ACTIONS(3309), + [anon_sym_QMARK_DOT] = ACTIONS(3309), + [anon_sym_POUND_LBRACK] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_DOLLARif] = ACTIONS(3309), + [anon_sym_is] = ACTIONS(3309), + [anon_sym_BANGis] = ACTIONS(3309), + [anon_sym_in] = ACTIONS(3309), + [anon_sym_BANGin] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_lock] = ACTIONS(3309), + [anon_sym_rlock] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_sql] = ACTIONS(3309), + [sym_int_literal] = ACTIONS(3309), + [sym_float_literal] = ACTIONS(3309), + [sym_rune_literal] = ACTIONS(3309), + [sym_pseudo_compile_time_identifier] = ACTIONS(3309), + [anon_sym_shared] = ACTIONS(3309), + [anon_sym_map_LBRACK] = ACTIONS(3309), + [anon_sym_chan] = ACTIONS(3309), + [anon_sym_thread] = ACTIONS(3309), + [anon_sym_atomic] = ACTIONS(3309), + [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), }, [1171] = { - [sym_reference_expression] = STATE(4487), - [sym_type_reference_expression] = STATE(1946), - [sym_plain_type] = STATE(1959), - [sym__plain_type_without_special] = STATE(2017), - [sym_anon_struct_type] = STATE(2006), - [sym_multi_return_type] = STATE(2017), - [sym_result_type] = STATE(2017), - [sym_option_type] = STATE(2017), - [sym_qualified_type] = STATE(1946), - [sym_fixed_array_type] = STATE(2006), - [sym_array_type] = STATE(2006), - [sym_pointer_type] = STATE(2006), - [sym_wrong_pointer_type] = STATE(2006), - [sym_map_type] = STATE(2006), - [sym_channel_type] = STATE(2006), - [sym_shared_type] = STATE(2006), - [sym_thread_type] = STATE(2006), - [sym_atomic_type] = STATE(2006), - [sym_generic_type] = STATE(2006), - [sym_function_type] = STATE(2006), - [sym_identifier] = ACTIONS(3786), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(3788), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(3790), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(3792), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_BANG_EQ] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(581), - [anon_sym_GT_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_struct] = ACTIONS(3794), - [anon_sym_COLON] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [anon_sym_QMARK] = ACTIONS(3796), - [anon_sym_BANG] = ACTIONS(3798), - [anon_sym_LBRACK2] = ACTIONS(3800), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(3802), - [anon_sym_LT_DASH] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(581), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(581), - [anon_sym_POUND_LBRACK] = ACTIONS(581), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(581), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(581), - [anon_sym_STAR_EQ] = ACTIONS(581), - [anon_sym_SLASH_EQ] = ACTIONS(581), - [anon_sym_PERCENT_EQ] = ACTIONS(581), - [anon_sym_LT_LT_EQ] = ACTIONS(581), - [anon_sym_GT_GT_EQ] = ACTIONS(581), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(581), - [anon_sym_AMP_EQ] = ACTIONS(581), - [anon_sym_AMP_CARET_EQ] = ACTIONS(581), - [anon_sym_PLUS_EQ] = ACTIONS(581), - [anon_sym_DASH_EQ] = ACTIONS(581), - [anon_sym_PIPE_EQ] = ACTIONS(581), - [anon_sym_CARET_EQ] = ACTIONS(581), - [anon_sym_shared] = ACTIONS(3804), - [anon_sym_map_LBRACK] = ACTIONS(3806), - [anon_sym_chan] = ACTIONS(3808), - [anon_sym_thread] = ACTIONS(3810), - [anon_sym_atomic] = ACTIONS(3812), + [sym_line_comment] = STATE(1171), + [sym_block_comment] = STATE(1171), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LF] = ACTIONS(3059), + [anon_sym_CR] = ACTIONS(3059), + [anon_sym_CR_LF] = ACTIONS(3059), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(3059), + [anon_sym_as] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3059), + [anon_sym_fn] = ACTIONS(3059), + [anon_sym_PLUS] = ACTIONS(3059), + [anon_sym_DASH] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_PERCENT] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(3059), + [anon_sym_GT] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_mut] = ACTIONS(3059), + [anon_sym_PLUS_PLUS] = ACTIONS(3059), + [anon_sym_DASH_DASH] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3059), + [anon_sym_BANG] = ACTIONS(3059), + [anon_sym_go] = ACTIONS(3059), + [anon_sym_spawn] = ACTIONS(3059), + [anon_sym_json_DOTdecode] = ACTIONS(3059), + [anon_sym_LBRACK2] = ACTIONS(3059), + [anon_sym_TILDE] = ACTIONS(3059), + [anon_sym_CARET] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_LT_DASH] = ACTIONS(3059), + [anon_sym_LT_LT] = ACTIONS(3059), + [anon_sym_GT_GT] = ACTIONS(3059), + [anon_sym_GT_GT_GT] = ACTIONS(3059), + [anon_sym_AMP_CARET] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_or] = ACTIONS(3059), + [sym_none] = ACTIONS(3059), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [sym_nil] = ACTIONS(3059), + [anon_sym_QMARK_DOT] = ACTIONS(3059), + [anon_sym_POUND_LBRACK] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_DOLLARif] = ACTIONS(3059), + [anon_sym_is] = ACTIONS(3059), + [anon_sym_BANGis] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(3059), + [anon_sym_match] = ACTIONS(3059), + [anon_sym_select] = ACTIONS(3059), + [anon_sym_lock] = ACTIONS(3059), + [anon_sym_rlock] = ACTIONS(3059), + [anon_sym_unsafe] = ACTIONS(3059), + [anon_sym_sql] = ACTIONS(3059), + [sym_int_literal] = ACTIONS(3059), + [sym_float_literal] = ACTIONS(3059), + [sym_rune_literal] = ACTIONS(3059), + [sym_pseudo_compile_time_identifier] = ACTIONS(3059), + [anon_sym_shared] = ACTIONS(3059), + [anon_sym_map_LBRACK] = ACTIONS(3059), + [anon_sym_chan] = ACTIONS(3059), + [anon_sym_thread] = ACTIONS(3059), + [anon_sym_atomic] = ACTIONS(3059), + [sym___double_quote] = ACTIONS(3059), + [sym___single_quote] = ACTIONS(3059), + [sym___c_double_quote] = ACTIONS(3059), + [sym___c_single_quote] = ACTIONS(3059), + [sym___r_double_quote] = ACTIONS(3059), + [sym___r_single_quote] = ACTIONS(3059), }, [1172] = { - [sym_identifier] = ACTIONS(3348), - [anon_sym_LF] = ACTIONS(3348), - [anon_sym_CR] = ACTIONS(3348), - [anon_sym_CR_LF] = ACTIONS(3348), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3348), - [anon_sym_RPAREN] = ACTIONS(3348), - [anon_sym_PIPE] = ACTIONS(3348), - [anon_sym_fn] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [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_DOT_DOT_DOT] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3348), - [anon_sym_mut] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_QMARK] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_go] = ACTIONS(3348), - [anon_sym_spawn] = ACTIONS(3348), - [anon_sym_json_DOTdecode] = ACTIONS(3348), - [anon_sym_LBRACK2] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3348), - [anon_sym_CARET] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3348), - [anon_sym_LT_DASH] = ACTIONS(3348), - [anon_sym_LT_LT] = ACTIONS(3348), - [anon_sym_GT_GT] = ACTIONS(3348), - [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(3348), - [sym_none] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_nil] = ACTIONS(3348), - [anon_sym_QMARK_DOT] = ACTIONS(3348), - [anon_sym_POUND_LBRACK] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_DOLLARif] = ACTIONS(3348), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_BANGin] = ACTIONS(3348), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3348), - [anon_sym_lock] = ACTIONS(3348), - [anon_sym_rlock] = ACTIONS(3348), - [anon_sym_unsafe] = ACTIONS(3348), - [anon_sym_sql] = ACTIONS(3348), - [sym_int_literal] = ACTIONS(3348), - [sym_float_literal] = ACTIONS(3348), - [sym_rune_literal] = ACTIONS(3348), - [sym_pseudo_compile_time_identifier] = ACTIONS(3348), - [anon_sym_shared] = ACTIONS(3348), - [anon_sym_map_LBRACK] = ACTIONS(3348), - [anon_sym_chan] = ACTIONS(3348), - [anon_sym_thread] = ACTIONS(3348), - [anon_sym_atomic] = ACTIONS(3348), - [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), + [sym_line_comment] = STATE(1172), + [sym_block_comment] = STATE(1172), + [sym_identifier] = ACTIONS(3213), + [anon_sym_LF] = ACTIONS(3213), + [anon_sym_CR] = ACTIONS(3213), + [anon_sym_CR_LF] = ACTIONS(3213), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_DOT] = ACTIONS(3213), + [anon_sym_as] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_COMMA] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_RPAREN] = ACTIONS(3213), + [anon_sym_PIPE] = ACTIONS(3213), + [anon_sym_fn] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_PERCENT] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_GT] = ACTIONS(3213), + [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_DOT_DOT_DOT] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_mut] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_QMARK] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_go] = ACTIONS(3213), + [anon_sym_spawn] = ACTIONS(3213), + [anon_sym_json_DOTdecode] = ACTIONS(3213), + [anon_sym_LBRACK2] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_CARET] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_LT_DASH] = ACTIONS(3213), + [anon_sym_LT_LT] = ACTIONS(3213), + [anon_sym_GT_GT] = ACTIONS(3213), + [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(3213), + [sym_none] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_nil] = ACTIONS(3213), + [anon_sym_QMARK_DOT] = ACTIONS(3213), + [anon_sym_POUND_LBRACK] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_DOLLARif] = ACTIONS(3213), + [anon_sym_is] = ACTIONS(3213), + [anon_sym_BANGis] = ACTIONS(3213), + [anon_sym_in] = ACTIONS(3213), + [anon_sym_BANGin] = ACTIONS(3213), + [anon_sym_match] = ACTIONS(3213), + [anon_sym_select] = ACTIONS(3213), + [anon_sym_lock] = ACTIONS(3213), + [anon_sym_rlock] = ACTIONS(3213), + [anon_sym_unsafe] = ACTIONS(3213), + [anon_sym_sql] = ACTIONS(3213), + [sym_int_literal] = ACTIONS(3213), + [sym_float_literal] = ACTIONS(3213), + [sym_rune_literal] = ACTIONS(3213), + [sym_pseudo_compile_time_identifier] = ACTIONS(3213), + [anon_sym_shared] = ACTIONS(3213), + [anon_sym_map_LBRACK] = ACTIONS(3213), + [anon_sym_chan] = ACTIONS(3213), + [anon_sym_thread] = ACTIONS(3213), + [anon_sym_atomic] = ACTIONS(3213), + [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), }, [1173] = { - [sym_identifier] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_CR] = ACTIONS(3412), - [anon_sym_CR_LF] = ACTIONS(3412), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_as] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_COMMA] = ACTIONS(3412), - [anon_sym_RBRACE] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_fn] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_SLASH] = ACTIONS(3412), - [anon_sym_PERCENT] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [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_DOT_DOT_DOT] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_mut] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_QMARK] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_go] = ACTIONS(3412), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3412), - [anon_sym_LBRACK2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_CARET] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [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(3412), - [sym_none] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_nil] = ACTIONS(3412), - [anon_sym_QMARK_DOT] = ACTIONS(3412), - [anon_sym_POUND_LBRACK] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOLLARif] = ACTIONS(3412), - [anon_sym_is] = ACTIONS(3412), - [anon_sym_BANGis] = ACTIONS(3412), - [anon_sym_in] = ACTIONS(3412), - [anon_sym_BANGin] = ACTIONS(3412), - [anon_sym_match] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_rlock] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_sql] = ACTIONS(3412), - [sym_int_literal] = ACTIONS(3412), - [sym_float_literal] = ACTIONS(3412), - [sym_rune_literal] = ACTIONS(3412), - [sym_pseudo_compile_time_identifier] = ACTIONS(3412), - [anon_sym_shared] = ACTIONS(3412), - [anon_sym_map_LBRACK] = ACTIONS(3412), - [anon_sym_chan] = ACTIONS(3412), - [anon_sym_thread] = ACTIONS(3412), - [anon_sym_atomic] = ACTIONS(3412), - [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), + [sym_line_comment] = STATE(1173), + [sym_block_comment] = STATE(1173), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3207), + [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_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), }, [1174] = { - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_RPAREN] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_AMP_CARET] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2649), - [anon_sym_POUND_LBRACK] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), + [sym_line_comment] = STATE(1174), + [sym_block_comment] = STATE(1174), + [sym_identifier] = ACTIONS(3221), + [anon_sym_LF] = ACTIONS(3221), + [anon_sym_CR] = ACTIONS(3221), + [anon_sym_CR_LF] = ACTIONS(3221), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_as] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_COMMA] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_RPAREN] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_fn] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT] = ACTIONS(3221), + [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_DOT_DOT_DOT] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3221), + [anon_sym_mut] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_go] = ACTIONS(3221), + [anon_sym_spawn] = ACTIONS(3221), + [anon_sym_json_DOTdecode] = ACTIONS(3221), + [anon_sym_LBRACK2] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_CARET] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3221), + [anon_sym_LT_LT] = ACTIONS(3221), + [anon_sym_GT_GT] = ACTIONS(3221), + [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(3221), + [sym_none] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_nil] = ACTIONS(3221), + [anon_sym_QMARK_DOT] = ACTIONS(3221), + [anon_sym_POUND_LBRACK] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_DOLLARif] = ACTIONS(3221), + [anon_sym_is] = ACTIONS(3221), + [anon_sym_BANGis] = ACTIONS(3221), + [anon_sym_in] = ACTIONS(3221), + [anon_sym_BANGin] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_lock] = ACTIONS(3221), + [anon_sym_rlock] = ACTIONS(3221), + [anon_sym_unsafe] = ACTIONS(3221), + [anon_sym_sql] = ACTIONS(3221), + [sym_int_literal] = ACTIONS(3221), + [sym_float_literal] = ACTIONS(3221), + [sym_rune_literal] = ACTIONS(3221), + [sym_pseudo_compile_time_identifier] = ACTIONS(3221), + [anon_sym_shared] = ACTIONS(3221), + [anon_sym_map_LBRACK] = ACTIONS(3221), + [anon_sym_chan] = ACTIONS(3221), + [anon_sym_thread] = ACTIONS(3221), + [anon_sym_atomic] = ACTIONS(3221), + [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), }, [1175] = { - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1175), + [sym_block_comment] = STATE(1175), + [sym_identifier] = ACTIONS(3249), + [anon_sym_LF] = ACTIONS(3249), + [anon_sym_CR] = ACTIONS(3249), + [anon_sym_CR_LF] = ACTIONS(3249), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_RPAREN] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [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_DOT_DOT_DOT] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3249), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_CARET] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_LT_LT] = ACTIONS(3249), + [anon_sym_GT_GT] = ACTIONS(3249), + [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(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3249), + [anon_sym_POUND_LBRACK] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3249), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3249), + [sym_rune_literal] = ACTIONS(3249), + [sym_pseudo_compile_time_identifier] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3249), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [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), }, [1176] = { - [sym_identifier] = ACTIONS(2727), - [anon_sym_LF] = ACTIONS(2727), - [anon_sym_CR] = ACTIONS(2727), - [anon_sym_CR_LF] = ACTIONS(2727), - [sym_comment] = ACTIONS(495), - [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_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), + [sym_line_comment] = STATE(1176), + [sym_block_comment] = STATE(1176), + [sym_identifier] = ACTIONS(3245), + [anon_sym_LF] = ACTIONS(3245), + [anon_sym_CR] = ACTIONS(3245), + [anon_sym_CR_LF] = ACTIONS(3245), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_as] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_COMMA] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_RPAREN] = ACTIONS(3245), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [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_DOT_DOT_DOT] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3245), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3245), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [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(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_QMARK_DOT] = ACTIONS(3245), + [anon_sym_POUND_LBRACK] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_is] = ACTIONS(3245), + [anon_sym_BANGis] = ACTIONS(3245), + [anon_sym_in] = ACTIONS(3245), + [anon_sym_BANGin] = ACTIONS(3245), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3245), + [sym_rune_literal] = ACTIONS(3245), + [sym_pseudo_compile_time_identifier] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3245), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [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), }, [1177] = { - [sym_identifier] = ACTIONS(3283), - [anon_sym_LF] = ACTIONS(3283), - [anon_sym_CR] = ACTIONS(3283), - [anon_sym_CR_LF] = ACTIONS(3283), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1177), + [sym_block_comment] = STATE(1177), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3433), + [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_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), }, [1178] = { - [sym_identifier] = ACTIONS(3440), - [anon_sym_LF] = ACTIONS(3440), - [anon_sym_CR] = ACTIONS(3440), - [anon_sym_CR_LF] = ACTIONS(3440), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3440), - [anon_sym_DOT] = ACTIONS(3440), - [anon_sym_as] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3440), - [anon_sym_COMMA] = ACTIONS(3440), - [anon_sym_RBRACE] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_RPAREN] = ACTIONS(3440), - [anon_sym_PIPE] = ACTIONS(3440), - [anon_sym_fn] = ACTIONS(3440), - [anon_sym_PLUS] = ACTIONS(3440), - [anon_sym_DASH] = ACTIONS(3440), - [anon_sym_STAR] = ACTIONS(3440), - [anon_sym_SLASH] = ACTIONS(3440), - [anon_sym_PERCENT] = ACTIONS(3440), - [anon_sym_LT] = ACTIONS(3440), - [anon_sym_GT] = ACTIONS(3440), - [anon_sym_EQ_EQ] = ACTIONS(3440), - [anon_sym_BANG_EQ] = ACTIONS(3440), - [anon_sym_LT_EQ] = ACTIONS(3440), - [anon_sym_GT_EQ] = ACTIONS(3440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_struct] = ACTIONS(3440), - [anon_sym_mut] = ACTIONS(3440), - [anon_sym_PLUS_PLUS] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3440), - [anon_sym_QMARK] = ACTIONS(3440), - [anon_sym_BANG] = ACTIONS(3440), - [anon_sym_go] = ACTIONS(3440), - [anon_sym_spawn] = ACTIONS(3440), - [anon_sym_json_DOTdecode] = ACTIONS(3440), - [anon_sym_LBRACK2] = ACTIONS(3440), - [anon_sym_TILDE] = ACTIONS(3440), - [anon_sym_CARET] = ACTIONS(3440), - [anon_sym_AMP] = ACTIONS(3440), - [anon_sym_LT_DASH] = ACTIONS(3440), - [anon_sym_LT_LT] = ACTIONS(3440), - [anon_sym_GT_GT] = ACTIONS(3440), - [anon_sym_GT_GT_GT] = ACTIONS(3440), - [anon_sym_AMP_CARET] = ACTIONS(3440), - [anon_sym_AMP_AMP] = ACTIONS(3440), - [anon_sym_PIPE_PIPE] = ACTIONS(3440), - [anon_sym_or] = ACTIONS(3440), - [sym_none] = ACTIONS(3440), - [sym_true] = ACTIONS(3440), - [sym_false] = ACTIONS(3440), - [sym_nil] = ACTIONS(3440), - [anon_sym_QMARK_DOT] = ACTIONS(3440), - [anon_sym_POUND_LBRACK] = ACTIONS(3440), - [anon_sym_if] = ACTIONS(3440), - [anon_sym_DOLLARif] = ACTIONS(3440), - [anon_sym_is] = ACTIONS(3440), - [anon_sym_BANGis] = ACTIONS(3440), - [anon_sym_in] = ACTIONS(3440), - [anon_sym_BANGin] = ACTIONS(3440), - [anon_sym_match] = ACTIONS(3440), - [anon_sym_select] = ACTIONS(3440), - [anon_sym_lock] = ACTIONS(3440), - [anon_sym_rlock] = ACTIONS(3440), - [anon_sym_unsafe] = ACTIONS(3440), - [anon_sym_sql] = ACTIONS(3440), - [sym_int_literal] = ACTIONS(3440), - [sym_float_literal] = ACTIONS(3440), - [sym_rune_literal] = ACTIONS(3440), - [sym_pseudo_compile_time_identifier] = ACTIONS(3440), - [anon_sym_shared] = ACTIONS(3440), - [anon_sym_map_LBRACK] = ACTIONS(3440), - [anon_sym_chan] = ACTIONS(3440), - [anon_sym_thread] = ACTIONS(3440), - [anon_sym_atomic] = ACTIONS(3440), - [sym___double_quote] = ACTIONS(3440), - [sym___single_quote] = ACTIONS(3440), - [sym___c_double_quote] = ACTIONS(3440), - [sym___c_single_quote] = ACTIONS(3440), - [sym___r_double_quote] = ACTIONS(3440), - [sym___r_single_quote] = ACTIONS(3440), + [sym_line_comment] = STATE(1178), + [sym_block_comment] = STATE(1178), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3415), + [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_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), }, [1179] = { - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1179), + [sym_block_comment] = STATE(1179), + [sym_identifier] = ACTIONS(3253), + [anon_sym_LF] = ACTIONS(3253), + [anon_sym_CR] = ACTIONS(3253), + [anon_sym_CR_LF] = ACTIONS(3253), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_DOT] = ACTIONS(3253), + [anon_sym_as] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(3253), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_RPAREN] = ACTIONS(3253), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_fn] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_PERCENT] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3253), + [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_DOT_DOT_DOT] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3253), + [anon_sym_mut] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_go] = ACTIONS(3253), + [anon_sym_spawn] = ACTIONS(3253), + [anon_sym_json_DOTdecode] = ACTIONS(3253), + [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_LT_DASH] = ACTIONS(3253), + [anon_sym_LT_LT] = ACTIONS(3253), + [anon_sym_GT_GT] = ACTIONS(3253), + [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(3253), + [sym_none] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_nil] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3253), + [anon_sym_POUND_LBRACK] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_DOLLARif] = ACTIONS(3253), + [anon_sym_is] = ACTIONS(3253), + [anon_sym_BANGis] = ACTIONS(3253), + [anon_sym_in] = ACTIONS(3253), + [anon_sym_BANGin] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_select] = ACTIONS(3253), + [anon_sym_lock] = ACTIONS(3253), + [anon_sym_rlock] = ACTIONS(3253), + [anon_sym_unsafe] = ACTIONS(3253), + [anon_sym_sql] = ACTIONS(3253), + [sym_int_literal] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3253), + [sym_rune_literal] = ACTIONS(3253), + [sym_pseudo_compile_time_identifier] = ACTIONS(3253), + [anon_sym_shared] = ACTIONS(3253), + [anon_sym_map_LBRACK] = ACTIONS(3253), + [anon_sym_chan] = ACTIONS(3253), + [anon_sym_thread] = ACTIONS(3253), + [anon_sym_atomic] = ACTIONS(3253), + [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), }, [1180] = { - [sym_identifier] = ACTIONS(3209), - [anon_sym_LF] = ACTIONS(3209), - [anon_sym_CR] = ACTIONS(3209), - [anon_sym_CR_LF] = ACTIONS(3209), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym_DOT] = ACTIONS(3209), - [anon_sym_as] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_COMMA] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(3209), - [anon_sym_RPAREN] = ACTIONS(3209), - [anon_sym_PIPE] = ACTIONS(3209), - [anon_sym_fn] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_PERCENT] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_GT] = ACTIONS(3209), - [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_DOT_DOT_DOT] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3209), - [anon_sym_mut] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_QMARK] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_go] = ACTIONS(3209), - [anon_sym_spawn] = ACTIONS(3209), - [anon_sym_json_DOTdecode] = ACTIONS(3209), - [anon_sym_LBRACK2] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_CARET] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3209), - [anon_sym_LT_DASH] = ACTIONS(3209), - [anon_sym_LT_LT] = ACTIONS(3209), - [anon_sym_GT_GT] = ACTIONS(3209), - [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(3209), - [sym_none] = ACTIONS(3209), - [sym_true] = ACTIONS(3209), - [sym_false] = ACTIONS(3209), - [sym_nil] = ACTIONS(3209), - [anon_sym_QMARK_DOT] = ACTIONS(3209), - [anon_sym_POUND_LBRACK] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_DOLLARif] = ACTIONS(3209), - [anon_sym_is] = ACTIONS(3209), - [anon_sym_BANGis] = ACTIONS(3209), - [anon_sym_in] = ACTIONS(3209), - [anon_sym_BANGin] = ACTIONS(3209), - [anon_sym_match] = ACTIONS(3209), - [anon_sym_select] = ACTIONS(3209), - [anon_sym_lock] = ACTIONS(3209), - [anon_sym_rlock] = ACTIONS(3209), - [anon_sym_unsafe] = ACTIONS(3209), - [anon_sym_sql] = ACTIONS(3209), - [sym_int_literal] = ACTIONS(3209), - [sym_float_literal] = ACTIONS(3209), - [sym_rune_literal] = ACTIONS(3209), - [sym_pseudo_compile_time_identifier] = ACTIONS(3209), - [anon_sym_shared] = ACTIONS(3209), - [anon_sym_map_LBRACK] = ACTIONS(3209), - [anon_sym_chan] = ACTIONS(3209), - [anon_sym_thread] = ACTIONS(3209), - [anon_sym_atomic] = ACTIONS(3209), - [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_line_comment] = STATE(1180), + [sym_block_comment] = STATE(1180), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3203), + [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_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), }, [1181] = { - [sym_identifier] = ACTIONS(3328), - [anon_sym_LF] = ACTIONS(3328), - [anon_sym_CR] = ACTIONS(3328), - [anon_sym_CR_LF] = ACTIONS(3328), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_RPAREN] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_PERCENT] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_GT] = ACTIONS(3328), - [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_DOT_DOT_DOT] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_mut] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [anon_sym_QMARK] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_go] = ACTIONS(3328), - [anon_sym_spawn] = ACTIONS(3328), - [anon_sym_json_DOTdecode] = ACTIONS(3328), - [anon_sym_LBRACK2] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_LT_DASH] = ACTIONS(3328), - [anon_sym_LT_LT] = ACTIONS(3328), - [anon_sym_GT_GT] = ACTIONS(3328), - [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(3328), - [sym_none] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_nil] = ACTIONS(3328), - [anon_sym_QMARK_DOT] = ACTIONS(3328), - [anon_sym_POUND_LBRACK] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_DOLLARif] = ACTIONS(3328), - [anon_sym_is] = ACTIONS(3328), - [anon_sym_BANGis] = ACTIONS(3328), - [anon_sym_in] = ACTIONS(3328), - [anon_sym_BANGin] = ACTIONS(3328), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3328), - [anon_sym_lock] = ACTIONS(3328), - [anon_sym_rlock] = ACTIONS(3328), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3328), - [sym_int_literal] = ACTIONS(3328), - [sym_float_literal] = ACTIONS(3328), - [sym_rune_literal] = ACTIONS(3328), - [sym_pseudo_compile_time_identifier] = ACTIONS(3328), - [anon_sym_shared] = ACTIONS(3328), - [anon_sym_map_LBRACK] = ACTIONS(3328), - [anon_sym_chan] = ACTIONS(3328), - [anon_sym_thread] = ACTIONS(3328), - [anon_sym_atomic] = ACTIONS(3328), - [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), + [sym_line_comment] = STATE(1181), + [sym_block_comment] = STATE(1181), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3199), + [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_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), }, [1182] = { - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1182), + [sym_block_comment] = STATE(1182), + [sym_identifier] = ACTIONS(3191), + [anon_sym_LF] = ACTIONS(3191), + [anon_sym_CR] = ACTIONS(3191), + [anon_sym_CR_LF] = ACTIONS(3191), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_as] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_COMMA] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_RPAREN] = ACTIONS(3191), + [anon_sym_PIPE] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_PERCENT] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3191), + [anon_sym_BANG_EQ] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_mut] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_go] = ACTIONS(3191), + [anon_sym_spawn] = ACTIONS(3191), + [anon_sym_json_DOTdecode] = ACTIONS(3191), + [anon_sym_LBRACK2] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_LT_DASH] = ACTIONS(3191), + [anon_sym_LT_LT] = ACTIONS(3191), + [anon_sym_GT_GT] = ACTIONS(3191), + [anon_sym_GT_GT_GT] = ACTIONS(3191), + [anon_sym_AMP_CARET] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_PIPE_PIPE] = ACTIONS(3191), + [anon_sym_or] = ACTIONS(3191), + [sym_none] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_nil] = ACTIONS(3191), + [anon_sym_QMARK_DOT] = ACTIONS(3191), + [anon_sym_POUND_LBRACK] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_DOLLARif] = ACTIONS(3191), + [anon_sym_is] = ACTIONS(3191), + [anon_sym_BANGis] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_BANGin] = ACTIONS(3191), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_select] = ACTIONS(3191), + [anon_sym_lock] = ACTIONS(3191), + [anon_sym_rlock] = ACTIONS(3191), + [anon_sym_unsafe] = ACTIONS(3191), + [anon_sym_sql] = ACTIONS(3191), + [sym_int_literal] = ACTIONS(3191), + [sym_float_literal] = ACTIONS(3191), + [sym_rune_literal] = ACTIONS(3191), + [sym_pseudo_compile_time_identifier] = ACTIONS(3191), + [anon_sym_shared] = ACTIONS(3191), + [anon_sym_map_LBRACK] = ACTIONS(3191), + [anon_sym_chan] = ACTIONS(3191), + [anon_sym_thread] = ACTIONS(3191), + [anon_sym_atomic] = ACTIONS(3191), + [sym___double_quote] = ACTIONS(3191), + [sym___single_quote] = ACTIONS(3191), + [sym___c_double_quote] = ACTIONS(3191), + [sym___c_single_quote] = ACTIONS(3191), + [sym___r_double_quote] = ACTIONS(3191), + [sym___r_single_quote] = ACTIONS(3191), }, [1183] = { - [sym_identifier] = ACTIONS(3332), - [anon_sym_LF] = ACTIONS(3332), - [anon_sym_CR] = ACTIONS(3332), - [anon_sym_CR_LF] = ACTIONS(3332), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_DOT] = ACTIONS(3332), - [anon_sym_as] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_PIPE] = ACTIONS(3332), - [anon_sym_fn] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_PERCENT] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_GT] = ACTIONS(3332), - [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_DOT_DOT_DOT] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_mut] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [anon_sym_QMARK] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_go] = ACTIONS(3332), - [anon_sym_spawn] = ACTIONS(3332), - [anon_sym_json_DOTdecode] = ACTIONS(3332), - [anon_sym_LBRACK2] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_CARET] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_LT_DASH] = ACTIONS(3332), - [anon_sym_LT_LT] = ACTIONS(3332), - [anon_sym_GT_GT] = ACTIONS(3332), - [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(3332), - [sym_none] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_nil] = ACTIONS(3332), - [anon_sym_QMARK_DOT] = ACTIONS(3332), - [anon_sym_POUND_LBRACK] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_DOLLARif] = ACTIONS(3332), - [anon_sym_is] = ACTIONS(3332), - [anon_sym_BANGis] = ACTIONS(3332), - [anon_sym_in] = ACTIONS(3332), - [anon_sym_BANGin] = ACTIONS(3332), - [anon_sym_match] = ACTIONS(3332), - [anon_sym_select] = ACTIONS(3332), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3332), - [anon_sym_sql] = ACTIONS(3332), - [sym_int_literal] = ACTIONS(3332), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3332), - [anon_sym_shared] = ACTIONS(3332), - [anon_sym_map_LBRACK] = ACTIONS(3332), - [anon_sym_chan] = ACTIONS(3332), - [anon_sym_thread] = ACTIONS(3332), - [anon_sym_atomic] = ACTIONS(3332), - [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), + [sym_line_comment] = STATE(1183), + [sym_block_comment] = STATE(1183), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3315), + [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_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), }, [1184] = { - [sym_identifier] = ACTIONS(3336), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_CR] = ACTIONS(3336), - [anon_sym_CR_LF] = ACTIONS(3336), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_as] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_COMMA] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_RPAREN] = ACTIONS(3336), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_PERCENT] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_GT] = ACTIONS(3336), - [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_DOT_DOT_DOT] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3336), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3336), - [anon_sym_LT_LT] = ACTIONS(3336), - [anon_sym_GT_GT] = ACTIONS(3336), - [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(3336), - [sym_none] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_nil] = ACTIONS(3336), - [anon_sym_QMARK_DOT] = ACTIONS(3336), - [anon_sym_POUND_LBRACK] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_DOLLARif] = ACTIONS(3336), - [anon_sym_is] = ACTIONS(3336), - [anon_sym_BANGis] = ACTIONS(3336), - [anon_sym_in] = ACTIONS(3336), - [anon_sym_BANGin] = ACTIONS(3336), - [anon_sym_match] = ACTIONS(3336), - [anon_sym_select] = ACTIONS(3336), - [anon_sym_lock] = ACTIONS(3336), - [anon_sym_rlock] = ACTIONS(3336), - [anon_sym_unsafe] = ACTIONS(3336), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3336), - [sym_float_literal] = ACTIONS(3336), - [sym_rune_literal] = ACTIONS(3336), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(3336), - [anon_sym_map_LBRACK] = ACTIONS(3336), - [anon_sym_chan] = ACTIONS(3336), - [anon_sym_thread] = ACTIONS(3336), - [anon_sym_atomic] = ACTIONS(3336), - [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), + [sym_line_comment] = STATE(1184), + [sym_block_comment] = STATE(1184), + [sym_identifier] = ACTIONS(3289), + [anon_sym_LF] = ACTIONS(3289), + [anon_sym_CR] = ACTIONS(3289), + [anon_sym_CR_LF] = ACTIONS(3289), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_as] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_COMMA] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_RPAREN] = ACTIONS(3289), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_fn] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [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_DOT_DOT_DOT] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_mut] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_go] = ACTIONS(3289), + [anon_sym_spawn] = ACTIONS(3289), + [anon_sym_json_DOTdecode] = ACTIONS(3289), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_LT_DASH] = ACTIONS(3289), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(3289), + [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(3289), + [sym_none] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_nil] = ACTIONS(3289), + [anon_sym_QMARK_DOT] = ACTIONS(3289), + [anon_sym_POUND_LBRACK] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_DOLLARif] = ACTIONS(3289), + [anon_sym_is] = ACTIONS(3289), + [anon_sym_BANGis] = ACTIONS(3289), + [anon_sym_in] = ACTIONS(3289), + [anon_sym_BANGin] = ACTIONS(3289), + [anon_sym_match] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_rlock] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_sql] = ACTIONS(3289), + [sym_int_literal] = ACTIONS(3289), + [sym_float_literal] = ACTIONS(3289), + [sym_rune_literal] = ACTIONS(3289), + [sym_pseudo_compile_time_identifier] = ACTIONS(3289), + [anon_sym_shared] = ACTIONS(3289), + [anon_sym_map_LBRACK] = ACTIONS(3289), + [anon_sym_chan] = ACTIONS(3289), + [anon_sym_thread] = ACTIONS(3289), + [anon_sym_atomic] = ACTIONS(3289), + [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), }, [1185] = { - [sym_identifier] = ACTIONS(3340), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_CR] = ACTIONS(3340), - [anon_sym_CR_LF] = ACTIONS(3340), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_COMMA] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_RPAREN] = ACTIONS(3340), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_fn] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [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_DOT_DOT_DOT] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_mut] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [anon_sym_QMARK] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_go] = ACTIONS(3340), - [anon_sym_spawn] = ACTIONS(3340), - [anon_sym_json_DOTdecode] = ACTIONS(3340), - [anon_sym_LBRACK2] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_CARET] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_LT_DASH] = ACTIONS(3340), - [anon_sym_LT_LT] = ACTIONS(3340), - [anon_sym_GT_GT] = ACTIONS(3340), - [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(3340), - [sym_none] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_nil] = ACTIONS(3340), - [anon_sym_QMARK_DOT] = ACTIONS(3340), - [anon_sym_POUND_LBRACK] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_DOLLARif] = ACTIONS(3340), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3340), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_BANGin] = ACTIONS(3340), - [anon_sym_match] = ACTIONS(3340), - [anon_sym_select] = ACTIONS(3340), - [anon_sym_lock] = ACTIONS(3340), - [anon_sym_rlock] = ACTIONS(3340), - [anon_sym_unsafe] = ACTIONS(3340), - [anon_sym_sql] = ACTIONS(3340), - [sym_int_literal] = ACTIONS(3340), - [sym_float_literal] = ACTIONS(3340), - [sym_rune_literal] = ACTIONS(3340), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(3340), - [anon_sym_map_LBRACK] = ACTIONS(3340), - [anon_sym_chan] = ACTIONS(3340), - [anon_sym_thread] = ACTIONS(3340), - [anon_sym_atomic] = ACTIONS(3340), - [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), + [sym_line_comment] = STATE(1185), + [sym_block_comment] = STATE(1185), + [sym_identifier] = ACTIONS(3293), + [anon_sym_LF] = ACTIONS(3293), + [anon_sym_CR] = ACTIONS(3293), + [anon_sym_CR_LF] = ACTIONS(3293), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_DOT] = ACTIONS(3293), + [anon_sym_as] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3293), + [anon_sym_fn] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_PERCENT] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_GT] = ACTIONS(3293), + [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_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_struct] = ACTIONS(3293), + [anon_sym_mut] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_QMARK] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_go] = ACTIONS(3293), + [anon_sym_spawn] = ACTIONS(3293), + [anon_sym_json_DOTdecode] = ACTIONS(3293), + [anon_sym_LBRACK2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_LT_DASH] = ACTIONS(3293), + [anon_sym_LT_LT] = ACTIONS(3293), + [anon_sym_GT_GT] = ACTIONS(3293), + [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(3293), + [sym_none] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_nil] = ACTIONS(3293), + [anon_sym_QMARK_DOT] = ACTIONS(3293), + [anon_sym_POUND_LBRACK] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_DOLLARif] = ACTIONS(3293), + [anon_sym_is] = ACTIONS(3293), + [anon_sym_BANGis] = ACTIONS(3293), + [anon_sym_in] = ACTIONS(3293), + [anon_sym_BANGin] = ACTIONS(3293), + [anon_sym_match] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_rlock] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_sql] = ACTIONS(3293), + [sym_int_literal] = ACTIONS(3293), + [sym_float_literal] = ACTIONS(3293), + [sym_rune_literal] = ACTIONS(3293), + [sym_pseudo_compile_time_identifier] = ACTIONS(3293), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3293), + [anon_sym_chan] = ACTIONS(3293), + [anon_sym_thread] = ACTIONS(3293), + [anon_sym_atomic] = ACTIONS(3293), + [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), }, [1186] = { - [sym_identifier] = ACTIONS(3448), - [anon_sym_LF] = ACTIONS(3448), - [anon_sym_CR] = ACTIONS(3448), - [anon_sym_CR_LF] = ACTIONS(3448), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3448), - [anon_sym_DOT] = ACTIONS(3448), - [anon_sym_as] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(3448), - [anon_sym_COMMA] = ACTIONS(3448), - [anon_sym_RBRACE] = ACTIONS(3448), - [anon_sym_LPAREN] = ACTIONS(3448), - [anon_sym_RPAREN] = ACTIONS(3448), - [anon_sym_PIPE] = ACTIONS(3448), - [anon_sym_fn] = ACTIONS(3448), - [anon_sym_PLUS] = ACTIONS(3448), - [anon_sym_DASH] = ACTIONS(3448), - [anon_sym_STAR] = ACTIONS(3448), - [anon_sym_SLASH] = ACTIONS(3448), - [anon_sym_PERCENT] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(3448), - [anon_sym_GT] = ACTIONS(3448), - [anon_sym_EQ_EQ] = ACTIONS(3448), - [anon_sym_BANG_EQ] = ACTIONS(3448), - [anon_sym_LT_EQ] = ACTIONS(3448), - [anon_sym_GT_EQ] = ACTIONS(3448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3448), - [anon_sym_LBRACK] = ACTIONS(3446), - [anon_sym_struct] = ACTIONS(3448), - [anon_sym_mut] = ACTIONS(3448), - [anon_sym_PLUS_PLUS] = ACTIONS(3448), - [anon_sym_DASH_DASH] = ACTIONS(3448), - [anon_sym_QMARK] = ACTIONS(3448), - [anon_sym_BANG] = ACTIONS(3448), - [anon_sym_go] = ACTIONS(3448), - [anon_sym_spawn] = ACTIONS(3448), - [anon_sym_json_DOTdecode] = ACTIONS(3448), - [anon_sym_LBRACK2] = ACTIONS(3448), - [anon_sym_TILDE] = ACTIONS(3448), - [anon_sym_CARET] = ACTIONS(3448), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_LT_DASH] = ACTIONS(3448), - [anon_sym_LT_LT] = ACTIONS(3448), - [anon_sym_GT_GT] = ACTIONS(3448), - [anon_sym_GT_GT_GT] = ACTIONS(3448), - [anon_sym_AMP_CARET] = ACTIONS(3448), - [anon_sym_AMP_AMP] = ACTIONS(3448), - [anon_sym_PIPE_PIPE] = ACTIONS(3448), - [anon_sym_or] = ACTIONS(3448), - [sym_none] = ACTIONS(3448), - [sym_true] = ACTIONS(3448), - [sym_false] = ACTIONS(3448), - [sym_nil] = ACTIONS(3448), - [anon_sym_QMARK_DOT] = ACTIONS(3448), - [anon_sym_POUND_LBRACK] = ACTIONS(3448), - [anon_sym_if] = ACTIONS(3448), - [anon_sym_DOLLARif] = ACTIONS(3448), - [anon_sym_is] = ACTIONS(3448), - [anon_sym_BANGis] = ACTIONS(3448), - [anon_sym_in] = ACTIONS(3448), - [anon_sym_BANGin] = ACTIONS(3448), - [anon_sym_match] = ACTIONS(3448), - [anon_sym_select] = ACTIONS(3448), - [anon_sym_lock] = ACTIONS(3448), - [anon_sym_rlock] = ACTIONS(3448), - [anon_sym_unsafe] = ACTIONS(3448), - [anon_sym_sql] = ACTIONS(3448), - [sym_int_literal] = ACTIONS(3448), - [sym_float_literal] = ACTIONS(3448), - [sym_rune_literal] = ACTIONS(3448), - [sym_pseudo_compile_time_identifier] = ACTIONS(3448), - [anon_sym_shared] = ACTIONS(3448), - [anon_sym_map_LBRACK] = ACTIONS(3448), - [anon_sym_chan] = ACTIONS(3448), - [anon_sym_thread] = ACTIONS(3448), - [anon_sym_atomic] = ACTIONS(3448), - [sym___double_quote] = ACTIONS(3448), - [sym___single_quote] = ACTIONS(3448), - [sym___c_double_quote] = ACTIONS(3448), - [sym___c_single_quote] = ACTIONS(3448), - [sym___r_double_quote] = ACTIONS(3448), - [sym___r_single_quote] = ACTIONS(3448), + [sym_line_comment] = STATE(1186), + [sym_block_comment] = STATE(1186), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3335), + [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_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), }, [1187] = { - [sym_identifier] = ACTIONS(3408), - [anon_sym_LF] = ACTIONS(3408), - [anon_sym_CR] = ACTIONS(3408), - [anon_sym_CR_LF] = ACTIONS(3408), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_DOT] = ACTIONS(3408), - [anon_sym_as] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_COMMA] = ACTIONS(3408), - [anon_sym_RBRACE] = ACTIONS(3408), - [anon_sym_LPAREN] = ACTIONS(3408), - [anon_sym_RPAREN] = ACTIONS(3408), - [anon_sym_PIPE] = ACTIONS(3408), - [anon_sym_fn] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_SLASH] = ACTIONS(3408), - [anon_sym_PERCENT] = ACTIONS(3408), - [anon_sym_LT] = ACTIONS(3408), - [anon_sym_GT] = ACTIONS(3408), - [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_DOT_DOT_DOT] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_mut] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_QMARK] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3408), - [anon_sym_spawn] = ACTIONS(3408), - [anon_sym_json_DOTdecode] = ACTIONS(3408), - [anon_sym_LBRACK2] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3408), - [anon_sym_LT_LT] = ACTIONS(3408), - [anon_sym_GT_GT] = ACTIONS(3408), - [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(3408), - [sym_none] = ACTIONS(3408), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [sym_nil] = ACTIONS(3408), - [anon_sym_QMARK_DOT] = ACTIONS(3408), - [anon_sym_POUND_LBRACK] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_DOLLARif] = ACTIONS(3408), - [anon_sym_is] = ACTIONS(3408), - [anon_sym_BANGis] = ACTIONS(3408), - [anon_sym_in] = ACTIONS(3408), - [anon_sym_BANGin] = ACTIONS(3408), - [anon_sym_match] = ACTIONS(3408), - [anon_sym_select] = ACTIONS(3408), - [anon_sym_lock] = ACTIONS(3408), - [anon_sym_rlock] = ACTIONS(3408), - [anon_sym_unsafe] = ACTIONS(3408), - [anon_sym_sql] = ACTIONS(3408), - [sym_int_literal] = ACTIONS(3408), - [sym_float_literal] = ACTIONS(3408), - [sym_rune_literal] = ACTIONS(3408), - [sym_pseudo_compile_time_identifier] = ACTIONS(3408), - [anon_sym_shared] = ACTIONS(3408), - [anon_sym_map_LBRACK] = ACTIONS(3408), - [anon_sym_chan] = ACTIONS(3408), - [anon_sym_thread] = ACTIONS(3408), - [anon_sym_atomic] = ACTIONS(3408), - [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), + [sym_line_comment] = STATE(1187), + [sym_block_comment] = STATE(1187), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3375), + [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_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), }, [1188] = { - [sym_identifier] = ACTIONS(3189), - [anon_sym_LF] = ACTIONS(3189), - [anon_sym_CR] = ACTIONS(3189), - [anon_sym_CR_LF] = ACTIONS(3189), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3189), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3189), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_AMP_CARET] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3189), - [anon_sym_POUND_LBRACK] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3189), - [sym_rune_literal] = ACTIONS(3189), - [sym_pseudo_compile_time_identifier] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3189), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [sym___double_quote] = ACTIONS(3189), - [sym___single_quote] = ACTIONS(3189), - [sym___c_double_quote] = ACTIONS(3189), - [sym___c_single_quote] = ACTIONS(3189), - [sym___r_double_quote] = ACTIONS(3189), - [sym___r_single_quote] = ACTIONS(3189), + [sym_line_comment] = STATE(1188), + [sym_block_comment] = STATE(1188), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3187), + [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_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), }, [1189] = { - [sym_identifier] = ACTIONS(3049), - [anon_sym_LF] = ACTIONS(3049), - [anon_sym_CR] = ACTIONS(3049), - [anon_sym_CR_LF] = ACTIONS(3049), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [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_DOT_DOT_DOT] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3049), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3049), - [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(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3049), - [sym_rune_literal] = ACTIONS(3049), - [sym_pseudo_compile_time_identifier] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [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_line_comment] = STATE(1189), + [sym_block_comment] = STATE(1189), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3331), + [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_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), }, [1190] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_as] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(559), - [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3814), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_or] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(559), - [anon_sym_POUND_LBRACK] = ACTIONS(559), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(559), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(559), - [anon_sym_STAR_EQ] = ACTIONS(559), - [anon_sym_SLASH_EQ] = ACTIONS(559), - [anon_sym_PERCENT_EQ] = ACTIONS(559), - [anon_sym_LT_LT_EQ] = ACTIONS(559), - [anon_sym_GT_GT_EQ] = ACTIONS(559), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(559), - [anon_sym_AMP_EQ] = ACTIONS(559), - [anon_sym_AMP_CARET_EQ] = ACTIONS(559), - [anon_sym_PLUS_EQ] = ACTIONS(559), - [anon_sym_DASH_EQ] = ACTIONS(559), - [anon_sym_PIPE_EQ] = ACTIONS(559), - [anon_sym_CARET_EQ] = ACTIONS(559), - [anon_sym_COLON_EQ] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [sym_line_comment] = STATE(1190), + [sym_block_comment] = STATE(1190), + [sym_identifier] = ACTIONS(3157), + [anon_sym_LF] = ACTIONS(3157), + [anon_sym_CR] = ACTIONS(3157), + [anon_sym_CR_LF] = ACTIONS(3157), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3157), + [anon_sym_as] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_RPAREN] = ACTIONS(3157), + [anon_sym_PIPE] = ACTIONS(3157), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_PERCENT] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_GT] = ACTIONS(3157), + [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_DOT_DOT_DOT] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_mut] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_go] = ACTIONS(3157), + [anon_sym_spawn] = ACTIONS(3157), + [anon_sym_json_DOTdecode] = ACTIONS(3157), + [anon_sym_LBRACK2] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_CARET] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_LT_DASH] = ACTIONS(3157), + [anon_sym_LT_LT] = ACTIONS(3157), + [anon_sym_GT_GT] = ACTIONS(3157), + [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(3157), + [sym_none] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_nil] = ACTIONS(3157), + [anon_sym_QMARK_DOT] = ACTIONS(3157), + [anon_sym_POUND_LBRACK] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_DOLLARif] = ACTIONS(3157), + [anon_sym_is] = ACTIONS(3157), + [anon_sym_BANGis] = ACTIONS(3157), + [anon_sym_in] = ACTIONS(3157), + [anon_sym_BANGin] = ACTIONS(3157), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3157), + [anon_sym_lock] = ACTIONS(3157), + [anon_sym_rlock] = ACTIONS(3157), + [anon_sym_unsafe] = ACTIONS(3157), + [anon_sym_sql] = ACTIONS(3157), + [sym_int_literal] = ACTIONS(3157), + [sym_float_literal] = ACTIONS(3157), + [sym_rune_literal] = ACTIONS(3157), + [sym_pseudo_compile_time_identifier] = ACTIONS(3157), + [anon_sym_shared] = ACTIONS(3157), + [anon_sym_map_LBRACK] = ACTIONS(3157), + [anon_sym_chan] = ACTIONS(3157), + [anon_sym_thread] = ACTIONS(3157), + [anon_sym_atomic] = ACTIONS(3157), + [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), }, [1191] = { - [sym_identifier] = ACTIONS(3400), - [anon_sym_LF] = ACTIONS(3400), - [anon_sym_CR] = ACTIONS(3400), - [anon_sym_CR_LF] = ACTIONS(3400), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_DOT] = ACTIONS(3400), - [anon_sym_as] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3400), - [anon_sym_COMMA] = ACTIONS(3400), - [anon_sym_RBRACE] = ACTIONS(3400), - [anon_sym_LPAREN] = ACTIONS(3400), - [anon_sym_RPAREN] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_fn] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_SLASH] = ACTIONS(3400), - [anon_sym_PERCENT] = ACTIONS(3400), - [anon_sym_LT] = ACTIONS(3400), - [anon_sym_GT] = ACTIONS(3400), - [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_DOT_DOT_DOT] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3398), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_mut] = ACTIONS(3400), - [anon_sym_PLUS_PLUS] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3400), - [anon_sym_QMARK] = ACTIONS(3400), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3400), - [anon_sym_json_DOTdecode] = ACTIONS(3400), - [anon_sym_LBRACK2] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(3400), - [anon_sym_CARET] = ACTIONS(3400), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_LT_DASH] = ACTIONS(3400), - [anon_sym_LT_LT] = ACTIONS(3400), - [anon_sym_GT_GT] = ACTIONS(3400), - [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(3400), - [sym_none] = ACTIONS(3400), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [sym_nil] = ACTIONS(3400), - [anon_sym_QMARK_DOT] = ACTIONS(3400), - [anon_sym_POUND_LBRACK] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_DOLLARif] = ACTIONS(3400), - [anon_sym_is] = ACTIONS(3400), - [anon_sym_BANGis] = ACTIONS(3400), - [anon_sym_in] = ACTIONS(3400), - [anon_sym_BANGin] = ACTIONS(3400), - [anon_sym_match] = ACTIONS(3400), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3400), - [anon_sym_rlock] = ACTIONS(3400), - [anon_sym_unsafe] = ACTIONS(3400), - [anon_sym_sql] = ACTIONS(3400), - [sym_int_literal] = ACTIONS(3400), - [sym_float_literal] = ACTIONS(3400), - [sym_rune_literal] = ACTIONS(3400), - [sym_pseudo_compile_time_identifier] = ACTIONS(3400), - [anon_sym_shared] = ACTIONS(3400), - [anon_sym_map_LBRACK] = ACTIONS(3400), - [anon_sym_chan] = ACTIONS(3400), - [anon_sym_thread] = ACTIONS(3400), - [anon_sym_atomic] = ACTIONS(3400), - [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), + [sym_line_comment] = STATE(1191), + [sym_block_comment] = STATE(1191), + [sym_identifier] = ACTIONS(3153), + [anon_sym_LF] = ACTIONS(3153), + [anon_sym_CR] = ACTIONS(3153), + [anon_sym_CR_LF] = ACTIONS(3153), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3153), + [anon_sym_as] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3153), + [anon_sym_RPAREN] = ACTIONS(3153), + [anon_sym_PIPE] = ACTIONS(3153), + [anon_sym_fn] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_PERCENT] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_GT] = ACTIONS(3153), + [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_DOT_DOT_DOT] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3153), + [anon_sym_mut] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_go] = ACTIONS(3153), + [anon_sym_spawn] = ACTIONS(3153), + [anon_sym_json_DOTdecode] = ACTIONS(3153), + [anon_sym_LBRACK2] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_CARET] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3153), + [anon_sym_LT_DASH] = ACTIONS(3153), + [anon_sym_LT_LT] = ACTIONS(3153), + [anon_sym_GT_GT] = ACTIONS(3153), + [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(3153), + [sym_none] = ACTIONS(3153), + [sym_true] = ACTIONS(3153), + [sym_false] = ACTIONS(3153), + [sym_nil] = ACTIONS(3153), + [anon_sym_QMARK_DOT] = ACTIONS(3153), + [anon_sym_POUND_LBRACK] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3153), + [anon_sym_is] = ACTIONS(3153), + [anon_sym_BANGis] = ACTIONS(3153), + [anon_sym_in] = ACTIONS(3153), + [anon_sym_BANGin] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(3153), + [anon_sym_select] = ACTIONS(3153), + [anon_sym_lock] = ACTIONS(3153), + [anon_sym_rlock] = ACTIONS(3153), + [anon_sym_unsafe] = ACTIONS(3153), + [anon_sym_sql] = ACTIONS(3153), + [sym_int_literal] = ACTIONS(3153), + [sym_float_literal] = ACTIONS(3153), + [sym_rune_literal] = ACTIONS(3153), + [sym_pseudo_compile_time_identifier] = ACTIONS(3153), + [anon_sym_shared] = ACTIONS(3153), + [anon_sym_map_LBRACK] = ACTIONS(3153), + [anon_sym_chan] = ACTIONS(3153), + [anon_sym_thread] = ACTIONS(3153), + [anon_sym_atomic] = ACTIONS(3153), + [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), }, [1192] = { - [sym_identifier] = ACTIONS(2911), - [anon_sym_LF] = ACTIONS(2911), - [anon_sym_CR] = ACTIONS(2911), - [anon_sym_CR_LF] = ACTIONS(2911), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_RPAREN] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [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_DOT_DOT_DOT] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2911), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2911), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2911), - [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(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2911), - [anon_sym_POUND_LBRACK] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2911), - [sym_rune_literal] = ACTIONS(2911), - [sym_pseudo_compile_time_identifier] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2911), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [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), + [sym_line_comment] = STATE(1192), + [sym_block_comment] = STATE(1192), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3327), + [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_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), }, [1193] = { - [sym_identifier] = ACTIONS(3227), - [anon_sym_LF] = ACTIONS(3227), - [anon_sym_CR] = ACTIONS(3227), - [anon_sym_CR_LF] = ACTIONS(3227), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3227), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_fn] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [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_DOT_DOT_DOT] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_mut] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3227), - [anon_sym_LBRACK2] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [anon_sym_LT_DASH] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [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(3229), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), - [anon_sym_is] = ACTIONS(3229), - [anon_sym_BANGis] = ACTIONS(3229), - [anon_sym_in] = ACTIONS(3229), - [anon_sym_BANGin] = ACTIONS(3229), - [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_line_comment] = STATE(1193), + [sym_block_comment] = STATE(1193), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3359), + [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_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), }, [1194] = { - [sym_identifier] = ACTIONS(2903), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_CR] = ACTIONS(2903), - [anon_sym_CR_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_RPAREN] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [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_DOT_DOT_DOT] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2903), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2903), - [anon_sym_GT_GT] = ACTIONS(2903), - [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(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2903), - [anon_sym_POUND_LBRACK] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2903), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - [sym_rune_literal] = ACTIONS(2903), - [sym_pseudo_compile_time_identifier] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2903), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [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), + [sym_line_comment] = STATE(1194), + [sym_block_comment] = STATE(1194), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3339), + [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_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), }, [1195] = { - [sym_identifier] = ACTIONS(3356), - [anon_sym_LF] = ACTIONS(3356), - [anon_sym_CR] = ACTIONS(3356), - [anon_sym_CR_LF] = ACTIONS(3356), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_as] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_RPAREN] = ACTIONS(3356), - [anon_sym_PIPE] = ACTIONS(3356), - [anon_sym_fn] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_STAR] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_GT] = ACTIONS(3356), - [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_DOT_DOT_DOT] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(3356), - [anon_sym_mut] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(3356), - [anon_sym_spawn] = ACTIONS(3356), - [anon_sym_json_DOTdecode] = ACTIONS(3356), - [anon_sym_LBRACK2] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_CARET] = ACTIONS(3356), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_LT_LT] = ACTIONS(3356), - [anon_sym_GT_GT] = ACTIONS(3356), - [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(3356), - [sym_none] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_nil] = ACTIONS(3356), - [anon_sym_QMARK_DOT] = ACTIONS(3356), - [anon_sym_POUND_LBRACK] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_DOLLARif] = ACTIONS(3356), - [anon_sym_is] = ACTIONS(3356), - [anon_sym_BANGis] = ACTIONS(3356), - [anon_sym_in] = ACTIONS(3356), - [anon_sym_BANGin] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_select] = ACTIONS(3356), - [anon_sym_lock] = ACTIONS(3356), - [anon_sym_rlock] = ACTIONS(3356), - [anon_sym_unsafe] = ACTIONS(3356), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(3356), - [sym_float_literal] = ACTIONS(3356), - [sym_rune_literal] = ACTIONS(3356), - [sym_pseudo_compile_time_identifier] = ACTIONS(3356), - [anon_sym_shared] = ACTIONS(3356), - [anon_sym_map_LBRACK] = ACTIONS(3356), - [anon_sym_chan] = ACTIONS(3356), - [anon_sym_thread] = ACTIONS(3356), - [anon_sym_atomic] = ACTIONS(3356), - [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), + [sym_line_comment] = STATE(1195), + [sym_block_comment] = STATE(1195), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3343), + [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_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), }, [1196] = { - [sym_identifier] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2899), - [anon_sym_CR] = ACTIONS(2899), - [anon_sym_CR_LF] = ACTIONS(2899), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_as] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_RPAREN] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [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_DOT_DOT_DOT] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2899), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [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(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2899), - [anon_sym_POUND_LBRACK] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2899), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2899), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_select] = ACTIONS(2899), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_sql] = ACTIONS(2899), - [sym_int_literal] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2899), - [sym_rune_literal] = ACTIONS(2899), - [sym_pseudo_compile_time_identifier] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2899), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [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), + [sym_line_comment] = STATE(1196), + [sym_block_comment] = STATE(1196), + [sym_identifier] = ACTIONS(3141), + [anon_sym_LF] = ACTIONS(3141), + [anon_sym_CR] = ACTIONS(3141), + [anon_sym_CR_LF] = ACTIONS(3141), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3141), + [anon_sym_as] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_RPAREN] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(3141), + [anon_sym_fn] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_PERCENT] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_GT] = ACTIONS(3141), + [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_DOT_DOT_DOT] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_struct] = ACTIONS(3141), + [anon_sym_mut] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [anon_sym_QMARK] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_go] = ACTIONS(3141), + [anon_sym_spawn] = ACTIONS(3141), + [anon_sym_json_DOTdecode] = ACTIONS(3141), + [anon_sym_LBRACK2] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_CARET] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_LT_DASH] = ACTIONS(3141), + [anon_sym_LT_LT] = ACTIONS(3141), + [anon_sym_GT_GT] = ACTIONS(3141), + [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(3141), + [sym_none] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_nil] = ACTIONS(3141), + [anon_sym_QMARK_DOT] = ACTIONS(3141), + [anon_sym_POUND_LBRACK] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_DOLLARif] = ACTIONS(3141), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3141), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_BANGin] = ACTIONS(3141), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_select] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_rlock] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_sql] = ACTIONS(3141), + [sym_int_literal] = ACTIONS(3141), + [sym_float_literal] = ACTIONS(3141), + [sym_rune_literal] = ACTIONS(3141), + [sym_pseudo_compile_time_identifier] = ACTIONS(3141), + [anon_sym_shared] = ACTIONS(3141), + [anon_sym_map_LBRACK] = ACTIONS(3141), + [anon_sym_chan] = ACTIONS(3141), + [anon_sym_thread] = ACTIONS(3141), + [anon_sym_atomic] = ACTIONS(3141), + [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), }, [1197] = { - [sym_identifier] = ACTIONS(3311), - [anon_sym_LF] = ACTIONS(3311), - [anon_sym_CR] = ACTIONS(3311), - [anon_sym_CR_LF] = ACTIONS(3311), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_DOT] = ACTIONS(3313), - [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_line_comment] = STATE(1197), + [sym_block_comment] = STATE(1197), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LF] = ACTIONS(3137), + [anon_sym_CR] = ACTIONS(3137), + [anon_sym_CR_LF] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_as] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_RPAREN] = ACTIONS(3137), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_fn] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3137), + [anon_sym_PERCENT] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3137), + [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_DOT_DOT_DOT] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_mut] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_go] = ACTIONS(3137), + [anon_sym_spawn] = ACTIONS(3137), + [anon_sym_json_DOTdecode] = ACTIONS(3137), + [anon_sym_LBRACK2] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_CARET] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_LT_DASH] = ACTIONS(3137), + [anon_sym_LT_LT] = ACTIONS(3137), + [anon_sym_GT_GT] = ACTIONS(3137), + [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(3137), + [sym_none] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_nil] = ACTIONS(3137), + [anon_sym_QMARK_DOT] = ACTIONS(3137), + [anon_sym_POUND_LBRACK] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_DOLLARif] = ACTIONS(3137), + [anon_sym_is] = ACTIONS(3137), + [anon_sym_BANGis] = ACTIONS(3137), + [anon_sym_in] = ACTIONS(3137), + [anon_sym_BANGin] = ACTIONS(3137), + [anon_sym_match] = ACTIONS(3137), + [anon_sym_select] = ACTIONS(3137), + [anon_sym_lock] = ACTIONS(3137), + [anon_sym_rlock] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(3137), + [anon_sym_sql] = ACTIONS(3137), + [sym_int_literal] = ACTIONS(3137), + [sym_float_literal] = ACTIONS(3137), + [sym_rune_literal] = ACTIONS(3137), + [sym_pseudo_compile_time_identifier] = ACTIONS(3137), + [anon_sym_shared] = ACTIONS(3137), + [anon_sym_map_LBRACK] = ACTIONS(3137), + [anon_sym_chan] = ACTIONS(3137), + [anon_sym_thread] = ACTIONS(3137), + [anon_sym_atomic] = ACTIONS(3137), + [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), }, [1198] = { - [sym_identifier] = ACTIONS(3428), - [anon_sym_LF] = ACTIONS(3428), - [anon_sym_CR] = ACTIONS(3428), - [anon_sym_CR_LF] = ACTIONS(3428), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_as] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3428), - [anon_sym_RBRACE] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_RPAREN] = ACTIONS(3428), - [anon_sym_PIPE] = ACTIONS(3428), - [anon_sym_fn] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3428), - [anon_sym_SLASH] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(3428), - [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_DOT_DOT_DOT] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3426), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_mut] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_go] = ACTIONS(3428), - [anon_sym_spawn] = ACTIONS(3428), - [anon_sym_json_DOTdecode] = ACTIONS(3428), - [anon_sym_LBRACK2] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3428), - [anon_sym_CARET] = ACTIONS(3428), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_LT_LT] = ACTIONS(3428), - [anon_sym_GT_GT] = ACTIONS(3428), - [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(3428), - [sym_none] = ACTIONS(3428), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [sym_nil] = ACTIONS(3428), - [anon_sym_QMARK_DOT] = ACTIONS(3428), - [anon_sym_POUND_LBRACK] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_DOLLARif] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3428), - [anon_sym_BANGis] = ACTIONS(3428), - [anon_sym_in] = ACTIONS(3428), - [anon_sym_BANGin] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), - [anon_sym_lock] = ACTIONS(3428), - [anon_sym_rlock] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_sql] = ACTIONS(3428), - [sym_int_literal] = ACTIONS(3428), - [sym_float_literal] = ACTIONS(3428), - [sym_rune_literal] = ACTIONS(3428), - [sym_pseudo_compile_time_identifier] = ACTIONS(3428), - [anon_sym_shared] = ACTIONS(3428), - [anon_sym_map_LBRACK] = ACTIONS(3428), - [anon_sym_chan] = ACTIONS(3428), - [anon_sym_thread] = ACTIONS(3428), - [anon_sym_atomic] = ACTIONS(3428), - [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), + [sym_line_comment] = STATE(1198), + [sym_block_comment] = STATE(1198), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3347), + [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_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), }, [1199] = { - [sym_identifier] = ACTIONS(3217), - [anon_sym_LF] = ACTIONS(3217), - [anon_sym_CR] = ACTIONS(3217), - [anon_sym_CR_LF] = ACTIONS(3217), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3217), - [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(3219), - [anon_sym_RPAREN] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3217), - [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(3217), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_mut] = ACTIONS(3217), - [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(3217), - [anon_sym_spawn] = ACTIONS(3217), - [anon_sym_json_DOTdecode] = ACTIONS(3217), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3217), - [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(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_nil] = ACTIONS(3217), - [anon_sym_QMARK_DOT] = ACTIONS(3219), - [anon_sym_POUND_LBRACK] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_DOLLARif] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3217), - [anon_sym_select] = ACTIONS(3217), - [anon_sym_lock] = ACTIONS(3217), - [anon_sym_rlock] = ACTIONS(3217), - [anon_sym_unsafe] = ACTIONS(3217), - [anon_sym_sql] = ACTIONS(3217), - [sym_int_literal] = ACTIONS(3217), - [sym_float_literal] = ACTIONS(3217), - [sym_rune_literal] = ACTIONS(3217), - [sym_pseudo_compile_time_identifier] = ACTIONS(3217), - [anon_sym_shared] = ACTIONS(3217), - [anon_sym_map_LBRACK] = ACTIONS(3217), - [anon_sym_chan] = ACTIONS(3217), - [anon_sym_thread] = ACTIONS(3217), - [anon_sym_atomic] = ACTIONS(3217), - [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), + [sym_line_comment] = STATE(1199), + [sym_block_comment] = STATE(1199), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3351), + [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_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), }, [1200] = { - [sym_identifier] = ACTIONS(3201), - [anon_sym_LF] = ACTIONS(3201), - [anon_sym_CR] = ACTIONS(3201), - [anon_sym_CR_LF] = ACTIONS(3201), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_RPAREN] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_fn] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3201), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3201), - [anon_sym_GT] = ACTIONS(3201), - [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_DOT_DOT_DOT] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_mut] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_go] = ACTIONS(3201), - [anon_sym_spawn] = ACTIONS(3201), - [anon_sym_json_DOTdecode] = ACTIONS(3201), - [anon_sym_LBRACK2] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_LT_DASH] = ACTIONS(3201), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3201), - [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(3201), - [sym_none] = ACTIONS(3201), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [sym_nil] = ACTIONS(3201), - [anon_sym_QMARK_DOT] = ACTIONS(3201), - [anon_sym_POUND_LBRACK] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_DOLLARif] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_BANGis] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_BANGin] = ACTIONS(3201), - [anon_sym_match] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_lock] = ACTIONS(3201), - [anon_sym_rlock] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_sql] = ACTIONS(3201), - [sym_int_literal] = ACTIONS(3201), - [sym_float_literal] = ACTIONS(3201), - [sym_rune_literal] = ACTIONS(3201), - [sym_pseudo_compile_time_identifier] = ACTIONS(3201), - [anon_sym_shared] = ACTIONS(3201), - [anon_sym_map_LBRACK] = ACTIONS(3201), - [anon_sym_chan] = ACTIONS(3201), - [anon_sym_thread] = ACTIONS(3201), - [anon_sym_atomic] = ACTIONS(3201), - [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_line_comment] = STATE(1200), + [sym_block_comment] = STATE(1200), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3363), + [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_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), }, [1201] = { - [sym_identifier] = ACTIONS(3378), - [anon_sym_LF] = ACTIONS(3378), - [anon_sym_CR] = ACTIONS(3378), - [anon_sym_CR_LF] = ACTIONS(3378), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1201), + [sym_block_comment] = STATE(1201), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3367), + [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_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), }, [1202] = { - [sym_identifier] = ACTIONS(3344), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_CR] = ACTIONS(3344), - [anon_sym_CR_LF] = ACTIONS(3344), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_COMMA] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_RPAREN] = ACTIONS(3344), - [anon_sym_PIPE] = ACTIONS(3344), - [anon_sym_fn] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [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_DOT_DOT_DOT] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_mut] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [anon_sym_QMARK] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_go] = ACTIONS(3344), - [anon_sym_spawn] = ACTIONS(3344), - [anon_sym_json_DOTdecode] = ACTIONS(3344), - [anon_sym_LBRACK2] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_CARET] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3344), - [anon_sym_LT_DASH] = ACTIONS(3344), - [anon_sym_LT_LT] = ACTIONS(3344), - [anon_sym_GT_GT] = ACTIONS(3344), - [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(3344), - [sym_none] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_nil] = ACTIONS(3344), - [anon_sym_QMARK_DOT] = ACTIONS(3344), - [anon_sym_POUND_LBRACK] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_DOLLARif] = ACTIONS(3344), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3344), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_BANGin] = ACTIONS(3344), - [anon_sym_match] = ACTIONS(3344), - [anon_sym_select] = ACTIONS(3344), - [anon_sym_lock] = ACTIONS(3344), - [anon_sym_rlock] = ACTIONS(3344), - [anon_sym_unsafe] = ACTIONS(3344), - [anon_sym_sql] = ACTIONS(3344), - [sym_int_literal] = ACTIONS(3344), - [sym_float_literal] = ACTIONS(3344), - [sym_rune_literal] = ACTIONS(3344), - [sym_pseudo_compile_time_identifier] = ACTIONS(3344), - [anon_sym_shared] = ACTIONS(3344), - [anon_sym_map_LBRACK] = ACTIONS(3344), - [anon_sym_chan] = ACTIONS(3344), - [anon_sym_thread] = ACTIONS(3344), - [anon_sym_atomic] = ACTIONS(3344), - [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), + [sym_line_comment] = STATE(1202), + [sym_block_comment] = STATE(1202), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3411), + [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_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), }, [1203] = { - [sym_identifier] = ACTIONS(2715), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_CR] = ACTIONS(2715), - [anon_sym_CR_LF] = ACTIONS(2715), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_as] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_COMMA] = ACTIONS(2715), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_RPAREN] = ACTIONS(2715), - [anon_sym_PIPE] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_SLASH] = ACTIONS(2715), - [anon_sym_PERCENT] = ACTIONS(2715), - [anon_sym_LT] = ACTIONS(2715), - [anon_sym_GT] = ACTIONS(2715), - [anon_sym_EQ_EQ] = ACTIONS(2715), - [anon_sym_BANG_EQ] = ACTIONS(2715), - [anon_sym_LT_EQ] = ACTIONS(2715), - [anon_sym_GT_EQ] = ACTIONS(2715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_mut] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_QMARK] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_go] = ACTIONS(2715), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(2715), - [anon_sym_LBRACK2] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_CARET] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_LT_DASH] = ACTIONS(2715), - [anon_sym_LT_LT] = ACTIONS(2715), - [anon_sym_GT_GT] = ACTIONS(2715), - [anon_sym_GT_GT_GT] = ACTIONS(2715), - [anon_sym_AMP_CARET] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_PIPE_PIPE] = ACTIONS(2715), - [anon_sym_or] = ACTIONS(2715), - [sym_none] = ACTIONS(2715), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [sym_nil] = ACTIONS(2715), - [anon_sym_QMARK_DOT] = ACTIONS(2715), - [anon_sym_POUND_LBRACK] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_DOLLARif] = ACTIONS(2715), - [anon_sym_is] = ACTIONS(2715), - [anon_sym_BANGis] = ACTIONS(2715), - [anon_sym_in] = ACTIONS(2715), - [anon_sym_BANGin] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_select] = ACTIONS(2715), - [anon_sym_lock] = ACTIONS(2715), - [anon_sym_rlock] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_sql] = ACTIONS(2715), - [sym_int_literal] = ACTIONS(2715), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(2715), - [anon_sym_shared] = ACTIONS(2715), - [anon_sym_map_LBRACK] = ACTIONS(2715), - [anon_sym_chan] = ACTIONS(2715), - [anon_sym_thread] = ACTIONS(2715), - [anon_sym_atomic] = ACTIONS(2715), - [sym___double_quote] = ACTIONS(2715), - [sym___single_quote] = ACTIONS(2715), - [sym___c_double_quote] = ACTIONS(2715), - [sym___c_single_quote] = ACTIONS(2715), - [sym___r_double_quote] = ACTIONS(2715), - [sym___r_single_quote] = ACTIONS(2715), + [sym_line_comment] = STATE(1203), + [sym_block_comment] = STATE(1203), + [sym_identifier] = ACTIONS(3297), + [anon_sym_LF] = ACTIONS(3297), + [anon_sym_CR] = ACTIONS(3297), + [anon_sym_CR_LF] = ACTIONS(3297), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3297), + [anon_sym_as] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_RPAREN] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_fn] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_PERCENT] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_GT] = ACTIONS(3297), + [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_DOT_DOT_DOT] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_mut] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_go] = ACTIONS(3297), + [anon_sym_spawn] = ACTIONS(3297), + [anon_sym_json_DOTdecode] = ACTIONS(3297), + [anon_sym_LBRACK2] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_LT_DASH] = ACTIONS(3297), + [anon_sym_LT_LT] = ACTIONS(3297), + [anon_sym_GT_GT] = ACTIONS(3297), + [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(3297), + [sym_none] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_nil] = ACTIONS(3297), + [anon_sym_QMARK_DOT] = ACTIONS(3297), + [anon_sym_POUND_LBRACK] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_DOLLARif] = ACTIONS(3297), + [anon_sym_is] = ACTIONS(3297), + [anon_sym_BANGis] = ACTIONS(3297), + [anon_sym_in] = ACTIONS(3297), + [anon_sym_BANGin] = ACTIONS(3297), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_rlock] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_sql] = ACTIONS(3297), + [sym_int_literal] = ACTIONS(3297), + [sym_float_literal] = ACTIONS(3297), + [sym_rune_literal] = ACTIONS(3297), + [sym_pseudo_compile_time_identifier] = ACTIONS(3297), + [anon_sym_shared] = ACTIONS(3297), + [anon_sym_map_LBRACK] = ACTIONS(3297), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3297), + [anon_sym_atomic] = ACTIONS(3297), + [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), }, [1204] = { - [sym_identifier] = ACTIONS(3245), - [anon_sym_LF] = ACTIONS(3245), - [anon_sym_CR] = ACTIONS(3245), - [anon_sym_CR_LF] = ACTIONS(3245), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_as] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_RPAREN] = ACTIONS(3245), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_GT] = ACTIONS(3245), - [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_DOT_DOT_DOT] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_mut] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_go] = ACTIONS(3245), - [anon_sym_spawn] = ACTIONS(3245), - [anon_sym_json_DOTdecode] = ACTIONS(3245), - [anon_sym_LBRACK2] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_CARET] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [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(3245), - [sym_none] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_nil] = ACTIONS(3245), - [anon_sym_QMARK_DOT] = ACTIONS(3245), - [anon_sym_POUND_LBRACK] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_DOLLARif] = ACTIONS(3245), - [anon_sym_is] = ACTIONS(3245), - [anon_sym_BANGis] = ACTIONS(3245), - [anon_sym_in] = ACTIONS(3245), - [anon_sym_BANGin] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_select] = ACTIONS(3245), - [anon_sym_lock] = ACTIONS(3245), - [anon_sym_rlock] = ACTIONS(3245), - [anon_sym_unsafe] = ACTIONS(3245), - [anon_sym_sql] = ACTIONS(3245), - [sym_int_literal] = ACTIONS(3245), - [sym_float_literal] = ACTIONS(3245), - [sym_rune_literal] = ACTIONS(3245), - [sym_pseudo_compile_time_identifier] = ACTIONS(3245), - [anon_sym_shared] = ACTIONS(3245), - [anon_sym_map_LBRACK] = ACTIONS(3245), - [anon_sym_chan] = ACTIONS(3245), - [anon_sym_thread] = ACTIONS(3245), - [anon_sym_atomic] = ACTIONS(3245), - [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), + [sym_line_comment] = STATE(1204), + [sym_block_comment] = STATE(1204), + [sym_identifier] = ACTIONS(3031), + [anon_sym_LF] = ACTIONS(3031), + [anon_sym_CR] = ACTIONS(3031), + [anon_sym_CR_LF] = ACTIONS(3031), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_as] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_RPAREN] = ACTIONS(3031), + [anon_sym_PIPE] = ACTIONS(3031), + [anon_sym_fn] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3031), + [anon_sym_EQ_EQ] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3031), + [anon_sym_LT_EQ] = ACTIONS(3031), + [anon_sym_GT_EQ] = ACTIONS(3031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_mut] = ACTIONS(3031), + [anon_sym_PLUS_PLUS] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3031), + [anon_sym_go] = ACTIONS(3031), + [anon_sym_spawn] = ACTIONS(3031), + [anon_sym_json_DOTdecode] = ACTIONS(3031), + [anon_sym_LBRACK2] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_CARET] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_LT_LT] = ACTIONS(3031), + [anon_sym_GT_GT] = ACTIONS(3031), + [anon_sym_GT_GT_GT] = ACTIONS(3031), + [anon_sym_AMP_CARET] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_or] = ACTIONS(3031), + [sym_none] = ACTIONS(3031), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [sym_nil] = ACTIONS(3031), + [anon_sym_QMARK_DOT] = ACTIONS(3031), + [anon_sym_POUND_LBRACK] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_DOLLARif] = ACTIONS(3031), + [anon_sym_is] = ACTIONS(3031), + [anon_sym_BANGis] = ACTIONS(3031), + [anon_sym_in] = ACTIONS(3031), + [anon_sym_BANGin] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_select] = ACTIONS(3031), + [anon_sym_lock] = ACTIONS(3031), + [anon_sym_rlock] = ACTIONS(3031), + [anon_sym_unsafe] = ACTIONS(3031), + [anon_sym_sql] = ACTIONS(3031), + [sym_int_literal] = ACTIONS(3031), + [sym_float_literal] = ACTIONS(3031), + [sym_rune_literal] = ACTIONS(3031), + [sym_pseudo_compile_time_identifier] = ACTIONS(3031), + [anon_sym_shared] = ACTIONS(3031), + [anon_sym_map_LBRACK] = ACTIONS(3031), + [anon_sym_chan] = ACTIONS(3031), + [anon_sym_thread] = ACTIONS(3031), + [anon_sym_atomic] = ACTIONS(3031), + [sym___double_quote] = ACTIONS(3031), + [sym___single_quote] = ACTIONS(3031), + [sym___c_double_quote] = ACTIONS(3031), + [sym___c_single_quote] = ACTIONS(3031), + [sym___r_double_quote] = ACTIONS(3031), + [sym___r_single_quote] = ACTIONS(3031), }, [1205] = { - [sym_identifier] = ACTIONS(3291), - [anon_sym_LF] = ACTIONS(3291), - [anon_sym_CR] = ACTIONS(3291), - [anon_sym_CR_LF] = ACTIONS(3291), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1205), + [sym_block_comment] = STATE(1205), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3419), + [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_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), }, [1206] = { - [sym_identifier] = ACTIONS(3099), - [anon_sym_LF] = ACTIONS(3099), - [anon_sym_CR] = ACTIONS(3099), - [anon_sym_CR_LF] = ACTIONS(3099), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_as] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_fn] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_SLASH] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_mut] = ACTIONS(3099), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(3099), - [anon_sym_go] = ACTIONS(3099), - [anon_sym_spawn] = ACTIONS(3099), - [anon_sym_json_DOTdecode] = ACTIONS(3099), - [anon_sym_LBRACK2] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_GT_GT_GT] = ACTIONS(3099), - [anon_sym_AMP_CARET] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_or] = ACTIONS(3099), - [sym_none] = ACTIONS(3099), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_nil] = ACTIONS(3099), - [anon_sym_QMARK_DOT] = ACTIONS(3099), - [anon_sym_POUND_LBRACK] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_DOLLARif] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_BANGis] = ACTIONS(3099), - [anon_sym_in] = ACTIONS(3099), - [anon_sym_BANGin] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_select] = ACTIONS(3099), - [anon_sym_lock] = ACTIONS(3099), - [anon_sym_rlock] = ACTIONS(3099), - [anon_sym_unsafe] = ACTIONS(3099), - [anon_sym_sql] = ACTIONS(3099), - [sym_int_literal] = ACTIONS(3099), - [sym_float_literal] = ACTIONS(3099), - [sym_rune_literal] = ACTIONS(3099), - [sym_pseudo_compile_time_identifier] = ACTIONS(3099), - [anon_sym_shared] = ACTIONS(3099), - [anon_sym_map_LBRACK] = ACTIONS(3099), - [anon_sym_chan] = ACTIONS(3099), - [anon_sym_thread] = ACTIONS(3099), - [anon_sym_atomic] = ACTIONS(3099), - [sym___double_quote] = ACTIONS(3099), - [sym___single_quote] = ACTIONS(3099), - [sym___c_double_quote] = ACTIONS(3099), - [sym___c_single_quote] = ACTIONS(3099), - [sym___r_double_quote] = ACTIONS(3099), - [sym___r_single_quote] = ACTIONS(3099), - }, - [1207] = { - [sym_identifier] = ACTIONS(3287), - [anon_sym_LF] = ACTIONS(3287), - [anon_sym_CR] = ACTIONS(3287), - [anon_sym_CR_LF] = ACTIONS(3287), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1206), + [sym_block_comment] = STATE(1206), + [sym_identifier] = ACTIONS(3149), + [anon_sym_LF] = ACTIONS(3149), + [anon_sym_CR] = ACTIONS(3149), + [anon_sym_CR_LF] = ACTIONS(3149), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3149), + [anon_sym_as] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_RPAREN] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_fn] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_PERCENT] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_GT] = ACTIONS(3149), + [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_DOT_DOT_DOT] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_mut] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_QMARK] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_go] = ACTIONS(3149), + [anon_sym_spawn] = ACTIONS(3149), + [anon_sym_json_DOTdecode] = ACTIONS(3149), + [anon_sym_LBRACK2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_LT_DASH] = ACTIONS(3149), + [anon_sym_LT_LT] = ACTIONS(3149), + [anon_sym_GT_GT] = ACTIONS(3149), + [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(3149), + [sym_none] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_nil] = ACTIONS(3149), + [anon_sym_QMARK_DOT] = ACTIONS(3149), + [anon_sym_POUND_LBRACK] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_DOLLARif] = ACTIONS(3149), + [anon_sym_is] = ACTIONS(3149), + [anon_sym_BANGis] = ACTIONS(3149), + [anon_sym_in] = ACTIONS(3149), + [anon_sym_BANGin] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_rlock] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_sql] = ACTIONS(3149), + [sym_int_literal] = ACTIONS(3149), + [sym_float_literal] = ACTIONS(3149), + [sym_rune_literal] = ACTIONS(3149), + [sym_pseudo_compile_time_identifier] = ACTIONS(3149), + [anon_sym_shared] = ACTIONS(3149), + [anon_sym_map_LBRACK] = ACTIONS(3149), + [anon_sym_chan] = ACTIONS(3149), + [anon_sym_thread] = ACTIONS(3149), + [anon_sym_atomic] = ACTIONS(3149), + [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), + }, + [1207] = { + [sym_line_comment] = STATE(1207), + [sym_block_comment] = STATE(1207), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3391), + [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_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), }, [1208] = { - [sym_identifier] = ACTIONS(3249), - [anon_sym_LF] = ACTIONS(3249), - [anon_sym_CR] = ACTIONS(3249), - [anon_sym_CR_LF] = ACTIONS(3249), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_DOT] = ACTIONS(3249), - [anon_sym_as] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_COMMA] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_RPAREN] = ACTIONS(3249), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_fn] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_PERCENT] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_GT] = ACTIONS(3249), - [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_DOT_DOT_DOT] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_mut] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_go] = ACTIONS(3249), - [anon_sym_spawn] = ACTIONS(3249), - [anon_sym_json_DOTdecode] = ACTIONS(3249), - [anon_sym_LBRACK2] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_CARET] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3249), - [anon_sym_LT_DASH] = ACTIONS(3249), - [anon_sym_LT_LT] = ACTIONS(3249), - [anon_sym_GT_GT] = ACTIONS(3249), - [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(3249), - [sym_none] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_nil] = ACTIONS(3249), - [anon_sym_QMARK_DOT] = ACTIONS(3249), - [anon_sym_POUND_LBRACK] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_DOLLARif] = ACTIONS(3249), - [anon_sym_is] = ACTIONS(3249), - [anon_sym_BANGis] = ACTIONS(3249), - [anon_sym_in] = ACTIONS(3249), - [anon_sym_BANGin] = ACTIONS(3249), - [anon_sym_match] = ACTIONS(3249), - [anon_sym_select] = ACTIONS(3249), - [anon_sym_lock] = ACTIONS(3249), - [anon_sym_rlock] = ACTIONS(3249), - [anon_sym_unsafe] = ACTIONS(3249), - [anon_sym_sql] = ACTIONS(3249), - [sym_int_literal] = ACTIONS(3249), - [sym_float_literal] = ACTIONS(3249), - [sym_rune_literal] = ACTIONS(3249), - [sym_pseudo_compile_time_identifier] = ACTIONS(3249), - [anon_sym_shared] = ACTIONS(3249), - [anon_sym_map_LBRACK] = ACTIONS(3249), - [anon_sym_chan] = ACTIONS(3249), - [anon_sym_thread] = ACTIONS(3249), - [anon_sym_atomic] = ACTIONS(3249), - [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_line_comment] = STATE(1208), + [sym_block_comment] = STATE(1208), + [sym_identifier] = ACTIONS(3778), + [anon_sym_LF] = ACTIONS(3781), + [anon_sym_CR] = ACTIONS(3781), + [anon_sym_CR_LF] = ACTIONS(3781), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3781), + [anon_sym_DOT] = ACTIONS(3433), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3781), + [anon_sym_RBRACE] = ACTIONS(3778), + [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_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(3784), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_struct] = ACTIONS(3431), + [anon_sym_mut] = ACTIONS(3431), + [anon_sym_COLON] = ACTIONS(3786), + [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), }, [1209] = { - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_RPAREN] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [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_DOT_DOT_DOT] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [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(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [sym_pseudo_compile_time_identifier] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [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_line_comment] = STATE(1209), + [sym_block_comment] = STATE(1209), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3442), + [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_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), }, [1210] = { - [sym_identifier] = ACTIONS(3816), - [anon_sym_LF] = ACTIONS(3819), - [anon_sym_CR] = ACTIONS(3819), - [anon_sym_CR_LF] = ACTIONS(3819), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3819), - [anon_sym_DOT] = ACTIONS(3313), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_COMMA] = ACTIONS(3819), - [anon_sym_RBRACE] = ACTIONS(3816), - [anon_sym_LPAREN] = 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(3822), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_COLON] = ACTIONS(3824), - [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_line_comment] = STATE(1210), + [sym_block_comment] = STATE(1210), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3431), + [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_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), }, [1211] = { - [sym_identifier] = ACTIONS(3053), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_CR] = ACTIONS(3053), - [anon_sym_CR_LF] = ACTIONS(3053), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [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_DOT_DOT_DOT] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3053), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3053), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [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(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3053), - [anon_sym_POUND_LBRACK] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3053), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3053), - [sym_rune_literal] = ACTIONS(3053), - [sym_pseudo_compile_time_identifier] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3053), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [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_line_comment] = STATE(1211), + [sym_block_comment] = STATE(1211), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3007), + [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_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), }, [1212] = { - [sym_identifier] = ACTIONS(3001), - [anon_sym_LF] = ACTIONS(3001), - [anon_sym_CR] = ACTIONS(3001), - [anon_sym_CR_LF] = ACTIONS(3001), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1212), + [sym_block_comment] = STATE(1212), + [sym_identifier] = ACTIONS(2995), + [anon_sym_LF] = ACTIONS(2995), + [anon_sym_CR] = ACTIONS(2995), + [anon_sym_CR_LF] = ACTIONS(2995), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_as] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_RBRACE] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_RPAREN] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_fn] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_PERCENT] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2995), + [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_DOT_DOT_DOT] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_mut] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_go] = ACTIONS(2995), + [anon_sym_spawn] = ACTIONS(2995), + [anon_sym_json_DOTdecode] = ACTIONS(2995), + [anon_sym_LBRACK2] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_CARET] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2995), + [anon_sym_LT_DASH] = ACTIONS(2995), + [anon_sym_LT_LT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2995), + [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(2995), + [sym_none] = ACTIONS(2995), + [sym_true] = ACTIONS(2995), + [sym_false] = ACTIONS(2995), + [sym_nil] = ACTIONS(2995), + [anon_sym_QMARK_DOT] = ACTIONS(2995), + [anon_sym_POUND_LBRACK] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_DOLLARif] = ACTIONS(2995), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2995), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_BANGin] = ACTIONS(2995), + [anon_sym_match] = ACTIONS(2995), + [anon_sym_select] = ACTIONS(2995), + [anon_sym_lock] = ACTIONS(2995), + [anon_sym_rlock] = ACTIONS(2995), + [anon_sym_unsafe] = ACTIONS(2995), + [anon_sym_sql] = ACTIONS(2995), + [sym_int_literal] = ACTIONS(2995), + [sym_float_literal] = ACTIONS(2995), + [sym_rune_literal] = ACTIONS(2995), + [sym_pseudo_compile_time_identifier] = ACTIONS(2995), + [anon_sym_shared] = ACTIONS(2995), + [anon_sym_map_LBRACK] = ACTIONS(2995), + [anon_sym_chan] = ACTIONS(2995), + [anon_sym_thread] = ACTIONS(2995), + [anon_sym_atomic] = ACTIONS(2995), + [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), + }, + [1213] = { + [sym_line_comment] = STATE(1213), + [sym_block_comment] = STATE(1213), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3395), + [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_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), + }, + [1214] = { + [sym_line_comment] = STATE(1214), + [sym_block_comment] = STATE(1214), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LF] = ACTIONS(2991), + [anon_sym_CR] = ACTIONS(2991), + [anon_sym_CR_LF] = ACTIONS(2991), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym_DOT] = ACTIONS(2991), + [anon_sym_as] = ACTIONS(2991), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(2991), + [anon_sym_RBRACE] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2991), + [anon_sym_RPAREN] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(2991), + [anon_sym_fn] = ACTIONS(2991), + [anon_sym_PLUS] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_LT] = ACTIONS(2991), + [anon_sym_GT] = ACTIONS(2991), + [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_DOT_DOT_DOT] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2991), + [anon_sym_mut] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_go] = ACTIONS(2991), + [anon_sym_spawn] = ACTIONS(2991), + [anon_sym_json_DOTdecode] = ACTIONS(2991), + [anon_sym_LBRACK2] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2991), + [anon_sym_LT_DASH] = ACTIONS(2991), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2991), + [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(2991), + [sym_none] = ACTIONS(2991), + [sym_true] = ACTIONS(2991), + [sym_false] = ACTIONS(2991), + [sym_nil] = ACTIONS(2991), + [anon_sym_QMARK_DOT] = ACTIONS(2991), + [anon_sym_POUND_LBRACK] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2991), + [anon_sym_DOLLARif] = ACTIONS(2991), + [anon_sym_is] = ACTIONS(2991), + [anon_sym_BANGis] = ACTIONS(2991), + [anon_sym_in] = ACTIONS(2991), + [anon_sym_BANGin] = ACTIONS(2991), + [anon_sym_match] = ACTIONS(2991), + [anon_sym_select] = ACTIONS(2991), + [anon_sym_lock] = ACTIONS(2991), + [anon_sym_rlock] = ACTIONS(2991), + [anon_sym_unsafe] = ACTIONS(2991), + [anon_sym_sql] = ACTIONS(2991), + [sym_int_literal] = ACTIONS(2991), + [sym_float_literal] = ACTIONS(2991), + [sym_rune_literal] = ACTIONS(2991), + [sym_pseudo_compile_time_identifier] = ACTIONS(2991), + [anon_sym_shared] = ACTIONS(2991), + [anon_sym_map_LBRACK] = ACTIONS(2991), + [anon_sym_chan] = ACTIONS(2991), + [anon_sym_thread] = ACTIONS(2991), + [anon_sym_atomic] = ACTIONS(2991), + [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), + }, + [1215] = { + [sym_line_comment] = STATE(1215), + [sym_block_comment] = STATE(1215), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3399), + [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_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), + }, + [1216] = { + [sym_line_comment] = STATE(1216), + [sym_block_comment] = STATE(1216), + [sym_identifier] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2987), + [anon_sym_CR] = ACTIONS(2987), + [anon_sym_CR_LF] = ACTIONS(2987), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_DOT] = ACTIONS(2987), + [anon_sym_as] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_COMMA] = ACTIONS(2987), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_fn] = ACTIONS(2987), + [anon_sym_PLUS] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_PERCENT] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [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_DOT_DOT_DOT] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2987), + [anon_sym_mut] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_QMARK] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_go] = ACTIONS(2987), + [anon_sym_spawn] = ACTIONS(2987), + [anon_sym_json_DOTdecode] = ACTIONS(2987), + [anon_sym_LBRACK2] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_CARET] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2987), + [anon_sym_LT_DASH] = ACTIONS(2987), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2987), + [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(2987), + [sym_none] = ACTIONS(2987), + [sym_true] = ACTIONS(2987), + [sym_false] = ACTIONS(2987), + [sym_nil] = ACTIONS(2987), + [anon_sym_QMARK_DOT] = ACTIONS(2987), + [anon_sym_POUND_LBRACK] = ACTIONS(2987), + [anon_sym_if] = ACTIONS(2987), + [anon_sym_DOLLARif] = ACTIONS(2987), + [anon_sym_is] = ACTIONS(2987), + [anon_sym_BANGis] = ACTIONS(2987), + [anon_sym_in] = ACTIONS(2987), + [anon_sym_BANGin] = ACTIONS(2987), + [anon_sym_match] = ACTIONS(2987), + [anon_sym_select] = ACTIONS(2987), + [anon_sym_lock] = ACTIONS(2987), + [anon_sym_rlock] = ACTIONS(2987), + [anon_sym_unsafe] = ACTIONS(2987), + [anon_sym_sql] = ACTIONS(2987), + [sym_int_literal] = ACTIONS(2987), + [sym_float_literal] = ACTIONS(2987), + [sym_rune_literal] = ACTIONS(2987), + [sym_pseudo_compile_time_identifier] = ACTIONS(2987), + [anon_sym_shared] = ACTIONS(2987), + [anon_sym_map_LBRACK] = ACTIONS(2987), + [anon_sym_chan] = ACTIONS(2987), + [anon_sym_thread] = ACTIONS(2987), + [anon_sym_atomic] = ACTIONS(2987), + [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), + }, + [1217] = { + [sym_line_comment] = STATE(1217), + [sym_block_comment] = STATE(1217), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3403), + [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_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), + }, + [1218] = { + [sym_line_comment] = STATE(1218), + [sym_block_comment] = STATE(1218), + [sym_reference_expression] = STATE(4480), + [sym_type_reference_expression] = STATE(1961), + [sym_plain_type] = STATE(1986), + [sym__plain_type_without_special] = STATE(1981), + [sym_anon_struct_type] = STATE(1982), + [sym_multi_return_type] = STATE(1981), + [sym_result_type] = STATE(1981), + [sym_option_type] = STATE(1981), + [sym_qualified_type] = STATE(1961), + [sym_fixed_array_type] = STATE(1982), + [sym_array_type] = STATE(1982), + [sym_pointer_type] = STATE(1982), + [sym_wrong_pointer_type] = STATE(1982), + [sym_map_type] = STATE(1982), + [sym_channel_type] = STATE(1982), + [sym_shared_type] = STATE(1982), + [sym_thread_type] = STATE(1982), + [sym_atomic_type] = STATE(1982), + [sym_generic_type] = STATE(1982), + [sym_function_type] = STATE(1982), + [sym_identifier] = ACTIONS(3788), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(627), + [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(3790), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(3794), + [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(3796), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_BANG] = ACTIONS(3800), + [anon_sym_LBRACK2] = ACTIONS(3802), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(3804), + [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(3806), + [anon_sym_map_LBRACK] = ACTIONS(3808), + [anon_sym_chan] = ACTIONS(3810), + [anon_sym_thread] = ACTIONS(3812), + [anon_sym_atomic] = ACTIONS(3814), + }, + [1219] = { + [sym_line_comment] = STATE(1219), + [sym_block_comment] = STATE(1219), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LF] = ACTIONS(2953), + [anon_sym_CR] = ACTIONS(2953), + [anon_sym_CR_LF] = ACTIONS(2953), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2953), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_as] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2953), + [anon_sym_COMMA] = ACTIONS(2953), + [anon_sym_RBRACE] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2953), + [anon_sym_RPAREN] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_fn] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2953), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_EQ_EQ] = ACTIONS(2953), + [anon_sym_BANG_EQ] = ACTIONS(2953), + [anon_sym_LT_EQ] = ACTIONS(2953), + [anon_sym_GT_EQ] = ACTIONS(2953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2953), + [anon_sym_mut] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_go] = ACTIONS(2953), + [anon_sym_spawn] = ACTIONS(2953), + [anon_sym_json_DOTdecode] = ACTIONS(2953), + [anon_sym_LBRACK2] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2953), + [anon_sym_CARET] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_LT_DASH] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2953), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2953), + [anon_sym_AMP_CARET] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2953), + [anon_sym_PIPE_PIPE] = ACTIONS(2953), + [anon_sym_or] = ACTIONS(2953), + [sym_none] = ACTIONS(2953), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [sym_nil] = ACTIONS(2953), + [anon_sym_QMARK_DOT] = ACTIONS(2953), + [anon_sym_POUND_LBRACK] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_DOLLARif] = ACTIONS(2953), + [anon_sym_is] = ACTIONS(2953), + [anon_sym_BANGis] = ACTIONS(2953), + [anon_sym_in] = ACTIONS(2953), + [anon_sym_BANGin] = ACTIONS(2953), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2953), + [anon_sym_lock] = ACTIONS(2953), + [anon_sym_rlock] = ACTIONS(2953), + [anon_sym_unsafe] = ACTIONS(2953), + [anon_sym_sql] = ACTIONS(2953), + [sym_int_literal] = ACTIONS(2953), + [sym_float_literal] = ACTIONS(2953), + [sym_rune_literal] = ACTIONS(2953), + [sym_pseudo_compile_time_identifier] = ACTIONS(2953), + [anon_sym_shared] = ACTIONS(2953), + [anon_sym_map_LBRACK] = ACTIONS(2953), + [anon_sym_chan] = ACTIONS(2953), + [anon_sym_thread] = ACTIONS(2953), + [anon_sym_atomic] = ACTIONS(2953), + [sym___double_quote] = ACTIONS(2953), + [sym___single_quote] = ACTIONS(2953), + [sym___c_double_quote] = ACTIONS(2953), + [sym___c_single_quote] = ACTIONS(2953), + [sym___r_double_quote] = ACTIONS(2953), + [sym___r_single_quote] = ACTIONS(2953), + }, + [1220] = { + [sym_line_comment] = STATE(1220), + [sym_block_comment] = STATE(1220), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_as] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(611), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3816), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(603), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(603), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(603), + [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(619), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1221] = { + [sym_line_comment] = STATE(1221), + [sym_block_comment] = STATE(1221), + [sym_identifier] = ACTIONS(2945), + [anon_sym_LF] = ACTIONS(2945), + [anon_sym_CR] = ACTIONS(2945), + [anon_sym_CR_LF] = ACTIONS(2945), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_SEMI] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(2945), + [anon_sym_as] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2945), + [anon_sym_COMMA] = ACTIONS(2945), + [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_RPAREN] = ACTIONS(2945), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_fn] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_PERCENT] = ACTIONS(2945), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_GT] = ACTIONS(2945), + [anon_sym_EQ_EQ] = ACTIONS(2945), + [anon_sym_BANG_EQ] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2945), + [anon_sym_GT_EQ] = ACTIONS(2945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(2945), + [anon_sym_mut] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2945), + [anon_sym_QMARK] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2945), + [anon_sym_go] = ACTIONS(2945), + [anon_sym_spawn] = ACTIONS(2945), + [anon_sym_json_DOTdecode] = ACTIONS(2945), + [anon_sym_LBRACK2] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_LT_DASH] = ACTIONS(2945), + [anon_sym_LT_LT] = ACTIONS(2945), + [anon_sym_GT_GT] = ACTIONS(2945), + [anon_sym_GT_GT_GT] = ACTIONS(2945), + [anon_sym_AMP_CARET] = ACTIONS(2945), + [anon_sym_AMP_AMP] = ACTIONS(2945), + [anon_sym_PIPE_PIPE] = ACTIONS(2945), + [anon_sym_or] = ACTIONS(2945), + [sym_none] = ACTIONS(2945), + [sym_true] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [sym_nil] = ACTIONS(2945), + [anon_sym_QMARK_DOT] = ACTIONS(2945), + [anon_sym_POUND_LBRACK] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_DOLLARif] = ACTIONS(2945), + [anon_sym_is] = ACTIONS(2945), + [anon_sym_BANGis] = ACTIONS(2945), + [anon_sym_in] = ACTIONS(2945), + [anon_sym_BANGin] = ACTIONS(2945), + [anon_sym_match] = ACTIONS(2945), + [anon_sym_select] = ACTIONS(2945), + [anon_sym_lock] = ACTIONS(2945), + [anon_sym_rlock] = ACTIONS(2945), + [anon_sym_unsafe] = ACTIONS(2945), + [anon_sym_sql] = ACTIONS(2945), + [sym_int_literal] = ACTIONS(2945), + [sym_float_literal] = ACTIONS(2945), + [sym_rune_literal] = ACTIONS(2945), + [sym_pseudo_compile_time_identifier] = ACTIONS(2945), + [anon_sym_shared] = ACTIONS(2945), + [anon_sym_map_LBRACK] = ACTIONS(2945), + [anon_sym_chan] = ACTIONS(2945), + [anon_sym_thread] = ACTIONS(2945), + [anon_sym_atomic] = ACTIONS(2945), + [sym___double_quote] = ACTIONS(2945), + [sym___single_quote] = ACTIONS(2945), + [sym___c_double_quote] = ACTIONS(2945), + [sym___c_single_quote] = ACTIONS(2945), + [sym___r_double_quote] = ACTIONS(2945), + [sym___r_single_quote] = ACTIONS(2945), + }, + [1222] = { + [sym_line_comment] = STATE(1222), + [sym_block_comment] = STATE(1222), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3438), + [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_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), + }, + [1223] = { + [sym_line_comment] = STATE(1223), + [sym_block_comment] = STATE(1223), + [sym_reference_expression] = STATE(4480), + [sym_type_reference_expression] = STATE(1961), + [sym_plain_type] = STATE(2003), + [sym__plain_type_without_special] = STATE(1981), + [sym_anon_struct_type] = STATE(1982), + [sym_multi_return_type] = STATE(1981), + [sym_result_type] = STATE(1981), + [sym_option_type] = STATE(1981), + [sym_qualified_type] = STATE(1961), + [sym_fixed_array_type] = STATE(1982), + [sym_array_type] = STATE(1982), + [sym_pointer_type] = STATE(1982), + [sym_wrong_pointer_type] = STATE(1982), + [sym_map_type] = STATE(1982), + [sym_channel_type] = STATE(1982), + [sym_shared_type] = STATE(1982), + [sym_thread_type] = STATE(1982), + [sym_atomic_type] = STATE(1982), + [sym_generic_type] = STATE(1982), + [sym_function_type] = STATE(1982), + [sym_identifier] = ACTIONS(3788), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [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(567), + [anon_sym_struct] = ACTIONS(3796), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_BANG] = ACTIONS(3800), + [anon_sym_LBRACK2] = ACTIONS(3802), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(3804), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_GT_GT_GT] = ACTIONS(571), + [anon_sym_AMP_CARET] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_or] = ACTIONS(571), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_AMP_CARET_EQ] = ACTIONS(567), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_COLON_EQ] = ACTIONS(567), + [anon_sym_shared] = ACTIONS(3806), + [anon_sym_map_LBRACK] = ACTIONS(3808), + [anon_sym_chan] = ACTIONS(3810), + [anon_sym_thread] = ACTIONS(3812), + [anon_sym_atomic] = ACTIONS(3814), + }, + [1224] = { + [sym_line_comment] = STATE(1224), + [sym_block_comment] = STATE(1224), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LF] = ACTIONS(2941), + [anon_sym_CR] = ACTIONS(2941), + [anon_sym_CR_LF] = ACTIONS(2941), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2941), + [anon_sym_DOT] = ACTIONS(2941), + [anon_sym_as] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2941), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2941), + [anon_sym_RPAREN] = ACTIONS(2941), + [anon_sym_PIPE] = ACTIONS(2941), + [anon_sym_fn] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_PERCENT] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2941), + [anon_sym_GT] = ACTIONS(2941), + [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_DOT_DOT_DOT] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_struct] = ACTIONS(2941), + [anon_sym_mut] = ACTIONS(2941), + [anon_sym_PLUS_PLUS] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2941), + [anon_sym_QMARK] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_go] = ACTIONS(2941), + [anon_sym_spawn] = ACTIONS(2941), + [anon_sym_json_DOTdecode] = ACTIONS(2941), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2941), + [anon_sym_CARET] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2941), + [anon_sym_LT_DASH] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2941), + [anon_sym_GT_GT] = ACTIONS(2941), + [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(2941), + [sym_none] = ACTIONS(2941), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [sym_nil] = ACTIONS(2941), + [anon_sym_QMARK_DOT] = ACTIONS(2941), + [anon_sym_POUND_LBRACK] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_DOLLARif] = ACTIONS(2941), + [anon_sym_is] = ACTIONS(2941), + [anon_sym_BANGis] = ACTIONS(2941), + [anon_sym_in] = ACTIONS(2941), + [anon_sym_BANGin] = ACTIONS(2941), + [anon_sym_match] = ACTIONS(2941), + [anon_sym_select] = ACTIONS(2941), + [anon_sym_lock] = ACTIONS(2941), + [anon_sym_rlock] = ACTIONS(2941), + [anon_sym_unsafe] = ACTIONS(2941), + [anon_sym_sql] = ACTIONS(2941), + [sym_int_literal] = ACTIONS(2941), + [sym_float_literal] = ACTIONS(2941), + [sym_rune_literal] = ACTIONS(2941), + [sym_pseudo_compile_time_identifier] = ACTIONS(2941), + [anon_sym_shared] = ACTIONS(2941), + [anon_sym_map_LBRACK] = ACTIONS(2941), + [anon_sym_chan] = ACTIONS(2941), + [anon_sym_thread] = ACTIONS(2941), + [anon_sym_atomic] = ACTIONS(2941), + [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), + }, + [1225] = { + [sym_line_comment] = STATE(1225), + [sym_block_comment] = STATE(1225), + [sym_reference_expression] = STATE(4480), + [sym_type_reference_expression] = STATE(1961), + [sym_plain_type] = STATE(2007), + [sym__plain_type_without_special] = STATE(1981), + [sym_anon_struct_type] = STATE(1982), + [sym_multi_return_type] = STATE(1981), + [sym_result_type] = STATE(1981), + [sym_option_type] = STATE(1981), + [sym_qualified_type] = STATE(1961), + [sym_fixed_array_type] = STATE(1982), + [sym_array_type] = STATE(1982), + [sym_pointer_type] = STATE(1982), + [sym_wrong_pointer_type] = STATE(1982), + [sym_map_type] = STATE(1982), + [sym_channel_type] = STATE(1982), + [sym_shared_type] = STATE(1982), + [sym_thread_type] = STATE(1982), + [sym_atomic_type] = STATE(1982), + [sym_generic_type] = STATE(1982), + [sym_function_type] = STATE(1982), + [sym_identifier] = ACTIONS(3788), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(623), + [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(3790), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3794), + [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(3796), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_BANG] = ACTIONS(3800), + [anon_sym_LBRACK2] = ACTIONS(3802), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3804), + [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(3806), + [anon_sym_map_LBRACK] = ACTIONS(3808), + [anon_sym_chan] = ACTIONS(3810), + [anon_sym_thread] = ACTIONS(3812), + [anon_sym_atomic] = ACTIONS(3814), }, - [1213] = { - [sym_identifier] = ACTIONS(3370), - [anon_sym_LF] = ACTIONS(3370), - [anon_sym_CR] = ACTIONS(3370), - [anon_sym_CR_LF] = ACTIONS(3370), - [sym_comment] = ACTIONS(495), - [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), + [1226] = { + [sym_line_comment] = STATE(1226), + [sym_block_comment] = STATE(1226), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2975), + [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_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(2975), + [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), }, - [1214] = { - [sym_identifier] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_CR] = ACTIONS(3404), - [anon_sym_CR_LF] = ACTIONS(3404), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_DOT] = ACTIONS(3404), - [anon_sym_as] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_COMMA] = ACTIONS(3404), - [anon_sym_RBRACE] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(3404), - [anon_sym_RPAREN] = ACTIONS(3404), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_fn] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3404), - [anon_sym_SLASH] = ACTIONS(3404), - [anon_sym_PERCENT] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [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_DOT_DOT_DOT] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3402), - [anon_sym_struct] = ACTIONS(3404), - [anon_sym_mut] = ACTIONS(3404), - [anon_sym_PLUS_PLUS] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3404), - [anon_sym_QMARK] = ACTIONS(3404), - [anon_sym_BANG] = ACTIONS(3404), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3404), - [anon_sym_json_DOTdecode] = ACTIONS(3404), - [anon_sym_LBRACK2] = ACTIONS(3404), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3404), - [anon_sym_LT_LT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [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(3404), - [sym_none] = ACTIONS(3404), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [sym_nil] = ACTIONS(3404), - [anon_sym_QMARK_DOT] = ACTIONS(3404), - [anon_sym_POUND_LBRACK] = ACTIONS(3404), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_DOLLARif] = ACTIONS(3404), - [anon_sym_is] = ACTIONS(3404), - [anon_sym_BANGis] = ACTIONS(3404), - [anon_sym_in] = ACTIONS(3404), - [anon_sym_BANGin] = ACTIONS(3404), - [anon_sym_match] = ACTIONS(3404), - [anon_sym_select] = ACTIONS(3404), - [anon_sym_lock] = ACTIONS(3404), - [anon_sym_rlock] = ACTIONS(3404), - [anon_sym_unsafe] = ACTIONS(3404), - [anon_sym_sql] = ACTIONS(3404), - [sym_int_literal] = ACTIONS(3404), - [sym_float_literal] = ACTIONS(3404), - [sym_rune_literal] = ACTIONS(3404), - [sym_pseudo_compile_time_identifier] = ACTIONS(3404), - [anon_sym_shared] = ACTIONS(3404), - [anon_sym_map_LBRACK] = ACTIONS(3404), - [anon_sym_chan] = ACTIONS(3404), - [anon_sym_thread] = ACTIONS(3404), - [anon_sym_atomic] = ACTIONS(3404), - [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), + [1227] = { + [sym_line_comment] = STATE(1227), + [sym_block_comment] = STATE(1227), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_as] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(611), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3818), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(603), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(603), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(603), + [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(619), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, - [1215] = { - [sym_identifier] = ACTIONS(3145), - [anon_sym_LF] = ACTIONS(3145), - [anon_sym_CR] = ACTIONS(3145), - [anon_sym_CR_LF] = ACTIONS(3145), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_RPAREN] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [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_DOT_DOT_DOT] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [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(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3145), - [anon_sym_POUND_LBRACK] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [sym_pseudo_compile_time_identifier] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [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), + [1228] = { + [sym_line_comment] = STATE(1228), + [sym_block_comment] = STATE(1228), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_RBRACE] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [sym___double_quote] = ACTIONS(2833), + [sym___single_quote] = ACTIONS(2833), + [sym___c_double_quote] = ACTIONS(2833), + [sym___c_single_quote] = ACTIONS(2833), + [sym___r_double_quote] = ACTIONS(2833), + [sym___r_single_quote] = ACTIONS(2833), }, - [1216] = { - [sym_identifier] = ACTIONS(2651), - [anon_sym_LF] = ACTIONS(2651), - [anon_sym_CR] = ACTIONS(2651), - [anon_sym_CR_LF] = ACTIONS(2651), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_as] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2651), - [anon_sym_RBRACE] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_RPAREN] = ACTIONS(2651), - [anon_sym_PIPE] = ACTIONS(2651), - [anon_sym_fn] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_SLASH] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2651), - [anon_sym_GT] = ACTIONS(2651), - [anon_sym_EQ_EQ] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2651), - [anon_sym_LT_EQ] = ACTIONS(2651), - [anon_sym_GT_EQ] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_mut] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_go] = ACTIONS(2651), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_CARET] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_LT_LT] = ACTIONS(2651), - [anon_sym_GT_GT] = ACTIONS(2651), - [anon_sym_GT_GT_GT] = ACTIONS(2651), - [anon_sym_AMP_CARET] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_or] = ACTIONS(2651), - [sym_none] = ACTIONS(2651), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_nil] = ACTIONS(2651), - [anon_sym_QMARK_DOT] = ACTIONS(2651), - [anon_sym_POUND_LBRACK] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_DOLLARif] = ACTIONS(2651), - [anon_sym_is] = ACTIONS(2651), - [anon_sym_BANGis] = ACTIONS(2651), - [anon_sym_in] = ACTIONS(2651), - [anon_sym_BANGin] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_select] = ACTIONS(2651), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(2651), - [anon_sym_sql] = ACTIONS(2651), - [sym_int_literal] = ACTIONS(2651), - [sym_float_literal] = ACTIONS(2651), - [sym_rune_literal] = ACTIONS(2651), - [sym_pseudo_compile_time_identifier] = ACTIONS(2651), - [anon_sym_shared] = ACTIONS(2651), - [anon_sym_map_LBRACK] = ACTIONS(2651), - [anon_sym_chan] = ACTIONS(2651), - [anon_sym_thread] = ACTIONS(2651), - [anon_sym_atomic] = ACTIONS(2651), - [sym___double_quote] = ACTIONS(2651), - [sym___single_quote] = ACTIONS(2651), - [sym___c_double_quote] = ACTIONS(2651), - [sym___c_single_quote] = ACTIONS(2651), - [sym___r_double_quote] = ACTIONS(2651), - [sym___r_single_quote] = ACTIONS(2651), + [1229] = { + [sym_line_comment] = STATE(1229), + [sym_block_comment] = STATE(1229), + [sym_identifier] = ACTIONS(2743), + [anon_sym_LF] = ACTIONS(2743), + [anon_sym_CR] = ACTIONS(2743), + [anon_sym_CR_LF] = ACTIONS(2743), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_as] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_RPAREN] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [anon_sym_EQ_EQ] = ACTIONS(2743), + [anon_sym_BANG_EQ] = ACTIONS(2743), + [anon_sym_LT_EQ] = ACTIONS(2743), + [anon_sym_GT_EQ] = ACTIONS(2743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_mut] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_go] = ACTIONS(2743), + [anon_sym_spawn] = ACTIONS(2743), + [anon_sym_json_DOTdecode] = ACTIONS(2743), + [anon_sym_LBRACK2] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2743), + [anon_sym_LT_LT] = ACTIONS(2743), + [anon_sym_GT_GT] = ACTIONS(2743), + [anon_sym_GT_GT_GT] = ACTIONS(2743), + [anon_sym_AMP_CARET] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_PIPE_PIPE] = ACTIONS(2743), + [anon_sym_or] = ACTIONS(2743), + [sym_none] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_nil] = ACTIONS(2743), + [anon_sym_QMARK_DOT] = ACTIONS(2743), + [anon_sym_POUND_LBRACK] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_DOLLARif] = ACTIONS(2743), + [anon_sym_is] = ACTIONS(2743), + [anon_sym_BANGis] = ACTIONS(2743), + [anon_sym_in] = ACTIONS(2743), + [anon_sym_BANGin] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_select] = ACTIONS(2743), + [anon_sym_lock] = ACTIONS(2743), + [anon_sym_rlock] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_sql] = ACTIONS(2743), + [sym_int_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), + [sym_rune_literal] = ACTIONS(2743), + [sym_pseudo_compile_time_identifier] = ACTIONS(2743), + [anon_sym_shared] = ACTIONS(2743), + [anon_sym_map_LBRACK] = ACTIONS(2743), + [anon_sym_chan] = ACTIONS(2743), + [anon_sym_thread] = ACTIONS(2743), + [anon_sym_atomic] = ACTIONS(2743), + [sym___double_quote] = ACTIONS(2743), + [sym___single_quote] = ACTIONS(2743), + [sym___c_double_quote] = ACTIONS(2743), + [sym___c_single_quote] = ACTIONS(2743), + [sym___r_double_quote] = ACTIONS(2743), + [sym___r_single_quote] = ACTIONS(2743), }, - [1217] = { + [1230] = { + [sym_line_comment] = STATE(1230), + [sym_block_comment] = STATE(1230), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3407), + [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_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), + }, + [1231] = { + [sym_line_comment] = STATE(1231), + [sym_block_comment] = STATE(1231), + [sym_identifier] = ACTIONS(2949), + [anon_sym_LF] = ACTIONS(2949), + [anon_sym_CR] = ACTIONS(2949), + [anon_sym_CR_LF] = ACTIONS(2949), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_as] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_COMMA] = ACTIONS(2949), + [anon_sym_RBRACE] = ACTIONS(2949), + [anon_sym_LPAREN] = ACTIONS(2949), + [anon_sym_RPAREN] = ACTIONS(2949), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_fn] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_EQ_EQ] = ACTIONS(2949), + [anon_sym_BANG_EQ] = ACTIONS(2949), + [anon_sym_LT_EQ] = ACTIONS(2949), + [anon_sym_GT_EQ] = ACTIONS(2949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_mut] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2949), + [anon_sym_DASH_DASH] = ACTIONS(2949), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_go] = ACTIONS(2949), + [anon_sym_spawn] = ACTIONS(2949), + [anon_sym_json_DOTdecode] = ACTIONS(2949), + [anon_sym_LBRACK2] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_CARET] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2949), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2949), + [anon_sym_AMP_CARET] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2949), + [anon_sym_PIPE_PIPE] = ACTIONS(2949), + [anon_sym_or] = ACTIONS(2949), + [sym_none] = ACTIONS(2949), + [sym_true] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [sym_nil] = ACTIONS(2949), + [anon_sym_QMARK_DOT] = ACTIONS(2949), + [anon_sym_POUND_LBRACK] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2949), + [anon_sym_is] = ACTIONS(2949), + [anon_sym_BANGis] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2949), + [anon_sym_BANGin] = ACTIONS(2949), + [anon_sym_match] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [anon_sym_lock] = ACTIONS(2949), + [anon_sym_rlock] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_sql] = ACTIONS(2949), + [sym_int_literal] = ACTIONS(2949), + [sym_float_literal] = ACTIONS(2949), + [sym_rune_literal] = ACTIONS(2949), + [sym_pseudo_compile_time_identifier] = ACTIONS(2949), + [anon_sym_shared] = ACTIONS(2949), + [anon_sym_map_LBRACK] = ACTIONS(2949), + [anon_sym_chan] = ACTIONS(2949), + [anon_sym_thread] = ACTIONS(2949), + [anon_sym_atomic] = ACTIONS(2949), + [sym___double_quote] = ACTIONS(2949), + [sym___single_quote] = ACTIONS(2949), + [sym___c_double_quote] = ACTIONS(2949), + [sym___c_single_quote] = ACTIONS(2949), + [sym___r_double_quote] = ACTIONS(2949), + [sym___r_single_quote] = ACTIONS(2949), + }, + [1232] = { + [sym_line_comment] = STATE(1232), + [sym_block_comment] = STATE(1232), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3011), + [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_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), + }, + [1233] = { + [sym_line_comment] = STATE(1233), + [sym_block_comment] = STATE(1233), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3319), + [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_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), + }, + [1234] = { + [sym_line_comment] = STATE(1234), + [sym_block_comment] = STATE(1234), + [sym_identifier] = ACTIONS(3149), + [anon_sym_LF] = ACTIONS(3149), + [anon_sym_CR] = ACTIONS(3149), + [anon_sym_CR_LF] = ACTIONS(3149), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(2835), + [anon_sym_as] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_RPAREN] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_fn] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_PERCENT] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_GT] = ACTIONS(3149), + [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_DOT_DOT_DOT] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_mut] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_QMARK] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_go] = ACTIONS(3149), + [anon_sym_spawn] = ACTIONS(3149), + [anon_sym_json_DOTdecode] = ACTIONS(3149), + [anon_sym_LBRACK2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_LT_DASH] = ACTIONS(3149), + [anon_sym_LT_LT] = ACTIONS(3149), + [anon_sym_GT_GT] = ACTIONS(3149), + [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(3149), + [sym_none] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_nil] = ACTIONS(3149), + [anon_sym_QMARK_DOT] = ACTIONS(3149), + [anon_sym_POUND_LBRACK] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_DOLLARif] = ACTIONS(3149), + [anon_sym_is] = ACTIONS(3149), + [anon_sym_BANGis] = ACTIONS(3149), + [anon_sym_in] = ACTIONS(3149), + [anon_sym_BANGin] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_rlock] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_sql] = ACTIONS(3149), + [sym_int_literal] = ACTIONS(3149), + [sym_float_literal] = ACTIONS(3149), + [sym_rune_literal] = ACTIONS(3149), + [sym_pseudo_compile_time_identifier] = ACTIONS(3149), + [anon_sym_shared] = ACTIONS(3149), + [anon_sym_map_LBRACK] = ACTIONS(3149), + [anon_sym_chan] = ACTIONS(3149), + [anon_sym_thread] = ACTIONS(3149), + [anon_sym_atomic] = ACTIONS(3149), + [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), + }, + [1235] = { + [sym_line_comment] = STATE(1235), + [sym_block_comment] = STATE(1235), [sym_identifier] = ACTIONS(3265), [anon_sym_LF] = ACTIONS(3265), [anon_sym_CR] = ACTIONS(3265), [anon_sym_CR_LF] = ACTIONS(3265), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3265), [anon_sym_SEMI] = ACTIONS(3265), [anon_sym_DOT] = ACTIONS(3265), [anon_sym_as] = ACTIONS(3265), @@ -160083,7 +162399,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3265), [anon_sym_DASH] = ACTIONS(3265), [anon_sym_STAR] = ACTIONS(3265), - [anon_sym_SLASH] = ACTIONS(3265), [anon_sym_PERCENT] = ACTIONS(3265), [anon_sym_LT] = ACTIONS(3265), [anon_sym_GT] = ACTIONS(3265), @@ -160102,982 +162417,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(3265), [anon_sym_spawn] = ACTIONS(3265), [anon_sym_json_DOTdecode] = ACTIONS(3265), - [anon_sym_LBRACK2] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_CARET] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3265), - [anon_sym_LT_DASH] = ACTIONS(3265), - [anon_sym_LT_LT] = ACTIONS(3265), - [anon_sym_GT_GT] = ACTIONS(3265), - [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(3265), - [sym_none] = ACTIONS(3265), - [sym_true] = ACTIONS(3265), - [sym_false] = ACTIONS(3265), - [sym_nil] = ACTIONS(3265), - [anon_sym_QMARK_DOT] = ACTIONS(3265), - [anon_sym_POUND_LBRACK] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3265), - [anon_sym_DOLLARif] = ACTIONS(3265), - [anon_sym_is] = ACTIONS(3265), - [anon_sym_BANGis] = ACTIONS(3265), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3265), - [anon_sym_match] = ACTIONS(3265), - [anon_sym_select] = ACTIONS(3265), - [anon_sym_lock] = ACTIONS(3265), - [anon_sym_rlock] = ACTIONS(3265), - [anon_sym_unsafe] = ACTIONS(3265), - [anon_sym_sql] = ACTIONS(3265), - [sym_int_literal] = ACTIONS(3265), - [sym_float_literal] = ACTIONS(3265), - [sym_rune_literal] = ACTIONS(3265), - [sym_pseudo_compile_time_identifier] = ACTIONS(3265), - [anon_sym_shared] = ACTIONS(3265), - [anon_sym_map_LBRACK] = ACTIONS(3265), - [anon_sym_chan] = ACTIONS(3265), - [anon_sym_thread] = ACTIONS(3265), - [anon_sym_atomic] = ACTIONS(3265), - [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), - }, - [1218] = { - [sym_identifier] = ACTIONS(3420), - [anon_sym_LF] = ACTIONS(3420), - [anon_sym_CR] = ACTIONS(3420), - [anon_sym_CR_LF] = ACTIONS(3420), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3420), - [anon_sym_COMMA] = ACTIONS(3420), - [anon_sym_RBRACE] = ACTIONS(3420), - [anon_sym_LPAREN] = ACTIONS(3420), - [anon_sym_RPAREN] = ACTIONS(3420), - [anon_sym_PIPE] = ACTIONS(3420), - [anon_sym_fn] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [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_DOT_DOT_DOT] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(3420), - [anon_sym_mut] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3420), - [anon_sym_DASH_DASH] = ACTIONS(3420), - [anon_sym_QMARK] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(3420), - [anon_sym_spawn] = ACTIONS(3420), - [anon_sym_json_DOTdecode] = ACTIONS(3420), - [anon_sym_LBRACK2] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3420), - [anon_sym_CARET] = ACTIONS(3420), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_LT_DASH] = ACTIONS(3420), - [anon_sym_LT_LT] = ACTIONS(3420), - [anon_sym_GT_GT] = ACTIONS(3420), - [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(3420), - [sym_none] = ACTIONS(3420), - [sym_true] = ACTIONS(3420), - [sym_false] = ACTIONS(3420), - [sym_nil] = ACTIONS(3420), - [anon_sym_QMARK_DOT] = ACTIONS(3420), - [anon_sym_POUND_LBRACK] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_DOLLARif] = ACTIONS(3420), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_BANGin] = ACTIONS(3420), - [anon_sym_match] = ACTIONS(3420), - [anon_sym_select] = ACTIONS(3420), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3420), - [anon_sym_sql] = ACTIONS(3420), - [sym_int_literal] = ACTIONS(3420), - [sym_float_literal] = ACTIONS(3420), - [sym_rune_literal] = ACTIONS(3420), - [sym_pseudo_compile_time_identifier] = ACTIONS(3420), - [anon_sym_shared] = ACTIONS(3420), - [anon_sym_map_LBRACK] = ACTIONS(3420), - [anon_sym_chan] = ACTIONS(3420), - [anon_sym_thread] = ACTIONS(3420), - [anon_sym_atomic] = ACTIONS(3420), - [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), - }, - [1219] = { - [sym_identifier] = ACTIONS(3057), - [anon_sym_LF] = ACTIONS(3057), - [anon_sym_CR] = ACTIONS(3057), - [anon_sym_CR_LF] = ACTIONS(3057), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_RPAREN] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_EQ_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3057), - [anon_sym_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_EQ] = ACTIONS(3057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3057), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3057), - [anon_sym_LT_LT] = ACTIONS(3057), - [anon_sym_GT_GT] = ACTIONS(3057), - [anon_sym_GT_GT_GT] = ACTIONS(3057), - [anon_sym_AMP_CARET] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_PIPE_PIPE] = ACTIONS(3057), - [anon_sym_or] = ACTIONS(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3057), - [anon_sym_POUND_LBRACK] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3057), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3057), - [sym_rune_literal] = ACTIONS(3057), - [sym_pseudo_compile_time_identifier] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3057), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [sym___double_quote] = ACTIONS(3057), - [sym___single_quote] = ACTIONS(3057), - [sym___c_double_quote] = ACTIONS(3057), - [sym___c_single_quote] = ACTIONS(3057), - [sym___r_double_quote] = ACTIONS(3057), - [sym___r_single_quote] = ACTIONS(3057), - }, - [1220] = { - [sym_identifier] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3061), - [anon_sym_CR] = ACTIONS(3061), - [anon_sym_CR_LF] = ACTIONS(3061), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_EQ] = ACTIONS(3061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3061), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_CARET] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3061), - [anon_sym_POUND_LBRACK] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3061), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3061), - [sym_rune_literal] = ACTIONS(3061), - [sym_pseudo_compile_time_identifier] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3061), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3061), - [sym___single_quote] = ACTIONS(3061), - [sym___c_double_quote] = ACTIONS(3061), - [sym___c_single_quote] = ACTIONS(3061), - [sym___r_double_quote] = ACTIONS(3061), - [sym___r_single_quote] = ACTIONS(3061), - }, - [1221] = { - [sym_identifier] = ACTIONS(3352), - [anon_sym_LF] = ACTIONS(3352), - [anon_sym_CR] = ACTIONS(3352), - [anon_sym_CR_LF] = ACTIONS(3352), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3352), - [anon_sym_as] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_PIPE] = ACTIONS(3352), - [anon_sym_fn] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3352), - [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_DOT_DOT_DOT] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_mut] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_QMARK] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_go] = ACTIONS(3352), - [anon_sym_spawn] = ACTIONS(3352), - [anon_sym_json_DOTdecode] = ACTIONS(3352), - [anon_sym_LBRACK2] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(3352), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3352), - [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(3352), - [sym_none] = ACTIONS(3352), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [sym_nil] = ACTIONS(3352), - [anon_sym_QMARK_DOT] = ACTIONS(3352), - [anon_sym_POUND_LBRACK] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_DOLLARif] = ACTIONS(3352), - [anon_sym_is] = ACTIONS(3352), - [anon_sym_BANGis] = ACTIONS(3352), - [anon_sym_in] = ACTIONS(3352), - [anon_sym_BANGin] = ACTIONS(3352), - [anon_sym_match] = ACTIONS(3352), - [anon_sym_select] = ACTIONS(3352), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3352), - [anon_sym_sql] = ACTIONS(3352), - [sym_int_literal] = ACTIONS(3352), - [sym_float_literal] = ACTIONS(3352), - [sym_rune_literal] = ACTIONS(3352), - [sym_pseudo_compile_time_identifier] = ACTIONS(3352), - [anon_sym_shared] = ACTIONS(3352), - [anon_sym_map_LBRACK] = ACTIONS(3352), - [anon_sym_chan] = ACTIONS(3352), - [anon_sym_thread] = ACTIONS(3352), - [anon_sym_atomic] = ACTIONS(3352), - [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), - }, - [1222] = { - [sym_identifier] = ACTIONS(3269), - [anon_sym_LF] = ACTIONS(3269), - [anon_sym_CR] = ACTIONS(3269), - [anon_sym_CR_LF] = ACTIONS(3269), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3269), - [anon_sym_DOT] = ACTIONS(3269), - [anon_sym_as] = ACTIONS(3269), - [anon_sym_LBRACE] = ACTIONS(3269), - [anon_sym_COMMA] = ACTIONS(3269), - [anon_sym_RBRACE] = ACTIONS(3269), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_RPAREN] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3269), - [anon_sym_fn] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_PERCENT] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [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_DOT_DOT_DOT] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_struct] = ACTIONS(3269), - [anon_sym_mut] = ACTIONS(3269), - [anon_sym_PLUS_PLUS] = ACTIONS(3269), - [anon_sym_DASH_DASH] = ACTIONS(3269), - [anon_sym_QMARK] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3826), - [anon_sym_go] = ACTIONS(3269), - [anon_sym_spawn] = ACTIONS(3269), - [anon_sym_json_DOTdecode] = ACTIONS(3269), - [anon_sym_LBRACK2] = ACTIONS(3269), - [anon_sym_TILDE] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym_AMP] = ACTIONS(3269), - [anon_sym_LT_DASH] = ACTIONS(3269), - [anon_sym_LT_LT] = ACTIONS(3269), - [anon_sym_GT_GT] = ACTIONS(3269), - [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(3269), - [sym_none] = ACTIONS(3269), - [sym_true] = ACTIONS(3269), - [sym_false] = ACTIONS(3269), - [sym_nil] = ACTIONS(3269), - [anon_sym_QMARK_DOT] = ACTIONS(3269), - [anon_sym_POUND_LBRACK] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3269), - [anon_sym_DOLLARif] = ACTIONS(3269), - [anon_sym_is] = ACTIONS(3269), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3269), - [anon_sym_BANGin] = ACTIONS(3269), - [anon_sym_match] = ACTIONS(3269), - [anon_sym_select] = ACTIONS(3269), - [anon_sym_lock] = ACTIONS(3269), - [anon_sym_rlock] = ACTIONS(3269), - [anon_sym_unsafe] = ACTIONS(3269), - [anon_sym_sql] = ACTIONS(3269), - [sym_int_literal] = ACTIONS(3269), - [sym_float_literal] = ACTIONS(3269), - [sym_rune_literal] = ACTIONS(3269), - [sym_pseudo_compile_time_identifier] = ACTIONS(3269), - [anon_sym_shared] = ACTIONS(3269), - [anon_sym_map_LBRACK] = ACTIONS(3269), - [anon_sym_chan] = ACTIONS(3269), - [anon_sym_thread] = ACTIONS(3269), - [anon_sym_atomic] = ACTIONS(3269), - [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), - }, - [1223] = { - [sym_identifier] = ACTIONS(3257), - [anon_sym_LF] = ACTIONS(3257), - [anon_sym_CR] = ACTIONS(3257), - [anon_sym_CR_LF] = ACTIONS(3257), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_DOT] = ACTIONS(3257), - [anon_sym_as] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_COMMA] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_RPAREN] = ACTIONS(3257), - [anon_sym_PIPE] = ACTIONS(3257), - [anon_sym_fn] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3257), - [anon_sym_PERCENT] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3257), - [anon_sym_GT] = ACTIONS(3257), - [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_DOT_DOT_DOT] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_mut] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_QMARK] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(3257), - [anon_sym_spawn] = ACTIONS(3257), - [anon_sym_json_DOTdecode] = ACTIONS(3257), - [anon_sym_LBRACK2] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_CARET] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3257), - [anon_sym_LT_DASH] = ACTIONS(3257), - [anon_sym_LT_LT] = ACTIONS(3257), - [anon_sym_GT_GT] = ACTIONS(3257), - [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(3257), - [sym_none] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_nil] = ACTIONS(3257), - [anon_sym_QMARK_DOT] = ACTIONS(3257), - [anon_sym_POUND_LBRACK] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_DOLLARif] = ACTIONS(3257), - [anon_sym_is] = ACTIONS(3257), - [anon_sym_BANGis] = ACTIONS(3257), - [anon_sym_in] = ACTIONS(3257), - [anon_sym_BANGin] = ACTIONS(3257), - [anon_sym_match] = ACTIONS(3257), - [anon_sym_select] = ACTIONS(3257), - [anon_sym_lock] = ACTIONS(3257), - [anon_sym_rlock] = ACTIONS(3257), - [anon_sym_unsafe] = ACTIONS(3257), - [anon_sym_sql] = ACTIONS(3257), - [sym_int_literal] = ACTIONS(3257), - [sym_float_literal] = ACTIONS(3257), - [sym_rune_literal] = ACTIONS(3257), - [sym_pseudo_compile_time_identifier] = ACTIONS(3257), - [anon_sym_shared] = ACTIONS(3257), - [anon_sym_map_LBRACK] = ACTIONS(3257), - [anon_sym_chan] = ACTIONS(3257), - [anon_sym_thread] = ACTIONS(3257), - [anon_sym_atomic] = ACTIONS(3257), - [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), - }, - [1224] = { - [sym_identifier] = ACTIONS(3436), - [anon_sym_LF] = ACTIONS(3436), - [anon_sym_CR] = ACTIONS(3436), - [anon_sym_CR_LF] = ACTIONS(3436), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3436), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3436), - [anon_sym_COMMA] = ACTIONS(3436), - [anon_sym_RBRACE] = ACTIONS(3436), - [anon_sym_LPAREN] = ACTIONS(3436), - [anon_sym_RPAREN] = ACTIONS(3436), - [anon_sym_PIPE] = ACTIONS(3436), - [anon_sym_fn] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [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_DOT_DOT_DOT] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3434), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_mut] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3436), - [anon_sym_DASH_DASH] = ACTIONS(3436), - [anon_sym_QMARK] = ACTIONS(3436), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_go] = ACTIONS(3436), - [anon_sym_spawn] = ACTIONS(3436), - [anon_sym_json_DOTdecode] = ACTIONS(3436), - [anon_sym_LBRACK2] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3436), - [anon_sym_CARET] = ACTIONS(3436), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_LT_DASH] = ACTIONS(3436), - [anon_sym_LT_LT] = ACTIONS(3436), - [anon_sym_GT_GT] = ACTIONS(3436), - [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(3436), - [sym_none] = ACTIONS(3436), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [sym_nil] = ACTIONS(3436), - [anon_sym_QMARK_DOT] = ACTIONS(3436), - [anon_sym_POUND_LBRACK] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_DOLLARif] = ACTIONS(3436), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3436), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_BANGin] = ACTIONS(3436), - [anon_sym_match] = ACTIONS(3436), - [anon_sym_select] = ACTIONS(3436), - [anon_sym_lock] = ACTIONS(3436), - [anon_sym_rlock] = ACTIONS(3436), - [anon_sym_unsafe] = ACTIONS(3436), - [anon_sym_sql] = ACTIONS(3436), - [sym_int_literal] = ACTIONS(3436), - [sym_float_literal] = ACTIONS(3436), - [sym_rune_literal] = ACTIONS(3436), - [sym_pseudo_compile_time_identifier] = ACTIONS(3436), - [anon_sym_shared] = ACTIONS(3436), - [anon_sym_map_LBRACK] = ACTIONS(3436), - [anon_sym_chan] = ACTIONS(3436), - [anon_sym_thread] = ACTIONS(3436), - [anon_sym_atomic] = ACTIONS(3436), - [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), - }, - [1225] = { - [sym_identifier] = ACTIONS(3013), - [anon_sym_LF] = ACTIONS(3013), - [anon_sym_CR] = ACTIONS(3013), - [anon_sym_CR_LF] = ACTIONS(3013), - [sym_comment] = ACTIONS(495), - [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), - }, - [1226] = { - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_RPAREN] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [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_DOT_DOT_DOT] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3177), - [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(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [sym_pseudo_compile_time_identifier] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [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), - }, - [1227] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_STAR_EQ] = ACTIONS(613), - [anon_sym_SLASH_EQ] = ACTIONS(613), - [anon_sym_PERCENT_EQ] = ACTIONS(613), - [anon_sym_LT_LT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(613), - [anon_sym_AMP_EQ] = ACTIONS(613), - [anon_sym_AMP_CARET_EQ] = ACTIONS(613), - [anon_sym_PLUS_EQ] = ACTIONS(613), - [anon_sym_DASH_EQ] = ACTIONS(613), - [anon_sym_PIPE_EQ] = ACTIONS(613), - [anon_sym_CARET_EQ] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1228] = { - [sym_identifier] = ACTIONS(3181), - [anon_sym_LF] = ACTIONS(3181), - [anon_sym_CR] = ACTIONS(3181), - [anon_sym_CR_LF] = ACTIONS(3181), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_RBRACE] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_RPAREN] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_EQ_EQ] = ACTIONS(3181), - [anon_sym_BANG_EQ] = ACTIONS(3181), - [anon_sym_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_EQ] = ACTIONS(3181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(3181), - [anon_sym_GT_GT] = ACTIONS(3181), - [anon_sym_GT_GT_GT] = ACTIONS(3181), - [anon_sym_AMP_CARET] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3181), - [anon_sym_POUND_LBRACK] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [sym_pseudo_compile_time_identifier] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [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), + [anon_sym_LBRACK2] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_LT_DASH] = ACTIONS(3265), + [anon_sym_LT_LT] = ACTIONS(3265), + [anon_sym_GT_GT] = ACTIONS(3265), + [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(3265), + [sym_none] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_nil] = ACTIONS(3265), + [anon_sym_QMARK_DOT] = ACTIONS(3265), + [anon_sym_POUND_LBRACK] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_DOLLARif] = ACTIONS(3265), + [anon_sym_is] = ACTIONS(3265), + [anon_sym_BANGis] = ACTIONS(3265), + [anon_sym_in] = ACTIONS(3265), + [anon_sym_BANGin] = ACTIONS(3265), + [anon_sym_match] = ACTIONS(3265), + [anon_sym_select] = ACTIONS(3265), + [anon_sym_lock] = ACTIONS(3265), + [anon_sym_rlock] = ACTIONS(3265), + [anon_sym_unsafe] = ACTIONS(3265), + [anon_sym_sql] = ACTIONS(3265), + [sym_int_literal] = ACTIONS(3265), + [sym_float_literal] = ACTIONS(3265), + [sym_rune_literal] = ACTIONS(3265), + [sym_pseudo_compile_time_identifier] = ACTIONS(3265), + [anon_sym_shared] = ACTIONS(3265), + [anon_sym_map_LBRACK] = ACTIONS(3265), + [anon_sym_chan] = ACTIONS(3265), + [anon_sym_thread] = ACTIONS(3265), + [anon_sym_atomic] = ACTIONS(3265), + [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), }, - [1229] = { + [1236] = { + [sym_line_comment] = STATE(1236), + [sym_block_comment] = STATE(1236), [sym_identifier] = ACTIONS(3261), [anon_sym_LF] = ACTIONS(3261), [anon_sym_CR] = ACTIONS(3261), [anon_sym_CR_LF] = ACTIONS(3261), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3261), [anon_sym_SEMI] = ACTIONS(3261), [anon_sym_DOT] = ACTIONS(3261), [anon_sym_as] = ACTIONS(3261), @@ -161091,7 +162486,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3261), [anon_sym_DASH] = ACTIONS(3261), [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_SLASH] = ACTIONS(3261), [anon_sym_PERCENT] = ACTIONS(3261), [anon_sym_LT] = ACTIONS(3261), [anon_sym_GT] = ACTIONS(3261), @@ -161156,4044 +162550,3670 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3261), [sym___r_single_quote] = ACTIONS(3261), }, - [1230] = { - [sym_identifier] = ACTIONS(2985), - [anon_sym_LF] = ACTIONS(2985), - [anon_sym_CR] = ACTIONS(2985), - [anon_sym_CR_LF] = ACTIONS(2985), - [sym_comment] = ACTIONS(495), - [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), - }, - [1231] = { - [sym_identifier] = ACTIONS(3009), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_CR] = ACTIONS(3009), - [anon_sym_CR_LF] = ACTIONS(3009), - [sym_comment] = ACTIONS(495), - [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), - }, - [1232] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_STAR_EQ] = ACTIONS(613), - [anon_sym_SLASH_EQ] = ACTIONS(613), - [anon_sym_PERCENT_EQ] = ACTIONS(613), - [anon_sym_LT_LT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(613), - [anon_sym_AMP_EQ] = ACTIONS(613), - [anon_sym_AMP_CARET_EQ] = ACTIONS(613), - [anon_sym_PLUS_EQ] = ACTIONS(613), - [anon_sym_DASH_EQ] = ACTIONS(613), - [anon_sym_PIPE_EQ] = ACTIONS(613), - [anon_sym_CARET_EQ] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1233] = { - [sym_identifier] = ACTIONS(3816), - [anon_sym_LF] = ACTIONS(3819), - [anon_sym_CR] = ACTIONS(3819), - [anon_sym_CR_LF] = ACTIONS(3819), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3819), - [anon_sym_DOT] = ACTIONS(3828), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_COMMA] = ACTIONS(3819), - [anon_sym_RBRACE] = ACTIONS(3816), - [anon_sym_LPAREN] = 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(3822), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_COLON] = ACTIONS(3824), - [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), - }, - [1234] = { - [sym_identifier] = ACTIONS(3083), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_CR] = ACTIONS(3083), - [anon_sym_CR_LF] = ACTIONS(3083), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3083), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_as] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3083), - [anon_sym_fn] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_mut] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_BANG] = ACTIONS(3083), - [anon_sym_go] = ACTIONS(3083), - [anon_sym_spawn] = ACTIONS(3083), - [anon_sym_json_DOTdecode] = ACTIONS(3083), - [anon_sym_LBRACK2] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3083), - [anon_sym_GT_GT_GT] = ACTIONS(3083), - [anon_sym_AMP_CARET] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_or] = ACTIONS(3083), - [sym_none] = ACTIONS(3083), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [sym_nil] = ACTIONS(3083), - [anon_sym_QMARK_DOT] = ACTIONS(3083), - [anon_sym_POUND_LBRACK] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_DOLLARif] = ACTIONS(3083), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_BANGis] = ACTIONS(3083), - [anon_sym_in] = ACTIONS(3083), - [anon_sym_BANGin] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_select] = ACTIONS(3083), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(3083), - [anon_sym_sql] = ACTIONS(3083), - [sym_int_literal] = ACTIONS(3083), - [sym_float_literal] = ACTIONS(3083), - [sym_rune_literal] = ACTIONS(3083), - [sym_pseudo_compile_time_identifier] = ACTIONS(3083), - [anon_sym_shared] = ACTIONS(3083), - [anon_sym_map_LBRACK] = ACTIONS(3083), - [anon_sym_chan] = ACTIONS(3083), - [anon_sym_thread] = ACTIONS(3083), - [anon_sym_atomic] = ACTIONS(3083), - [sym___double_quote] = ACTIONS(3083), - [sym___single_quote] = ACTIONS(3083), - [sym___c_double_quote] = ACTIONS(3083), - [sym___c_single_quote] = ACTIONS(3083), - [sym___r_double_quote] = ACTIONS(3083), - [sym___r_single_quote] = ACTIONS(3083), - }, - [1235] = { - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), - [sym_comment] = ACTIONS(495), - [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), - }, - [1236] = { - [sym_identifier] = ACTIONS(2895), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_CR] = ACTIONS(2895), - [anon_sym_CR_LF] = ACTIONS(2895), - [sym_comment] = ACTIONS(495), - [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), - }, [1237] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_as] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_COLON] = ACTIONS(559), - [anon_sym_PLUS_PLUS] = ACTIONS(559), - [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3831), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_DASH] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_or] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(559), - [anon_sym_POUND_LBRACK] = ACTIONS(559), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(559), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(559), - [anon_sym_STAR_EQ] = ACTIONS(559), - [anon_sym_SLASH_EQ] = ACTIONS(559), - [anon_sym_PERCENT_EQ] = ACTIONS(559), - [anon_sym_LT_LT_EQ] = ACTIONS(559), - [anon_sym_GT_GT_EQ] = ACTIONS(559), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(559), - [anon_sym_AMP_EQ] = ACTIONS(559), - [anon_sym_AMP_CARET_EQ] = ACTIONS(559), - [anon_sym_PLUS_EQ] = ACTIONS(559), - [anon_sym_DASH_EQ] = ACTIONS(559), - [anon_sym_PIPE_EQ] = ACTIONS(559), - [anon_sym_CARET_EQ] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [sym_line_comment] = STATE(1237), + [sym_block_comment] = STATE(1237), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2913), + [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_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), }, [1238] = { - [sym_identifier] = ACTIONS(3017), - [anon_sym_LF] = ACTIONS(3017), - [anon_sym_CR] = ACTIONS(3017), - [anon_sym_CR_LF] = ACTIONS(3017), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3017), - [anon_sym_RBRACE] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_RPAREN] = ACTIONS(3017), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [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_DOT_DOT_DOT] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_GT_GT] = ACTIONS(3017), - [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(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3017), - [anon_sym_POUND_LBRACK] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3017), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3017), - [sym_rune_literal] = ACTIONS(3017), - [sym_pseudo_compile_time_identifier] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3017), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [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_line_comment] = STATE(1238), + [sym_block_comment] = STATE(1238), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2909), + [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_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), }, [1239] = { - [sym_identifier] = ACTIONS(3253), - [anon_sym_LF] = ACTIONS(3253), - [anon_sym_CR] = ACTIONS(3253), - [anon_sym_CR_LF] = ACTIONS(3253), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_as] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_RPAREN] = ACTIONS(3253), - [anon_sym_PIPE] = ACTIONS(3253), - [anon_sym_fn] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_SLASH] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3253), - [anon_sym_GT] = ACTIONS(3253), - [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_DOT_DOT_DOT] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_mut] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_go] = ACTIONS(3253), - [anon_sym_spawn] = ACTIONS(3253), - [anon_sym_json_DOTdecode] = ACTIONS(3253), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_CARET] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_LT_LT] = ACTIONS(3253), - [anon_sym_GT_GT] = ACTIONS(3253), - [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(3253), - [sym_none] = ACTIONS(3253), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [sym_nil] = ACTIONS(3253), - [anon_sym_QMARK_DOT] = ACTIONS(3253), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_DOLLARif] = ACTIONS(3253), - [anon_sym_is] = ACTIONS(3253), - [anon_sym_BANGis] = ACTIONS(3253), - [anon_sym_in] = ACTIONS(3253), - [anon_sym_BANGin] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_select] = ACTIONS(3253), - [anon_sym_lock] = ACTIONS(3253), - [anon_sym_rlock] = ACTIONS(3253), - [anon_sym_unsafe] = ACTIONS(3253), - [anon_sym_sql] = ACTIONS(3253), - [sym_int_literal] = ACTIONS(3253), - [sym_float_literal] = ACTIONS(3253), - [sym_rune_literal] = ACTIONS(3253), - [sym_pseudo_compile_time_identifier] = ACTIONS(3253), - [anon_sym_shared] = ACTIONS(3253), - [anon_sym_map_LBRACK] = ACTIONS(3253), - [anon_sym_chan] = ACTIONS(3253), - [anon_sym_thread] = ACTIONS(3253), - [anon_sym_atomic] = ACTIONS(3253), - [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), + [sym_line_comment] = STATE(1239), + [sym_block_comment] = STATE(1239), + [sym_identifier] = ACTIONS(3039), + [anon_sym_LF] = ACTIONS(3039), + [anon_sym_CR] = ACTIONS(3039), + [anon_sym_CR_LF] = ACTIONS(3039), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3039), + [anon_sym_RBRACE] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_RPAREN] = ACTIONS(3039), + [anon_sym_PIPE] = ACTIONS(3039), + [anon_sym_fn] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3039), + [anon_sym_GT] = ACTIONS(3039), + [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_DOT_DOT_DOT] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3037), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_mut] = ACTIONS(3039), + [anon_sym_PLUS_PLUS] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_go] = ACTIONS(3039), + [anon_sym_spawn] = ACTIONS(3039), + [anon_sym_json_DOTdecode] = ACTIONS(3039), + [anon_sym_LBRACK2] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3039), + [anon_sym_CARET] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_LT_LT] = ACTIONS(3039), + [anon_sym_GT_GT] = ACTIONS(3039), + [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(3039), + [sym_none] = ACTIONS(3039), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_nil] = ACTIONS(3039), + [anon_sym_QMARK_DOT] = ACTIONS(3039), + [anon_sym_POUND_LBRACK] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_DOLLARif] = ACTIONS(3039), + [anon_sym_is] = ACTIONS(3039), + [anon_sym_BANGis] = ACTIONS(3039), + [anon_sym_in] = ACTIONS(3039), + [anon_sym_BANGin] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_select] = ACTIONS(3039), + [anon_sym_lock] = ACTIONS(3039), + [anon_sym_rlock] = ACTIONS(3039), + [anon_sym_unsafe] = ACTIONS(3039), + [anon_sym_sql] = ACTIONS(3039), + [sym_int_literal] = ACTIONS(3039), + [sym_float_literal] = ACTIONS(3039), + [sym_rune_literal] = ACTIONS(3039), + [sym_pseudo_compile_time_identifier] = ACTIONS(3039), + [anon_sym_shared] = ACTIONS(3039), + [anon_sym_map_LBRACK] = ACTIONS(3039), + [anon_sym_chan] = ACTIONS(3039), + [anon_sym_thread] = ACTIONS(3039), + [anon_sym_atomic] = ACTIONS(3039), + [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), }, [1240] = { - [sym_reference_expression] = STATE(4424), - [sym_type_reference_expression] = STATE(1935), - [sym_plain_type] = STATE(2119), - [sym__plain_type_without_special] = STATE(1951), - [sym_anon_struct_type] = STATE(2079), - [sym_multi_return_type] = STATE(1951), - [sym_result_type] = STATE(1951), - [sym_option_type] = STATE(1951), - [sym_qualified_type] = STATE(1935), - [sym_fixed_array_type] = STATE(2079), - [sym_array_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_wrong_pointer_type] = STATE(2079), - [sym_map_type] = STATE(2079), - [sym_channel_type] = STATE(2079), - [sym_shared_type] = STATE(2079), - [sym_thread_type] = STATE(2079), - [sym_atomic_type] = STATE(2079), - [sym_generic_type] = STATE(2079), - [sym_function_type] = STATE(2079), - [sym_identifier] = ACTIONS(3833), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(3835), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(3837), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(3839), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_BANG_EQ] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(581), - [anon_sym_GT_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_struct] = ACTIONS(3841), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [anon_sym_QMARK] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3845), - [anon_sym_LBRACK2] = ACTIONS(3847), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(581), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(581), - [anon_sym_POUND_LBRACK] = ACTIONS(581), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(581), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(581), - [anon_sym_STAR_EQ] = ACTIONS(581), - [anon_sym_SLASH_EQ] = ACTIONS(581), - [anon_sym_PERCENT_EQ] = ACTIONS(581), - [anon_sym_LT_LT_EQ] = ACTIONS(581), - [anon_sym_GT_GT_EQ] = ACTIONS(581), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(581), - [anon_sym_AMP_EQ] = ACTIONS(581), - [anon_sym_AMP_CARET_EQ] = ACTIONS(581), - [anon_sym_PLUS_EQ] = ACTIONS(581), - [anon_sym_DASH_EQ] = ACTIONS(581), - [anon_sym_PIPE_EQ] = ACTIONS(581), - [anon_sym_CARET_EQ] = ACTIONS(581), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_shared] = ACTIONS(3851), - [anon_sym_map_LBRACK] = ACTIONS(3853), - [anon_sym_chan] = ACTIONS(3855), - [anon_sym_thread] = ACTIONS(3857), - [anon_sym_atomic] = ACTIONS(3859), + [sym_line_comment] = STATE(1240), + [sym_block_comment] = STATE(1240), + [sym_identifier] = ACTIONS(3778), + [anon_sym_LF] = ACTIONS(3781), + [anon_sym_CR] = ACTIONS(3781), + [anon_sym_CR_LF] = ACTIONS(3781), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3781), + [anon_sym_DOT] = ACTIONS(3820), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3781), + [anon_sym_RBRACE] = ACTIONS(3778), + [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_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(3784), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_struct] = ACTIONS(3431), + [anon_sym_mut] = ACTIONS(3431), + [anon_sym_COLON] = ACTIONS(3786), + [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), }, [1241] = { - [sym_identifier] = ACTIONS(3416), - [anon_sym_LF] = ACTIONS(3416), - [anon_sym_CR] = ACTIONS(3416), - [anon_sym_CR_LF] = ACTIONS(3416), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3416), - [anon_sym_DOT] = ACTIONS(3416), - [anon_sym_as] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_COMMA] = ACTIONS(3416), - [anon_sym_RBRACE] = ACTIONS(3416), - [anon_sym_LPAREN] = ACTIONS(3416), - [anon_sym_RPAREN] = ACTIONS(3416), - [anon_sym_PIPE] = ACTIONS(3416), - [anon_sym_fn] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_PERCENT] = ACTIONS(3416), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_GT] = ACTIONS(3416), - [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_DOT_DOT_DOT] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3416), - [anon_sym_mut] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3416), - [anon_sym_DASH_DASH] = ACTIONS(3416), - [anon_sym_QMARK] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_go] = ACTIONS(3416), - [anon_sym_spawn] = ACTIONS(3416), - [anon_sym_json_DOTdecode] = ACTIONS(3416), - [anon_sym_LBRACK2] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_CARET] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(3416), - [anon_sym_LT_LT] = ACTIONS(3416), - [anon_sym_GT_GT] = ACTIONS(3416), - [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(3416), - [sym_none] = ACTIONS(3416), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [sym_nil] = ACTIONS(3416), - [anon_sym_QMARK_DOT] = ACTIONS(3416), - [anon_sym_POUND_LBRACK] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_DOLLARif] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3416), - [anon_sym_BANGis] = ACTIONS(3416), - [anon_sym_in] = ACTIONS(3416), - [anon_sym_BANGin] = ACTIONS(3416), - [anon_sym_match] = ACTIONS(3416), - [anon_sym_select] = ACTIONS(3416), - [anon_sym_lock] = ACTIONS(3416), - [anon_sym_rlock] = ACTIONS(3416), - [anon_sym_unsafe] = ACTIONS(3416), - [anon_sym_sql] = ACTIONS(3416), - [sym_int_literal] = ACTIONS(3416), - [sym_float_literal] = ACTIONS(3416), - [sym_rune_literal] = ACTIONS(3416), - [sym_pseudo_compile_time_identifier] = ACTIONS(3416), - [anon_sym_shared] = ACTIONS(3416), - [anon_sym_map_LBRACK] = ACTIONS(3416), - [anon_sym_chan] = ACTIONS(3416), - [anon_sym_thread] = ACTIONS(3416), - [anon_sym_atomic] = ACTIONS(3416), - [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), + [sym_line_comment] = STATE(1241), + [sym_block_comment] = STATE(1241), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LF] = ACTIONS(3047), + [anon_sym_CR] = ACTIONS(3047), + [anon_sym_CR_LF] = ACTIONS(3047), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3047), + [anon_sym_as] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3047), + [anon_sym_COMMA] = ACTIONS(3047), + [anon_sym_RBRACE] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(3047), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_fn] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_PERCENT] = ACTIONS(3047), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_EQ_EQ] = ACTIONS(3047), + [anon_sym_BANG_EQ] = ACTIONS(3047), + [anon_sym_LT_EQ] = ACTIONS(3047), + [anon_sym_GT_EQ] = ACTIONS(3047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3045), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_mut] = ACTIONS(3047), + [anon_sym_PLUS_PLUS] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3047), + [anon_sym_QMARK] = ACTIONS(3047), + [anon_sym_BANG] = ACTIONS(3047), + [anon_sym_go] = ACTIONS(3047), + [anon_sym_spawn] = ACTIONS(3047), + [anon_sym_json_DOTdecode] = ACTIONS(3047), + [anon_sym_LBRACK2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3047), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_LT_DASH] = ACTIONS(3047), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(3047), + [anon_sym_GT_GT_GT] = ACTIONS(3047), + [anon_sym_AMP_CARET] = ACTIONS(3047), + [anon_sym_AMP_AMP] = ACTIONS(3047), + [anon_sym_PIPE_PIPE] = ACTIONS(3047), + [anon_sym_or] = ACTIONS(3047), + [sym_none] = ACTIONS(3047), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [sym_nil] = ACTIONS(3047), + [anon_sym_QMARK_DOT] = ACTIONS(3047), + [anon_sym_POUND_LBRACK] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_DOLLARif] = ACTIONS(3047), + [anon_sym_is] = ACTIONS(3047), + [anon_sym_BANGis] = ACTIONS(3047), + [anon_sym_in] = ACTIONS(3047), + [anon_sym_BANGin] = ACTIONS(3047), + [anon_sym_match] = ACTIONS(3047), + [anon_sym_select] = ACTIONS(3047), + [anon_sym_lock] = ACTIONS(3047), + [anon_sym_rlock] = ACTIONS(3047), + [anon_sym_unsafe] = ACTIONS(3047), + [anon_sym_sql] = ACTIONS(3047), + [sym_int_literal] = ACTIONS(3047), + [sym_float_literal] = ACTIONS(3047), + [sym_rune_literal] = ACTIONS(3047), + [sym_pseudo_compile_time_identifier] = ACTIONS(3047), + [anon_sym_shared] = ACTIONS(3047), + [anon_sym_map_LBRACK] = ACTIONS(3047), + [anon_sym_chan] = ACTIONS(3047), + [anon_sym_thread] = ACTIONS(3047), + [anon_sym_atomic] = ACTIONS(3047), + [sym___double_quote] = ACTIONS(3047), + [sym___single_quote] = ACTIONS(3047), + [sym___c_double_quote] = ACTIONS(3047), + [sym___c_single_quote] = ACTIONS(3047), + [sym___r_double_quote] = ACTIONS(3047), + [sym___r_single_quote] = ACTIONS(3047), }, [1242] = { - [sym_reference_expression] = STATE(4424), - [sym_type_reference_expression] = STATE(1935), - [sym_plain_type] = STATE(2111), - [sym__plain_type_without_special] = STATE(1951), - [sym_anon_struct_type] = STATE(2079), - [sym_multi_return_type] = STATE(1951), - [sym_result_type] = STATE(1951), - [sym_option_type] = STATE(1951), - [sym_qualified_type] = STATE(1935), - [sym_fixed_array_type] = STATE(2079), - [sym_array_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_wrong_pointer_type] = STATE(2079), - [sym_map_type] = STATE(2079), - [sym_channel_type] = STATE(2079), - [sym_shared_type] = STATE(2079), - [sym_thread_type] = STATE(2079), - [sym_atomic_type] = STATE(2079), - [sym_generic_type] = STATE(2079), - [sym_function_type] = STATE(2079), - [sym_identifier] = ACTIONS(3833), - [sym_comment] = ACTIONS(3), - [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(3835), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3837), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3839), - [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(3841), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3845), - [anon_sym_LBRACK2] = ACTIONS(3847), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3849), - [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(3851), - [anon_sym_map_LBRACK] = ACTIONS(3853), - [anon_sym_chan] = ACTIONS(3855), - [anon_sym_thread] = ACTIONS(3857), - [anon_sym_atomic] = ACTIONS(3859), + [sym_line_comment] = STATE(1242), + [sym_block_comment] = STATE(1242), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3055), + [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_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), }, [1243] = { - [sym_identifier] = ACTIONS(3452), - [anon_sym_LF] = ACTIONS(3452), - [anon_sym_CR] = ACTIONS(3452), - [anon_sym_CR_LF] = ACTIONS(3452), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym_DOT] = ACTIONS(3452), - [anon_sym_as] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3452), - [anon_sym_COMMA] = ACTIONS(3452), - [anon_sym_RBRACE] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3452), - [anon_sym_RPAREN] = ACTIONS(3452), - [anon_sym_PIPE] = ACTIONS(3452), - [anon_sym_fn] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_SLASH] = ACTIONS(3452), - [anon_sym_PERCENT] = ACTIONS(3452), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_GT] = ACTIONS(3452), - [anon_sym_EQ_EQ] = ACTIONS(3452), - [anon_sym_BANG_EQ] = ACTIONS(3452), - [anon_sym_LT_EQ] = ACTIONS(3452), - [anon_sym_GT_EQ] = ACTIONS(3452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3452), - [anon_sym_mut] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3452), - [anon_sym_DASH_DASH] = ACTIONS(3452), - [anon_sym_QMARK] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_go] = ACTIONS(3452), - [anon_sym_spawn] = ACTIONS(3452), - [anon_sym_json_DOTdecode] = ACTIONS(3452), - [anon_sym_LBRACK2] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_CARET] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_LT_DASH] = ACTIONS(3452), - [anon_sym_LT_LT] = ACTIONS(3452), - [anon_sym_GT_GT] = ACTIONS(3452), - [anon_sym_GT_GT_GT] = ACTIONS(3452), - [anon_sym_AMP_CARET] = ACTIONS(3452), - [anon_sym_AMP_AMP] = ACTIONS(3452), - [anon_sym_PIPE_PIPE] = ACTIONS(3452), - [anon_sym_or] = ACTIONS(3452), - [sym_none] = ACTIONS(3452), - [sym_true] = ACTIONS(3452), - [sym_false] = ACTIONS(3452), - [sym_nil] = ACTIONS(3452), - [anon_sym_QMARK_DOT] = ACTIONS(3452), - [anon_sym_POUND_LBRACK] = ACTIONS(3452), - [anon_sym_if] = ACTIONS(3452), - [anon_sym_DOLLARif] = ACTIONS(3452), - [anon_sym_is] = ACTIONS(3452), - [anon_sym_BANGis] = ACTIONS(3452), - [anon_sym_in] = ACTIONS(3452), - [anon_sym_BANGin] = ACTIONS(3452), - [anon_sym_match] = ACTIONS(3452), - [anon_sym_select] = ACTIONS(3452), - [anon_sym_lock] = ACTIONS(3452), - [anon_sym_rlock] = ACTIONS(3452), - [anon_sym_unsafe] = ACTIONS(3452), - [anon_sym_sql] = ACTIONS(3452), - [sym_int_literal] = ACTIONS(3452), - [sym_float_literal] = ACTIONS(3452), - [sym_rune_literal] = ACTIONS(3452), - [sym_pseudo_compile_time_identifier] = ACTIONS(3452), - [anon_sym_shared] = ACTIONS(3452), - [anon_sym_map_LBRACK] = ACTIONS(3452), - [anon_sym_chan] = ACTIONS(3452), - [anon_sym_thread] = ACTIONS(3452), - [anon_sym_atomic] = ACTIONS(3452), - [sym___double_quote] = ACTIONS(3452), - [sym___single_quote] = ACTIONS(3452), - [sym___c_double_quote] = ACTIONS(3452), - [sym___c_single_quote] = ACTIONS(3452), - [sym___r_double_quote] = ACTIONS(3452), - [sym___r_single_quote] = ACTIONS(3452), - }, - [1244] = { - [sym_identifier] = ACTIONS(2981), - [anon_sym_LF] = ACTIONS(2981), - [anon_sym_CR] = ACTIONS(2981), - [anon_sym_CR_LF] = ACTIONS(2981), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1243), + [sym_block_comment] = STATE(1243), + [sym_identifier] = ACTIONS(3257), + [anon_sym_LF] = ACTIONS(3257), + [anon_sym_CR] = ACTIONS(3257), + [anon_sym_CR_LF] = ACTIONS(3257), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3257), + [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_DOT_DOT_DOT] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3257), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_LT_LT] = ACTIONS(3257), + [anon_sym_GT_GT] = ACTIONS(3257), + [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(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_QMARK_DOT] = ACTIONS(3257), + [anon_sym_POUND_LBRACK] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_is] = ACTIONS(3257), + [anon_sym_BANGis] = ACTIONS(3257), + [anon_sym_in] = ACTIONS(3257), + [anon_sym_BANGin] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3257), + [sym_rune_literal] = ACTIONS(3257), + [sym_pseudo_compile_time_identifier] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3257), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [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), + }, + [1244] = { + [sym_line_comment] = STATE(1244), + [sym_block_comment] = STATE(1244), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), }, [1245] = { - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1245), + [sym_block_comment] = STATE(1245), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LF] = ACTIONS(3027), + [anon_sym_CR] = ACTIONS(3027), + [anon_sym_CR_LF] = ACTIONS(3027), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3027), + [anon_sym_SEMI] = ACTIONS(3027), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_as] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3027), + [anon_sym_RBRACE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_RPAREN] = ACTIONS(3027), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3027), + [anon_sym_EQ_EQ] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3027), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3027), + [anon_sym_GT_GT] = ACTIONS(3027), + [anon_sym_GT_GT_GT] = ACTIONS(3027), + [anon_sym_AMP_CARET] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_or] = ACTIONS(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_QMARK_DOT] = ACTIONS(3027), + [anon_sym_POUND_LBRACK] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_is] = ACTIONS(3027), + [anon_sym_BANGis] = ACTIONS(3027), + [anon_sym_in] = ACTIONS(3027), + [anon_sym_BANGin] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3027), + [sym_rune_literal] = ACTIONS(3027), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [anon_sym_map_LBRACK] = ACTIONS(3027), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), + [sym___double_quote] = ACTIONS(3027), + [sym___single_quote] = ACTIONS(3027), + [sym___c_double_quote] = ACTIONS(3027), + [sym___c_single_quote] = ACTIONS(3027), + [sym___r_double_quote] = ACTIONS(3027), + [sym___r_single_quote] = ACTIONS(3027), }, [1246] = { - [sym_reference_expression] = STATE(4487), - [sym_type_reference_expression] = STATE(1946), - [sym_plain_type] = STATE(1984), - [sym__plain_type_without_special] = STATE(2017), - [sym_anon_struct_type] = STATE(2006), - [sym_multi_return_type] = STATE(2017), - [sym_result_type] = STATE(2017), - [sym_option_type] = STATE(2017), - [sym_qualified_type] = STATE(1946), - [sym_fixed_array_type] = STATE(2006), - [sym_array_type] = STATE(2006), - [sym_pointer_type] = STATE(2006), - [sym_wrong_pointer_type] = STATE(2006), - [sym_map_type] = STATE(2006), - [sym_channel_type] = STATE(2006), - [sym_shared_type] = STATE(2006), - [sym_thread_type] = STATE(2006), - [sym_atomic_type] = STATE(2006), - [sym_generic_type] = STATE(2006), - [sym_function_type] = STATE(2006), - [sym_identifier] = ACTIONS(3786), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3788), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3790), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3792), - [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(3794), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3796), - [anon_sym_BANG] = ACTIONS(3798), - [anon_sym_LBRACK2] = ACTIONS(3800), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3802), - [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(3804), - [anon_sym_map_LBRACK] = ACTIONS(3806), - [anon_sym_chan] = ACTIONS(3808), - [anon_sym_thread] = ACTIONS(3810), - [anon_sym_atomic] = ACTIONS(3812), + [sym_line_comment] = STATE(1246), + [sym_block_comment] = STATE(1246), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [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_DOT_DOT_DOT] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_struct] = ACTIONS(3279), + [anon_sym_mut] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3279), + [anon_sym_spawn] = ACTIONS(3279), + [anon_sym_json_DOTdecode] = ACTIONS(3279), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3279), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [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(3281), + [sym_none] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_nil] = ACTIONS(3279), + [anon_sym_QMARK_DOT] = ACTIONS(3281), + [anon_sym_POUND_LBRACK] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_DOLLARif] = ACTIONS(3279), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3281), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3281), + [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), }, [1247] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_COLON] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_STAR_EQ] = ACTIONS(613), - [anon_sym_SLASH_EQ] = ACTIONS(613), - [anon_sym_PERCENT_EQ] = ACTIONS(613), - [anon_sym_LT_LT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(613), - [anon_sym_AMP_EQ] = ACTIONS(613), - [anon_sym_AMP_CARET_EQ] = ACTIONS(613), - [anon_sym_PLUS_EQ] = ACTIONS(613), - [anon_sym_DASH_EQ] = ACTIONS(613), - [anon_sym_PIPE_EQ] = ACTIONS(613), - [anon_sym_CARET_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [sym_line_comment] = STATE(1247), + [sym_block_comment] = STATE(1247), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LF] = ACTIONS(3269), + [anon_sym_CR] = ACTIONS(3269), + [anon_sym_CR_LF] = ACTIONS(3269), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3269), + [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(3271), + [anon_sym_RPAREN] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_STAR] = 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(3269), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [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(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3269), + [anon_sym_LBRACK2] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3271), + [anon_sym_AMP] = ACTIONS(3271), + [anon_sym_LT_DASH] = ACTIONS(3269), + [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(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3271), + [anon_sym_POUND_LBRACK] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3271), + [anon_sym_BANGis] = ACTIONS(3271), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3271), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3269), + [sym_rune_literal] = ACTIONS(3269), + [sym_pseudo_compile_time_identifier] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3269), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [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), }, [1248] = { - [sym_reference_expression] = STATE(4424), - [sym_type_reference_expression] = STATE(1935), - [sym_plain_type] = STATE(2013), - [sym__plain_type_without_special] = STATE(1951), - [sym_anon_struct_type] = STATE(2079), - [sym_multi_return_type] = STATE(1951), - [sym_result_type] = STATE(1951), - [sym_option_type] = STATE(1951), - [sym_qualified_type] = STATE(1935), - [sym_fixed_array_type] = STATE(2079), - [sym_array_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_wrong_pointer_type] = STATE(2079), - [sym_map_type] = STATE(2079), - [sym_channel_type] = STATE(2079), - [sym_shared_type] = STATE(2079), - [sym_thread_type] = STATE(2079), - [sym_atomic_type] = STATE(2079), - [sym_generic_type] = STATE(2079), - [sym_function_type] = STATE(2079), - [sym_identifier] = ACTIONS(3833), - [sym_comment] = ACTIONS(3), - [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(3835), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3837), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3839), - [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(3841), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3845), - [anon_sym_LBRACK2] = ACTIONS(3847), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3849), - [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(3851), - [anon_sym_map_LBRACK] = ACTIONS(3853), - [anon_sym_chan] = ACTIONS(3855), - [anon_sym_thread] = ACTIONS(3857), - [anon_sym_atomic] = ACTIONS(3859), + [sym_line_comment] = STATE(1248), + [sym_block_comment] = STATE(1248), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3433), + [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_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(3823), + [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), }, [1249] = { - [sym_identifier] = ACTIONS(3382), - [anon_sym_LF] = ACTIONS(3382), - [anon_sym_CR] = ACTIONS(3382), - [anon_sym_CR_LF] = ACTIONS(3382), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1249), + [sym_block_comment] = STATE(1249), + [sym_identifier] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_CR] = ACTIONS(3237), + [anon_sym_CR_LF] = ACTIONS(3237), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_COMMA] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_RPAREN] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [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_DOT_DOT_DOT] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3237), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [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(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3237), + [anon_sym_POUND_LBRACK] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_is] = ACTIONS(3237), + [anon_sym_BANGis] = ACTIONS(3237), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_BANGin] = ACTIONS(3237), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3237), + [sym_rune_literal] = ACTIONS(3237), + [sym_pseudo_compile_time_identifier] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3237), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [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), }, [1250] = { - [sym_identifier] = ACTIONS(3374), - [anon_sym_LF] = ACTIONS(3374), - [anon_sym_CR] = ACTIONS(3374), - [anon_sym_CR_LF] = ACTIONS(3374), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1250), + [sym_block_comment] = STATE(1250), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [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(611), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_AMP_CARET] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(565), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(565), + [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(619), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, [1251] = { - [sym_identifier] = ACTIONS(3366), - [anon_sym_LF] = ACTIONS(3366), - [anon_sym_CR] = ACTIONS(3366), - [anon_sym_CR_LF] = ACTIONS(3366), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1251), + [sym_block_comment] = STATE(1251), + [sym_identifier] = ACTIONS(3233), + [anon_sym_LF] = ACTIONS(3233), + [anon_sym_CR] = ACTIONS(3233), + [anon_sym_CR_LF] = ACTIONS(3233), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_DOT] = ACTIONS(3233), + [anon_sym_as] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_PIPE] = ACTIONS(3233), + [anon_sym_fn] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_PERCENT] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_GT] = ACTIONS(3233), + [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_DOT_DOT_DOT] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_struct] = ACTIONS(3233), + [anon_sym_mut] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [anon_sym_QMARK] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_go] = ACTIONS(3233), + [anon_sym_spawn] = ACTIONS(3233), + [anon_sym_json_DOTdecode] = ACTIONS(3233), + [anon_sym_LBRACK2] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_CARET] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_LT_DASH] = ACTIONS(3233), + [anon_sym_LT_LT] = ACTIONS(3233), + [anon_sym_GT_GT] = ACTIONS(3233), + [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(3233), + [sym_none] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_nil] = ACTIONS(3233), + [anon_sym_QMARK_DOT] = ACTIONS(3233), + [anon_sym_POUND_LBRACK] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_DOLLARif] = ACTIONS(3233), + [anon_sym_is] = ACTIONS(3233), + [anon_sym_BANGis] = ACTIONS(3233), + [anon_sym_in] = ACTIONS(3233), + [anon_sym_BANGin] = ACTIONS(3233), + [anon_sym_match] = ACTIONS(3233), + [anon_sym_select] = ACTIONS(3233), + [anon_sym_lock] = ACTIONS(3233), + [anon_sym_rlock] = ACTIONS(3233), + [anon_sym_unsafe] = ACTIONS(3233), + [anon_sym_sql] = ACTIONS(3233), + [sym_int_literal] = ACTIONS(3233), + [sym_float_literal] = ACTIONS(3233), + [sym_rune_literal] = ACTIONS(3233), + [sym_pseudo_compile_time_identifier] = ACTIONS(3233), + [anon_sym_shared] = ACTIONS(3233), + [anon_sym_map_LBRACK] = ACTIONS(3233), + [anon_sym_chan] = ACTIONS(3233), + [anon_sym_thread] = ACTIONS(3233), + [anon_sym_atomic] = ACTIONS(3233), + [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), }, [1252] = { - [sym_identifier] = ACTIONS(3275), - [anon_sym_LF] = ACTIONS(3275), - [anon_sym_CR] = ACTIONS(3275), - [anon_sym_CR_LF] = ACTIONS(3275), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1252), + [sym_block_comment] = STATE(1252), + [sym_identifier] = ACTIONS(3225), + [anon_sym_LF] = ACTIONS(3225), + [anon_sym_CR] = ACTIONS(3225), + [anon_sym_CR_LF] = ACTIONS(3225), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_DOT] = ACTIONS(3225), + [anon_sym_as] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_COMMA] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_RPAREN] = ACTIONS(3225), + [anon_sym_PIPE] = ACTIONS(3225), + [anon_sym_fn] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_PERCENT] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_GT] = ACTIONS(3225), + [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_DOT_DOT_DOT] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3225), + [anon_sym_mut] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_go] = ACTIONS(3225), + [anon_sym_spawn] = ACTIONS(3225), + [anon_sym_json_DOTdecode] = ACTIONS(3225), + [anon_sym_LBRACK2] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_CARET] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_LT_DASH] = ACTIONS(3225), + [anon_sym_LT_LT] = ACTIONS(3225), + [anon_sym_GT_GT] = ACTIONS(3225), + [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(3225), + [sym_none] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_nil] = ACTIONS(3225), + [anon_sym_QMARK_DOT] = ACTIONS(3225), + [anon_sym_POUND_LBRACK] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_DOLLARif] = ACTIONS(3225), + [anon_sym_is] = ACTIONS(3225), + [anon_sym_BANGis] = ACTIONS(3225), + [anon_sym_in] = ACTIONS(3225), + [anon_sym_BANGin] = ACTIONS(3225), + [anon_sym_match] = ACTIONS(3225), + [anon_sym_select] = ACTIONS(3225), + [anon_sym_lock] = ACTIONS(3225), + [anon_sym_rlock] = ACTIONS(3225), + [anon_sym_unsafe] = ACTIONS(3225), + [anon_sym_sql] = ACTIONS(3225), + [sym_int_literal] = ACTIONS(3225), + [sym_float_literal] = ACTIONS(3225), + [sym_rune_literal] = ACTIONS(3225), + [sym_pseudo_compile_time_identifier] = ACTIONS(3225), + [anon_sym_shared] = ACTIONS(3225), + [anon_sym_map_LBRACK] = ACTIONS(3225), + [anon_sym_chan] = ACTIONS(3225), + [anon_sym_thread] = ACTIONS(3225), + [anon_sym_atomic] = ACTIONS(3225), + [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), }, [1253] = { - [sym_identifier] = ACTIONS(3362), - [anon_sym_LF] = ACTIONS(3362), - [anon_sym_CR] = ACTIONS(3362), - [anon_sym_CR_LF] = ACTIONS(3362), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1253), + [sym_block_comment] = STATE(1253), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3035), + [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_RBRACE] = 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_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(3033), + [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), }, [1254] = { - [sym_identifier] = ACTIONS(3311), - [anon_sym_LF] = ACTIONS(3311), - [anon_sym_CR] = ACTIONS(3311), - [anon_sym_CR_LF] = ACTIONS(3311), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_DOT] = ACTIONS(3313), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_COMMA] = 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_COLON] = ACTIONS(3861), - [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_line_comment] = STATE(1254), + [sym_block_comment] = STATE(1254), + [sym_identifier] = ACTIONS(3217), + [anon_sym_LF] = ACTIONS(3217), + [anon_sym_CR] = ACTIONS(3217), + [anon_sym_CR_LF] = ACTIONS(3217), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_DOT] = ACTIONS(3217), + [anon_sym_as] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_COMMA] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_RPAREN] = ACTIONS(3217), + [anon_sym_PIPE] = ACTIONS(3217), + [anon_sym_fn] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_PERCENT] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_GT] = ACTIONS(3217), + [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_DOT_DOT_DOT] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3217), + [anon_sym_mut] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_QMARK] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_go] = ACTIONS(3217), + [anon_sym_spawn] = ACTIONS(3217), + [anon_sym_json_DOTdecode] = ACTIONS(3217), + [anon_sym_LBRACK2] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_CARET] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_LT_DASH] = ACTIONS(3217), + [anon_sym_LT_LT] = ACTIONS(3217), + [anon_sym_GT_GT] = ACTIONS(3217), + [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(3217), + [sym_none] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_nil] = ACTIONS(3217), + [anon_sym_QMARK_DOT] = ACTIONS(3217), + [anon_sym_POUND_LBRACK] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_DOLLARif] = ACTIONS(3217), + [anon_sym_is] = ACTIONS(3217), + [anon_sym_BANGis] = ACTIONS(3217), + [anon_sym_in] = ACTIONS(3217), + [anon_sym_BANGin] = ACTIONS(3217), + [anon_sym_match] = ACTIONS(3217), + [anon_sym_select] = ACTIONS(3217), + [anon_sym_lock] = ACTIONS(3217), + [anon_sym_rlock] = ACTIONS(3217), + [anon_sym_unsafe] = ACTIONS(3217), + [anon_sym_sql] = ACTIONS(3217), + [sym_int_literal] = ACTIONS(3217), + [sym_float_literal] = ACTIONS(3217), + [sym_rune_literal] = ACTIONS(3217), + [sym_pseudo_compile_time_identifier] = ACTIONS(3217), + [anon_sym_shared] = ACTIONS(3217), + [anon_sym_map_LBRACK] = ACTIONS(3217), + [anon_sym_chan] = ACTIONS(3217), + [anon_sym_thread] = ACTIONS(3217), + [anon_sym_atomic] = ACTIONS(3217), + [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), }, [1255] = { - [sym_identifier] = ACTIONS(3432), - [anon_sym_LF] = ACTIONS(3432), - [anon_sym_CR] = ACTIONS(3432), - [anon_sym_CR_LF] = ACTIONS(3432), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_DOT] = ACTIONS(3432), - [anon_sym_as] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_COMMA] = ACTIONS(3432), - [anon_sym_RBRACE] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym_RPAREN] = ACTIONS(3432), - [anon_sym_PIPE] = ACTIONS(3432), - [anon_sym_fn] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_SLASH] = ACTIONS(3432), - [anon_sym_PERCENT] = ACTIONS(3432), - [anon_sym_LT] = ACTIONS(3432), - [anon_sym_GT] = ACTIONS(3432), - [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_DOT_DOT_DOT] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3430), - [anon_sym_struct] = ACTIONS(3432), - [anon_sym_mut] = ACTIONS(3432), - [anon_sym_PLUS_PLUS] = ACTIONS(3432), - [anon_sym_DASH_DASH] = ACTIONS(3432), - [anon_sym_QMARK] = ACTIONS(3432), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_go] = ACTIONS(3432), - [anon_sym_spawn] = ACTIONS(3432), - [anon_sym_json_DOTdecode] = ACTIONS(3432), - [anon_sym_LBRACK2] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3432), - [anon_sym_CARET] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_LT_DASH] = ACTIONS(3432), - [anon_sym_LT_LT] = ACTIONS(3432), - [anon_sym_GT_GT] = ACTIONS(3432), - [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(3432), - [sym_none] = ACTIONS(3432), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [sym_nil] = ACTIONS(3432), - [anon_sym_QMARK_DOT] = ACTIONS(3432), - [anon_sym_POUND_LBRACK] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_DOLLARif] = ACTIONS(3432), - [anon_sym_is] = ACTIONS(3432), - [anon_sym_BANGis] = ACTIONS(3432), - [anon_sym_in] = ACTIONS(3432), - [anon_sym_BANGin] = ACTIONS(3432), - [anon_sym_match] = ACTIONS(3432), - [anon_sym_select] = ACTIONS(3432), - [anon_sym_lock] = ACTIONS(3432), - [anon_sym_rlock] = ACTIONS(3432), - [anon_sym_unsafe] = ACTIONS(3432), - [anon_sym_sql] = ACTIONS(3432), - [sym_int_literal] = ACTIONS(3432), - [sym_float_literal] = ACTIONS(3432), - [sym_rune_literal] = ACTIONS(3432), - [sym_pseudo_compile_time_identifier] = ACTIONS(3432), - [anon_sym_shared] = ACTIONS(3432), - [anon_sym_map_LBRACK] = ACTIONS(3432), - [anon_sym_chan] = ACTIONS(3432), - [anon_sym_thread] = ACTIONS(3432), - [anon_sym_atomic] = ACTIONS(3432), - [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), + [sym_line_comment] = STATE(1255), + [sym_block_comment] = STATE(1255), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3195), + [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_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), }, [1256] = { - [sym_identifier] = ACTIONS(3322), - [anon_sym_LF] = ACTIONS(3322), - [anon_sym_CR] = ACTIONS(3322), - [anon_sym_CR_LF] = ACTIONS(3322), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1256), + [sym_block_comment] = STATE(1256), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_as] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_COMMA] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_RPAREN] = ACTIONS(3183), + [anon_sym_PIPE] = ACTIONS(3183), + [anon_sym_fn] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_PERCENT] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT_EQ] = ACTIONS(3183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_mut] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_go] = ACTIONS(3183), + [anon_sym_spawn] = ACTIONS(3183), + [anon_sym_json_DOTdecode] = ACTIONS(3183), + [anon_sym_LBRACK2] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_LT_DASH] = ACTIONS(3183), + [anon_sym_LT_LT] = ACTIONS(3183), + [anon_sym_GT_GT] = ACTIONS(3183), + [anon_sym_GT_GT_GT] = ACTIONS(3183), + [anon_sym_AMP_CARET] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_PIPE_PIPE] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [sym_none] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_nil] = ACTIONS(3183), + [anon_sym_QMARK_DOT] = ACTIONS(3183), + [anon_sym_POUND_LBRACK] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_DOLLARif] = ACTIONS(3183), + [anon_sym_is] = ACTIONS(3183), + [anon_sym_BANGis] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_BANGin] = ACTIONS(3183), + [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), }, [1257] = { - [sym_identifier] = ACTIONS(3318), - [anon_sym_LF] = ACTIONS(3318), - [anon_sym_CR] = ACTIONS(3318), - [anon_sym_CR_LF] = ACTIONS(3318), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1257), + [sym_block_comment] = STATE(1257), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3179), + [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_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), }, [1258] = { - [sym_identifier] = ACTIONS(3307), - [anon_sym_LF] = ACTIONS(3307), - [anon_sym_CR] = ACTIONS(3307), - [anon_sym_CR_LF] = ACTIONS(3307), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1258), + [sym_block_comment] = STATE(1258), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3423), + [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_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), }, [1259] = { - [sym_identifier] = ACTIONS(3303), - [anon_sym_LF] = ACTIONS(3303), - [anon_sym_CR] = ACTIONS(3303), - [anon_sym_CR_LF] = ACTIONS(3303), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1259), + [sym_block_comment] = STATE(1259), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [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(611), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_DASH] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_AMP_CARET] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(565), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(565), + [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(619), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, [1260] = { - [sym_identifier] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_CR] = ACTIONS(3299), - [anon_sym_CR_LF] = ACTIONS(3299), - [sym_comment] = ACTIONS(495), - [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), - }, - [1261] = { - [sym_identifier] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_CR] = ACTIONS(3295), - [anon_sym_CR_LF] = ACTIONS(3295), - [sym_comment] = ACTIONS(495), - [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), - }, - [1262] = { - [sym_identifier] = ACTIONS(3279), - [anon_sym_LF] = ACTIONS(3279), - [anon_sym_CR] = ACTIONS(3279), - [anon_sym_CR_LF] = ACTIONS(3279), - [sym_comment] = ACTIONS(495), - [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), - }, - [1263] = { - [sym_identifier] = ACTIONS(3027), - [anon_sym_LF] = ACTIONS(3027), - [anon_sym_CR] = ACTIONS(3027), - [anon_sym_CR_LF] = ACTIONS(3027), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3027), - [anon_sym_as] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym_RPAREN] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3027), - [anon_sym_fn] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_GT] = ACTIONS(3027), - [anon_sym_EQ_EQ] = ACTIONS(3027), - [anon_sym_BANG_EQ] = ACTIONS(3027), - [anon_sym_LT_EQ] = ACTIONS(3027), - [anon_sym_GT_EQ] = ACTIONS(3027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_mut] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_QMARK] = ACTIONS(3027), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3027), - [anon_sym_json_DOTdecode] = ACTIONS(3027), - [anon_sym_LBRACK2] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3027), - [anon_sym_CARET] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_LT_DASH] = ACTIONS(3027), - [anon_sym_LT_LT] = ACTIONS(3027), - [anon_sym_GT_GT] = ACTIONS(3027), - [anon_sym_GT_GT_GT] = ACTIONS(3027), - [anon_sym_AMP_CARET] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_PIPE_PIPE] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3027), - [sym_none] = ACTIONS(3027), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_nil] = ACTIONS(3027), - [anon_sym_QMARK_DOT] = ACTIONS(3027), - [anon_sym_POUND_LBRACK] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3027), - [anon_sym_is] = ACTIONS(3027), - [anon_sym_BANGis] = ACTIONS(3027), - [anon_sym_in] = ACTIONS(3027), - [anon_sym_BANGin] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3027), - [anon_sym_select] = ACTIONS(3027), - [anon_sym_lock] = ACTIONS(3027), - [anon_sym_rlock] = ACTIONS(3027), - [anon_sym_unsafe] = ACTIONS(3027), - [anon_sym_sql] = ACTIONS(3027), - [sym_int_literal] = ACTIONS(3027), - [sym_float_literal] = ACTIONS(3027), - [sym_rune_literal] = ACTIONS(3027), - [sym_pseudo_compile_time_identifier] = ACTIONS(3027), - [anon_sym_shared] = ACTIONS(3027), - [anon_sym_map_LBRACK] = ACTIONS(3027), - [anon_sym_chan] = ACTIONS(3027), - [anon_sym_thread] = ACTIONS(3027), - [anon_sym_atomic] = ACTIONS(3027), - [sym___double_quote] = ACTIONS(3027), - [sym___single_quote] = ACTIONS(3027), - [sym___c_double_quote] = ACTIONS(3027), - [sym___c_single_quote] = ACTIONS(3027), - [sym___r_double_quote] = ACTIONS(3027), - [sym___r_single_quote] = ACTIONS(3027), - }, - [1264] = { - [sym_identifier] = ACTIONS(3205), - [anon_sym_LF] = ACTIONS(3205), - [anon_sym_CR] = ACTIONS(3205), - [anon_sym_CR_LF] = ACTIONS(3205), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_DOT] = ACTIONS(3205), - [anon_sym_as] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_RPAREN] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3205), - [anon_sym_fn] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3205), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_GT] = ACTIONS(3205), - [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_DOT_DOT_DOT] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3205), - [anon_sym_mut] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_QMARK] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_go] = ACTIONS(3205), - [anon_sym_spawn] = ACTIONS(3205), - [anon_sym_json_DOTdecode] = ACTIONS(3205), - [anon_sym_LBRACK2] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3205), - [anon_sym_LT_DASH] = ACTIONS(3205), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3205), - [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(3205), - [sym_none] = ACTIONS(3205), - [sym_true] = ACTIONS(3205), - [sym_false] = ACTIONS(3205), - [sym_nil] = ACTIONS(3205), - [anon_sym_QMARK_DOT] = ACTIONS(3205), - [anon_sym_POUND_LBRACK] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_DOLLARif] = ACTIONS(3205), - [anon_sym_is] = ACTIONS(3205), - [anon_sym_BANGis] = ACTIONS(3205), - [anon_sym_in] = ACTIONS(3205), - [anon_sym_BANGin] = ACTIONS(3205), - [anon_sym_match] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [anon_sym_lock] = ACTIONS(3205), - [anon_sym_rlock] = ACTIONS(3205), - [anon_sym_unsafe] = ACTIONS(3205), - [anon_sym_sql] = ACTIONS(3205), - [sym_int_literal] = ACTIONS(3205), - [sym_float_literal] = ACTIONS(3205), - [sym_rune_literal] = ACTIONS(3205), - [sym_pseudo_compile_time_identifier] = ACTIONS(3205), - [anon_sym_shared] = ACTIONS(3205), - [anon_sym_map_LBRACK] = ACTIONS(3205), - [anon_sym_chan] = ACTIONS(3205), - [anon_sym_thread] = ACTIONS(3205), - [anon_sym_atomic] = ACTIONS(3205), - [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), - }, - [1265] = { - [sym_reference_expression] = STATE(4487), - [sym_type_reference_expression] = STATE(1946), - [sym_plain_type] = STATE(1965), - [sym__plain_type_without_special] = STATE(2017), - [sym_anon_struct_type] = STATE(2006), - [sym_multi_return_type] = STATE(2017), - [sym_result_type] = STATE(2017), - [sym_option_type] = STATE(2017), - [sym_qualified_type] = STATE(1946), - [sym_fixed_array_type] = STATE(2006), - [sym_array_type] = STATE(2006), - [sym_pointer_type] = STATE(2006), - [sym_wrong_pointer_type] = STATE(2006), - [sym_map_type] = STATE(2006), - [sym_channel_type] = STATE(2006), - [sym_shared_type] = STATE(2006), - [sym_thread_type] = STATE(2006), - [sym_atomic_type] = STATE(2006), - [sym_generic_type] = STATE(2006), - [sym_function_type] = STATE(2006), - [sym_identifier] = ACTIONS(3786), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3788), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3790), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3792), - [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(3794), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3796), - [anon_sym_BANG] = ACTIONS(3798), - [anon_sym_LBRACK2] = ACTIONS(3800), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3802), - [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(3804), - [anon_sym_map_LBRACK] = ACTIONS(3806), - [anon_sym_chan] = ACTIONS(3808), - [anon_sym_thread] = ACTIONS(3810), - [anon_sym_atomic] = ACTIONS(3812), - }, - [1266] = { - [sym_identifier] = ACTIONS(2907), - [anon_sym_LF] = ACTIONS(2907), - [anon_sym_CR] = ACTIONS(2907), - [anon_sym_CR_LF] = ACTIONS(2907), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [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_DOT_DOT_DOT] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2907), - [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(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [sym_pseudo_compile_time_identifier] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [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), + [sym_line_comment] = STATE(1260), + [sym_block_comment] = STATE(1260), + [sym_identifier] = ACTIONS(3133), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_CR] = ACTIONS(3133), + [anon_sym_CR_LF] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_RBRACE] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3133), + [anon_sym_RPAREN] = ACTIONS(3133), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_fn] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [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_DOT_DOT_DOT] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_mut] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3133), + [anon_sym_DASH_DASH] = ACTIONS(3133), + [anon_sym_QMARK] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_go] = ACTIONS(3133), + [anon_sym_spawn] = ACTIONS(3133), + [anon_sym_json_DOTdecode] = ACTIONS(3133), + [anon_sym_LBRACK2] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_CARET] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_LT_DASH] = ACTIONS(3133), + [anon_sym_LT_LT] = ACTIONS(3133), + [anon_sym_GT_GT] = ACTIONS(3133), + [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(3133), + [sym_none] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_nil] = ACTIONS(3133), + [anon_sym_QMARK_DOT] = ACTIONS(3133), + [anon_sym_POUND_LBRACK] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_DOLLARif] = ACTIONS(3133), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3133), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_BANGin] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_rlock] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_sql] = ACTIONS(3133), + [sym_int_literal] = ACTIONS(3133), + [sym_float_literal] = ACTIONS(3133), + [sym_rune_literal] = ACTIONS(3133), + [sym_pseudo_compile_time_identifier] = ACTIONS(3133), + [anon_sym_shared] = ACTIONS(3133), + [anon_sym_map_LBRACK] = ACTIONS(3133), + [anon_sym_chan] = ACTIONS(3133), + [anon_sym_thread] = ACTIONS(3133), + [anon_sym_atomic] = ACTIONS(3133), + [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), + }, + [1261] = { + [sym_line_comment] = STATE(1261), + [sym_block_comment] = STATE(1261), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3371), + [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_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), + }, + [1262] = { + [sym_line_comment] = STATE(1262), + [sym_block_comment] = STATE(1262), + [sym_identifier] = ACTIONS(2757), + [anon_sym_LF] = ACTIONS(2757), + [anon_sym_CR] = ACTIONS(2757), + [anon_sym_CR_LF] = ACTIONS(2757), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2757), + [anon_sym_DOT] = ACTIONS(2757), + [anon_sym_as] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2757), + [anon_sym_COMMA] = ACTIONS(2757), + [anon_sym_RBRACE] = ACTIONS(2757), + [anon_sym_LPAREN] = ACTIONS(2757), + [anon_sym_RPAREN] = ACTIONS(2757), + [anon_sym_PIPE] = ACTIONS(2757), + [anon_sym_fn] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_PERCENT] = ACTIONS(2757), + [anon_sym_LT] = ACTIONS(2757), + [anon_sym_GT] = ACTIONS(2757), + [anon_sym_EQ_EQ] = ACTIONS(2757), + [anon_sym_BANG_EQ] = ACTIONS(2757), + [anon_sym_LT_EQ] = ACTIONS(2757), + [anon_sym_GT_EQ] = ACTIONS(2757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_mut] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_QMARK] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_go] = ACTIONS(2757), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2757), + [anon_sym_LBRACK2] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [anon_sym_CARET] = ACTIONS(2757), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_LT_DASH] = ACTIONS(2757), + [anon_sym_LT_LT] = ACTIONS(2757), + [anon_sym_GT_GT] = ACTIONS(2757), + [anon_sym_GT_GT_GT] = ACTIONS(2757), + [anon_sym_AMP_CARET] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2757), + [anon_sym_PIPE_PIPE] = ACTIONS(2757), + [anon_sym_or] = ACTIONS(2757), + [sym_none] = ACTIONS(2757), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_nil] = ACTIONS(2757), + [anon_sym_QMARK_DOT] = ACTIONS(2757), + [anon_sym_POUND_LBRACK] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_DOLLARif] = ACTIONS(2757), + [anon_sym_is] = ACTIONS(2757), + [anon_sym_BANGis] = ACTIONS(2757), + [anon_sym_in] = ACTIONS(2757), + [anon_sym_BANGin] = ACTIONS(2757), + [anon_sym_match] = ACTIONS(2757), + [anon_sym_select] = ACTIONS(2757), + [anon_sym_lock] = ACTIONS(2757), + [anon_sym_rlock] = ACTIONS(2757), + [anon_sym_unsafe] = ACTIONS(2757), + [anon_sym_sql] = ACTIONS(2757), + [sym_int_literal] = ACTIONS(2757), + [sym_float_literal] = ACTIONS(2757), + [sym_rune_literal] = ACTIONS(2757), + [sym_pseudo_compile_time_identifier] = ACTIONS(2757), + [anon_sym_shared] = ACTIONS(2757), + [anon_sym_map_LBRACK] = ACTIONS(2757), + [anon_sym_chan] = ACTIONS(2757), + [anon_sym_thread] = ACTIONS(2757), + [anon_sym_atomic] = ACTIONS(2757), + [sym___double_quote] = ACTIONS(2757), + [sym___single_quote] = ACTIONS(2757), + [sym___c_double_quote] = ACTIONS(2757), + [sym___c_single_quote] = ACTIONS(2757), + [sym___r_double_quote] = ACTIONS(2757), + [sym___r_single_quote] = ACTIONS(2757), + }, + [1263] = { + [sym_line_comment] = STATE(1263), + [sym_block_comment] = STATE(1263), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3323), + [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_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), + }, + [1264] = { + [sym_line_comment] = STATE(1264), + [sym_block_comment] = STATE(1264), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3387), + [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_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), + }, + [1265] = { + [sym_line_comment] = STATE(1265), + [sym_block_comment] = STATE(1265), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3427), + [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_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), + }, + [1266] = { + [sym_line_comment] = STATE(1266), + [sym_block_comment] = STATE(1266), + [sym_reference_expression] = STATE(4528), + [sym_type_reference_expression] = STATE(1951), + [sym_plain_type] = STATE(2059), + [sym__plain_type_without_special] = STATE(2042), + [sym_anon_struct_type] = STATE(2043), + [sym_multi_return_type] = STATE(2042), + [sym_result_type] = STATE(2042), + [sym_option_type] = STATE(2042), + [sym_qualified_type] = STATE(1951), + [sym_fixed_array_type] = STATE(2043), + [sym_array_type] = STATE(2043), + [sym_pointer_type] = STATE(2043), + [sym_wrong_pointer_type] = STATE(2043), + [sym_map_type] = STATE(2043), + [sym_channel_type] = STATE(2043), + [sym_shared_type] = STATE(2043), + [sym_thread_type] = STATE(2043), + [sym_atomic_type] = STATE(2043), + [sym_generic_type] = STATE(2043), + [sym_function_type] = STATE(2043), + [sym_identifier] = ACTIONS(3825), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3831), + [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(3833), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3835), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_LBRACK2] = ACTIONS(3839), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3841), + [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(3843), + [anon_sym_map_LBRACK] = ACTIONS(3845), + [anon_sym_chan] = ACTIONS(3847), + [anon_sym_thread] = ACTIONS(3849), + [anon_sym_atomic] = ACTIONS(3851), }, [1267] = { - [sym_identifier] = ACTIONS(3241), - [anon_sym_LF] = ACTIONS(3241), - [anon_sym_CR] = ACTIONS(3241), - [anon_sym_CR_LF] = ACTIONS(3241), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3241), - [anon_sym_as] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_RPAREN] = ACTIONS(3241), - [anon_sym_PIPE] = ACTIONS(3241), - [anon_sym_fn] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_PERCENT] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [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_DOT_DOT_DOT] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_mut] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [anon_sym_QMARK] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_go] = ACTIONS(3241), - [anon_sym_spawn] = ACTIONS(3241), - [anon_sym_json_DOTdecode] = ACTIONS(3241), - [anon_sym_LBRACK2] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_CARET] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3241), - [anon_sym_LT_DASH] = ACTIONS(3241), - [anon_sym_LT_LT] = ACTIONS(3241), - [anon_sym_GT_GT] = ACTIONS(3241), - [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(3241), - [sym_none] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_nil] = ACTIONS(3241), - [anon_sym_QMARK_DOT] = ACTIONS(3241), - [anon_sym_POUND_LBRACK] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_DOLLARif] = ACTIONS(3241), - [anon_sym_is] = ACTIONS(3241), - [anon_sym_BANGis] = ACTIONS(3241), - [anon_sym_in] = ACTIONS(3241), - [anon_sym_BANGin] = ACTIONS(3241), - [anon_sym_match] = ACTIONS(3241), - [anon_sym_select] = ACTIONS(3241), - [anon_sym_lock] = ACTIONS(3241), - [anon_sym_rlock] = ACTIONS(3241), - [anon_sym_unsafe] = ACTIONS(3241), - [anon_sym_sql] = ACTIONS(3241), - [sym_int_literal] = ACTIONS(3241), - [sym_float_literal] = ACTIONS(3241), - [sym_rune_literal] = ACTIONS(3241), - [sym_pseudo_compile_time_identifier] = ACTIONS(3241), - [anon_sym_shared] = ACTIONS(3241), - [anon_sym_map_LBRACK] = ACTIONS(3241), - [anon_sym_chan] = ACTIONS(3241), - [anon_sym_thread] = ACTIONS(3241), - [anon_sym_atomic] = ACTIONS(3241), - [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), + [sym_line_comment] = STATE(1267), + [sym_block_comment] = STATE(1267), + [sym_reference_expression] = STATE(4528), + [sym_type_reference_expression] = STATE(1951), + [sym_plain_type] = STATE(2046), + [sym__plain_type_without_special] = STATE(2042), + [sym_anon_struct_type] = STATE(2043), + [sym_multi_return_type] = STATE(2042), + [sym_result_type] = STATE(2042), + [sym_option_type] = STATE(2042), + [sym_qualified_type] = STATE(1951), + [sym_fixed_array_type] = STATE(2043), + [sym_array_type] = STATE(2043), + [sym_pointer_type] = STATE(2043), + [sym_wrong_pointer_type] = STATE(2043), + [sym_map_type] = STATE(2043), + [sym_channel_type] = STATE(2043), + [sym_shared_type] = STATE(2043), + [sym_thread_type] = STATE(2043), + [sym_atomic_type] = STATE(2043), + [sym_generic_type] = STATE(2043), + [sym_function_type] = STATE(2043), + [sym_identifier] = ACTIONS(3825), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(3831), + [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(3833), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(3835), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_LBRACK2] = ACTIONS(3839), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(3841), + [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(3843), + [anon_sym_map_LBRACK] = ACTIONS(3845), + [anon_sym_chan] = ACTIONS(3847), + [anon_sym_thread] = ACTIONS(3849), + [anon_sym_atomic] = ACTIONS(3851), }, [1268] = { - [sym_identifier] = ACTIONS(3237), - [anon_sym_LF] = ACTIONS(3237), - [anon_sym_CR] = ACTIONS(3237), - [anon_sym_CR_LF] = ACTIONS(3237), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_RPAREN] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_PERCENT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3237), - [anon_sym_GT] = ACTIONS(3237), - [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_DOT_DOT_DOT] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3237), - [anon_sym_mut] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_go] = ACTIONS(3237), - [anon_sym_spawn] = ACTIONS(3237), - [anon_sym_json_DOTdecode] = ACTIONS(3237), - [anon_sym_LBRACK2] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3237), - [anon_sym_LT_DASH] = ACTIONS(3237), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3237), - [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(3237), - [sym_none] = ACTIONS(3237), - [sym_true] = ACTIONS(3237), - [sym_false] = ACTIONS(3237), - [sym_nil] = ACTIONS(3237), - [anon_sym_QMARK_DOT] = ACTIONS(3237), - [anon_sym_POUND_LBRACK] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_DOLLARif] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3237), - [anon_sym_BANGis] = ACTIONS(3237), - [anon_sym_in] = ACTIONS(3237), - [anon_sym_BANGin] = ACTIONS(3237), - [anon_sym_match] = ACTIONS(3237), - [anon_sym_select] = ACTIONS(3237), - [anon_sym_lock] = ACTIONS(3237), - [anon_sym_rlock] = ACTIONS(3237), - [anon_sym_unsafe] = ACTIONS(3237), - [anon_sym_sql] = ACTIONS(3237), - [sym_int_literal] = ACTIONS(3237), - [sym_float_literal] = ACTIONS(3237), - [sym_rune_literal] = ACTIONS(3237), - [sym_pseudo_compile_time_identifier] = ACTIONS(3237), - [anon_sym_shared] = ACTIONS(3237), - [anon_sym_map_LBRACK] = ACTIONS(3237), - [anon_sym_chan] = ACTIONS(3237), - [anon_sym_thread] = ACTIONS(3237), - [anon_sym_atomic] = ACTIONS(3237), - [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), + [sym_line_comment] = STATE(1268), + [sym_block_comment] = STATE(1268), + [sym_identifier] = ACTIONS(3043), + [anon_sym_LF] = ACTIONS(3043), + [anon_sym_CR] = ACTIONS(3043), + [anon_sym_CR_LF] = ACTIONS(3043), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_as] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3043), + [anon_sym_RBRACE] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_RPAREN] = ACTIONS(3043), + [anon_sym_PIPE] = ACTIONS(3043), + [anon_sym_fn] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3043), + [anon_sym_GT] = ACTIONS(3043), + [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_DOT_DOT_DOT] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3041), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_mut] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_go] = ACTIONS(3043), + [anon_sym_spawn] = ACTIONS(3043), + [anon_sym_json_DOTdecode] = ACTIONS(3043), + [anon_sym_LBRACK2] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3043), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_LT_LT] = ACTIONS(3043), + [anon_sym_GT_GT] = ACTIONS(3043), + [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(3043), + [sym_none] = ACTIONS(3043), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [sym_nil] = ACTIONS(3043), + [anon_sym_QMARK_DOT] = ACTIONS(3043), + [anon_sym_POUND_LBRACK] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_DOLLARif] = ACTIONS(3043), + [anon_sym_is] = ACTIONS(3043), + [anon_sym_BANGis] = ACTIONS(3043), + [anon_sym_in] = ACTIONS(3043), + [anon_sym_BANGin] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3043), + [anon_sym_rlock] = ACTIONS(3043), + [anon_sym_unsafe] = ACTIONS(3043), + [anon_sym_sql] = ACTIONS(3043), + [sym_int_literal] = ACTIONS(3043), + [sym_float_literal] = ACTIONS(3043), + [sym_rune_literal] = ACTIONS(3043), + [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_shared] = ACTIONS(3043), + [anon_sym_map_LBRACK] = ACTIONS(3043), + [anon_sym_chan] = ACTIONS(3043), + [anon_sym_thread] = ACTIONS(3043), + [anon_sym_atomic] = ACTIONS(3043), + [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), }, [1269] = { - [sym_identifier] = ACTIONS(3197), - [anon_sym_LF] = ACTIONS(3197), - [anon_sym_CR] = ACTIONS(3197), - [anon_sym_CR_LF] = ACTIONS(3197), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_RPAREN] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [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_DOT_DOT_DOT] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3197), - [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(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [sym_pseudo_compile_time_identifier] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [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_line_comment] = STATE(1269), + [sym_block_comment] = STATE(1269), + [sym_identifier] = ACTIONS(2979), + [anon_sym_LF] = ACTIONS(2979), + [anon_sym_CR] = ACTIONS(2979), + [anon_sym_CR_LF] = ACTIONS(2979), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_fn] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2979), + [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_DOT_DOT_DOT] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2979), + [anon_sym_mut] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_go] = ACTIONS(2979), + [anon_sym_spawn] = ACTIONS(2979), + [anon_sym_json_DOTdecode] = ACTIONS(2979), + [anon_sym_LBRACK2] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2979), + [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(2979), + [sym_none] = ACTIONS(2979), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [sym_nil] = ACTIONS(2979), + [anon_sym_QMARK_DOT] = ACTIONS(2979), + [anon_sym_POUND_LBRACK] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_DOLLARif] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_BANGis] = ACTIONS(2979), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_BANGin] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_select] = ACTIONS(2979), + [anon_sym_lock] = ACTIONS(2979), + [anon_sym_rlock] = ACTIONS(2979), + [anon_sym_unsafe] = ACTIONS(2979), + [anon_sym_sql] = ACTIONS(2979), + [sym_int_literal] = ACTIONS(2979), + [sym_float_literal] = ACTIONS(2979), + [sym_rune_literal] = ACTIONS(2979), + [sym_pseudo_compile_time_identifier] = ACTIONS(2979), + [anon_sym_shared] = ACTIONS(2979), + [anon_sym_map_LBRACK] = ACTIONS(2979), + [anon_sym_chan] = ACTIONS(2979), + [anon_sym_thread] = ACTIONS(2979), + [anon_sym_atomic] = ACTIONS(2979), + [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), }, [1270] = { - [sym_identifier] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_CR] = ACTIONS(3424), - [anon_sym_CR_LF] = ACTIONS(3424), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_DOT] = ACTIONS(3424), - [anon_sym_as] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_COMMA] = ACTIONS(3424), - [anon_sym_RBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym_RPAREN] = ACTIONS(3424), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_fn] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_SLASH] = ACTIONS(3424), - [anon_sym_PERCENT] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [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_DOT_DOT_DOT] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3424), - [anon_sym_mut] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [anon_sym_QMARK] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_go] = ACTIONS(3424), - [anon_sym_spawn] = ACTIONS(3424), - [anon_sym_json_DOTdecode] = ACTIONS(3424), - [anon_sym_LBRACK2] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_CARET] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - [anon_sym_LT_DASH] = ACTIONS(3424), - [anon_sym_LT_LT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [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(3424), - [sym_none] = ACTIONS(3424), - [sym_true] = ACTIONS(3424), - [sym_false] = ACTIONS(3424), - [sym_nil] = ACTIONS(3424), - [anon_sym_QMARK_DOT] = ACTIONS(3424), - [anon_sym_POUND_LBRACK] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_DOLLARif] = ACTIONS(3424), - [anon_sym_is] = ACTIONS(3424), - [anon_sym_BANGis] = ACTIONS(3424), - [anon_sym_in] = ACTIONS(3424), - [anon_sym_BANGin] = ACTIONS(3424), - [anon_sym_match] = ACTIONS(3424), - [anon_sym_select] = ACTIONS(3424), - [anon_sym_lock] = ACTIONS(3424), - [anon_sym_rlock] = ACTIONS(3424), - [anon_sym_unsafe] = ACTIONS(3424), - [anon_sym_sql] = ACTIONS(3424), - [sym_int_literal] = ACTIONS(3424), - [sym_float_literal] = ACTIONS(3424), - [sym_rune_literal] = ACTIONS(3424), - [sym_pseudo_compile_time_identifier] = ACTIONS(3424), - [anon_sym_shared] = ACTIONS(3424), - [anon_sym_map_LBRACK] = ACTIONS(3424), - [anon_sym_chan] = ACTIONS(3424), - [anon_sym_thread] = ACTIONS(3424), - [anon_sym_atomic] = ACTIONS(3424), - [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), + [sym_line_comment] = STATE(1270), + [sym_block_comment] = STATE(1270), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LF] = ACTIONS(3023), + [anon_sym_CR] = ACTIONS(3023), + [anon_sym_CR_LF] = ACTIONS(3023), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3023), + [anon_sym_SEMI] = ACTIONS(3023), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_as] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3023), + [anon_sym_RBRACE] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_RPAREN] = ACTIONS(3023), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_fn] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT_EQ] = ACTIONS(3023), + [anon_sym_GT_EQ] = ACTIONS(3023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3023), + [anon_sym_mut] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_go] = ACTIONS(3023), + [anon_sym_spawn] = ACTIONS(3023), + [anon_sym_json_DOTdecode] = ACTIONS(3023), + [anon_sym_LBRACK2] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_CARET] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(3023), + [anon_sym_GT_GT_GT] = ACTIONS(3023), + [anon_sym_AMP_CARET] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_or] = ACTIONS(3023), + [sym_none] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_nil] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(3023), + [anon_sym_POUND_LBRACK] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_DOLLARif] = ACTIONS(3023), + [anon_sym_is] = ACTIONS(3023), + [anon_sym_BANGis] = ACTIONS(3023), + [anon_sym_in] = ACTIONS(3023), + [anon_sym_BANGin] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_select] = ACTIONS(3023), + [anon_sym_lock] = ACTIONS(3023), + [anon_sym_rlock] = ACTIONS(3023), + [anon_sym_unsafe] = ACTIONS(3023), + [anon_sym_sql] = ACTIONS(3023), + [sym_int_literal] = ACTIONS(3023), + [sym_float_literal] = ACTIONS(3023), + [sym_rune_literal] = ACTIONS(3023), + [sym_pseudo_compile_time_identifier] = ACTIONS(3023), + [anon_sym_shared] = ACTIONS(3023), + [anon_sym_map_LBRACK] = ACTIONS(3023), + [anon_sym_chan] = ACTIONS(3023), + [anon_sym_thread] = ACTIONS(3023), + [anon_sym_atomic] = ACTIONS(3023), + [sym___double_quote] = ACTIONS(3023), + [sym___single_quote] = ACTIONS(3023), + [sym___c_double_quote] = ACTIONS(3023), + [sym___c_single_quote] = ACTIONS(3023), + [sym___r_double_quote] = ACTIONS(3023), + [sym___r_single_quote] = ACTIONS(3023), }, [1271] = { - [sym_identifier] = ACTIONS(3185), - [anon_sym_LF] = ACTIONS(3185), - [anon_sym_CR] = ACTIONS(3185), - [anon_sym_CR_LF] = ACTIONS(3185), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_RPAREN] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [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_DOT_DOT_DOT] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3185), - [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(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [sym_pseudo_compile_time_identifier] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [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_line_comment] = STATE(1271), + [sym_block_comment] = STATE(1271), + [sym_reference_expression] = STATE(4528), + [sym_type_reference_expression] = STATE(1951), + [sym_plain_type] = STATE(2053), + [sym__plain_type_without_special] = STATE(2042), + [sym_anon_struct_type] = STATE(2043), + [sym_multi_return_type] = STATE(2042), + [sym_result_type] = STATE(2042), + [sym_option_type] = STATE(2042), + [sym_qualified_type] = STATE(1951), + [sym_fixed_array_type] = STATE(2043), + [sym_array_type] = STATE(2043), + [sym_pointer_type] = STATE(2043), + [sym_wrong_pointer_type] = STATE(2043), + [sym_map_type] = STATE(2043), + [sym_channel_type] = STATE(2043), + [sym_shared_type] = STATE(2043), + [sym_thread_type] = STATE(2043), + [sym_atomic_type] = STATE(2043), + [sym_generic_type] = STATE(2043), + [sym_function_type] = STATE(2043), + [sym_identifier] = ACTIONS(3825), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_EQ] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(3831), + [anon_sym_PERCENT] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [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(567), + [anon_sym_struct] = ACTIONS(3833), + [anon_sym_COLON] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(3835), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_LBRACK2] = ACTIONS(3839), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(3841), + [anon_sym_LT_DASH] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_GT_GT_GT] = ACTIONS(571), + [anon_sym_AMP_CARET] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_or] = ACTIONS(571), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_AMP_CARET_EQ] = ACTIONS(567), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_shared] = ACTIONS(3843), + [anon_sym_map_LBRACK] = ACTIONS(3845), + [anon_sym_chan] = ACTIONS(3847), + [anon_sym_thread] = ACTIONS(3849), + [anon_sym_atomic] = ACTIONS(3851), }, [1272] = { - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_RPAREN] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [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_DOT_DOT_DOT] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [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(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [sym_pseudo_compile_time_identifier] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [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_line_comment] = STATE(1272), + [sym_block_comment] = STATE(1272), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3383), + [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_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), }, [1273] = { - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_RPAREN] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [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_DOT_DOT_DOT] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [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(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2915), - [anon_sym_POUND_LBRACK] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2915), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [sym_pseudo_compile_time_identifier] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [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), + [sym_line_comment] = STATE(1273), + [sym_block_comment] = STATE(1273), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3379), + [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_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), }, [1274] = { - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_RPAREN] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [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_DOT_DOT_DOT] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [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(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [sym_pseudo_compile_time_identifier] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [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_line_comment] = STATE(1274), + [sym_block_comment] = STATE(1274), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3051), + [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_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), }, [1275] = { - [sym_identifier] = ACTIONS(3087), - [anon_sym_LF] = ACTIONS(3087), - [anon_sym_CR] = ACTIONS(3087), - [anon_sym_CR_LF] = ACTIONS(3087), - [sym_comment] = ACTIONS(495), - [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_line_comment] = STATE(1275), + [sym_block_comment] = STATE(1275), + [sym_identifier] = ACTIONS(3229), + [anon_sym_LF] = ACTIONS(3229), + [anon_sym_CR] = ACTIONS(3229), + [anon_sym_CR_LF] = ACTIONS(3229), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_DOT] = ACTIONS(3229), + [anon_sym_as] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_PIPE] = ACTIONS(3229), + [anon_sym_fn] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3229), + [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_DOT_DOT_DOT] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_struct] = ACTIONS(3229), + [anon_sym_mut] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_QMARK] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_go] = ACTIONS(3229), + [anon_sym_spawn] = ACTIONS(3229), + [anon_sym_json_DOTdecode] = ACTIONS(3229), + [anon_sym_LBRACK2] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_LT_DASH] = ACTIONS(3229), + [anon_sym_LT_LT] = ACTIONS(3229), + [anon_sym_GT_GT] = ACTIONS(3229), + [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(3229), + [sym_none] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_nil] = ACTIONS(3229), + [anon_sym_QMARK_DOT] = ACTIONS(3229), + [anon_sym_POUND_LBRACK] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_DOLLARif] = ACTIONS(3229), + [anon_sym_is] = ACTIONS(3229), + [anon_sym_BANGis] = ACTIONS(3229), + [anon_sym_in] = ACTIONS(3229), + [anon_sym_BANGin] = ACTIONS(3229), + [anon_sym_match] = ACTIONS(3229), + [anon_sym_select] = ACTIONS(3229), + [anon_sym_lock] = ACTIONS(3229), + [anon_sym_rlock] = ACTIONS(3229), + [anon_sym_unsafe] = ACTIONS(3229), + [anon_sym_sql] = ACTIONS(3229), + [sym_int_literal] = ACTIONS(3229), + [sym_float_literal] = ACTIONS(3229), + [sym_rune_literal] = ACTIONS(3229), + [sym_pseudo_compile_time_identifier] = ACTIONS(3229), + [anon_sym_shared] = ACTIONS(3229), + [anon_sym_map_LBRACK] = ACTIONS(3229), + [anon_sym_chan] = ACTIONS(3229), + [anon_sym_thread] = ACTIONS(3229), + [anon_sym_atomic] = ACTIONS(3229), + [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), }, [1276] = { - [sym_identifier] = ACTIONS(3213), - [anon_sym_LF] = ACTIONS(3213), - [anon_sym_CR] = ACTIONS(3213), - [anon_sym_CR_LF] = ACTIONS(3213), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym_DOT] = ACTIONS(3213), - [anon_sym_as] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_COMMA] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3213), - [anon_sym_RPAREN] = ACTIONS(3213), - [anon_sym_PIPE] = ACTIONS(3213), - [anon_sym_fn] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_SLASH] = ACTIONS(3213), - [anon_sym_PERCENT] = ACTIONS(3213), - [anon_sym_LT] = ACTIONS(3213), - [anon_sym_GT] = ACTIONS(3213), - [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_DOT_DOT_DOT] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3213), - [anon_sym_mut] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_QMARK] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_go] = ACTIONS(3213), - [anon_sym_spawn] = ACTIONS(3213), - [anon_sym_json_DOTdecode] = ACTIONS(3213), - [anon_sym_LBRACK2] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_CARET] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3213), - [anon_sym_LT_DASH] = ACTIONS(3213), - [anon_sym_LT_LT] = ACTIONS(3213), - [anon_sym_GT_GT] = ACTIONS(3213), - [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(3213), - [sym_none] = ACTIONS(3213), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_nil] = ACTIONS(3213), - [anon_sym_QMARK_DOT] = ACTIONS(3213), - [anon_sym_POUND_LBRACK] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_DOLLARif] = ACTIONS(3213), - [anon_sym_is] = ACTIONS(3213), - [anon_sym_BANGis] = ACTIONS(3213), - [anon_sym_in] = ACTIONS(3213), - [anon_sym_BANGin] = ACTIONS(3213), - [anon_sym_match] = ACTIONS(3213), - [anon_sym_select] = ACTIONS(3213), - [anon_sym_lock] = ACTIONS(3213), - [anon_sym_rlock] = ACTIONS(3213), - [anon_sym_unsafe] = ACTIONS(3213), - [anon_sym_sql] = ACTIONS(3213), - [sym_int_literal] = ACTIONS(3213), - [sym_float_literal] = ACTIONS(3213), - [sym_rune_literal] = ACTIONS(3213), - [sym_pseudo_compile_time_identifier] = ACTIONS(3213), - [anon_sym_shared] = ACTIONS(3213), - [anon_sym_map_LBRACK] = ACTIONS(3213), - [anon_sym_chan] = ACTIONS(3213), - [anon_sym_thread] = ACTIONS(3213), - [anon_sym_atomic] = ACTIONS(3213), - [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), + [sym_line_comment] = STATE(1276), + [sym_block_comment] = STATE(1276), + [sym_identifier] = ACTIONS(3305), + [anon_sym_LF] = ACTIONS(3305), + [anon_sym_CR] = ACTIONS(3305), + [anon_sym_CR_LF] = ACTIONS(3305), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_COMMA] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_RPAREN] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [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_DOT_DOT_DOT] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_mut] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_go] = ACTIONS(3305), + [anon_sym_spawn] = ACTIONS(3305), + [anon_sym_json_DOTdecode] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3305), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3305), + [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(3305), + [sym_none] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_nil] = ACTIONS(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3305), + [anon_sym_POUND_LBRACK] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_DOLLARif] = ACTIONS(3305), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3305), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_rlock] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_sql] = ACTIONS(3305), + [sym_int_literal] = ACTIONS(3305), + [sym_float_literal] = ACTIONS(3305), + [sym_rune_literal] = ACTIONS(3305), + [sym_pseudo_compile_time_identifier] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3305), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + [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), }, [1277] = { - [sym_identifier] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_CR] = ACTIONS(3412), - [anon_sym_CR_LF] = ACTIONS(3412), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_DOT] = ACTIONS(3412), - [anon_sym_as] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_COMMA] = ACTIONS(3412), - [anon_sym_RBRACE] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_fn] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_SLASH] = ACTIONS(3412), - [anon_sym_PERCENT] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [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_DOT_DOT_DOT] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_mut] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3412), - [anon_sym_DASH_DASH] = ACTIONS(3412), - [anon_sym_QMARK] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_go] = ACTIONS(3412), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3412), - [anon_sym_LBRACK2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_CARET] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [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(3412), - [sym_none] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_nil] = ACTIONS(3412), - [anon_sym_QMARK_DOT] = ACTIONS(3412), - [anon_sym_POUND_LBRACK] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOLLARif] = ACTIONS(3412), - [anon_sym_is] = ACTIONS(3412), - [anon_sym_BANGis] = ACTIONS(3412), - [anon_sym_in] = ACTIONS(3412), - [anon_sym_BANGin] = ACTIONS(3412), - [anon_sym_match] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_rlock] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_sql] = ACTIONS(3412), - [sym_int_literal] = ACTIONS(3412), - [sym_float_literal] = ACTIONS(3412), - [sym_rune_literal] = ACTIONS(3412), - [sym_pseudo_compile_time_identifier] = ACTIONS(3412), - [anon_sym_shared] = ACTIONS(3412), - [anon_sym_map_LBRACK] = ACTIONS(3412), - [anon_sym_chan] = ACTIONS(3412), - [anon_sym_thread] = ACTIONS(3412), - [anon_sym_atomic] = ACTIONS(3412), - [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), + [sym_line_comment] = STATE(1277), + [sym_block_comment] = STATE(1277), + [sym_identifier] = ACTIONS(3301), + [anon_sym_LF] = ACTIONS(3301), + [anon_sym_CR] = ACTIONS(3301), + [anon_sym_CR_LF] = ACTIONS(3301), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_COMMA] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_RPAREN] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [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_DOT_DOT_DOT] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_mut] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_go] = ACTIONS(3301), + [anon_sym_spawn] = ACTIONS(3301), + [anon_sym_json_DOTdecode] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_DASH] = ACTIONS(3301), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3301), + [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(3301), + [sym_none] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_nil] = ACTIONS(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3301), + [anon_sym_POUND_LBRACK] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_DOLLARif] = ACTIONS(3301), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3301), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = ACTIONS(3301), + [anon_sym_match] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_rlock] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_sql] = ACTIONS(3301), + [sym_int_literal] = ACTIONS(3301), + [sym_float_literal] = ACTIONS(3301), + [sym_rune_literal] = ACTIONS(3301), + [sym_pseudo_compile_time_identifier] = ACTIONS(3301), + [anon_sym_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3301), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + [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), }, [1278] = { + [sym_line_comment] = STATE(1278), + [sym_block_comment] = STATE(1278), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LF] = ACTIONS(2983), + [anon_sym_CR] = ACTIONS(2983), + [anon_sym_CR_LF] = ACTIONS(2983), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2983), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2983), + [anon_sym_as] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_RPAREN] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2983), + [anon_sym_fn] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_GT] = ACTIONS(2983), + [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_DOT_DOT_DOT] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2983), + [anon_sym_mut] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_go] = ACTIONS(2983), + [anon_sym_spawn] = ACTIONS(2983), + [anon_sym_json_DOTdecode] = ACTIONS(2983), + [anon_sym_LBRACK2] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_LT_DASH] = ACTIONS(2983), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2983), + [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(2983), + [sym_none] = ACTIONS(2983), + [sym_true] = ACTIONS(2983), + [sym_false] = ACTIONS(2983), + [sym_nil] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(2983), + [anon_sym_POUND_LBRACK] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_DOLLARif] = ACTIONS(2983), + [anon_sym_is] = ACTIONS(2983), + [anon_sym_BANGis] = ACTIONS(2983), + [anon_sym_in] = ACTIONS(2983), + [anon_sym_BANGin] = ACTIONS(2983), + [anon_sym_match] = ACTIONS(2983), + [anon_sym_select] = ACTIONS(2983), + [anon_sym_lock] = ACTIONS(2983), + [anon_sym_rlock] = ACTIONS(2983), + [anon_sym_unsafe] = ACTIONS(2983), + [anon_sym_sql] = ACTIONS(2983), + [sym_int_literal] = ACTIONS(2983), + [sym_float_literal] = ACTIONS(2983), + [sym_rune_literal] = ACTIONS(2983), + [sym_pseudo_compile_time_identifier] = ACTIONS(2983), + [anon_sym_shared] = ACTIONS(2983), + [anon_sym_map_LBRACK] = ACTIONS(2983), + [anon_sym_chan] = ACTIONS(2983), + [anon_sym_thread] = ACTIONS(2983), + [anon_sym_atomic] = ACTIONS(2983), + [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), + }, + [1279] = { + [sym_line_comment] = STATE(1279), + [sym_block_comment] = STATE(1279), [sym_identifier] = ACTIONS(3129), [anon_sym_LF] = ACTIONS(3129), [anon_sym_CR] = ACTIONS(3129), [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3129), [anon_sym_SEMI] = ACTIONS(3129), [anon_sym_DOT] = ACTIONS(3129), [anon_sym_as] = ACTIONS(3129), @@ -165207,7 +166227,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3129), [anon_sym_DASH] = ACTIONS(3129), [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), [anon_sym_PERCENT] = ACTIONS(3129), [anon_sym_LT] = ACTIONS(3129), [anon_sym_GT] = ACTIONS(3129), @@ -165272,6079 +166291,5830 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3129), [sym___r_single_quote] = ACTIONS(3129), }, - [1279] = { - [sym_identifier] = ACTIONS(3103), - [anon_sym_LF] = ACTIONS(3103), - [anon_sym_CR] = ACTIONS(3103), - [anon_sym_CR_LF] = ACTIONS(3103), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3103), - [anon_sym_EQ_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_mut] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_go] = ACTIONS(3103), - [anon_sym_spawn] = ACTIONS(3103), - [anon_sym_json_DOTdecode] = ACTIONS(3103), - [anon_sym_LBRACK2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LT_DASH] = ACTIONS(3103), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_GT_GT_GT] = ACTIONS(3103), - [anon_sym_AMP_CARET] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3103), - [sym_none] = ACTIONS(3103), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [sym_nil] = ACTIONS(3103), - [anon_sym_QMARK_DOT] = ACTIONS(3103), - [anon_sym_POUND_LBRACK] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_DOLLARif] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_BANGis] = ACTIONS(3103), - [anon_sym_in] = ACTIONS(3103), - [anon_sym_BANGin] = ACTIONS(3103), - [anon_sym_match] = ACTIONS(3103), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3103), - [anon_sym_rlock] = ACTIONS(3103), - [anon_sym_unsafe] = ACTIONS(3103), - [anon_sym_sql] = ACTIONS(3103), - [sym_int_literal] = ACTIONS(3103), - [sym_float_literal] = ACTIONS(3103), - [sym_rune_literal] = ACTIONS(3103), - [sym_pseudo_compile_time_identifier] = ACTIONS(3103), - [anon_sym_shared] = ACTIONS(3103), - [anon_sym_map_LBRACK] = ACTIONS(3103), - [anon_sym_chan] = ACTIONS(3103), - [anon_sym_thread] = ACTIONS(3103), - [anon_sym_atomic] = ACTIONS(3103), - [sym___double_quote] = ACTIONS(3103), - [sym___single_quote] = ACTIONS(3103), - [sym___c_double_quote] = ACTIONS(3103), - [sym___c_single_quote] = ACTIONS(3103), - [sym___r_double_quote] = ACTIONS(3103), - [sym___r_single_quote] = ACTIONS(3103), - }, [1280] = { - [sym_identifier] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_CR] = ACTIONS(3091), - [anon_sym_CR_LF] = ACTIONS(3091), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_as] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3091), - [anon_sym_fn] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_SLASH] = ACTIONS(3091), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3091), - [anon_sym_GT] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_mut] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_BANG] = ACTIONS(3091), - [anon_sym_go] = ACTIONS(3091), - [anon_sym_spawn] = ACTIONS(3091), - [anon_sym_json_DOTdecode] = ACTIONS(3091), - [anon_sym_LBRACK2] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_LT_LT] = ACTIONS(3091), - [anon_sym_GT_GT] = ACTIONS(3091), - [anon_sym_GT_GT_GT] = ACTIONS(3091), - [anon_sym_AMP_CARET] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_or] = ACTIONS(3091), - [sym_none] = ACTIONS(3091), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [sym_nil] = ACTIONS(3091), - [anon_sym_QMARK_DOT] = ACTIONS(3091), - [anon_sym_POUND_LBRACK] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_DOLLARif] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3091), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_in] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_select] = ACTIONS(3091), - [anon_sym_lock] = ACTIONS(3091), - [anon_sym_rlock] = ACTIONS(3091), - [anon_sym_unsafe] = ACTIONS(3091), - [anon_sym_sql] = ACTIONS(3091), - [sym_int_literal] = ACTIONS(3091), - [sym_float_literal] = ACTIONS(3091), - [sym_rune_literal] = ACTIONS(3091), - [sym_pseudo_compile_time_identifier] = ACTIONS(3091), - [anon_sym_shared] = ACTIONS(3091), - [anon_sym_map_LBRACK] = ACTIONS(3091), - [anon_sym_chan] = ACTIONS(3091), - [anon_sym_thread] = ACTIONS(3091), - [anon_sym_atomic] = ACTIONS(3091), - [sym___double_quote] = ACTIONS(3091), - [sym___single_quote] = ACTIONS(3091), - [sym___c_double_quote] = ACTIONS(3091), - [sym___c_single_quote] = ACTIONS(3091), - [sym___r_double_quote] = ACTIONS(3091), - [sym___r_single_quote] = ACTIONS(3091), + [sym_line_comment] = STATE(1280), + [sym_block_comment] = STATE(1280), + [sym_identifier] = ACTIONS(2999), + [anon_sym_LF] = ACTIONS(2999), + [anon_sym_CR] = ACTIONS(2999), + [anon_sym_CR_LF] = ACTIONS(2999), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2999), + [anon_sym_as] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_RBRACE] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(2999), + [anon_sym_PIPE] = ACTIONS(2999), + [anon_sym_fn] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2999), + [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_DOT_DOT_DOT] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2999), + [anon_sym_mut] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_QMARK] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_go] = ACTIONS(2999), + [anon_sym_spawn] = ACTIONS(2999), + [anon_sym_json_DOTdecode] = ACTIONS(2999), + [anon_sym_LBRACK2] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_CARET] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2999), + [anon_sym_LT_DASH] = ACTIONS(2999), + [anon_sym_LT_LT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(2999), + [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(2999), + [sym_none] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_nil] = ACTIONS(2999), + [anon_sym_QMARK_DOT] = ACTIONS(2999), + [anon_sym_POUND_LBRACK] = ACTIONS(2999), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_DOLLARif] = ACTIONS(2999), + [anon_sym_is] = ACTIONS(2999), + [anon_sym_BANGis] = ACTIONS(2999), + [anon_sym_in] = ACTIONS(2999), + [anon_sym_BANGin] = ACTIONS(2999), + [anon_sym_match] = ACTIONS(2999), + [anon_sym_select] = ACTIONS(2999), + [anon_sym_lock] = ACTIONS(2999), + [anon_sym_rlock] = ACTIONS(2999), + [anon_sym_unsafe] = ACTIONS(2999), + [anon_sym_sql] = ACTIONS(2999), + [sym_int_literal] = ACTIONS(2999), + [sym_float_literal] = ACTIONS(2999), + [sym_rune_literal] = ACTIONS(2999), + [sym_pseudo_compile_time_identifier] = ACTIONS(2999), + [anon_sym_shared] = ACTIONS(2999), + [anon_sym_map_LBRACK] = ACTIONS(2999), + [anon_sym_chan] = ACTIONS(2999), + [anon_sym_thread] = ACTIONS(2999), + [anon_sym_atomic] = ACTIONS(2999), + [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), }, [1281] = { - [sym_identifier] = ACTIONS(3095), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_CR] = ACTIONS(3095), - [anon_sym_CR_LF] = ACTIONS(3095), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_as] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_fn] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_SLASH] = ACTIONS(3095), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_mut] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3095), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3095), - [anon_sym_json_DOTdecode] = ACTIONS(3095), - [anon_sym_LBRACK2] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_GT_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_CARET] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3095), - [sym_none] = ACTIONS(3095), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [sym_nil] = ACTIONS(3095), - [anon_sym_QMARK_DOT] = ACTIONS(3095), - [anon_sym_POUND_LBRACK] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_DOLLARif] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_BANGis] = ACTIONS(3095), - [anon_sym_in] = ACTIONS(3095), - [anon_sym_BANGin] = ACTIONS(3095), - [anon_sym_match] = ACTIONS(3095), - [anon_sym_select] = ACTIONS(3095), - [anon_sym_lock] = ACTIONS(3095), - [anon_sym_rlock] = ACTIONS(3095), - [anon_sym_unsafe] = ACTIONS(3095), - [anon_sym_sql] = ACTIONS(3095), - [sym_int_literal] = ACTIONS(3095), - [sym_float_literal] = ACTIONS(3095), - [sym_rune_literal] = ACTIONS(3095), - [sym_pseudo_compile_time_identifier] = ACTIONS(3095), - [anon_sym_shared] = ACTIONS(3095), - [anon_sym_map_LBRACK] = ACTIONS(3095), - [anon_sym_chan] = ACTIONS(3095), - [anon_sym_thread] = ACTIONS(3095), - [anon_sym_atomic] = ACTIONS(3095), - [sym___double_quote] = ACTIONS(3095), - [sym___single_quote] = ACTIONS(3095), - [sym___c_double_quote] = ACTIONS(3095), - [sym___c_single_quote] = ACTIONS(3095), - [sym___r_double_quote] = ACTIONS(3095), - [sym___r_single_quote] = ACTIONS(3095), + [sym_line_comment] = STATE(1281), + [sym_block_comment] = STATE(1281), + [sym_identifier] = ACTIONS(3241), + [anon_sym_LF] = ACTIONS(3241), + [anon_sym_CR] = ACTIONS(3241), + [anon_sym_CR_LF] = ACTIONS(3241), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_COMMA] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_RPAREN] = ACTIONS(3241), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [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_DOT_DOT_DOT] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3241), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3241), + [anon_sym_LT_LT] = ACTIONS(3241), + [anon_sym_GT_GT] = ACTIONS(3241), + [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(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3241), + [anon_sym_POUND_LBRACK] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3241), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3241), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3241), + [sym_rune_literal] = ACTIONS(3241), + [sym_pseudo_compile_time_identifier] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3241), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [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), }, [1282] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1941), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1941), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1941), - [anon_sym_BANG_EQ] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_COLON] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1941), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1941), - [anon_sym_LT_LT] = ACTIONS(1941), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1941), - [anon_sym_AMP_CARET] = ACTIONS(1941), - [anon_sym_AMP_AMP] = ACTIONS(1941), - [anon_sym_PIPE_PIPE] = ACTIONS(1941), - [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(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1941), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1941), - [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(1941), - [sym_rune_literal] = ACTIONS(1941), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1941), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1941), - [sym___single_quote] = ACTIONS(1941), - [sym___c_double_quote] = ACTIONS(1941), - [sym___c_single_quote] = ACTIONS(1941), - [sym___r_double_quote] = ACTIONS(1941), - [sym___r_single_quote] = ACTIONS(1941), + [sym_line_comment] = STATE(1282), + [sym_block_comment] = STATE(1282), + [sym_identifier] = ACTIONS(3003), + [anon_sym_LF] = ACTIONS(3003), + [anon_sym_CR] = ACTIONS(3003), + [anon_sym_CR_LF] = ACTIONS(3003), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3003), + [anon_sym_as] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_RBRACE] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_RPAREN] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_fn] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(3003), + [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_DOT_DOT_DOT] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_struct] = ACTIONS(3003), + [anon_sym_mut] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_QMARK] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_go] = ACTIONS(3003), + [anon_sym_spawn] = ACTIONS(3003), + [anon_sym_json_DOTdecode] = ACTIONS(3003), + [anon_sym_LBRACK2] = ACTIONS(3003), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_CARET] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_LT_DASH] = ACTIONS(3003), + [anon_sym_LT_LT] = ACTIONS(3003), + [anon_sym_GT_GT] = ACTIONS(3003), + [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(3003), + [sym_none] = ACTIONS(3003), + [sym_true] = ACTIONS(3003), + [sym_false] = ACTIONS(3003), + [sym_nil] = ACTIONS(3003), + [anon_sym_QMARK_DOT] = ACTIONS(3003), + [anon_sym_POUND_LBRACK] = ACTIONS(3003), + [anon_sym_if] = ACTIONS(3003), + [anon_sym_DOLLARif] = ACTIONS(3003), + [anon_sym_is] = ACTIONS(3003), + [anon_sym_BANGis] = ACTIONS(3003), + [anon_sym_in] = ACTIONS(3003), + [anon_sym_BANGin] = ACTIONS(3003), + [anon_sym_match] = ACTIONS(3003), + [anon_sym_select] = ACTIONS(3003), + [anon_sym_lock] = ACTIONS(3003), + [anon_sym_rlock] = ACTIONS(3003), + [anon_sym_unsafe] = ACTIONS(3003), + [anon_sym_sql] = ACTIONS(3003), + [sym_int_literal] = ACTIONS(3003), + [sym_float_literal] = ACTIONS(3003), + [sym_rune_literal] = ACTIONS(3003), + [sym_pseudo_compile_time_identifier] = ACTIONS(3003), + [anon_sym_shared] = ACTIONS(3003), + [anon_sym_map_LBRACK] = ACTIONS(3003), + [anon_sym_chan] = ACTIONS(3003), + [anon_sym_thread] = ACTIONS(3003), + [anon_sym_atomic] = ACTIONS(3003), + [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), }, [1283] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_as] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(559), - [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3879), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_or] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(559), - [anon_sym_POUND_LBRACK] = ACTIONS(559), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(559), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(559), - [anon_sym_STAR_EQ] = ACTIONS(559), - [anon_sym_SLASH_EQ] = ACTIONS(559), - [anon_sym_PERCENT_EQ] = ACTIONS(559), - [anon_sym_LT_LT_EQ] = ACTIONS(559), - [anon_sym_GT_GT_EQ] = ACTIONS(559), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(559), - [anon_sym_AMP_EQ] = ACTIONS(559), - [anon_sym_AMP_CARET_EQ] = ACTIONS(559), - [anon_sym_PLUS_EQ] = ACTIONS(559), - [anon_sym_DASH_EQ] = ACTIONS(559), - [anon_sym_PIPE_EQ] = ACTIONS(559), - [anon_sym_CARET_EQ] = ACTIONS(559), - [anon_sym_COLON_EQ] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [sym_line_comment] = STATE(1283), + [sym_block_comment] = STATE(1283), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3015), + [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_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), }, [1284] = { - [sym_identifier] = ACTIONS(3219), - [anon_sym_LF] = ACTIONS(3219), - [anon_sym_CR] = ACTIONS(3219), - [anon_sym_CR_LF] = ACTIONS(3219), - [sym_comment] = ACTIONS(495), - [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_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(3222), - [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_line_comment] = STATE(1284), + [sym_block_comment] = STATE(1284), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LF] = ACTIONS(3145), + [anon_sym_CR] = ACTIONS(3145), + [anon_sym_CR_LF] = ACTIONS(3145), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3145), + [anon_sym_as] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_RPAREN] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_fn] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_PERCENT] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3145), + [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_DOT_DOT_DOT] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_mut] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_go] = ACTIONS(3145), + [anon_sym_spawn] = ACTIONS(3145), + [anon_sym_json_DOTdecode] = ACTIONS(3145), + [anon_sym_LBRACK2] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_LT_DASH] = ACTIONS(3145), + [anon_sym_LT_LT] = ACTIONS(3145), + [anon_sym_GT_GT] = ACTIONS(3145), + [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(3145), + [sym_none] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_nil] = ACTIONS(3145), + [anon_sym_QMARK_DOT] = ACTIONS(3145), + [anon_sym_POUND_LBRACK] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_DOLLARif] = ACTIONS(3145), + [anon_sym_is] = ACTIONS(3145), + [anon_sym_BANGis] = ACTIONS(3145), + [anon_sym_in] = ACTIONS(3145), + [anon_sym_BANGin] = ACTIONS(3145), + [anon_sym_match] = ACTIONS(3145), + [anon_sym_select] = ACTIONS(3145), + [anon_sym_lock] = ACTIONS(3145), + [anon_sym_rlock] = ACTIONS(3145), + [anon_sym_unsafe] = ACTIONS(3145), + [anon_sym_sql] = ACTIONS(3145), + [sym_int_literal] = ACTIONS(3145), + [sym_float_literal] = ACTIONS(3145), + [sym_rune_literal] = ACTIONS(3145), + [sym_pseudo_compile_time_identifier] = ACTIONS(3145), + [anon_sym_shared] = ACTIONS(3145), + [anon_sym_map_LBRACK] = ACTIONS(3145), + [anon_sym_chan] = ACTIONS(3145), + [anon_sym_thread] = ACTIONS(3145), + [anon_sym_atomic] = ACTIONS(3145), + [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), }, [1285] = { - [sym_identifier] = ACTIONS(3229), - [anon_sym_LF] = ACTIONS(3229), - [anon_sym_CR] = ACTIONS(3229), - [anon_sym_CR_LF] = ACTIONS(3229), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_fn] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [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_DOT_DOT_DOT] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_struct] = ACTIONS(3229), - [anon_sym_mut] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_go] = ACTIONS(3229), - [anon_sym_spawn] = ACTIONS(3229), - [anon_sym_json_DOTdecode] = ACTIONS(3229), - [anon_sym_LBRACK2] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3229), - [anon_sym_LT_DASH] = ACTIONS(3229), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3229), - [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(3229), - [sym_none] = ACTIONS(3229), - [sym_true] = ACTIONS(3229), - [sym_false] = ACTIONS(3229), - [sym_nil] = ACTIONS(3229), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_DOLLARif] = ACTIONS(3229), - [anon_sym_is] = ACTIONS(3229), - [anon_sym_BANGis] = ACTIONS(3229), - [anon_sym_in] = ACTIONS(3229), - [anon_sym_BANGin] = ACTIONS(3229), - [anon_sym_match] = ACTIONS(3229), - [anon_sym_select] = ACTIONS(3229), - [anon_sym_lock] = ACTIONS(3229), - [anon_sym_rlock] = ACTIONS(3229), - [anon_sym_unsafe] = ACTIONS(3229), - [anon_sym_sql] = ACTIONS(3229), - [sym_int_literal] = ACTIONS(3229), - [sym_float_literal] = ACTIONS(3229), - [sym_rune_literal] = ACTIONS(3229), - [sym_pseudo_compile_time_identifier] = ACTIONS(3229), - [anon_sym_shared] = ACTIONS(3229), - [anon_sym_map_LBRACK] = ACTIONS(3229), - [anon_sym_chan] = ACTIONS(3229), - [anon_sym_thread] = ACTIONS(3229), - [anon_sym_atomic] = ACTIONS(3229), - [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), + [sym_line_comment] = STATE(1285), + [sym_block_comment] = STATE(1285), + [sym_identifier] = ACTIONS(3125), + [anon_sym_LF] = ACTIONS(3125), + [anon_sym_CR] = ACTIONS(3125), + [anon_sym_CR_LF] = ACTIONS(3125), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3125), + [anon_sym_as] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_RBRACE] = ACTIONS(3125), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym_RPAREN] = ACTIONS(3125), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_PERCENT] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_GT] = ACTIONS(3125), + [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_DOT_DOT_DOT] = ACTIONS(3125), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_mut] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3125), + [anon_sym_DASH_DASH] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_go] = ACTIONS(3125), + [anon_sym_spawn] = ACTIONS(3125), + [anon_sym_json_DOTdecode] = ACTIONS(3125), + [anon_sym_LBRACK2] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_CARET] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT_DASH] = ACTIONS(3125), + [anon_sym_LT_LT] = ACTIONS(3125), + [anon_sym_GT_GT] = ACTIONS(3125), + [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(3125), + [sym_none] = ACTIONS(3125), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [sym_nil] = ACTIONS(3125), + [anon_sym_QMARK_DOT] = ACTIONS(3125), + [anon_sym_POUND_LBRACK] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_DOLLARif] = ACTIONS(3125), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3125), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_BANGin] = ACTIONS(3125), + [anon_sym_match] = ACTIONS(3125), + [anon_sym_select] = ACTIONS(3125), + [anon_sym_lock] = ACTIONS(3125), + [anon_sym_rlock] = ACTIONS(3125), + [anon_sym_unsafe] = ACTIONS(3125), + [anon_sym_sql] = ACTIONS(3125), + [sym_int_literal] = ACTIONS(3125), + [sym_float_literal] = ACTIONS(3125), + [sym_rune_literal] = ACTIONS(3125), + [sym_pseudo_compile_time_identifier] = ACTIONS(3125), + [anon_sym_shared] = ACTIONS(3125), + [anon_sym_map_LBRACK] = ACTIONS(3125), + [anon_sym_chan] = ACTIONS(3125), + [anon_sym_thread] = ACTIONS(3125), + [anon_sym_atomic] = ACTIONS(3125), + [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), }, [1286] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1869), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1869), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_COMMA] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_fn] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_PERCENT] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1867), - [anon_sym_BANG_EQ] = ACTIONS(1867), - [anon_sym_LT_EQ] = ACTIONS(1867), - [anon_sym_GT_EQ] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_mut] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1869), - [anon_sym_spawn] = ACTIONS(1869), - [anon_sym_json_DOTdecode] = ACTIONS(1867), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_LT_DASH] = ACTIONS(1867), - [anon_sym_LT_LT] = ACTIONS(1867), - [anon_sym_GT_GT] = ACTIONS(1869), - [anon_sym_GT_GT_GT] = ACTIONS(1867), - [anon_sym_AMP_CARET] = ACTIONS(1867), - [anon_sym_AMP_AMP] = ACTIONS(1867), - [anon_sym_PIPE_PIPE] = ACTIONS(1867), - [anon_sym_or] = ACTIONS(1869), - [sym_none] = ACTIONS(1869), - [sym_true] = ACTIONS(1869), - [sym_false] = ACTIONS(1869), - [sym_nil] = ACTIONS(1869), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_DOLLARif] = ACTIONS(1869), - [anon_sym_is] = ACTIONS(1869), - [anon_sym_BANGis] = ACTIONS(1867), - [anon_sym_in] = ACTIONS(1869), - [anon_sym_BANGin] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_select] = ACTIONS(1869), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1869), - [anon_sym_sql] = ACTIONS(1869), - [sym_int_literal] = ACTIONS(1869), - [sym_float_literal] = ACTIONS(1867), - [sym_rune_literal] = ACTIONS(1867), - [sym_pseudo_compile_time_identifier] = ACTIONS(1869), - [anon_sym_shared] = ACTIONS(1869), - [anon_sym_map_LBRACK] = ACTIONS(1867), - [anon_sym_chan] = ACTIONS(1869), - [anon_sym_thread] = ACTIONS(1869), - [anon_sym_atomic] = ACTIONS(1869), - [sym___double_quote] = ACTIONS(1867), - [sym___single_quote] = ACTIONS(1867), - [sym___c_double_quote] = ACTIONS(1867), - [sym___c_single_quote] = ACTIONS(1867), - [sym___r_double_quote] = ACTIONS(1867), - [sym___r_single_quote] = ACTIONS(1867), + [sym_line_comment] = STATE(1286), + [sym_block_comment] = STATE(1286), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [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(611), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_AMP_CARET] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(565), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(565), + [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(619), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, [1287] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1853), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_fn] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1853), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_GT] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1851), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(1851), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_mut] = ACTIONS(1853), - [anon_sym_COLON] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1853), - [anon_sym_spawn] = ACTIONS(1853), - [anon_sym_json_DOTdecode] = ACTIONS(1851), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_LT_DASH] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT] = ACTIONS(1853), - [anon_sym_GT_GT_GT] = ACTIONS(1851), - [anon_sym_AMP_CARET] = ACTIONS(1851), - [anon_sym_AMP_AMP] = ACTIONS(1851), - [anon_sym_PIPE_PIPE] = ACTIONS(1851), - [anon_sym_or] = ACTIONS(1853), - [sym_none] = ACTIONS(1853), - [sym_true] = ACTIONS(1853), - [sym_false] = ACTIONS(1853), - [sym_nil] = ACTIONS(1853), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_DOLLARif] = ACTIONS(1853), - [anon_sym_is] = ACTIONS(1853), - [anon_sym_BANGis] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1853), - [anon_sym_BANGin] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_select] = ACTIONS(1853), - [anon_sym_lock] = ACTIONS(1853), - [anon_sym_rlock] = ACTIONS(1853), - [anon_sym_unsafe] = ACTIONS(1853), - [anon_sym_sql] = ACTIONS(1853), - [sym_int_literal] = ACTIONS(1853), - [sym_float_literal] = ACTIONS(1851), - [sym_rune_literal] = ACTIONS(1851), - [sym_pseudo_compile_time_identifier] = ACTIONS(1853), - [anon_sym_shared] = ACTIONS(1853), - [anon_sym_map_LBRACK] = ACTIONS(1851), - [anon_sym_chan] = ACTIONS(1853), - [anon_sym_thread] = ACTIONS(1853), - [anon_sym_atomic] = ACTIONS(1853), - [sym___double_quote] = ACTIONS(1851), - [sym___single_quote] = ACTIONS(1851), - [sym___c_double_quote] = ACTIONS(1851), - [sym___c_single_quote] = ACTIONS(1851), - [sym___r_double_quote] = ACTIONS(1851), - [sym___r_single_quote] = ACTIONS(1851), + [sym_line_comment] = STATE(1287), + [sym_block_comment] = STATE(1287), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3355), + [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_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), }, [1288] = { - [sym_else_branch] = STATE(1411), - [sym_identifier] = ACTIONS(2505), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_COMMA] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_fn] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2503), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), - [anon_sym_EQ_EQ] = ACTIONS(2503), - [anon_sym_BANG_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2503), - [anon_sym_GT_EQ] = ACTIONS(2503), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_RBRACK] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_COLON] = ACTIONS(2503), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2503), - [anon_sym_QMARK] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_go] = ACTIONS(2505), - [anon_sym_spawn] = ACTIONS(2505), - [anon_sym_json_DOTdecode] = ACTIONS(2503), - [anon_sym_LBRACK2] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_CARET] = ACTIONS(2503), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_LT_DASH] = ACTIONS(2503), - [anon_sym_LT_LT] = ACTIONS(2503), - [anon_sym_GT_GT] = ACTIONS(2505), - [anon_sym_GT_GT_GT] = ACTIONS(2503), - [anon_sym_AMP_CARET] = ACTIONS(2503), - [anon_sym_AMP_AMP] = ACTIONS(2503), - [anon_sym_PIPE_PIPE] = ACTIONS(2503), - [anon_sym_or] = ACTIONS(2505), - [sym_none] = ACTIONS(2505), - [sym_true] = ACTIONS(2505), - [sym_false] = ACTIONS(2505), - [sym_nil] = ACTIONS(2505), - [anon_sym_QMARK_DOT] = ACTIONS(2503), - [anon_sym_POUND_LBRACK] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(3881), - [anon_sym_DOLLARif] = ACTIONS(2505), - [anon_sym_is] = ACTIONS(2505), - [anon_sym_BANGis] = ACTIONS(2503), - [anon_sym_in] = ACTIONS(2505), - [anon_sym_BANGin] = ACTIONS(2503), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_select] = ACTIONS(2505), - [anon_sym_lock] = ACTIONS(2505), - [anon_sym_rlock] = ACTIONS(2505), - [anon_sym_unsafe] = ACTIONS(2505), - [anon_sym_sql] = ACTIONS(2505), - [sym_int_literal] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2503), - [sym_rune_literal] = ACTIONS(2503), - [sym_pseudo_compile_time_identifier] = ACTIONS(2505), - [anon_sym_shared] = ACTIONS(2505), - [anon_sym_map_LBRACK] = ACTIONS(2503), - [anon_sym_chan] = ACTIONS(2505), - [anon_sym_thread] = ACTIONS(2505), - [anon_sym_atomic] = ACTIONS(2505), - [sym___double_quote] = ACTIONS(2503), - [sym___single_quote] = ACTIONS(2503), - [sym___c_double_quote] = ACTIONS(2503), - [sym___c_single_quote] = ACTIONS(2503), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2503), + [sym_line_comment] = STATE(1288), + [sym_block_comment] = STATE(1288), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3271), + [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_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_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(3274), + [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), }, [1289] = { - [sym_else_branch] = STATE(1410), - [sym_identifier] = ACTIONS(2635), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2635), - [anon_sym_as] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_fn] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2635), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2635), - [anon_sym_GT] = ACTIONS(2635), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_RBRACK] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_mut] = ACTIONS(2635), - [anon_sym_COLON] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_QMARK] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_go] = ACTIONS(2635), - [anon_sym_spawn] = ACTIONS(2635), - [anon_sym_json_DOTdecode] = ACTIONS(2633), - [anon_sym_LBRACK2] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT] = ACTIONS(2635), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_AMP_CARET] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2635), - [sym_none] = ACTIONS(2635), - [sym_true] = ACTIONS(2635), - [sym_false] = ACTIONS(2635), - [sym_nil] = ACTIONS(2635), - [anon_sym_QMARK_DOT] = ACTIONS(2633), - [anon_sym_POUND_LBRACK] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(3881), - [anon_sym_DOLLARif] = ACTIONS(2635), - [anon_sym_is] = ACTIONS(2635), - [anon_sym_BANGis] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2635), - [anon_sym_BANGin] = ACTIONS(2633), - [anon_sym_match] = ACTIONS(2635), - [anon_sym_select] = ACTIONS(2635), - [anon_sym_lock] = ACTIONS(2635), - [anon_sym_rlock] = ACTIONS(2635), - [anon_sym_unsafe] = ACTIONS(2635), - [anon_sym_sql] = ACTIONS(2635), - [sym_int_literal] = ACTIONS(2635), - [sym_float_literal] = ACTIONS(2633), - [sym_rune_literal] = ACTIONS(2633), - [sym_pseudo_compile_time_identifier] = ACTIONS(2635), - [anon_sym_shared] = ACTIONS(2635), - [anon_sym_map_LBRACK] = ACTIONS(2633), - [anon_sym_chan] = ACTIONS(2635), - [anon_sym_thread] = ACTIONS(2635), - [anon_sym_atomic] = ACTIONS(2635), - [sym___double_quote] = ACTIONS(2633), - [sym___single_quote] = ACTIONS(2633), - [sym___c_double_quote] = ACTIONS(2633), - [sym___c_single_quote] = ACTIONS(2633), - [sym___r_double_quote] = ACTIONS(2633), - [sym___r_single_quote] = ACTIONS(2633), + [sym_line_comment] = STATE(1289), + [sym_block_comment] = STATE(1289), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1903), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_fn] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1901), + [anon_sym_PERCENT] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_EQ_EQ] = ACTIONS(1901), + [anon_sym_BANG_EQ] = ACTIONS(1901), + [anon_sym_LT_EQ] = ACTIONS(1901), + [anon_sym_GT_EQ] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1901), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_mut] = ACTIONS(1903), + [anon_sym_COLON] = ACTIONS(1901), + [anon_sym_PLUS_PLUS] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1901), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1903), + [anon_sym_spawn] = ACTIONS(1903), + [anon_sym_json_DOTdecode] = ACTIONS(1901), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1901), + [anon_sym_CARET] = ACTIONS(1901), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_LT_DASH] = ACTIONS(1901), + [anon_sym_LT_LT] = ACTIONS(1901), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym_GT_GT_GT] = ACTIONS(1901), + [anon_sym_AMP_CARET] = ACTIONS(1901), + [anon_sym_AMP_AMP] = ACTIONS(1901), + [anon_sym_PIPE_PIPE] = ACTIONS(1901), + [anon_sym_or] = ACTIONS(1903), + [sym_none] = ACTIONS(1903), + [sym_true] = ACTIONS(1903), + [sym_false] = ACTIONS(1903), + [sym_nil] = ACTIONS(1903), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_DOLLARif] = ACTIONS(1903), + [anon_sym_is] = ACTIONS(1903), + [anon_sym_BANGis] = ACTIONS(1901), + [anon_sym_in] = ACTIONS(1903), + [anon_sym_BANGin] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_select] = ACTIONS(1903), + [anon_sym_lock] = ACTIONS(1903), + [anon_sym_rlock] = ACTIONS(1903), + [anon_sym_unsafe] = ACTIONS(1903), + [anon_sym_sql] = ACTIONS(1903), + [sym_int_literal] = ACTIONS(1903), + [sym_float_literal] = ACTIONS(1901), + [sym_rune_literal] = ACTIONS(1901), + [sym_pseudo_compile_time_identifier] = ACTIONS(1903), + [anon_sym_shared] = ACTIONS(1903), + [anon_sym_map_LBRACK] = ACTIONS(1901), + [anon_sym_chan] = ACTIONS(1903), + [anon_sym_thread] = ACTIONS(1903), + [anon_sym_atomic] = ACTIONS(1903), + [sym___double_quote] = ACTIONS(1901), + [sym___single_quote] = ACTIONS(1901), + [sym___c_double_quote] = ACTIONS(1901), + [sym___c_single_quote] = ACTIONS(1901), + [sym___r_double_quote] = ACTIONS(1901), + [sym___r_single_quote] = ACTIONS(1901), }, [1290] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_format_specifier] = STATE(4106), - [sym_identifier] = ACTIONS(3883), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_RBRACE] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3889), - [anon_sym_fn] = ACTIONS(3883), - [anon_sym_PLUS] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(3883), - [anon_sym_mut] = ACTIONS(3883), - [anon_sym_COLON] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3903), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(3883), - [anon_sym_spawn] = ACTIONS(3883), - [anon_sym_json_DOTdecode] = ACTIONS(3887), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(3887), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(3887), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_GT_GT_GT] = ACTIONS(3891), - [anon_sym_AMP_CARET] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3911), - [sym_none] = ACTIONS(3883), - [sym_true] = ACTIONS(3883), - [sym_false] = ACTIONS(3883), - [sym_nil] = ACTIONS(3883), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(3883), - [anon_sym_DOLLARif] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3913), - [anon_sym_BANGis] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3917), - [anon_sym_BANGin] = ACTIONS(3919), - [anon_sym_match] = ACTIONS(3883), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_lock] = ACTIONS(3883), - [anon_sym_rlock] = ACTIONS(3883), - [anon_sym_unsafe] = ACTIONS(3883), - [anon_sym_sql] = ACTIONS(3883), - [sym_int_literal] = ACTIONS(3883), - [sym_float_literal] = ACTIONS(3887), - [sym_rune_literal] = ACTIONS(3887), - [sym_pseudo_compile_time_identifier] = ACTIONS(3883), - [anon_sym_shared] = ACTIONS(3883), - [anon_sym_map_LBRACK] = ACTIONS(3887), - [anon_sym_chan] = ACTIONS(3883), - [anon_sym_thread] = ACTIONS(3883), - [anon_sym_atomic] = ACTIONS(3883), - [sym___double_quote] = ACTIONS(3887), - [sym___single_quote] = ACTIONS(3887), - [sym___c_double_quote] = ACTIONS(3887), - [sym___c_single_quote] = ACTIONS(3887), - [sym___r_double_quote] = ACTIONS(3887), - [sym___r_single_quote] = ACTIONS(3887), + [sym_line_comment] = STATE(1290), + [sym_block_comment] = STATE(1290), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1915), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_fn] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_GT] = ACTIONS(1915), + [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(3857), + [anon_sym_RBRACK] = ACTIONS(1913), + [anon_sym_struct] = ACTIONS(1915), + [anon_sym_mut] = ACTIONS(1915), + [anon_sym_COLON] = ACTIONS(1913), + [anon_sym_PLUS_PLUS] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1913), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1915), + [anon_sym_spawn] = ACTIONS(1915), + [anon_sym_json_DOTdecode] = ACTIONS(1913), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_CARET] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_LT_DASH] = ACTIONS(1913), + [anon_sym_LT_LT] = ACTIONS(1913), + [anon_sym_GT_GT] = ACTIONS(1915), + [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(1915), + [sym_none] = ACTIONS(1915), + [sym_true] = ACTIONS(1915), + [sym_false] = ACTIONS(1915), + [sym_nil] = ACTIONS(1915), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_DOLLARif] = ACTIONS(1915), + [anon_sym_is] = ACTIONS(1915), + [anon_sym_BANGis] = ACTIONS(1913), + [anon_sym_in] = ACTIONS(1915), + [anon_sym_BANGin] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_select] = ACTIONS(1915), + [anon_sym_lock] = ACTIONS(1915), + [anon_sym_rlock] = ACTIONS(1915), + [anon_sym_unsafe] = ACTIONS(1915), + [anon_sym_sql] = ACTIONS(1915), + [sym_int_literal] = ACTIONS(1915), + [sym_float_literal] = ACTIONS(1913), + [sym_rune_literal] = ACTIONS(1913), + [sym_pseudo_compile_time_identifier] = ACTIONS(1915), + [anon_sym_shared] = ACTIONS(1915), + [anon_sym_map_LBRACK] = ACTIONS(1913), + [anon_sym_chan] = ACTIONS(1915), + [anon_sym_thread] = ACTIONS(1915), + [anon_sym_atomic] = ACTIONS(1915), + [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), }, [1291] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_format_specifier] = STATE(4225), - [sym_identifier] = ACTIONS(3883), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_RBRACE] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3889), - [anon_sym_fn] = ACTIONS(3883), - [anon_sym_PLUS] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(3883), - [anon_sym_mut] = ACTIONS(3883), - [anon_sym_COLON] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3903), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(3883), - [anon_sym_spawn] = ACTIONS(3883), - [anon_sym_json_DOTdecode] = ACTIONS(3887), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(3887), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(3887), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_GT_GT_GT] = ACTIONS(3891), - [anon_sym_AMP_CARET] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3911), - [sym_none] = ACTIONS(3883), - [sym_true] = ACTIONS(3883), - [sym_false] = ACTIONS(3883), - [sym_nil] = ACTIONS(3883), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(3883), - [anon_sym_DOLLARif] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3913), - [anon_sym_BANGis] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3917), - [anon_sym_BANGin] = ACTIONS(3919), - [anon_sym_match] = ACTIONS(3883), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_lock] = ACTIONS(3883), - [anon_sym_rlock] = ACTIONS(3883), - [anon_sym_unsafe] = ACTIONS(3883), - [anon_sym_sql] = ACTIONS(3883), - [sym_int_literal] = ACTIONS(3883), - [sym_float_literal] = ACTIONS(3887), - [sym_rune_literal] = ACTIONS(3887), - [sym_pseudo_compile_time_identifier] = ACTIONS(3883), - [anon_sym_shared] = ACTIONS(3883), - [anon_sym_map_LBRACK] = ACTIONS(3887), - [anon_sym_chan] = ACTIONS(3883), - [anon_sym_thread] = ACTIONS(3883), - [anon_sym_atomic] = ACTIONS(3883), - [sym___double_quote] = ACTIONS(3887), - [sym___single_quote] = ACTIONS(3887), - [sym___c_double_quote] = ACTIONS(3887), - [sym___c_single_quote] = ACTIONS(3887), - [sym___r_double_quote] = ACTIONS(3887), - [sym___r_single_quote] = ACTIONS(3887), + [sym_line_comment] = STATE(1291), + [sym_block_comment] = STATE(1291), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_as] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(611), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3869), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(603), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(603), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(603), + [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(619), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, [1292] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3921), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_SLASH] = ACTIONS(3925), - [anon_sym_PERCENT] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1941), - [anon_sym_BANG_EQ] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1941), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(3927), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_LT_DASH] = ACTIONS(1941), - [anon_sym_LT_LT] = ACTIONS(3923), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_GT_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_CARET] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(1941), - [anon_sym_PIPE_PIPE] = ACTIONS(1941), - [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(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1941), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1941), - [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(1941), - [sym_rune_literal] = ACTIONS(1941), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1941), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1941), - [sym___single_quote] = ACTIONS(1941), - [sym___c_double_quote] = ACTIONS(1941), - [sym___c_single_quote] = ACTIONS(1941), - [sym___r_double_quote] = ACTIONS(1941), - [sym___r_single_quote] = ACTIONS(1941), + [sym_line_comment] = STATE(1292), + [sym_block_comment] = STATE(1292), + [sym_identifier] = ACTIONS(3281), + [anon_sym_LF] = ACTIONS(3281), + [anon_sym_CR] = ACTIONS(3281), + [anon_sym_CR_LF] = ACTIONS(3281), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [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_DOT_DOT_DOT] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_struct] = ACTIONS(3281), + [anon_sym_mut] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3281), + [anon_sym_spawn] = ACTIONS(3281), + [anon_sym_json_DOTdecode] = ACTIONS(3281), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [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(3281), + [sym_none] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_nil] = ACTIONS(3281), + [anon_sym_QMARK_DOT] = ACTIONS(3281), + [anon_sym_POUND_LBRACK] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_DOLLARif] = ACTIONS(3281), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3281), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_select] = ACTIONS(3281), + [anon_sym_lock] = ACTIONS(3281), + [anon_sym_rlock] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(3281), + [anon_sym_sql] = ACTIONS(3281), + [sym_int_literal] = ACTIONS(3281), + [sym_float_literal] = ACTIONS(3281), + [sym_rune_literal] = ACTIONS(3281), + [sym_pseudo_compile_time_identifier] = ACTIONS(3281), + [anon_sym_shared] = ACTIONS(3281), + [anon_sym_map_LBRACK] = ACTIONS(3281), + [anon_sym_chan] = ACTIONS(3281), + [anon_sym_thread] = ACTIONS(3281), + [anon_sym_atomic] = ACTIONS(3281), + [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), }, [1293] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3889), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1941), - [anon_sym_BANG_EQ] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_COLON] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1941), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(1941), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_GT_GT_GT] = ACTIONS(3891), - [anon_sym_AMP_CARET] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(1941), - [anon_sym_PIPE_PIPE] = ACTIONS(1941), - [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(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1941), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1941), - [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(1941), - [sym_rune_literal] = ACTIONS(1941), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1941), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1941), - [sym___single_quote] = ACTIONS(1941), - [sym___c_double_quote] = ACTIONS(1941), - [sym___c_single_quote] = ACTIONS(1941), - [sym___r_double_quote] = ACTIONS(1941), - [sym___r_single_quote] = ACTIONS(1941), + [sym_line_comment] = STATE(1293), + [sym_block_comment] = STATE(1293), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(3857), + [anon_sym_RBRACK] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_COLON] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT] = ACTIONS(1879), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_AMP_CARET] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), }, [1294] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1861), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3889), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_COLON] = ACTIONS(1859), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3903), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1861), - [anon_sym_spawn] = ACTIONS(1861), - [anon_sym_json_DOTdecode] = ACTIONS(1859), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(1859), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_GT_GT_GT] = ACTIONS(3891), - [anon_sym_AMP_CARET] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3911), - [sym_none] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_nil] = ACTIONS(1861), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_DOLLARif] = ACTIONS(1861), - [anon_sym_is] = ACTIONS(3913), - [anon_sym_BANGis] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3917), - [anon_sym_BANGin] = ACTIONS(3919), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_select] = ACTIONS(1861), - [anon_sym_lock] = ACTIONS(1861), - [anon_sym_rlock] = ACTIONS(1861), - [anon_sym_unsafe] = ACTIONS(1861), - [anon_sym_sql] = ACTIONS(1861), - [sym_int_literal] = ACTIONS(1861), - [sym_float_literal] = ACTIONS(1859), - [sym_rune_literal] = ACTIONS(1859), - [sym_pseudo_compile_time_identifier] = ACTIONS(1861), - [anon_sym_shared] = ACTIONS(1861), - [anon_sym_map_LBRACK] = ACTIONS(1859), - [anon_sym_chan] = ACTIONS(1861), - [anon_sym_thread] = ACTIONS(1861), - [anon_sym_atomic] = ACTIONS(1861), - [sym___double_quote] = ACTIONS(1859), - [sym___single_quote] = ACTIONS(1859), - [sym___c_double_quote] = ACTIONS(1859), - [sym___c_single_quote] = ACTIONS(1859), - [sym___r_double_quote] = ACTIONS(1859), - [sym___r_single_quote] = ACTIONS(1859), + [sym_line_comment] = STATE(1294), + [sym_block_comment] = STATE(1294), + [sym_else_branch] = STATE(1386), + [sym_identifier] = ACTIONS(2457), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_COMMA] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2455), + [anon_sym_BANG_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_RBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_COLON] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2455), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_CARET] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2455), + [anon_sym_LT_LT] = ACTIONS(2455), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2455), + [anon_sym_AMP_CARET] = ACTIONS(2455), + [anon_sym_AMP_AMP] = ACTIONS(2455), + [anon_sym_PIPE_PIPE] = ACTIONS(2455), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2455), + [anon_sym_POUND_LBRACK] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(3871), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2455), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2455), + [sym_rune_literal] = ACTIONS(2455), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2455), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + [sym___double_quote] = ACTIONS(2455), + [sym___single_quote] = ACTIONS(2455), + [sym___c_double_quote] = ACTIONS(2455), + [sym___c_single_quote] = ACTIONS(2455), + [sym___r_double_quote] = ACTIONS(2455), + [sym___r_single_quote] = ACTIONS(2455), }, [1295] = { - [sym_identifier] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3249), - [anon_sym_as] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_fn] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_PERCENT] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_GT] = ACTIONS(3249), - [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(3247), - [anon_sym_RBRACK] = ACTIONS(3247), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_mut] = ACTIONS(3249), - [anon_sym_COLON] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_go] = ACTIONS(3249), - [anon_sym_spawn] = ACTIONS(3249), - [anon_sym_json_DOTdecode] = ACTIONS(3247), - [anon_sym_LBRACK2] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3249), - [anon_sym_LT_DASH] = ACTIONS(3247), - [anon_sym_LT_LT] = ACTIONS(3247), - [anon_sym_GT_GT] = ACTIONS(3249), - [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(3249), - [sym_none] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_nil] = ACTIONS(3249), - [anon_sym_QMARK_DOT] = ACTIONS(3247), - [anon_sym_POUND_LBRACK] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_DOLLARif] = ACTIONS(3249), - [anon_sym_is] = ACTIONS(3249), - [anon_sym_BANGis] = ACTIONS(3247), - [anon_sym_in] = ACTIONS(3249), - [anon_sym_BANGin] = ACTIONS(3247), - [anon_sym_match] = ACTIONS(3249), - [anon_sym_select] = ACTIONS(3249), - [anon_sym_lock] = ACTIONS(3249), - [anon_sym_rlock] = ACTIONS(3249), - [anon_sym_unsafe] = ACTIONS(3249), - [anon_sym_sql] = ACTIONS(3249), - [sym_int_literal] = ACTIONS(3249), - [sym_float_literal] = ACTIONS(3247), - [sym_rune_literal] = ACTIONS(3247), - [sym_pseudo_compile_time_identifier] = ACTIONS(3249), - [anon_sym_shared] = ACTIONS(3249), - [anon_sym_map_LBRACK] = ACTIONS(3247), - [anon_sym_chan] = ACTIONS(3249), - [anon_sym_thread] = ACTIONS(3249), - [anon_sym_atomic] = ACTIONS(3249), - [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_line_comment] = STATE(1295), + [sym_block_comment] = STATE(1295), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_format_specifier] = STATE(4423), + [sym_identifier] = ACTIONS(3873), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_RBRACE] = ACTIONS(3879), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_fn] = ACTIONS(3873), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [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(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(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(3873), + [anon_sym_spawn] = ACTIONS(3873), + [anon_sym_json_DOTdecode] = ACTIONS(3879), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3875), + [anon_sym_LT_DASH] = ACTIONS(3879), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3897), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_or] = ACTIONS(3901), + [sym_none] = ACTIONS(3873), + [sym_true] = ACTIONS(3873), + [sym_false] = ACTIONS(3873), + [sym_nil] = ACTIONS(3873), + [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), + [anon_sym_BANGis] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3907), + [anon_sym_BANGin] = ACTIONS(3909), + [anon_sym_match] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), + [anon_sym_lock] = ACTIONS(3873), + [anon_sym_rlock] = ACTIONS(3873), + [anon_sym_unsafe] = ACTIONS(3873), + [anon_sym_sql] = ACTIONS(3873), + [sym_int_literal] = ACTIONS(3873), + [sym_float_literal] = ACTIONS(3879), + [sym_rune_literal] = ACTIONS(3879), + [sym_pseudo_compile_time_identifier] = ACTIONS(3873), + [anon_sym_shared] = ACTIONS(3873), + [anon_sym_map_LBRACK] = ACTIONS(3879), + [anon_sym_chan] = ACTIONS(3873), + [anon_sym_thread] = ACTIONS(3873), + [anon_sym_atomic] = ACTIONS(3873), + [sym___double_quote] = ACTIONS(3879), + [sym___single_quote] = ACTIONS(3879), + [sym___c_double_quote] = ACTIONS(3879), + [sym___c_single_quote] = ACTIONS(3879), + [sym___r_double_quote] = ACTIONS(3879), + [sym___r_single_quote] = ACTIONS(3879), }, [1296] = { - [sym_identifier] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2685), - [anon_sym_as] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_COMMA] = ACTIONS(2683), - [anon_sym_RBRACE] = ACTIONS(2683), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_fn] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2685), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_EQ_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_LT_EQ] = ACTIONS(2683), - [anon_sym_GT_EQ] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_RBRACK] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_mut] = ACTIONS(2685), - [anon_sym_COLON] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_QMARK] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_go] = ACTIONS(2685), - [anon_sym_spawn] = ACTIONS(2685), - [anon_sym_json_DOTdecode] = ACTIONS(2683), - [anon_sym_LBRACK2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_LT_DASH] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2683), - [anon_sym_GT_GT] = ACTIONS(2685), - [anon_sym_GT_GT_GT] = ACTIONS(2683), - [anon_sym_AMP_CARET] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_PIPE_PIPE] = ACTIONS(2683), - [anon_sym_or] = ACTIONS(2685), - [sym_none] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nil] = ACTIONS(2685), - [anon_sym_QMARK_DOT] = ACTIONS(2683), - [anon_sym_POUND_LBRACK] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_DOLLARif] = ACTIONS(2685), - [anon_sym_DOLLARelse] = ACTIONS(2685), - [anon_sym_is] = ACTIONS(2685), - [anon_sym_BANGis] = ACTIONS(2683), - [anon_sym_in] = ACTIONS(2685), - [anon_sym_BANGin] = ACTIONS(2683), - [anon_sym_match] = ACTIONS(2685), - [anon_sym_select] = ACTIONS(2685), - [anon_sym_lock] = ACTIONS(2685), - [anon_sym_rlock] = ACTIONS(2685), - [anon_sym_unsafe] = ACTIONS(2685), - [anon_sym_sql] = ACTIONS(2685), - [sym_int_literal] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2683), - [sym_rune_literal] = ACTIONS(2683), - [sym_pseudo_compile_time_identifier] = ACTIONS(2685), - [anon_sym_shared] = ACTIONS(2685), - [anon_sym_map_LBRACK] = ACTIONS(2683), - [anon_sym_chan] = ACTIONS(2685), - [anon_sym_thread] = ACTIONS(2685), - [anon_sym_atomic] = ACTIONS(2685), - [sym___double_quote] = ACTIONS(2683), - [sym___single_quote] = ACTIONS(2683), - [sym___c_double_quote] = ACTIONS(2683), - [sym___c_single_quote] = ACTIONS(2683), - [sym___r_double_quote] = ACTIONS(2683), - [sym___r_single_quote] = ACTIONS(2683), + [sym_line_comment] = STATE(1296), + [sym_block_comment] = STATE(1296), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_format_specifier] = STATE(4256), + [sym_identifier] = ACTIONS(3873), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_RBRACE] = ACTIONS(3879), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_fn] = ACTIONS(3873), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [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(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(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(3873), + [anon_sym_spawn] = ACTIONS(3873), + [anon_sym_json_DOTdecode] = ACTIONS(3879), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3875), + [anon_sym_LT_DASH] = ACTIONS(3879), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3897), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_or] = ACTIONS(3901), + [sym_none] = ACTIONS(3873), + [sym_true] = ACTIONS(3873), + [sym_false] = ACTIONS(3873), + [sym_nil] = ACTIONS(3873), + [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), + [anon_sym_BANGis] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3907), + [anon_sym_BANGin] = ACTIONS(3909), + [anon_sym_match] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), + [anon_sym_lock] = ACTIONS(3873), + [anon_sym_rlock] = ACTIONS(3873), + [anon_sym_unsafe] = ACTIONS(3873), + [anon_sym_sql] = ACTIONS(3873), + [sym_int_literal] = ACTIONS(3873), + [sym_float_literal] = ACTIONS(3879), + [sym_rune_literal] = ACTIONS(3879), + [sym_pseudo_compile_time_identifier] = ACTIONS(3873), + [anon_sym_shared] = ACTIONS(3873), + [anon_sym_map_LBRACK] = ACTIONS(3879), + [anon_sym_chan] = ACTIONS(3873), + [anon_sym_thread] = ACTIONS(3873), + [anon_sym_atomic] = ACTIONS(3873), + [sym___double_quote] = ACTIONS(3879), + [sym___single_quote] = ACTIONS(3879), + [sym___c_double_quote] = ACTIONS(3879), + [sym___c_single_quote] = ACTIONS(3879), + [sym___r_double_quote] = ACTIONS(3879), + [sym___r_single_quote] = ACTIONS(3879), }, [1297] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1849), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3889), - [anon_sym_fn] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(1849), - [anon_sym_mut] = ACTIONS(1849), - [anon_sym_COLON] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3903), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1849), - [anon_sym_spawn] = ACTIONS(1849), - [anon_sym_json_DOTdecode] = ACTIONS(1847), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_GT_GT_GT] = ACTIONS(3891), - [anon_sym_AMP_CARET] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3911), - [sym_none] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_nil] = ACTIONS(1849), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_DOLLARif] = ACTIONS(1849), - [anon_sym_is] = ACTIONS(3913), - [anon_sym_BANGis] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3917), - [anon_sym_BANGin] = ACTIONS(3919), - [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), + [sym_line_comment] = STATE(1297), + [sym_block_comment] = STATE(1297), + [sym_else_branch] = STATE(1381), + [sym_identifier] = ACTIONS(2449), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_COMMA] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_PERCENT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2447), + [anon_sym_BANG_EQ] = ACTIONS(2447), + [anon_sym_LT_EQ] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_RBRACK] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_COLON] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2449), + [anon_sym_go] = ACTIONS(2449), + [anon_sym_spawn] = ACTIONS(2449), + [anon_sym_json_DOTdecode] = ACTIONS(2447), + [anon_sym_LBRACK2] = ACTIONS(2449), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_LT_DASH] = ACTIONS(2447), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2449), + [anon_sym_GT_GT_GT] = ACTIONS(2447), + [anon_sym_AMP_CARET] = ACTIONS(2447), + [anon_sym_AMP_AMP] = ACTIONS(2447), + [anon_sym_PIPE_PIPE] = ACTIONS(2447), + [anon_sym_or] = ACTIONS(2449), + [sym_none] = ACTIONS(2449), + [sym_true] = ACTIONS(2449), + [sym_false] = ACTIONS(2449), + [sym_nil] = ACTIONS(2449), + [anon_sym_QMARK_DOT] = ACTIONS(2447), + [anon_sym_POUND_LBRACK] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(3871), + [anon_sym_DOLLARif] = ACTIONS(2449), + [anon_sym_is] = ACTIONS(2449), + [anon_sym_BANGis] = ACTIONS(2447), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_BANGin] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_select] = ACTIONS(2449), + [anon_sym_lock] = ACTIONS(2449), + [anon_sym_rlock] = ACTIONS(2449), + [anon_sym_unsafe] = ACTIONS(2449), + [anon_sym_sql] = ACTIONS(2449), + [sym_int_literal] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2447), + [sym_rune_literal] = ACTIONS(2447), + [sym_pseudo_compile_time_identifier] = ACTIONS(2449), + [anon_sym_shared] = ACTIONS(2449), + [anon_sym_map_LBRACK] = ACTIONS(2447), + [anon_sym_chan] = ACTIONS(2449), + [anon_sym_thread] = ACTIONS(2449), + [anon_sym_atomic] = ACTIONS(2449), + [sym___double_quote] = ACTIONS(2447), + [sym___single_quote] = ACTIONS(2447), + [sym___c_double_quote] = ACTIONS(2447), + [sym___c_single_quote] = ACTIONS(2447), + [sym___r_double_quote] = ACTIONS(2447), + [sym___r_single_quote] = ACTIONS(2447), }, [1298] = { - [sym_identifier] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2647), - [anon_sym_LT_EQ] = ACTIONS(2647), - [anon_sym_GT_EQ] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_RBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2647), - [anon_sym_AMP_CARET] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2647), - [anon_sym_POUND_LBRACK] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_DOLLARelse] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2647), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2647), - [sym_rune_literal] = ACTIONS(2647), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2647), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2647), - [sym___single_quote] = ACTIONS(2647), - [sym___c_double_quote] = ACTIONS(2647), - [sym___c_single_quote] = ACTIONS(2647), - [sym___r_double_quote] = ACTIONS(2647), - [sym___r_single_quote] = ACTIONS(2647), + [sym_line_comment] = STATE(1298), + [sym_block_comment] = STATE(1298), + [sym_identifier] = ACTIONS(3039), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_RBRACE] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(3037), + [anon_sym_PIPE] = ACTIONS(3039), + [anon_sym_fn] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_PERCENT] = ACTIONS(3037), + [anon_sym_LT] = ACTIONS(3039), + [anon_sym_GT] = ACTIONS(3039), + [anon_sym_EQ_EQ] = ACTIONS(3037), + [anon_sym_BANG_EQ] = ACTIONS(3037), + [anon_sym_LT_EQ] = ACTIONS(3037), + [anon_sym_GT_EQ] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3037), + [anon_sym_RBRACK] = ACTIONS(3037), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_mut] = ACTIONS(3039), + [anon_sym_COLON] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_go] = ACTIONS(3039), + [anon_sym_spawn] = ACTIONS(3039), + [anon_sym_json_DOTdecode] = ACTIONS(3037), + [anon_sym_LBRACK2] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_CARET] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3037), + [anon_sym_LT_LT] = ACTIONS(3037), + [anon_sym_GT_GT] = ACTIONS(3039), + [anon_sym_GT_GT_GT] = ACTIONS(3037), + [anon_sym_AMP_CARET] = ACTIONS(3037), + [anon_sym_AMP_AMP] = ACTIONS(3037), + [anon_sym_PIPE_PIPE] = ACTIONS(3037), + [anon_sym_or] = ACTIONS(3039), + [sym_none] = ACTIONS(3039), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_nil] = ACTIONS(3039), + [anon_sym_QMARK_DOT] = ACTIONS(3037), + [anon_sym_POUND_LBRACK] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_DOLLARif] = ACTIONS(3039), + [anon_sym_is] = ACTIONS(3039), + [anon_sym_BANGis] = ACTIONS(3037), + [anon_sym_in] = ACTIONS(3039), + [anon_sym_BANGin] = ACTIONS(3037), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_select] = ACTIONS(3039), + [anon_sym_lock] = ACTIONS(3039), + [anon_sym_rlock] = ACTIONS(3039), + [anon_sym_unsafe] = ACTIONS(3039), + [anon_sym_sql] = ACTIONS(3039), + [sym_int_literal] = ACTIONS(3039), + [sym_float_literal] = ACTIONS(3037), + [sym_rune_literal] = ACTIONS(3037), + [sym_pseudo_compile_time_identifier] = ACTIONS(3039), + [anon_sym_shared] = ACTIONS(3039), + [anon_sym_map_LBRACK] = ACTIONS(3037), + [anon_sym_chan] = ACTIONS(3039), + [anon_sym_thread] = ACTIONS(3039), + [anon_sym_atomic] = ACTIONS(3039), + [sym___double_quote] = ACTIONS(3037), + [sym___single_quote] = ACTIONS(3037), + [sym___c_double_quote] = ACTIONS(3037), + [sym___c_single_quote] = ACTIONS(3037), + [sym___r_double_quote] = ACTIONS(3037), + [sym___r_single_quote] = ACTIONS(3037), }, [1299] = { - [sym_identifier] = ACTIONS(2873), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2873), - [anon_sym_as] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_COMMA] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_fn] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_SLASH] = ACTIONS(2873), - [anon_sym_PERCENT] = ACTIONS(2871), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_GT] = ACTIONS(2873), - [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(2873), - [anon_sym_mut] = ACTIONS(2873), - [anon_sym_COLON] = ACTIONS(2871), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [anon_sym_QMARK] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_go] = ACTIONS(2873), - [anon_sym_spawn] = ACTIONS(2873), - [anon_sym_json_DOTdecode] = ACTIONS(2871), - [anon_sym_LBRACK2] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_CARET] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_LT_DASH] = ACTIONS(2871), - [anon_sym_LT_LT] = ACTIONS(2871), - [anon_sym_GT_GT] = ACTIONS(2873), - [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(2873), - [sym_none] = ACTIONS(2873), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [sym_nil] = ACTIONS(2873), - [anon_sym_QMARK_DOT] = ACTIONS(2871), - [anon_sym_POUND_LBRACK] = ACTIONS(2871), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_DOLLARif] = ACTIONS(2873), - [anon_sym_DOLLARelse] = ACTIONS(3929), - [anon_sym_is] = ACTIONS(2873), - [anon_sym_BANGis] = ACTIONS(2871), - [anon_sym_in] = ACTIONS(2873), - [anon_sym_BANGin] = ACTIONS(2871), - [anon_sym_match] = ACTIONS(2873), - [anon_sym_select] = ACTIONS(2873), - [anon_sym_lock] = ACTIONS(2873), - [anon_sym_rlock] = ACTIONS(2873), - [anon_sym_unsafe] = ACTIONS(2873), - [anon_sym_sql] = ACTIONS(2873), - [sym_int_literal] = ACTIONS(2873), - [sym_float_literal] = ACTIONS(2871), - [sym_rune_literal] = ACTIONS(2871), - [sym_pseudo_compile_time_identifier] = ACTIONS(2873), - [anon_sym_shared] = ACTIONS(2873), - [anon_sym_map_LBRACK] = ACTIONS(2871), - [anon_sym_chan] = ACTIONS(2873), - [anon_sym_thread] = ACTIONS(2873), - [anon_sym_atomic] = ACTIONS(2873), - [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_line_comment] = STATE(1299), + [sym_block_comment] = STATE(1299), + [sym_identifier] = ACTIONS(2821), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_as] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_COMMA] = ACTIONS(2819), + [anon_sym_RBRACE] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_fn] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_RBRACK] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_mut] = ACTIONS(2821), + [anon_sym_COLON] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_QMARK] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_go] = ACTIONS(2821), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(2819), + [anon_sym_LBRACK2] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_LT_DASH] = ACTIONS(2819), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2819), + [anon_sym_AMP_CARET] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_or] = ACTIONS(2821), + [sym_none] = ACTIONS(2821), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_nil] = ACTIONS(2821), + [anon_sym_QMARK_DOT] = ACTIONS(2819), + [anon_sym_POUND_LBRACK] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_DOLLARif] = ACTIONS(2821), + [anon_sym_DOLLARelse] = ACTIONS(3911), + [anon_sym_is] = ACTIONS(2821), + [anon_sym_BANGis] = ACTIONS(2819), + [anon_sym_in] = ACTIONS(2821), + [anon_sym_BANGin] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2821), + [anon_sym_lock] = ACTIONS(2821), + [anon_sym_rlock] = ACTIONS(2821), + [anon_sym_unsafe] = ACTIONS(2821), + [anon_sym_sql] = ACTIONS(2821), + [sym_int_literal] = ACTIONS(2821), + [sym_float_literal] = ACTIONS(2819), + [sym_rune_literal] = ACTIONS(2819), + [sym_pseudo_compile_time_identifier] = ACTIONS(2821), + [anon_sym_shared] = ACTIONS(2821), + [anon_sym_map_LBRACK] = ACTIONS(2819), + [anon_sym_chan] = ACTIONS(2821), + [anon_sym_thread] = ACTIONS(2821), + [anon_sym_atomic] = ACTIONS(2821), + [sym___double_quote] = ACTIONS(2819), + [sym___single_quote] = ACTIONS(2819), + [sym___c_double_quote] = ACTIONS(2819), + [sym___c_single_quote] = ACTIONS(2819), + [sym___r_double_quote] = ACTIONS(2819), + [sym___r_single_quote] = ACTIONS(2819), }, [1300] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(2067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_COMMA] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3921), - [anon_sym_fn] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_SLASH] = ACTIONS(3925), - [anon_sym_PERCENT] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2065), - [anon_sym_BANG_EQ] = ACTIONS(2065), - [anon_sym_LT_EQ] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(2065), - [anon_sym_struct] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(2067), - [anon_sym_spawn] = ACTIONS(2067), - [anon_sym_json_DOTdecode] = ACTIONS(2065), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_CARET] = ACTIONS(3927), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_LT_DASH] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(3923), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_GT_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_CARET] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(2065), - [anon_sym_PIPE_PIPE] = ACTIONS(2065), - [anon_sym_or] = ACTIONS(2067), - [sym_none] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_nil] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_DOLLARif] = ACTIONS(2067), - [anon_sym_is] = ACTIONS(2067), - [anon_sym_BANGis] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_BANGin] = ACTIONS(2065), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_select] = ACTIONS(2067), - [anon_sym_lock] = ACTIONS(2067), - [anon_sym_rlock] = ACTIONS(2067), - [anon_sym_unsafe] = ACTIONS(2067), - [anon_sym_sql] = ACTIONS(2067), - [sym_int_literal] = ACTIONS(2067), - [sym_float_literal] = ACTIONS(2065), - [sym_rune_literal] = ACTIONS(2065), - [sym_pseudo_compile_time_identifier] = ACTIONS(2067), - [anon_sym_shared] = ACTIONS(2067), - [anon_sym_map_LBRACK] = ACTIONS(2065), - [anon_sym_chan] = ACTIONS(2067), - [anon_sym_thread] = ACTIONS(2067), - [anon_sym_atomic] = ACTIONS(2067), - [sym___double_quote] = ACTIONS(2065), - [sym___single_quote] = ACTIONS(2065), - [sym___c_double_quote] = ACTIONS(2065), - [sym___c_single_quote] = ACTIONS(2065), - [sym___r_double_quote] = ACTIONS(2065), - [sym___r_single_quote] = ACTIONS(2065), + [sym_line_comment] = STATE(1300), + [sym_block_comment] = STATE(1300), + [sym_type_parameters] = STATE(1398), + [sym_identifier] = ACTIONS(2743), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_as] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_COMMA] = ACTIONS(2741), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [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(2741), + [anon_sym_RBRACK] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_mut] = ACTIONS(2743), + [anon_sym_COLON] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_go] = ACTIONS(2743), + [anon_sym_spawn] = ACTIONS(2743), + [anon_sym_json_DOTdecode] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LT_LT] = ACTIONS(2741), + [anon_sym_GT_GT] = ACTIONS(2743), + [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(2743), + [sym_none] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_nil] = ACTIONS(2743), + [anon_sym_QMARK_DOT] = ACTIONS(2741), + [anon_sym_POUND_LBRACK] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_DOLLARif] = ACTIONS(2743), + [anon_sym_is] = ACTIONS(2743), + [anon_sym_BANGis] = ACTIONS(2741), + [anon_sym_in] = ACTIONS(2743), + [anon_sym_BANGin] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_select] = ACTIONS(2743), + [anon_sym_lock] = ACTIONS(2743), + [anon_sym_rlock] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_sql] = ACTIONS(2743), + [sym_int_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2741), + [sym_rune_literal] = ACTIONS(2741), + [sym_pseudo_compile_time_identifier] = ACTIONS(2743), + [anon_sym_shared] = ACTIONS(2743), + [anon_sym_map_LBRACK] = ACTIONS(2741), + [anon_sym_chan] = ACTIONS(2743), + [anon_sym_thread] = ACTIONS(2743), + [anon_sym_atomic] = ACTIONS(2743), + [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), }, [1301] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1865), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3921), - [anon_sym_fn] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_SLASH] = ACTIONS(3925), - [anon_sym_PERCENT] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_GT] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_LT_EQ] = ACTIONS(1863), - [anon_sym_GT_EQ] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_struct] = ACTIONS(1865), - [anon_sym_mut] = ACTIONS(1865), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1865), - [anon_sym_spawn] = ACTIONS(1865), - [anon_sym_json_DOTdecode] = ACTIONS(1863), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(3927), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_LT_DASH] = ACTIONS(1863), - [anon_sym_LT_LT] = ACTIONS(3923), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_GT_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_CARET] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(1863), - [anon_sym_PIPE_PIPE] = ACTIONS(1863), - [anon_sym_or] = ACTIONS(1865), - [sym_none] = ACTIONS(1865), - [sym_true] = ACTIONS(1865), - [sym_false] = ACTIONS(1865), - [sym_nil] = ACTIONS(1865), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1865), - [anon_sym_is] = ACTIONS(1865), - [anon_sym_BANGis] = ACTIONS(1863), - [anon_sym_in] = ACTIONS(1865), - [anon_sym_BANGin] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_select] = ACTIONS(1865), - [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(1863), - [sym_rune_literal] = ACTIONS(1863), - [sym_pseudo_compile_time_identifier] = ACTIONS(1865), - [anon_sym_shared] = ACTIONS(1865), - [anon_sym_map_LBRACK] = ACTIONS(1863), - [anon_sym_chan] = ACTIONS(1865), - [anon_sym_thread] = ACTIONS(1865), - [anon_sym_atomic] = ACTIONS(1865), - [sym___double_quote] = ACTIONS(1863), - [sym___single_quote] = ACTIONS(1863), - [sym___c_double_quote] = ACTIONS(1863), - [sym___c_single_quote] = ACTIONS(1863), - [sym___r_double_quote] = ACTIONS(1863), - [sym___r_single_quote] = ACTIONS(1863), + [sym_line_comment] = STATE(1301), + [sym_block_comment] = STATE(1301), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [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(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_COLON] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3875), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(3907), + [anon_sym_BANGin] = ACTIONS(3909), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), }, [1302] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3921), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_SLASH] = ACTIONS(3925), - [anon_sym_PERCENT] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3931), - [anon_sym_GT] = ACTIONS(3931), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1941), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(3927), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_LT_DASH] = ACTIONS(1941), - [anon_sym_LT_LT] = ACTIONS(3923), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_GT_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_CARET] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3935), - [anon_sym_PIPE_PIPE] = ACTIONS(1941), - [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(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1941), - [anon_sym_in] = ACTIONS(3937), - [anon_sym_BANGin] = ACTIONS(3939), - [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(1941), - [sym_rune_literal] = ACTIONS(1941), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1941), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1941), - [sym___single_quote] = ACTIONS(1941), - [sym___c_double_quote] = ACTIONS(1941), - [sym___c_single_quote] = ACTIONS(1941), - [sym___r_double_quote] = ACTIONS(1941), - [sym___r_single_quote] = ACTIONS(1941), + [sym_line_comment] = STATE(1302), + [sym_block_comment] = STATE(1302), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3919), + [anon_sym_GT] = ACTIONS(3919), + [anon_sym_EQ_EQ] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_LT_EQ] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(3927), + [anon_sym_BANGin] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), }, [1303] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3921), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_SLASH] = ACTIONS(3925), - [anon_sym_PERCENT] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3931), - [anon_sym_GT] = ACTIONS(3931), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1941), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(3927), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_LT_DASH] = ACTIONS(1941), - [anon_sym_LT_LT] = ACTIONS(3923), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_GT_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_CARET] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(1941), - [anon_sym_PIPE_PIPE] = ACTIONS(1941), - [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(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1941), - [anon_sym_in] = ACTIONS(3937), - [anon_sym_BANGin] = ACTIONS(3939), - [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(1941), - [sym_rune_literal] = ACTIONS(1941), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1941), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1941), - [sym___single_quote] = ACTIONS(1941), - [sym___c_double_quote] = ACTIONS(1941), - [sym___c_single_quote] = ACTIONS(1941), - [sym___r_double_quote] = ACTIONS(1941), - [sym___r_single_quote] = ACTIONS(1941), + [sym_line_comment] = STATE(1303), + [sym_block_comment] = STATE(1303), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3919), + [anon_sym_GT] = ACTIONS(3919), + [anon_sym_EQ_EQ] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_LT_EQ] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(3927), + [anon_sym_BANGin] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), }, [1304] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_SLASH] = ACTIONS(3925), - [anon_sym_PERCENT] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1941), - [anon_sym_BANG_EQ] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(1941), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1941), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_LT_DASH] = ACTIONS(1941), - [anon_sym_LT_LT] = ACTIONS(3923), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_GT_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_CARET] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(1941), - [anon_sym_PIPE_PIPE] = ACTIONS(1941), - [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(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1941), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1941), - [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(1941), - [sym_rune_literal] = ACTIONS(1941), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1941), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1941), - [sym___single_quote] = ACTIONS(1941), - [sym___c_double_quote] = ACTIONS(1941), - [sym___c_single_quote] = ACTIONS(1941), - [sym___r_double_quote] = ACTIONS(1941), - [sym___r_single_quote] = ACTIONS(1941), + [sym_line_comment] = STATE(1304), + [sym_block_comment] = STATE(1304), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(3857), + [anon_sym_RBRACK] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), }, [1305] = { - [sym_identifier] = ACTIONS(3428), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3426), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_as] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(3426), - [anon_sym_RBRACE] = ACTIONS(3426), - [anon_sym_LPAREN] = ACTIONS(3426), - [anon_sym_PIPE] = ACTIONS(3428), - [anon_sym_fn] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_STAR] = ACTIONS(3426), - [anon_sym_SLASH] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3426), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(3428), - [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(3426), - [anon_sym_RBRACK] = ACTIONS(3426), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_mut] = ACTIONS(3428), - [anon_sym_COLON] = ACTIONS(3426), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_go] = ACTIONS(3428), - [anon_sym_spawn] = ACTIONS(3428), - [anon_sym_json_DOTdecode] = ACTIONS(3426), - [anon_sym_LBRACK2] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3426), - [anon_sym_CARET] = ACTIONS(3426), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3426), - [anon_sym_LT_LT] = ACTIONS(3426), - [anon_sym_GT_GT] = ACTIONS(3428), - [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(3428), - [sym_none] = ACTIONS(3428), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [sym_nil] = ACTIONS(3428), - [anon_sym_QMARK_DOT] = ACTIONS(3426), - [anon_sym_POUND_LBRACK] = ACTIONS(3426), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_DOLLARif] = ACTIONS(3428), - [anon_sym_is] = ACTIONS(3428), - [anon_sym_BANGis] = ACTIONS(3426), - [anon_sym_in] = ACTIONS(3428), - [anon_sym_BANGin] = ACTIONS(3426), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), - [anon_sym_lock] = ACTIONS(3428), - [anon_sym_rlock] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_sql] = ACTIONS(3428), - [sym_int_literal] = ACTIONS(3428), - [sym_float_literal] = ACTIONS(3426), - [sym_rune_literal] = ACTIONS(3426), - [sym_pseudo_compile_time_identifier] = ACTIONS(3428), - [anon_sym_shared] = ACTIONS(3428), - [anon_sym_map_LBRACK] = ACTIONS(3426), - [anon_sym_chan] = ACTIONS(3428), - [anon_sym_thread] = ACTIONS(3428), - [anon_sym_atomic] = ACTIONS(3428), - [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), + [sym_line_comment] = STATE(1305), + [sym_block_comment] = STATE(1305), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(3857), + [anon_sym_RBRACK] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), }, [1306] = { - [sym_identifier] = ACTIONS(3099), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_as] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_fn] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_LT_EQ] = ACTIONS(3097), - [anon_sym_GT_EQ] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_RBRACK] = ACTIONS(3097), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_mut] = ACTIONS(3099), - [anon_sym_COLON] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(3099), - [anon_sym_go] = ACTIONS(3099), - [anon_sym_spawn] = ACTIONS(3099), - [anon_sym_json_DOTdecode] = ACTIONS(3097), - [anon_sym_LBRACK2] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_GT_GT_GT] = ACTIONS(3097), - [anon_sym_AMP_CARET] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_PIPE_PIPE] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3099), - [sym_none] = ACTIONS(3099), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_nil] = ACTIONS(3099), - [anon_sym_QMARK_DOT] = ACTIONS(3097), - [anon_sym_POUND_LBRACK] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_DOLLARif] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_BANGis] = ACTIONS(3097), - [anon_sym_in] = ACTIONS(3099), - [anon_sym_BANGin] = ACTIONS(3097), - [anon_sym_match] = ACTIONS(3099), - [anon_sym_select] = ACTIONS(3099), - [anon_sym_lock] = ACTIONS(3099), - [anon_sym_rlock] = ACTIONS(3099), - [anon_sym_unsafe] = ACTIONS(3099), - [anon_sym_sql] = ACTIONS(3099), - [sym_int_literal] = ACTIONS(3099), - [sym_float_literal] = ACTIONS(3097), - [sym_rune_literal] = ACTIONS(3097), - [sym_pseudo_compile_time_identifier] = ACTIONS(3099), - [anon_sym_shared] = ACTIONS(3099), - [anon_sym_map_LBRACK] = ACTIONS(3097), - [anon_sym_chan] = ACTIONS(3099), - [anon_sym_thread] = ACTIONS(3099), - [anon_sym_atomic] = ACTIONS(3099), - [sym___double_quote] = ACTIONS(3097), - [sym___single_quote] = ACTIONS(3097), - [sym___c_double_quote] = ACTIONS(3097), - [sym___c_single_quote] = ACTIONS(3097), - [sym___r_double_quote] = ACTIONS(3097), - [sym___r_single_quote] = ACTIONS(3097), + [sym_line_comment] = STATE(1306), + [sym_block_comment] = STATE(1306), + [sym_identifier] = ACTIONS(2913), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2913), + [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_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), }, [1307] = { - [sym_type_parameters] = STATE(1388), - [sym_identifier] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_as] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_COMMA] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_PIPE] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_SLASH] = ACTIONS(2715), - [anon_sym_PERCENT] = ACTIONS(2713), - [anon_sym_LT] = ACTIONS(2715), - [anon_sym_GT] = ACTIONS(2715), - [anon_sym_EQ_EQ] = ACTIONS(2713), - [anon_sym_BANG_EQ] = ACTIONS(2713), - [anon_sym_LT_EQ] = ACTIONS(2713), - [anon_sym_GT_EQ] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_RBRACK] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_mut] = ACTIONS(2715), - [anon_sym_COLON] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_QMARK] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_go] = ACTIONS(2715), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(2713), - [anon_sym_LBRACK2] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_CARET] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_LT_DASH] = ACTIONS(2713), - [anon_sym_LT_LT] = ACTIONS(2713), - [anon_sym_GT_GT] = ACTIONS(2715), - [anon_sym_GT_GT_GT] = ACTIONS(2713), - [anon_sym_AMP_CARET] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_PIPE_PIPE] = ACTIONS(2713), - [anon_sym_or] = ACTIONS(2715), - [sym_none] = ACTIONS(2715), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [sym_nil] = ACTIONS(2715), - [anon_sym_QMARK_DOT] = ACTIONS(2713), - [anon_sym_POUND_LBRACK] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_DOLLARif] = ACTIONS(2715), - [anon_sym_is] = ACTIONS(2715), - [anon_sym_BANGis] = ACTIONS(2713), - [anon_sym_in] = ACTIONS(2715), - [anon_sym_BANGin] = ACTIONS(2713), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_select] = ACTIONS(2715), - [anon_sym_lock] = ACTIONS(2715), - [anon_sym_rlock] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_sql] = ACTIONS(2715), - [sym_int_literal] = ACTIONS(2715), - [sym_float_literal] = ACTIONS(2713), - [sym_rune_literal] = ACTIONS(2713), - [sym_pseudo_compile_time_identifier] = ACTIONS(2715), - [anon_sym_shared] = ACTIONS(2715), - [anon_sym_map_LBRACK] = ACTIONS(2713), - [anon_sym_chan] = ACTIONS(2715), - [anon_sym_thread] = ACTIONS(2715), - [anon_sym_atomic] = ACTIONS(2715), - [sym___double_quote] = ACTIONS(2713), - [sym___single_quote] = ACTIONS(2713), - [sym___c_double_quote] = ACTIONS(2713), - [sym___c_single_quote] = ACTIONS(2713), - [sym___r_double_quote] = ACTIONS(2713), - [sym___r_single_quote] = ACTIONS(2713), - }, - [1308] = { - [sym_identifier] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym_DOT] = ACTIONS(2727), - [anon_sym_as] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2732), - [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(2732), - [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_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), - }, - [1309] = { - [sym_identifier] = ACTIONS(3133), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [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(3131), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3131), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3133), - [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(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3131), - [anon_sym_POUND_LBRACK] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3131), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3131), - [sym_rune_literal] = ACTIONS(3131), - [sym_pseudo_compile_time_identifier] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3131), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [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_line_comment] = STATE(1307), + [sym_block_comment] = STATE(1307), + [sym_identifier] = ACTIONS(2909), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2909), + [anon_sym_SEMI] = ACTIONS(2907), + [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_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), + }, + [1308] = { + [sym_line_comment] = STATE(1308), + [sym_block_comment] = STATE(1308), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(3857), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_COLON] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(3875), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), + }, + [1309] = { + [sym_line_comment] = STATE(1309), + [sym_block_comment] = STATE(1309), + [sym_identifier] = ACTIONS(2765), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2765), + [anon_sym_DOT] = ACTIONS(2765), + [anon_sym_as] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(2763), + [anon_sym_RBRACE] = ACTIONS(2763), + [anon_sym_LPAREN] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_GT] = ACTIONS(2765), + [anon_sym_EQ_EQ] = ACTIONS(2763), + [anon_sym_BANG_EQ] = ACTIONS(2763), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_RBRACK] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_mut] = ACTIONS(2765), + [anon_sym_COLON] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_QMARK] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_go] = ACTIONS(2765), + [anon_sym_spawn] = ACTIONS(2765), + [anon_sym_json_DOTdecode] = ACTIONS(2763), + [anon_sym_LBRACK2] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_CARET] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_LT_DASH] = ACTIONS(2763), + [anon_sym_LT_LT] = ACTIONS(2763), + [anon_sym_GT_GT] = ACTIONS(2765), + [anon_sym_GT_GT_GT] = ACTIONS(2763), + [anon_sym_AMP_CARET] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_PIPE_PIPE] = ACTIONS(2763), + [anon_sym_or] = ACTIONS(2765), + [sym_none] = ACTIONS(2765), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_nil] = ACTIONS(2765), + [anon_sym_QMARK_DOT] = ACTIONS(2763), + [anon_sym_POUND_LBRACK] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_DOLLARif] = ACTIONS(2765), + [anon_sym_DOLLARelse] = ACTIONS(3931), + [anon_sym_is] = ACTIONS(2765), + [anon_sym_BANGis] = ACTIONS(2763), + [anon_sym_in] = ACTIONS(2765), + [anon_sym_BANGin] = ACTIONS(2763), + [anon_sym_match] = ACTIONS(2765), + [anon_sym_select] = ACTIONS(2765), + [anon_sym_lock] = ACTIONS(2765), + [anon_sym_rlock] = ACTIONS(2765), + [anon_sym_unsafe] = ACTIONS(2765), + [anon_sym_sql] = ACTIONS(2765), + [sym_int_literal] = ACTIONS(2765), + [sym_float_literal] = ACTIONS(2763), + [sym_rune_literal] = ACTIONS(2763), + [sym_pseudo_compile_time_identifier] = ACTIONS(2765), + [anon_sym_shared] = ACTIONS(2765), + [anon_sym_map_LBRACK] = ACTIONS(2763), + [anon_sym_chan] = ACTIONS(2765), + [anon_sym_thread] = ACTIONS(2765), + [anon_sym_atomic] = ACTIONS(2765), + [sym___double_quote] = ACTIONS(2763), + [sym___single_quote] = ACTIONS(2763), + [sym___c_double_quote] = ACTIONS(2763), + [sym___c_single_quote] = ACTIONS(2763), + [sym___r_double_quote] = ACTIONS(2763), + [sym___r_single_quote] = ACTIONS(2763), }, [1310] = { - [sym_identifier] = ACTIONS(2643), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_as] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2643), - [anon_sym_GT] = ACTIONS(2643), - [anon_sym_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_RBRACK] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_mut] = ACTIONS(2643), - [anon_sym_COLON] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_go] = ACTIONS(2643), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(2641), - [anon_sym_LBRACK2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_LT_DASH] = ACTIONS(2641), - [anon_sym_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_GT_GT_GT] = ACTIONS(2641), - [anon_sym_AMP_CARET] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_or] = ACTIONS(2643), - [sym_none] = ACTIONS(2643), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_nil] = ACTIONS(2643), - [anon_sym_QMARK_DOT] = ACTIONS(2641), - [anon_sym_POUND_LBRACK] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_DOLLARif] = ACTIONS(2643), - [anon_sym_DOLLARelse] = ACTIONS(3941), - [anon_sym_is] = ACTIONS(2643), - [anon_sym_BANGis] = ACTIONS(2641), - [anon_sym_in] = ACTIONS(2643), - [anon_sym_BANGin] = ACTIONS(2641), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_select] = ACTIONS(2643), - [anon_sym_lock] = ACTIONS(2643), - [anon_sym_rlock] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_sql] = ACTIONS(2643), - [sym_int_literal] = ACTIONS(2643), - [sym_float_literal] = ACTIONS(2641), - [sym_rune_literal] = ACTIONS(2641), - [sym_pseudo_compile_time_identifier] = ACTIONS(2643), - [anon_sym_shared] = ACTIONS(2643), - [anon_sym_map_LBRACK] = ACTIONS(2641), - [anon_sym_chan] = ACTIONS(2643), - [anon_sym_thread] = ACTIONS(2643), - [anon_sym_atomic] = ACTIONS(2643), - [sym___double_quote] = ACTIONS(2641), - [sym___single_quote] = ACTIONS(2641), - [sym___c_double_quote] = ACTIONS(2641), - [sym___c_single_quote] = ACTIONS(2641), - [sym___r_double_quote] = ACTIONS(2641), - [sym___r_single_quote] = ACTIONS(2641), + [sym_line_comment] = STATE(1310), + [sym_block_comment] = STATE(1310), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [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(3857), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_COLON] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3875), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), }, [1311] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1941), - [anon_sym_BANG_EQ] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_COLON] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1941), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(1941), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_GT_GT_GT] = ACTIONS(3891), - [anon_sym_AMP_CARET] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(1941), - [anon_sym_PIPE_PIPE] = ACTIONS(1941), - [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(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1941), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1941), - [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(1941), - [sym_rune_literal] = ACTIONS(1941), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1941), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1941), - [sym___single_quote] = ACTIONS(1941), - [sym___c_double_quote] = ACTIONS(1941), - [sym___c_single_quote] = ACTIONS(1941), - [sym___r_double_quote] = ACTIONS(1941), - [sym___r_single_quote] = ACTIONS(1941), + [sym_line_comment] = STATE(1311), + [sym_block_comment] = STATE(1311), + [sym_identifier] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_COMMA] = ACTIONS(2827), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_PERCENT] = ACTIONS(2827), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2827), + [anon_sym_BANG_EQ] = ACTIONS(2827), + [anon_sym_LT_EQ] = ACTIONS(2827), + [anon_sym_GT_EQ] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_RBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_COLON] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2827), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_CARET] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2827), + [anon_sym_LT_LT] = ACTIONS(2827), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2827), + [anon_sym_AMP_CARET] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_PIPE_PIPE] = ACTIONS(2827), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2827), + [anon_sym_POUND_LBRACK] = ACTIONS(2827), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_DOLLARelse] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2827), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2827), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2827), + [sym_rune_literal] = ACTIONS(2827), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2827), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [sym___double_quote] = ACTIONS(2827), + [sym___single_quote] = ACTIONS(2827), + [sym___c_double_quote] = ACTIONS(2827), + [sym___c_single_quote] = ACTIONS(2827), + [sym___r_double_quote] = ACTIONS(2827), + [sym___r_single_quote] = ACTIONS(2827), }, [1312] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(3943), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3945), - [anon_sym_COMMA] = ACTIONS(3947), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3921), - [anon_sym_fn] = ACTIONS(3943), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_SLASH] = ACTIONS(3925), - [anon_sym_PERCENT] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3931), - [anon_sym_GT] = ACTIONS(3931), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(3945), - [anon_sym_struct] = ACTIONS(3943), - [anon_sym_mut] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3903), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(3943), - [anon_sym_spawn] = ACTIONS(3943), - [anon_sym_json_DOTdecode] = ACTIONS(3945), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(3945), - [anon_sym_CARET] = ACTIONS(3927), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_LT_DASH] = ACTIONS(3945), - [anon_sym_LT_LT] = ACTIONS(3923), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_GT_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_CARET] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3935), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_or] = ACTIONS(3911), - [sym_none] = ACTIONS(3943), - [sym_true] = ACTIONS(3943), - [sym_false] = ACTIONS(3943), - [sym_nil] = ACTIONS(3943), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_DOLLARif] = ACTIONS(3943), - [anon_sym_is] = ACTIONS(3913), - [anon_sym_BANGis] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3937), - [anon_sym_BANGin] = ACTIONS(3939), - [anon_sym_match] = ACTIONS(3943), - [anon_sym_select] = ACTIONS(3943), - [anon_sym_lock] = ACTIONS(3943), - [anon_sym_rlock] = ACTIONS(3943), - [anon_sym_unsafe] = ACTIONS(3943), - [anon_sym_sql] = ACTIONS(3943), - [sym_int_literal] = ACTIONS(3943), - [sym_float_literal] = ACTIONS(3945), - [sym_rune_literal] = ACTIONS(3945), - [sym_pseudo_compile_time_identifier] = ACTIONS(3943), - [anon_sym_shared] = ACTIONS(3943), - [anon_sym_map_LBRACK] = ACTIONS(3945), - [anon_sym_chan] = ACTIONS(3943), - [anon_sym_thread] = ACTIONS(3943), - [anon_sym_atomic] = ACTIONS(3943), - [sym___double_quote] = ACTIONS(3945), - [sym___single_quote] = ACTIONS(3945), - [sym___c_double_quote] = ACTIONS(3945), - [sym___c_single_quote] = ACTIONS(3945), - [sym___r_double_quote] = ACTIONS(3945), - [sym___r_single_quote] = ACTIONS(3945), + [sym_line_comment] = STATE(1312), + [sym_block_comment] = STATE(1312), + [sym_identifier] = ACTIONS(3315), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3313), + [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_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), }, [1313] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(2067), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3889), - [anon_sym_fn] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2065), - [anon_sym_BANG_EQ] = ACTIONS(2065), - [anon_sym_LT_EQ] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym_PLUS_PLUS] = ACTIONS(2065), - [anon_sym_DASH_DASH] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(2067), - [anon_sym_spawn] = ACTIONS(2067), - [anon_sym_json_DOTdecode] = ACTIONS(2065), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(2065), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_GT_GT_GT] = ACTIONS(3891), - [anon_sym_AMP_CARET] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(2065), - [anon_sym_PIPE_PIPE] = ACTIONS(2065), - [anon_sym_or] = ACTIONS(2067), - [sym_none] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_nil] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_DOLLARif] = ACTIONS(2067), - [anon_sym_is] = ACTIONS(2067), - [anon_sym_BANGis] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_BANGin] = ACTIONS(2065), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_select] = ACTIONS(2067), - [anon_sym_lock] = ACTIONS(2067), - [anon_sym_rlock] = ACTIONS(2067), - [anon_sym_unsafe] = ACTIONS(2067), - [anon_sym_sql] = ACTIONS(2067), - [sym_int_literal] = ACTIONS(2067), - [sym_float_literal] = ACTIONS(2065), - [sym_rune_literal] = ACTIONS(2065), - [sym_pseudo_compile_time_identifier] = ACTIONS(2067), - [anon_sym_shared] = ACTIONS(2067), - [anon_sym_map_LBRACK] = ACTIONS(2065), - [anon_sym_chan] = ACTIONS(2067), - [anon_sym_thread] = ACTIONS(2067), - [anon_sym_atomic] = ACTIONS(2067), - [sym___double_quote] = ACTIONS(2065), - [sym___single_quote] = ACTIONS(2065), - [sym___c_double_quote] = ACTIONS(2065), - [sym___c_single_quote] = ACTIONS(2065), - [sym___r_double_quote] = ACTIONS(2065), - [sym___r_single_quote] = ACTIONS(2065), + [sym_line_comment] = STATE(1313), + [sym_block_comment] = STATE(1313), + [sym_identifier] = ACTIONS(2747), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), }, [1314] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1865), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3889), - [anon_sym_fn] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_GT] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_LT_EQ] = ACTIONS(1863), - [anon_sym_GT_EQ] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(1865), - [anon_sym_mut] = ACTIONS(1865), - [anon_sym_COLON] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1865), - [anon_sym_spawn] = ACTIONS(1865), - [anon_sym_json_DOTdecode] = ACTIONS(1863), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(1863), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_GT_GT_GT] = ACTIONS(3891), - [anon_sym_AMP_CARET] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(1863), - [anon_sym_PIPE_PIPE] = ACTIONS(1863), - [anon_sym_or] = ACTIONS(1865), - [sym_none] = ACTIONS(1865), - [sym_true] = ACTIONS(1865), - [sym_false] = ACTIONS(1865), - [sym_nil] = ACTIONS(1865), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1865), - [anon_sym_is] = ACTIONS(1865), - [anon_sym_BANGis] = ACTIONS(1863), - [anon_sym_in] = ACTIONS(1865), - [anon_sym_BANGin] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_select] = ACTIONS(1865), - [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(1863), - [sym_rune_literal] = ACTIONS(1863), - [sym_pseudo_compile_time_identifier] = ACTIONS(1865), - [anon_sym_shared] = ACTIONS(1865), - [anon_sym_map_LBRACK] = ACTIONS(1863), - [anon_sym_chan] = ACTIONS(1865), - [anon_sym_thread] = ACTIONS(1865), - [anon_sym_atomic] = ACTIONS(1865), - [sym___double_quote] = ACTIONS(1863), - [sym___single_quote] = ACTIONS(1863), - [sym___c_double_quote] = ACTIONS(1863), - [sym___c_single_quote] = ACTIONS(1863), - [sym___r_double_quote] = ACTIONS(1863), - [sym___r_single_quote] = ACTIONS(1863), + [sym_line_comment] = STATE(1314), + [sym_block_comment] = STATE(1314), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [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(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_COLON] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3875), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3897), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1879), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1879), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(3907), + [anon_sym_BANGin] = ACTIONS(3909), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [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), }, [1315] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3889), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_COLON] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1941), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(1941), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_GT_GT_GT] = ACTIONS(3891), - [anon_sym_AMP_CARET] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(1941), - [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(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1941), - [anon_sym_in] = ACTIONS(3917), - [anon_sym_BANGin] = ACTIONS(3919), - [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(1941), - [sym_rune_literal] = ACTIONS(1941), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1941), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1941), - [sym___single_quote] = ACTIONS(1941), - [sym___c_double_quote] = ACTIONS(1941), - [sym___c_single_quote] = ACTIONS(1941), - [sym___r_double_quote] = ACTIONS(1941), - [sym___r_single_quote] = ACTIONS(1941), + [sym_line_comment] = STATE(1315), + [sym_block_comment] = STATE(1315), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1875), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_fn] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_GT] = ACTIONS(1875), + [anon_sym_EQ_EQ] = ACTIONS(1873), + [anon_sym_BANG_EQ] = ACTIONS(1873), + [anon_sym_LT_EQ] = ACTIONS(1873), + [anon_sym_GT_EQ] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_COLON] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1875), + [anon_sym_spawn] = ACTIONS(1875), + [anon_sym_json_DOTdecode] = ACTIONS(1873), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3875), + [anon_sym_LT_DASH] = ACTIONS(1873), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_PIPE_PIPE] = ACTIONS(1873), + [anon_sym_or] = ACTIONS(1875), + [sym_none] = ACTIONS(1875), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [sym_nil] = ACTIONS(1875), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_DOLLARif] = ACTIONS(1875), + [anon_sym_is] = ACTIONS(1875), + [anon_sym_BANGis] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(1875), + [anon_sym_BANGin] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_select] = ACTIONS(1875), + [anon_sym_lock] = ACTIONS(1875), + [anon_sym_rlock] = ACTIONS(1875), + [anon_sym_unsafe] = ACTIONS(1875), + [anon_sym_sql] = ACTIONS(1875), + [sym_int_literal] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1873), + [sym_rune_literal] = ACTIONS(1873), + [sym_pseudo_compile_time_identifier] = ACTIONS(1875), + [anon_sym_shared] = ACTIONS(1875), + [anon_sym_map_LBRACK] = ACTIONS(1873), + [anon_sym_chan] = ACTIONS(1875), + [anon_sym_thread] = ACTIONS(1875), + [anon_sym_atomic] = ACTIONS(1875), + [sym___double_quote] = ACTIONS(1873), + [sym___single_quote] = ACTIONS(1873), + [sym___c_double_quote] = ACTIONS(1873), + [sym___c_single_quote] = ACTIONS(1873), + [sym___r_double_quote] = ACTIONS(1873), + [sym___r_single_quote] = ACTIONS(1873), }, [1316] = { - [sym_identifier] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2647), - [anon_sym_LT_EQ] = ACTIONS(2647), - [anon_sym_GT_EQ] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_RBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2647), - [anon_sym_AMP_CARET] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2647), - [anon_sym_POUND_LBRACK] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2647), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2647), - [sym_rune_literal] = ACTIONS(2647), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2647), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2647), - [sym___single_quote] = ACTIONS(2647), - [sym___c_double_quote] = ACTIONS(2647), - [sym___c_single_quote] = ACTIONS(2647), - [sym___r_double_quote] = ACTIONS(2647), - [sym___r_single_quote] = ACTIONS(2647), + [sym_line_comment] = STATE(1316), + [sym_block_comment] = STATE(1316), + [sym_identifier] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_COMMA] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_LPAREN] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_PERCENT] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2831), + [anon_sym_BANG_EQ] = ACTIONS(2831), + [anon_sym_LT_EQ] = ACTIONS(2831), + [anon_sym_GT_EQ] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_RBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_COLON] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2831), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_CARET] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2831), + [anon_sym_LT_LT] = ACTIONS(2831), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2831), + [anon_sym_AMP_CARET] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2831), + [anon_sym_POUND_LBRACK] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2831), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2831), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2831), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [sym___double_quote] = ACTIONS(2831), + [sym___single_quote] = ACTIONS(2831), + [sym___c_double_quote] = ACTIONS(2831), + [sym___c_single_quote] = ACTIONS(2831), + [sym___r_double_quote] = ACTIONS(2831), + [sym___r_single_quote] = ACTIONS(2831), }, [1317] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1849), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3921), - [anon_sym_fn] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_SLASH] = ACTIONS(3925), - [anon_sym_PERCENT] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3931), - [anon_sym_GT] = ACTIONS(3931), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(1847), - [anon_sym_struct] = ACTIONS(1849), - [anon_sym_mut] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3903), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1849), - [anon_sym_spawn] = ACTIONS(1849), - [anon_sym_json_DOTdecode] = ACTIONS(1847), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(3927), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_LT_DASH] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(3923), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_GT_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_CARET] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3935), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_or] = ACTIONS(3911), - [sym_none] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_nil] = ACTIONS(1849), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_DOLLARif] = ACTIONS(1849), - [anon_sym_is] = ACTIONS(3913), - [anon_sym_BANGis] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3937), - [anon_sym_BANGin] = ACTIONS(3939), - [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), + [sym_line_comment] = STATE(1317), + [sym_block_comment] = STATE(1317), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1875), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_COMMA] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_fn] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_GT] = ACTIONS(1875), + [anon_sym_EQ_EQ] = ACTIONS(1873), + [anon_sym_BANG_EQ] = ACTIONS(1873), + [anon_sym_LT_EQ] = ACTIONS(1873), + [anon_sym_GT_EQ] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1873), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1875), + [anon_sym_spawn] = ACTIONS(1875), + [anon_sym_json_DOTdecode] = ACTIONS(1873), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_LT_DASH] = ACTIONS(1873), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_PIPE_PIPE] = ACTIONS(1873), + [anon_sym_or] = ACTIONS(1875), + [sym_none] = ACTIONS(1875), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [sym_nil] = ACTIONS(1875), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_DOLLARif] = ACTIONS(1875), + [anon_sym_is] = ACTIONS(1875), + [anon_sym_BANGis] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(1875), + [anon_sym_BANGin] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_select] = ACTIONS(1875), + [anon_sym_lock] = ACTIONS(1875), + [anon_sym_rlock] = ACTIONS(1875), + [anon_sym_unsafe] = ACTIONS(1875), + [anon_sym_sql] = ACTIONS(1875), + [sym_int_literal] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1873), + [sym_rune_literal] = ACTIONS(1873), + [sym_pseudo_compile_time_identifier] = ACTIONS(1875), + [anon_sym_shared] = ACTIONS(1875), + [anon_sym_map_LBRACK] = ACTIONS(1873), + [anon_sym_chan] = ACTIONS(1875), + [anon_sym_thread] = ACTIONS(1875), + [anon_sym_atomic] = ACTIONS(1875), + [sym___double_quote] = ACTIONS(1873), + [sym___single_quote] = ACTIONS(1873), + [sym___c_double_quote] = ACTIONS(1873), + [sym___c_single_quote] = ACTIONS(1873), + [sym___r_double_quote] = ACTIONS(1873), + [sym___r_single_quote] = ACTIONS(1873), }, [1318] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1861), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3921), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_SLASH] = ACTIONS(3925), - [anon_sym_PERCENT] = ACTIONS(3923), - [anon_sym_LT] = ACTIONS(3931), - [anon_sym_GT] = ACTIONS(3931), - [anon_sym_EQ_EQ] = ACTIONS(3933), - [anon_sym_BANG_EQ] = ACTIONS(3933), - [anon_sym_LT_EQ] = ACTIONS(3933), - [anon_sym_GT_EQ] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3903), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1861), - [anon_sym_spawn] = ACTIONS(1861), - [anon_sym_json_DOTdecode] = ACTIONS(1859), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_CARET] = ACTIONS(3927), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_LT_DASH] = ACTIONS(1859), - [anon_sym_LT_LT] = ACTIONS(3923), - [anon_sym_GT_GT] = ACTIONS(3925), - [anon_sym_GT_GT_GT] = ACTIONS(3923), - [anon_sym_AMP_CARET] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3935), - [anon_sym_PIPE_PIPE] = ACTIONS(3949), - [anon_sym_or] = ACTIONS(3911), - [sym_none] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_nil] = ACTIONS(1861), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_DOLLARif] = ACTIONS(1861), - [anon_sym_is] = ACTIONS(3913), - [anon_sym_BANGis] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3937), - [anon_sym_BANGin] = ACTIONS(3939), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_select] = ACTIONS(1861), - [anon_sym_lock] = ACTIONS(1861), - [anon_sym_rlock] = ACTIONS(1861), - [anon_sym_unsafe] = ACTIONS(1861), - [anon_sym_sql] = ACTIONS(1861), - [sym_int_literal] = ACTIONS(1861), - [sym_float_literal] = ACTIONS(1859), - [sym_rune_literal] = ACTIONS(1859), - [sym_pseudo_compile_time_identifier] = ACTIONS(1861), - [anon_sym_shared] = ACTIONS(1861), - [anon_sym_map_LBRACK] = ACTIONS(1859), - [anon_sym_chan] = ACTIONS(1861), - [anon_sym_thread] = ACTIONS(1861), - [anon_sym_atomic] = ACTIONS(1861), - [sym___double_quote] = ACTIONS(1859), - [sym___single_quote] = ACTIONS(1859), - [sym___c_double_quote] = ACTIONS(1859), - [sym___c_single_quote] = ACTIONS(1859), - [sym___r_double_quote] = ACTIONS(1859), - [sym___r_single_quote] = ACTIONS(1859), + [sym_line_comment] = STATE(1318), + [sym_block_comment] = STATE(1318), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1869), + [anon_sym_BANG_EQ] = ACTIONS(1869), + [anon_sym_LT_EQ] = ACTIONS(1869), + [anon_sym_GT_EQ] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1871), + [anon_sym_spawn] = ACTIONS(1871), + [anon_sym_json_DOTdecode] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3875), + [anon_sym_LT_DASH] = ACTIONS(1869), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(1869), + [anon_sym_PIPE_PIPE] = ACTIONS(1869), + [anon_sym_or] = ACTIONS(1871), + [sym_none] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_nil] = ACTIONS(1871), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_DOLLARif] = ACTIONS(1871), + [anon_sym_is] = ACTIONS(1871), + [anon_sym_BANGis] = ACTIONS(1869), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_BANGin] = ACTIONS(1869), + [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), }, [1319] = { - [sym_identifier] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2685), - [anon_sym_as] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_COMMA] = ACTIONS(2683), - [anon_sym_RBRACE] = ACTIONS(2683), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_fn] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_SLASH] = ACTIONS(2685), - [anon_sym_PERCENT] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_GT] = ACTIONS(2685), - [anon_sym_EQ_EQ] = ACTIONS(2683), - [anon_sym_BANG_EQ] = ACTIONS(2683), - [anon_sym_LT_EQ] = ACTIONS(2683), - [anon_sym_GT_EQ] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_RBRACK] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_mut] = ACTIONS(2685), - [anon_sym_COLON] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_QMARK] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_go] = ACTIONS(2685), - [anon_sym_spawn] = ACTIONS(2685), - [anon_sym_json_DOTdecode] = ACTIONS(2683), - [anon_sym_LBRACK2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_CARET] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_LT_DASH] = ACTIONS(2683), - [anon_sym_LT_LT] = ACTIONS(2683), - [anon_sym_GT_GT] = ACTIONS(2685), - [anon_sym_GT_GT_GT] = ACTIONS(2683), - [anon_sym_AMP_CARET] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_PIPE_PIPE] = ACTIONS(2683), - [anon_sym_or] = ACTIONS(2685), - [sym_none] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nil] = ACTIONS(2685), - [anon_sym_QMARK_DOT] = ACTIONS(2683), - [anon_sym_POUND_LBRACK] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_else] = ACTIONS(2685), - [anon_sym_DOLLARif] = ACTIONS(2685), - [anon_sym_is] = ACTIONS(2685), - [anon_sym_BANGis] = ACTIONS(2683), - [anon_sym_in] = ACTIONS(2685), - [anon_sym_BANGin] = ACTIONS(2683), - [anon_sym_match] = ACTIONS(2685), - [anon_sym_select] = ACTIONS(2685), - [anon_sym_lock] = ACTIONS(2685), - [anon_sym_rlock] = ACTIONS(2685), - [anon_sym_unsafe] = ACTIONS(2685), - [anon_sym_sql] = ACTIONS(2685), - [sym_int_literal] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2683), - [sym_rune_literal] = ACTIONS(2683), - [sym_pseudo_compile_time_identifier] = ACTIONS(2685), - [anon_sym_shared] = ACTIONS(2685), - [anon_sym_map_LBRACK] = ACTIONS(2683), - [anon_sym_chan] = ACTIONS(2685), - [anon_sym_thread] = ACTIONS(2685), - [anon_sym_atomic] = ACTIONS(2685), - [sym___double_quote] = ACTIONS(2683), - [sym___single_quote] = ACTIONS(2683), - [sym___c_double_quote] = ACTIONS(2683), - [sym___c_single_quote] = ACTIONS(2683), - [sym___r_double_quote] = ACTIONS(2683), - [sym___r_single_quote] = ACTIONS(2683), + [sym_line_comment] = STATE(1319), + [sym_block_comment] = STATE(1319), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1937), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_fn] = ACTIONS(1937), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3919), + [anon_sym_GT] = ACTIONS(3919), + [anon_sym_EQ_EQ] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_LT_EQ] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1935), + [anon_sym_struct] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [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(1937), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1935), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_CARET] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_LT_DASH] = ACTIONS(1935), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3901), + [sym_none] = ACTIONS(1937), + [sym_true] = ACTIONS(1937), + [sym_false] = ACTIONS(1937), + [sym_nil] = ACTIONS(1937), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_DOLLARif] = ACTIONS(1937), + [anon_sym_is] = ACTIONS(3903), + [anon_sym_BANGis] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3927), + [anon_sym_BANGin] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_select] = ACTIONS(1937), + [anon_sym_lock] = ACTIONS(1937), + [anon_sym_rlock] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_sql] = ACTIONS(1937), + [sym_int_literal] = ACTIONS(1937), + [sym_float_literal] = ACTIONS(1935), + [sym_rune_literal] = ACTIONS(1935), + [sym_pseudo_compile_time_identifier] = ACTIONS(1937), + [anon_sym_shared] = ACTIONS(1937), + [anon_sym_map_LBRACK] = ACTIONS(1935), + [anon_sym_chan] = ACTIONS(1937), + [anon_sym_thread] = ACTIONS(1937), + [anon_sym_atomic] = ACTIONS(1937), + [sym___double_quote] = ACTIONS(1935), + [sym___single_quote] = ACTIONS(1935), + [sym___c_double_quote] = ACTIONS(1935), + [sym___c_single_quote] = ACTIONS(1935), + [sym___r_double_quote] = ACTIONS(1935), + [sym___r_single_quote] = ACTIONS(1935), }, [1320] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3889), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_COLON] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1941), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(1941), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_GT_GT_GT] = ACTIONS(3891), - [anon_sym_AMP_CARET] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(1941), - [anon_sym_PIPE_PIPE] = ACTIONS(1941), - [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(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1941), - [anon_sym_in] = ACTIONS(3917), - [anon_sym_BANGin] = ACTIONS(3919), - [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(1941), - [sym_rune_literal] = ACTIONS(1941), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1941), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1941), - [sym___single_quote] = ACTIONS(1941), - [sym___c_double_quote] = ACTIONS(1941), - [sym___c_single_quote] = ACTIONS(1941), - [sym___r_double_quote] = ACTIONS(1941), - [sym___r_single_quote] = ACTIONS(1941), + [sym_line_comment] = STATE(1320), + [sym_block_comment] = STATE(1320), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1931), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_fn] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3919), + [anon_sym_GT] = ACTIONS(3919), + [anon_sym_EQ_EQ] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_LT_EQ] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(1931), + [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(1931), + [anon_sym_spawn] = ACTIONS(1931), + [anon_sym_json_DOTdecode] = ACTIONS(1929), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_LT_DASH] = ACTIONS(1929), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3901), + [sym_none] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_nil] = ACTIONS(1931), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_DOLLARif] = ACTIONS(1931), + [anon_sym_is] = ACTIONS(3903), + [anon_sym_BANGis] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3927), + [anon_sym_BANGin] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_select] = ACTIONS(1931), + [anon_sym_lock] = ACTIONS(1931), + [anon_sym_rlock] = ACTIONS(1931), + [anon_sym_unsafe] = ACTIONS(1931), + [anon_sym_sql] = ACTIONS(1931), + [sym_int_literal] = ACTIONS(1931), + [sym_float_literal] = ACTIONS(1929), + [sym_rune_literal] = ACTIONS(1929), + [sym_pseudo_compile_time_identifier] = ACTIONS(1931), + [anon_sym_shared] = ACTIONS(1931), + [anon_sym_map_LBRACK] = ACTIONS(1929), + [anon_sym_chan] = ACTIONS(1931), + [anon_sym_thread] = ACTIONS(1931), + [anon_sym_atomic] = ACTIONS(1931), + [sym___double_quote] = ACTIONS(1929), + [sym___single_quote] = ACTIONS(1929), + [sym___c_double_quote] = ACTIONS(1929), + [sym___c_single_quote] = ACTIONS(1929), + [sym___r_double_quote] = ACTIONS(1929), + [sym___r_single_quote] = ACTIONS(1929), }, [1321] = { - [sym_identifier] = ACTIONS(3209), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_DOT] = ACTIONS(3209), - [anon_sym_as] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_COMMA] = ACTIONS(3207), - [anon_sym_RBRACE] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3209), - [anon_sym_fn] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_PERCENT] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_GT] = ACTIONS(3209), - [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(3207), - [anon_sym_RBRACK] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3209), - [anon_sym_mut] = ACTIONS(3209), - [anon_sym_COLON] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_QMARK] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_go] = ACTIONS(3209), - [anon_sym_spawn] = ACTIONS(3209), - [anon_sym_json_DOTdecode] = ACTIONS(3207), - [anon_sym_LBRACK2] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3209), - [anon_sym_LT_DASH] = ACTIONS(3207), - [anon_sym_LT_LT] = ACTIONS(3207), - [anon_sym_GT_GT] = ACTIONS(3209), - [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(3209), - [sym_none] = ACTIONS(3209), - [sym_true] = ACTIONS(3209), - [sym_false] = ACTIONS(3209), - [sym_nil] = ACTIONS(3209), - [anon_sym_QMARK_DOT] = ACTIONS(3207), - [anon_sym_POUND_LBRACK] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_DOLLARif] = ACTIONS(3209), - [anon_sym_is] = ACTIONS(3209), - [anon_sym_BANGis] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3209), - [anon_sym_BANGin] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3209), - [anon_sym_select] = ACTIONS(3209), - [anon_sym_lock] = ACTIONS(3209), - [anon_sym_rlock] = ACTIONS(3209), - [anon_sym_unsafe] = ACTIONS(3209), - [anon_sym_sql] = ACTIONS(3209), - [sym_int_literal] = ACTIONS(3209), - [sym_float_literal] = ACTIONS(3207), - [sym_rune_literal] = ACTIONS(3207), - [sym_pseudo_compile_time_identifier] = ACTIONS(3209), - [anon_sym_shared] = ACTIONS(3209), - [anon_sym_map_LBRACK] = ACTIONS(3207), - [anon_sym_chan] = ACTIONS(3209), - [anon_sym_thread] = ACTIONS(3209), - [anon_sym_atomic] = ACTIONS(3209), - [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_line_comment] = STATE(1321), + [sym_block_comment] = STATE(1321), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1869), + [anon_sym_BANG_EQ] = ACTIONS(1869), + [anon_sym_LT_EQ] = ACTIONS(1869), + [anon_sym_GT_EQ] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1869), + [anon_sym_struct] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1871), + [anon_sym_spawn] = ACTIONS(1871), + [anon_sym_json_DOTdecode] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_LT_DASH] = ACTIONS(1869), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(1869), + [anon_sym_PIPE_PIPE] = ACTIONS(1869), + [anon_sym_or] = ACTIONS(1871), + [sym_none] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_nil] = ACTIONS(1871), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_DOLLARif] = ACTIONS(1871), + [anon_sym_is] = ACTIONS(1871), + [anon_sym_BANGis] = ACTIONS(1869), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_BANGin] = ACTIONS(1869), + [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), }, [1322] = { - [sym_identifier] = ACTIONS(3440), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_DOT] = ACTIONS(3440), - [anon_sym_as] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_COMMA] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_PIPE] = ACTIONS(3440), - [anon_sym_fn] = ACTIONS(3440), - [anon_sym_PLUS] = ACTIONS(3440), - [anon_sym_DASH] = ACTIONS(3440), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_SLASH] = ACTIONS(3440), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3440), - [anon_sym_GT] = ACTIONS(3440), - [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(3438), - [anon_sym_RBRACK] = ACTIONS(3438), - [anon_sym_struct] = ACTIONS(3440), - [anon_sym_mut] = ACTIONS(3440), - [anon_sym_COLON] = ACTIONS(3438), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_QMARK] = ACTIONS(3440), - [anon_sym_BANG] = ACTIONS(3440), - [anon_sym_go] = ACTIONS(3440), - [anon_sym_spawn] = ACTIONS(3440), - [anon_sym_json_DOTdecode] = ACTIONS(3438), - [anon_sym_LBRACK2] = ACTIONS(3440), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_CARET] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3440), - [anon_sym_LT_DASH] = ACTIONS(3438), - [anon_sym_LT_LT] = ACTIONS(3438), - [anon_sym_GT_GT] = ACTIONS(3440), - [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(3440), - [sym_none] = ACTIONS(3440), - [sym_true] = ACTIONS(3440), - [sym_false] = ACTIONS(3440), - [sym_nil] = ACTIONS(3440), - [anon_sym_QMARK_DOT] = ACTIONS(3438), - [anon_sym_POUND_LBRACK] = ACTIONS(3438), - [anon_sym_if] = ACTIONS(3440), - [anon_sym_DOLLARif] = ACTIONS(3440), - [anon_sym_is] = ACTIONS(3440), - [anon_sym_BANGis] = ACTIONS(3438), - [anon_sym_in] = ACTIONS(3440), - [anon_sym_BANGin] = ACTIONS(3438), - [anon_sym_match] = ACTIONS(3440), - [anon_sym_select] = ACTIONS(3440), - [anon_sym_lock] = ACTIONS(3440), - [anon_sym_rlock] = ACTIONS(3440), - [anon_sym_unsafe] = ACTIONS(3440), - [anon_sym_sql] = ACTIONS(3440), - [sym_int_literal] = ACTIONS(3440), - [sym_float_literal] = ACTIONS(3438), - [sym_rune_literal] = ACTIONS(3438), - [sym_pseudo_compile_time_identifier] = ACTIONS(3440), - [anon_sym_shared] = ACTIONS(3440), - [anon_sym_map_LBRACK] = ACTIONS(3438), - [anon_sym_chan] = ACTIONS(3440), - [anon_sym_thread] = ACTIONS(3440), - [anon_sym_atomic] = ACTIONS(3440), - [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), + [sym_line_comment] = STATE(1322), + [sym_block_comment] = STATE(1322), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(3935), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_fn] = ACTIONS(3935), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3919), + [anon_sym_GT] = ACTIONS(3919), + [anon_sym_EQ_EQ] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_LT_EQ] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(3937), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_mut] = ACTIONS(3935), + [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(3935), + [anon_sym_spawn] = ACTIONS(3935), + [anon_sym_json_DOTdecode] = ACTIONS(3937), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3937), + [anon_sym_CARET] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3913), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_or] = ACTIONS(3901), + [sym_none] = ACTIONS(3935), + [sym_true] = ACTIONS(3935), + [sym_false] = ACTIONS(3935), + [sym_nil] = ACTIONS(3935), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(3935), + [anon_sym_DOLLARif] = ACTIONS(3935), + [anon_sym_is] = ACTIONS(3903), + [anon_sym_BANGis] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3927), + [anon_sym_BANGin] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3935), + [anon_sym_select] = ACTIONS(3935), + [anon_sym_lock] = ACTIONS(3935), + [anon_sym_rlock] = ACTIONS(3935), + [anon_sym_unsafe] = ACTIONS(3935), + [anon_sym_sql] = ACTIONS(3935), + [sym_int_literal] = ACTIONS(3935), + [sym_float_literal] = ACTIONS(3937), + [sym_rune_literal] = ACTIONS(3937), + [sym_pseudo_compile_time_identifier] = ACTIONS(3935), + [anon_sym_shared] = ACTIONS(3935), + [anon_sym_map_LBRACK] = ACTIONS(3937), + [anon_sym_chan] = ACTIONS(3935), + [anon_sym_thread] = ACTIONS(3935), + [anon_sym_atomic] = ACTIONS(3935), + [sym___double_quote] = ACTIONS(3937), + [sym___single_quote] = ACTIONS(3937), + [sym___c_double_quote] = ACTIONS(3937), + [sym___c_single_quote] = ACTIONS(3937), + [sym___r_double_quote] = ACTIONS(3937), + [sym___r_single_quote] = ACTIONS(3937), }, [1323] = { - [sym_identifier] = ACTIONS(3283), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3281), - [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_line_comment] = STATE(1323), + [sym_block_comment] = STATE(1323), + [sym_identifier] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_as] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_COMMA] = ACTIONS(2827), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_PERCENT] = ACTIONS(2827), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_EQ_EQ] = ACTIONS(2827), + [anon_sym_BANG_EQ] = ACTIONS(2827), + [anon_sym_LT_EQ] = ACTIONS(2827), + [anon_sym_GT_EQ] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_RBRACK] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_COLON] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2827), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_CARET] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2827), + [anon_sym_LT_LT] = ACTIONS(2827), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2827), + [anon_sym_AMP_CARET] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_PIPE_PIPE] = ACTIONS(2827), + [anon_sym_or] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_QMARK_DOT] = ACTIONS(2827), + [anon_sym_POUND_LBRACK] = ACTIONS(2827), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_else] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_is] = ACTIONS(2829), + [anon_sym_BANGis] = ACTIONS(2827), + [anon_sym_in] = ACTIONS(2829), + [anon_sym_BANGin] = ACTIONS(2827), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2827), + [sym_rune_literal] = ACTIONS(2827), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2827), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [sym___double_quote] = ACTIONS(2827), + [sym___single_quote] = ACTIONS(2827), + [sym___c_double_quote] = ACTIONS(2827), + [sym___c_single_quote] = ACTIONS(2827), + [sym___r_double_quote] = ACTIONS(2827), + [sym___r_single_quote] = ACTIONS(2827), }, [1324] = { - [sym_identifier] = ACTIONS(3356), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_as] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_COMMA] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3356), - [anon_sym_fn] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_GT] = ACTIONS(3356), - [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(3354), - [anon_sym_RBRACK] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(3356), - [anon_sym_mut] = ACTIONS(3356), - [anon_sym_COLON] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(3356), - [anon_sym_spawn] = ACTIONS(3356), - [anon_sym_json_DOTdecode] = ACTIONS(3354), - [anon_sym_LBRACK2] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3354), - [anon_sym_GT_GT] = ACTIONS(3356), - [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(3356), - [sym_none] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_nil] = ACTIONS(3356), - [anon_sym_QMARK_DOT] = ACTIONS(3354), - [anon_sym_POUND_LBRACK] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_DOLLARif] = ACTIONS(3356), - [anon_sym_is] = ACTIONS(3356), - [anon_sym_BANGis] = ACTIONS(3354), - [anon_sym_in] = ACTIONS(3356), - [anon_sym_BANGin] = ACTIONS(3354), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_select] = ACTIONS(3356), - [anon_sym_lock] = ACTIONS(3356), - [anon_sym_rlock] = ACTIONS(3356), - [anon_sym_unsafe] = ACTIONS(3356), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(3356), - [sym_float_literal] = ACTIONS(3354), - [sym_rune_literal] = ACTIONS(3354), - [sym_pseudo_compile_time_identifier] = ACTIONS(3356), - [anon_sym_shared] = ACTIONS(3356), - [anon_sym_map_LBRACK] = ACTIONS(3354), - [anon_sym_chan] = ACTIONS(3356), - [anon_sym_thread] = ACTIONS(3356), - [anon_sym_atomic] = ACTIONS(3356), - [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), + [sym_line_comment] = STATE(1324), + [sym_block_comment] = STATE(1324), + [sym_identifier] = ACTIONS(3129), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_DOT] = ACTIONS(3129), + [anon_sym_as] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_PIPE] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3129), + [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(3127), + [anon_sym_RBRACK] = ACTIONS(3127), + [anon_sym_struct] = ACTIONS(3129), + [anon_sym_mut] = ACTIONS(3129), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_PLUS_PLUS] = ACTIONS(3127), + [anon_sym_DASH_DASH] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_go] = ACTIONS(3129), + [anon_sym_spawn] = ACTIONS(3129), + [anon_sym_json_DOTdecode] = ACTIONS(3127), + [anon_sym_LBRACK2] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_CARET] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_LT_LT] = ACTIONS(3127), + [anon_sym_GT_GT] = ACTIONS(3129), + [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(3129), + [sym_none] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_nil] = ACTIONS(3129), + [anon_sym_QMARK_DOT] = ACTIONS(3127), + [anon_sym_POUND_LBRACK] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_DOLLARif] = ACTIONS(3129), + [anon_sym_is] = ACTIONS(3129), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_in] = ACTIONS(3129), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3129), + [anon_sym_select] = ACTIONS(3129), + [anon_sym_lock] = ACTIONS(3129), + [anon_sym_rlock] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(3129), + [anon_sym_sql] = ACTIONS(3129), + [sym_int_literal] = ACTIONS(3129), + [sym_float_literal] = ACTIONS(3127), + [sym_rune_literal] = ACTIONS(3127), + [sym_pseudo_compile_time_identifier] = ACTIONS(3129), + [anon_sym_shared] = ACTIONS(3129), + [anon_sym_map_LBRACK] = ACTIONS(3127), + [anon_sym_chan] = ACTIONS(3129), + [anon_sym_thread] = ACTIONS(3129), + [anon_sym_atomic] = ACTIONS(3129), + [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), }, [1325] = { - [sym_identifier] = ACTIONS(3332), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3332), - [anon_sym_as] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_PIPE] = ACTIONS(3332), - [anon_sym_fn] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_GT] = ACTIONS(3332), - [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(3330), - [anon_sym_RBRACK] = ACTIONS(3330), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_mut] = ACTIONS(3332), - [anon_sym_COLON] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_QMARK] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_go] = ACTIONS(3332), - [anon_sym_spawn] = ACTIONS(3332), - [anon_sym_json_DOTdecode] = ACTIONS(3330), - [anon_sym_LBRACK2] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_CARET] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_LT_DASH] = ACTIONS(3330), - [anon_sym_LT_LT] = ACTIONS(3330), - [anon_sym_GT_GT] = ACTIONS(3332), - [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(3332), - [sym_none] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_nil] = ACTIONS(3332), - [anon_sym_QMARK_DOT] = ACTIONS(3330), - [anon_sym_POUND_LBRACK] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_DOLLARif] = ACTIONS(3332), - [anon_sym_is] = ACTIONS(3332), - [anon_sym_BANGis] = ACTIONS(3330), - [anon_sym_in] = ACTIONS(3332), - [anon_sym_BANGin] = ACTIONS(3330), - [anon_sym_match] = ACTIONS(3332), - [anon_sym_select] = ACTIONS(3332), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3332), - [anon_sym_sql] = ACTIONS(3332), - [sym_int_literal] = ACTIONS(3332), - [sym_float_literal] = ACTIONS(3330), - [sym_rune_literal] = ACTIONS(3330), - [sym_pseudo_compile_time_identifier] = ACTIONS(3332), - [anon_sym_shared] = ACTIONS(3332), - [anon_sym_map_LBRACK] = ACTIONS(3330), - [anon_sym_chan] = ACTIONS(3332), - [anon_sym_thread] = ACTIONS(3332), - [anon_sym_atomic] = ACTIONS(3332), - [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), + [sym_line_comment] = STATE(1325), + [sym_block_comment] = STATE(1325), + [sym_identifier] = ACTIONS(3125), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_DOT] = ACTIONS(3125), + [anon_sym_as] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_GT] = ACTIONS(3125), + [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(3123), + [anon_sym_RBRACK] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_mut] = ACTIONS(3125), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_go] = ACTIONS(3125), + [anon_sym_spawn] = ACTIONS(3125), + [anon_sym_json_DOTdecode] = ACTIONS(3123), + [anon_sym_LBRACK2] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_CARET] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3125), + [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(3125), + [sym_none] = ACTIONS(3125), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [sym_nil] = ACTIONS(3125), + [anon_sym_QMARK_DOT] = ACTIONS(3123), + [anon_sym_POUND_LBRACK] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_DOLLARif] = ACTIONS(3125), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3123), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_BANGin] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3125), + [anon_sym_select] = ACTIONS(3125), + [anon_sym_lock] = ACTIONS(3125), + [anon_sym_rlock] = ACTIONS(3125), + [anon_sym_unsafe] = ACTIONS(3125), + [anon_sym_sql] = ACTIONS(3125), + [sym_int_literal] = ACTIONS(3125), + [sym_float_literal] = ACTIONS(3123), + [sym_rune_literal] = ACTIONS(3123), + [sym_pseudo_compile_time_identifier] = ACTIONS(3125), + [anon_sym_shared] = ACTIONS(3125), + [anon_sym_map_LBRACK] = ACTIONS(3123), + [anon_sym_chan] = ACTIONS(3125), + [anon_sym_thread] = ACTIONS(3125), + [anon_sym_atomic] = ACTIONS(3125), + [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), }, [1326] = { - [sym_identifier] = ACTIONS(3181), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [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(3179), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_COLON] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3179), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3181), - [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(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3179), - [anon_sym_POUND_LBRACK] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3179), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3179), - [sym_rune_literal] = ACTIONS(3179), - [sym_pseudo_compile_time_identifier] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3179), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [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_line_comment] = STATE(1326), + [sym_block_comment] = STATE(1326), + [sym_identifier] = ACTIONS(3059), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym_DOT] = ACTIONS(3059), + [anon_sym_as] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_COMMA] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_PIPE] = ACTIONS(3059), + [anon_sym_fn] = ACTIONS(3059), + [anon_sym_PLUS] = ACTIONS(3059), + [anon_sym_DASH] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_PERCENT] = ACTIONS(3057), + [anon_sym_LT] = ACTIONS(3059), + [anon_sym_GT] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_LT_EQ] = ACTIONS(3057), + [anon_sym_GT_EQ] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_RBRACK] = ACTIONS(3057), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_mut] = ACTIONS(3059), + [anon_sym_COLON] = ACTIONS(3057), + [anon_sym_PLUS_PLUS] = ACTIONS(3057), + [anon_sym_DASH_DASH] = ACTIONS(3057), + [anon_sym_QMARK] = ACTIONS(3059), + [anon_sym_BANG] = ACTIONS(3059), + [anon_sym_go] = ACTIONS(3059), + [anon_sym_spawn] = ACTIONS(3059), + [anon_sym_json_DOTdecode] = ACTIONS(3057), + [anon_sym_LBRACK2] = ACTIONS(3059), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_CARET] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_LT_DASH] = ACTIONS(3057), + [anon_sym_LT_LT] = ACTIONS(3057), + [anon_sym_GT_GT] = ACTIONS(3059), + [anon_sym_GT_GT_GT] = ACTIONS(3057), + [anon_sym_AMP_CARET] = ACTIONS(3057), + [anon_sym_AMP_AMP] = ACTIONS(3057), + [anon_sym_PIPE_PIPE] = ACTIONS(3057), + [anon_sym_or] = ACTIONS(3059), + [sym_none] = ACTIONS(3059), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [sym_nil] = ACTIONS(3059), + [anon_sym_QMARK_DOT] = ACTIONS(3057), + [anon_sym_POUND_LBRACK] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_DOLLARif] = ACTIONS(3059), + [anon_sym_is] = ACTIONS(3059), + [anon_sym_BANGis] = ACTIONS(3057), + [anon_sym_in] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(3057), + [anon_sym_match] = ACTIONS(3059), + [anon_sym_select] = ACTIONS(3059), + [anon_sym_lock] = ACTIONS(3059), + [anon_sym_rlock] = ACTIONS(3059), + [anon_sym_unsafe] = ACTIONS(3059), + [anon_sym_sql] = ACTIONS(3059), + [sym_int_literal] = ACTIONS(3059), + [sym_float_literal] = ACTIONS(3057), + [sym_rune_literal] = ACTIONS(3057), + [sym_pseudo_compile_time_identifier] = ACTIONS(3059), + [anon_sym_shared] = ACTIONS(3059), + [anon_sym_map_LBRACK] = ACTIONS(3057), + [anon_sym_chan] = ACTIONS(3059), + [anon_sym_thread] = ACTIONS(3059), + [anon_sym_atomic] = ACTIONS(3059), + [sym___double_quote] = ACTIONS(3057), + [sym___single_quote] = ACTIONS(3057), + [sym___c_double_quote] = ACTIONS(3057), + [sym___c_single_quote] = ACTIONS(3057), + [sym___r_double_quote] = ACTIONS(3057), + [sym___r_single_quote] = ACTIONS(3057), }, [1327] = { - [sym_identifier] = ACTIONS(2651), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_as] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2651), - [anon_sym_fn] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2651), - [anon_sym_GT] = ACTIONS(2651), - [anon_sym_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_RBRACK] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_mut] = ACTIONS(2651), - [anon_sym_COLON] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_go] = ACTIONS(2651), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(2653), - [anon_sym_LBRACK2] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT] = ACTIONS(2651), - [anon_sym_GT_GT_GT] = ACTIONS(2653), - [anon_sym_AMP_CARET] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [sym_none] = ACTIONS(2651), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_nil] = ACTIONS(2651), - [anon_sym_QMARK_DOT] = ACTIONS(2653), - [anon_sym_POUND_LBRACK] = ACTIONS(2653), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_DOLLARif] = ACTIONS(2651), - [anon_sym_is] = ACTIONS(2651), - [anon_sym_BANGis] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2651), - [anon_sym_BANGin] = ACTIONS(2653), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_select] = ACTIONS(2651), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(2651), - [anon_sym_sql] = ACTIONS(2651), - [sym_int_literal] = ACTIONS(2651), - [sym_float_literal] = ACTIONS(2653), - [sym_rune_literal] = ACTIONS(2653), - [sym_pseudo_compile_time_identifier] = ACTIONS(2651), - [anon_sym_shared] = ACTIONS(2651), - [anon_sym_map_LBRACK] = ACTIONS(2653), - [anon_sym_chan] = ACTIONS(2651), - [anon_sym_thread] = ACTIONS(2651), - [anon_sym_atomic] = ACTIONS(2651), - [sym___double_quote] = ACTIONS(2653), - [sym___single_quote] = ACTIONS(2653), - [sym___c_double_quote] = ACTIONS(2653), - [sym___c_single_quote] = ACTIONS(2653), - [sym___r_double_quote] = ACTIONS(2653), - [sym___r_single_quote] = ACTIONS(2653), + [sym_line_comment] = STATE(1327), + [sym_block_comment] = STATE(1327), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1937), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_fn] = ACTIONS(1937), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [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(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_COLON] = ACTIONS(1935), + [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(1937), + [anon_sym_spawn] = ACTIONS(1937), + [anon_sym_json_DOTdecode] = ACTIONS(1935), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3875), + [anon_sym_LT_DASH] = ACTIONS(1935), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3897), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_or] = ACTIONS(3901), + [sym_none] = ACTIONS(1937), + [sym_true] = ACTIONS(1937), + [sym_false] = ACTIONS(1937), + [sym_nil] = ACTIONS(1937), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_DOLLARif] = ACTIONS(1937), + [anon_sym_is] = ACTIONS(3903), + [anon_sym_BANGis] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3907), + [anon_sym_BANGin] = ACTIONS(3909), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_select] = ACTIONS(1937), + [anon_sym_lock] = ACTIONS(1937), + [anon_sym_rlock] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_sql] = ACTIONS(1937), + [sym_int_literal] = ACTIONS(1937), + [sym_float_literal] = ACTIONS(1935), + [sym_rune_literal] = ACTIONS(1935), + [sym_pseudo_compile_time_identifier] = ACTIONS(1937), + [anon_sym_shared] = ACTIONS(1937), + [anon_sym_map_LBRACK] = ACTIONS(1935), + [anon_sym_chan] = ACTIONS(1937), + [anon_sym_thread] = ACTIONS(1937), + [anon_sym_atomic] = ACTIONS(1937), + [sym___double_quote] = ACTIONS(1935), + [sym___single_quote] = ACTIONS(1935), + [sym___c_double_quote] = ACTIONS(1935), + [sym___c_single_quote] = ACTIONS(1935), + [sym___r_double_quote] = ACTIONS(1935), + [sym___r_single_quote] = ACTIONS(1935), }, [1328] = { - [sym_type_parameters] = STATE(4205), - [sym_argument_list] = STATE(1348), - [sym_or_block] = STATE(1349), - [sym_identifier] = ACTIONS(3883), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_RBRACE] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_PIPE] = ACTIONS(3889), - [anon_sym_fn] = ACTIONS(3883), - [anon_sym_PLUS] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_SLASH] = ACTIONS(3893), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LBRACK] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(3883), - [anon_sym_mut] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3901), - [anon_sym_DASH_DASH] = ACTIONS(3903), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(3883), - [anon_sym_spawn] = ACTIONS(3883), - [anon_sym_json_DOTdecode] = ACTIONS(3887), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(3887), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(3887), - [anon_sym_LT_LT] = ACTIONS(3891), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_GT_GT_GT] = ACTIONS(3891), - [anon_sym_AMP_CARET] = ACTIONS(3891), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3911), - [sym_none] = ACTIONS(3883), - [sym_true] = ACTIONS(3883), - [sym_false] = ACTIONS(3883), - [sym_nil] = ACTIONS(3883), - [anon_sym_QMARK_DOT] = ACTIONS(3875), - [anon_sym_POUND_LBRACK] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(3883), - [anon_sym_DOLLARif] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3913), - [anon_sym_BANGis] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3917), - [anon_sym_BANGin] = ACTIONS(3919), - [anon_sym_match] = ACTIONS(3883), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_lock] = ACTIONS(3883), - [anon_sym_rlock] = ACTIONS(3883), - [anon_sym_unsafe] = ACTIONS(3883), - [anon_sym_sql] = ACTIONS(3883), - [sym_int_literal] = ACTIONS(3883), - [sym_float_literal] = ACTIONS(3887), - [sym_rune_literal] = ACTIONS(3887), - [sym_pseudo_compile_time_identifier] = ACTIONS(3883), - [anon_sym_shared] = ACTIONS(3883), - [anon_sym_map_LBRACK] = ACTIONS(3887), - [anon_sym_chan] = ACTIONS(3883), - [anon_sym_thread] = ACTIONS(3883), - [anon_sym_atomic] = ACTIONS(3883), - [sym___double_quote] = ACTIONS(3887), - [sym___single_quote] = ACTIONS(3887), - [sym___c_double_quote] = ACTIONS(3887), - [sym___c_single_quote] = ACTIONS(3887), - [sym___r_double_quote] = ACTIONS(3887), - [sym___r_single_quote] = ACTIONS(3887), + [sym_line_comment] = STATE(1328), + [sym_block_comment] = STATE(1328), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(1931), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_fn] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [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(1931), + [anon_sym_mut] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1929), + [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(1931), + [anon_sym_spawn] = ACTIONS(1931), + [anon_sym_json_DOTdecode] = ACTIONS(1929), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3875), + [anon_sym_LT_DASH] = ACTIONS(1929), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3897), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_or] = ACTIONS(3901), + [sym_none] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_nil] = ACTIONS(1931), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_DOLLARif] = ACTIONS(1931), + [anon_sym_is] = ACTIONS(3903), + [anon_sym_BANGis] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3907), + [anon_sym_BANGin] = ACTIONS(3909), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_select] = ACTIONS(1931), + [anon_sym_lock] = ACTIONS(1931), + [anon_sym_rlock] = ACTIONS(1931), + [anon_sym_unsafe] = ACTIONS(1931), + [anon_sym_sql] = ACTIONS(1931), + [sym_int_literal] = ACTIONS(1931), + [sym_float_literal] = ACTIONS(1929), + [sym_rune_literal] = ACTIONS(1929), + [sym_pseudo_compile_time_identifier] = ACTIONS(1931), + [anon_sym_shared] = ACTIONS(1931), + [anon_sym_map_LBRACK] = ACTIONS(1929), + [anon_sym_chan] = ACTIONS(1931), + [anon_sym_thread] = ACTIONS(1931), + [anon_sym_atomic] = ACTIONS(1931), + [sym___double_quote] = ACTIONS(1929), + [sym___single_quote] = ACTIONS(1929), + [sym___c_double_quote] = ACTIONS(1929), + [sym___c_single_quote] = ACTIONS(1929), + [sym___r_double_quote] = ACTIONS(1929), + [sym___r_single_quote] = ACTIONS(1929), }, [1329] = { - [sym_identifier] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3400), - [anon_sym_as] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3398), - [anon_sym_COMMA] = ACTIONS(3398), - [anon_sym_RBRACE] = ACTIONS(3398), - [anon_sym_LPAREN] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_fn] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_STAR] = ACTIONS(3398), - [anon_sym_SLASH] = ACTIONS(3400), - [anon_sym_PERCENT] = ACTIONS(3398), - [anon_sym_LT] = ACTIONS(3400), - [anon_sym_GT] = ACTIONS(3400), - [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(3398), - [anon_sym_RBRACK] = ACTIONS(3398), - [anon_sym_struct] = ACTIONS(3400), - [anon_sym_mut] = ACTIONS(3400), - [anon_sym_COLON] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3398), - [anon_sym_DASH_DASH] = ACTIONS(3398), - [anon_sym_QMARK] = ACTIONS(3400), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3400), - [anon_sym_json_DOTdecode] = ACTIONS(3398), - [anon_sym_LBRACK2] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_LT_DASH] = ACTIONS(3398), - [anon_sym_LT_LT] = ACTIONS(3398), - [anon_sym_GT_GT] = ACTIONS(3400), - [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(3400), - [sym_none] = ACTIONS(3400), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [sym_nil] = ACTIONS(3400), - [anon_sym_QMARK_DOT] = ACTIONS(3398), - [anon_sym_POUND_LBRACK] = ACTIONS(3398), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_DOLLARif] = ACTIONS(3400), - [anon_sym_is] = ACTIONS(3400), - [anon_sym_BANGis] = ACTIONS(3398), - [anon_sym_in] = ACTIONS(3400), - [anon_sym_BANGin] = ACTIONS(3398), - [anon_sym_match] = ACTIONS(3400), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3400), - [anon_sym_rlock] = ACTIONS(3400), - [anon_sym_unsafe] = ACTIONS(3400), - [anon_sym_sql] = ACTIONS(3400), - [sym_int_literal] = ACTIONS(3400), - [sym_float_literal] = ACTIONS(3398), - [sym_rune_literal] = ACTIONS(3398), - [sym_pseudo_compile_time_identifier] = ACTIONS(3400), - [anon_sym_shared] = ACTIONS(3400), - [anon_sym_map_LBRACK] = ACTIONS(3398), - [anon_sym_chan] = ACTIONS(3400), - [anon_sym_thread] = ACTIONS(3400), - [anon_sym_atomic] = ACTIONS(3400), - [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), + [sym_line_comment] = STATE(1329), + [sym_block_comment] = STATE(1329), + [sym_identifier] = ACTIONS(2747), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), }, [1330] = { - [sym_identifier] = ACTIONS(3257), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3257), - [anon_sym_as] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(3257), - [anon_sym_fn] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3257), - [anon_sym_PERCENT] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3257), - [anon_sym_GT] = ACTIONS(3257), - [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(3255), - [anon_sym_RBRACK] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_mut] = ACTIONS(3257), - [anon_sym_COLON] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_QMARK] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(3257), - [anon_sym_spawn] = ACTIONS(3257), - [anon_sym_json_DOTdecode] = ACTIONS(3255), - [anon_sym_LBRACK2] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3257), - [anon_sym_LT_DASH] = ACTIONS(3255), - [anon_sym_LT_LT] = ACTIONS(3255), - [anon_sym_GT_GT] = ACTIONS(3257), - [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(3257), - [sym_none] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_nil] = ACTIONS(3257), - [anon_sym_QMARK_DOT] = ACTIONS(3255), - [anon_sym_POUND_LBRACK] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_DOLLARif] = ACTIONS(3257), - [anon_sym_is] = ACTIONS(3257), - [anon_sym_BANGis] = ACTIONS(3255), - [anon_sym_in] = ACTIONS(3257), - [anon_sym_BANGin] = ACTIONS(3255), - [anon_sym_match] = ACTIONS(3257), - [anon_sym_select] = ACTIONS(3257), - [anon_sym_lock] = ACTIONS(3257), - [anon_sym_rlock] = ACTIONS(3257), - [anon_sym_unsafe] = ACTIONS(3257), - [anon_sym_sql] = ACTIONS(3257), - [sym_int_literal] = ACTIONS(3257), - [sym_float_literal] = ACTIONS(3255), - [sym_rune_literal] = ACTIONS(3255), - [sym_pseudo_compile_time_identifier] = ACTIONS(3257), - [anon_sym_shared] = ACTIONS(3257), - [anon_sym_map_LBRACK] = ACTIONS(3255), - [anon_sym_chan] = ACTIONS(3257), - [anon_sym_thread] = ACTIONS(3257), - [anon_sym_atomic] = ACTIONS(3257), - [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_line_comment] = STATE(1330), + [sym_block_comment] = STATE(1330), + [sym_identifier] = ACTIONS(3007), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3007), + [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_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), }, [1331] = { - [sym_identifier] = ACTIONS(3193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_EQ_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_COLON] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3191), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_CARET] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3191), - [anon_sym_LT_LT] = ACTIONS(3191), - [anon_sym_GT_GT] = ACTIONS(3193), - [anon_sym_GT_GT_GT] = ACTIONS(3191), - [anon_sym_AMP_CARET] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_PIPE_PIPE] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3191), - [anon_sym_POUND_LBRACK] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3191), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3191), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3191), - [sym_rune_literal] = ACTIONS(3191), - [sym_pseudo_compile_time_identifier] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3191), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [sym___double_quote] = ACTIONS(3191), - [sym___single_quote] = ACTIONS(3191), - [sym___c_double_quote] = ACTIONS(3191), - [sym___c_single_quote] = ACTIONS(3191), - [sym___r_double_quote] = ACTIONS(3191), - [sym___r_single_quote] = ACTIONS(3191), + [sym_line_comment] = STATE(1331), + [sym_block_comment] = STATE(1331), + [sym_identifier] = ACTIONS(3375), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3375), + [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_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), }, [1332] = { - [sym_identifier] = ACTIONS(3205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3205), - [anon_sym_as] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3205), - [anon_sym_fn] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3205), - [anon_sym_PERCENT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_GT] = ACTIONS(3205), - [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(3203), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3205), - [anon_sym_mut] = ACTIONS(3205), - [anon_sym_COLON] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_QMARK] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_go] = ACTIONS(3205), - [anon_sym_spawn] = ACTIONS(3205), - [anon_sym_json_DOTdecode] = ACTIONS(3203), - [anon_sym_LBRACK2] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3205), - [anon_sym_LT_DASH] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3203), - [anon_sym_GT_GT] = ACTIONS(3205), - [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(3205), - [sym_none] = ACTIONS(3205), - [sym_true] = ACTIONS(3205), - [sym_false] = ACTIONS(3205), - [sym_nil] = ACTIONS(3205), - [anon_sym_QMARK_DOT] = ACTIONS(3203), - [anon_sym_POUND_LBRACK] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_DOLLARif] = ACTIONS(3205), - [anon_sym_is] = ACTIONS(3205), - [anon_sym_BANGis] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3205), - [anon_sym_BANGin] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [anon_sym_lock] = ACTIONS(3205), - [anon_sym_rlock] = ACTIONS(3205), - [anon_sym_unsafe] = ACTIONS(3205), - [anon_sym_sql] = ACTIONS(3205), - [sym_int_literal] = ACTIONS(3205), - [sym_float_literal] = ACTIONS(3203), - [sym_rune_literal] = ACTIONS(3203), - [sym_pseudo_compile_time_identifier] = ACTIONS(3205), - [anon_sym_shared] = ACTIONS(3205), - [anon_sym_map_LBRACK] = ACTIONS(3203), - [anon_sym_chan] = ACTIONS(3205), - [anon_sym_thread] = ACTIONS(3205), - [anon_sym_atomic] = ACTIONS(3205), - [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_line_comment] = STATE(1332), + [sym_block_comment] = STATE(1332), + [sym_identifier] = ACTIONS(2757), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2757), + [anon_sym_DOT] = ACTIONS(2757), + [anon_sym_as] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_COMMA] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2757), + [anon_sym_fn] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_PERCENT] = ACTIONS(2759), + [anon_sym_LT] = ACTIONS(2757), + [anon_sym_GT] = ACTIONS(2757), + [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(2759), + [anon_sym_RBRACK] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_mut] = ACTIONS(2757), + [anon_sym_COLON] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_QMARK] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_go] = ACTIONS(2757), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_CARET] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_LT_DASH] = ACTIONS(2759), + [anon_sym_LT_LT] = ACTIONS(2759), + [anon_sym_GT_GT] = ACTIONS(2757), + [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(2757), + [sym_none] = ACTIONS(2757), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_nil] = ACTIONS(2757), + [anon_sym_QMARK_DOT] = ACTIONS(2759), + [anon_sym_POUND_LBRACK] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_DOLLARif] = ACTIONS(2757), + [anon_sym_is] = ACTIONS(2757), + [anon_sym_BANGis] = ACTIONS(2759), + [anon_sym_in] = ACTIONS(2757), + [anon_sym_BANGin] = ACTIONS(2759), + [anon_sym_match] = ACTIONS(2757), + [anon_sym_select] = ACTIONS(2757), + [anon_sym_lock] = ACTIONS(2757), + [anon_sym_rlock] = ACTIONS(2757), + [anon_sym_unsafe] = ACTIONS(2757), + [anon_sym_sql] = ACTIONS(2757), + [sym_int_literal] = ACTIONS(2757), + [sym_float_literal] = ACTIONS(2759), + [sym_rune_literal] = ACTIONS(2759), + [sym_pseudo_compile_time_identifier] = ACTIONS(2757), + [anon_sym_shared] = ACTIONS(2757), + [anon_sym_map_LBRACK] = ACTIONS(2759), + [anon_sym_chan] = ACTIONS(2757), + [anon_sym_thread] = ACTIONS(2757), + [anon_sym_atomic] = ACTIONS(2757), + [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), }, [1333] = { - [sym_identifier] = ACTIONS(3009), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1333), + [sym_block_comment] = STATE(1333), + [sym_identifier] = ACTIONS(3431), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3433), + [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_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(3941), + [anon_sym_struct] = ACTIONS(3431), + [anon_sym_mut] = ACTIONS(3431), + [anon_sym_COLON] = ACTIONS(3941), + [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), }, [1334] = { - [sym_identifier] = ACTIONS(3189), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [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(3187), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_COLON] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3189), - [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(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [sym_pseudo_compile_time_identifier] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [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_line_comment] = STATE(1334), + [sym_block_comment] = STATE(1334), + [sym_identifier] = ACTIONS(2949), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_as] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_COMMA] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2947), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_fn] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_PERCENT] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_EQ_EQ] = ACTIONS(2947), + [anon_sym_BANG_EQ] = ACTIONS(2947), + [anon_sym_LT_EQ] = ACTIONS(2947), + [anon_sym_GT_EQ] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_RBRACK] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_mut] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2947), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_go] = ACTIONS(2949), + [anon_sym_spawn] = ACTIONS(2949), + [anon_sym_json_DOTdecode] = ACTIONS(2947), + [anon_sym_LBRACK2] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_CARET] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2947), + [anon_sym_LT_LT] = ACTIONS(2947), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2947), + [anon_sym_AMP_CARET] = ACTIONS(2947), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_PIPE_PIPE] = ACTIONS(2947), + [anon_sym_or] = ACTIONS(2949), + [sym_none] = ACTIONS(2949), + [sym_true] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [sym_nil] = ACTIONS(2949), + [anon_sym_QMARK_DOT] = ACTIONS(2947), + [anon_sym_POUND_LBRACK] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2949), + [anon_sym_is] = ACTIONS(2949), + [anon_sym_BANGis] = ACTIONS(2947), + [anon_sym_in] = ACTIONS(2949), + [anon_sym_BANGin] = ACTIONS(2947), + [anon_sym_match] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [anon_sym_lock] = ACTIONS(2949), + [anon_sym_rlock] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_sql] = ACTIONS(2949), + [sym_int_literal] = ACTIONS(2949), + [sym_float_literal] = ACTIONS(2947), + [sym_rune_literal] = ACTIONS(2947), + [sym_pseudo_compile_time_identifier] = ACTIONS(2949), + [anon_sym_shared] = ACTIONS(2949), + [anon_sym_map_LBRACK] = ACTIONS(2947), + [anon_sym_chan] = ACTIONS(2949), + [anon_sym_thread] = ACTIONS(2949), + [anon_sym_atomic] = ACTIONS(2949), + [sym___double_quote] = ACTIONS(2947), + [sym___single_quote] = ACTIONS(2947), + [sym___c_double_quote] = ACTIONS(2947), + [sym___c_single_quote] = ACTIONS(2947), + [sym___r_double_quote] = ACTIONS(2947), + [sym___r_single_quote] = ACTIONS(2947), }, [1335] = { - [sym_identifier] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3408), - [anon_sym_as] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3406), - [anon_sym_COMMA] = ACTIONS(3406), - [anon_sym_RBRACE] = ACTIONS(3406), - [anon_sym_LPAREN] = ACTIONS(3406), - [anon_sym_PIPE] = ACTIONS(3408), - [anon_sym_fn] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_SLASH] = ACTIONS(3408), - [anon_sym_PERCENT] = ACTIONS(3406), - [anon_sym_LT] = ACTIONS(3408), - [anon_sym_GT] = ACTIONS(3408), - [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(3406), - [anon_sym_RBRACK] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_mut] = ACTIONS(3408), - [anon_sym_COLON] = ACTIONS(3406), - [anon_sym_PLUS_PLUS] = ACTIONS(3406), - [anon_sym_DASH_DASH] = ACTIONS(3406), - [anon_sym_QMARK] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3408), - [anon_sym_spawn] = ACTIONS(3408), - [anon_sym_json_DOTdecode] = ACTIONS(3406), - [anon_sym_LBRACK2] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3406), - [anon_sym_CARET] = ACTIONS(3406), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_LT_DASH] = ACTIONS(3406), - [anon_sym_LT_LT] = ACTIONS(3406), - [anon_sym_GT_GT] = ACTIONS(3408), - [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(3408), - [sym_none] = ACTIONS(3408), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [sym_nil] = ACTIONS(3408), - [anon_sym_QMARK_DOT] = ACTIONS(3406), - [anon_sym_POUND_LBRACK] = ACTIONS(3406), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_DOLLARif] = ACTIONS(3408), - [anon_sym_is] = ACTIONS(3408), - [anon_sym_BANGis] = ACTIONS(3406), - [anon_sym_in] = ACTIONS(3408), - [anon_sym_BANGin] = ACTIONS(3406), - [anon_sym_match] = ACTIONS(3408), - [anon_sym_select] = ACTIONS(3408), - [anon_sym_lock] = ACTIONS(3408), - [anon_sym_rlock] = ACTIONS(3408), - [anon_sym_unsafe] = ACTIONS(3408), - [anon_sym_sql] = ACTIONS(3408), - [sym_int_literal] = ACTIONS(3408), - [sym_float_literal] = ACTIONS(3406), - [sym_rune_literal] = ACTIONS(3406), - [sym_pseudo_compile_time_identifier] = ACTIONS(3408), - [anon_sym_shared] = ACTIONS(3408), - [anon_sym_map_LBRACK] = ACTIONS(3406), - [anon_sym_chan] = ACTIONS(3408), - [anon_sym_thread] = ACTIONS(3408), - [anon_sym_atomic] = ACTIONS(3408), - [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), + [sym_line_comment] = STATE(1335), + [sym_block_comment] = STATE(1335), + [sym_identifier] = ACTIONS(3359), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3359), + [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_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), }, [1336] = { - [sym_identifier] = ACTIONS(3448), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3448), - [anon_sym_as] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(3446), - [anon_sym_COMMA] = ACTIONS(3446), - [anon_sym_RBRACE] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3446), - [anon_sym_PIPE] = ACTIONS(3448), - [anon_sym_fn] = ACTIONS(3448), - [anon_sym_PLUS] = ACTIONS(3448), - [anon_sym_DASH] = ACTIONS(3448), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_SLASH] = ACTIONS(3448), - [anon_sym_PERCENT] = ACTIONS(3446), - [anon_sym_LT] = ACTIONS(3448), - [anon_sym_GT] = ACTIONS(3448), - [anon_sym_EQ_EQ] = ACTIONS(3446), - [anon_sym_BANG_EQ] = ACTIONS(3446), - [anon_sym_LT_EQ] = ACTIONS(3446), - [anon_sym_GT_EQ] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3446), - [anon_sym_RBRACK] = ACTIONS(3446), - [anon_sym_struct] = ACTIONS(3448), - [anon_sym_mut] = ACTIONS(3448), - [anon_sym_COLON] = ACTIONS(3446), - [anon_sym_PLUS_PLUS] = ACTIONS(3446), - [anon_sym_DASH_DASH] = ACTIONS(3446), - [anon_sym_QMARK] = ACTIONS(3448), - [anon_sym_BANG] = ACTIONS(3448), - [anon_sym_go] = ACTIONS(3448), - [anon_sym_spawn] = ACTIONS(3448), - [anon_sym_json_DOTdecode] = ACTIONS(3446), - [anon_sym_LBRACK2] = ACTIONS(3448), - [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_CARET] = ACTIONS(3446), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_LT_DASH] = ACTIONS(3446), - [anon_sym_LT_LT] = ACTIONS(3446), - [anon_sym_GT_GT] = ACTIONS(3448), - [anon_sym_GT_GT_GT] = ACTIONS(3446), - [anon_sym_AMP_CARET] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(3446), - [anon_sym_PIPE_PIPE] = ACTIONS(3446), - [anon_sym_or] = ACTIONS(3448), - [sym_none] = ACTIONS(3448), - [sym_true] = ACTIONS(3448), - [sym_false] = ACTIONS(3448), - [sym_nil] = ACTIONS(3448), - [anon_sym_QMARK_DOT] = ACTIONS(3446), - [anon_sym_POUND_LBRACK] = ACTIONS(3446), - [anon_sym_if] = ACTIONS(3448), - [anon_sym_DOLLARif] = ACTIONS(3448), - [anon_sym_is] = ACTIONS(3448), - [anon_sym_BANGis] = ACTIONS(3446), - [anon_sym_in] = ACTIONS(3448), - [anon_sym_BANGin] = ACTIONS(3446), - [anon_sym_match] = ACTIONS(3448), - [anon_sym_select] = ACTIONS(3448), - [anon_sym_lock] = ACTIONS(3448), - [anon_sym_rlock] = ACTIONS(3448), - [anon_sym_unsafe] = ACTIONS(3448), - [anon_sym_sql] = ACTIONS(3448), - [sym_int_literal] = ACTIONS(3448), - [sym_float_literal] = ACTIONS(3446), - [sym_rune_literal] = ACTIONS(3446), - [sym_pseudo_compile_time_identifier] = ACTIONS(3448), - [anon_sym_shared] = ACTIONS(3448), - [anon_sym_map_LBRACK] = ACTIONS(3446), - [anon_sym_chan] = ACTIONS(3448), - [anon_sym_thread] = ACTIONS(3448), - [anon_sym_atomic] = ACTIONS(3448), - [sym___double_quote] = ACTIONS(3446), - [sym___single_quote] = ACTIONS(3446), - [sym___c_double_quote] = ACTIONS(3446), - [sym___c_single_quote] = ACTIONS(3446), - [sym___r_double_quote] = ACTIONS(3446), - [sym___r_single_quote] = ACTIONS(3446), + [sym_line_comment] = STATE(1336), + [sym_block_comment] = STATE(1336), + [sym_identifier] = ACTIONS(3319), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3319), + [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_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), }, [1337] = { - [sym_identifier] = ACTIONS(3005), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1337), + [sym_block_comment] = STATE(1337), + [sym_identifier] = ACTIONS(3339), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3339), + [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_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), }, [1338] = { - [sym_identifier] = ACTIONS(3245), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_as] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_GT] = ACTIONS(3245), - [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(3243), - [anon_sym_RBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_mut] = ACTIONS(3245), - [anon_sym_COLON] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_go] = ACTIONS(3245), - [anon_sym_spawn] = ACTIONS(3245), - [anon_sym_json_DOTdecode] = ACTIONS(3243), - [anon_sym_LBRACK2] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3243), - [anon_sym_LT_LT] = ACTIONS(3243), - [anon_sym_GT_GT] = ACTIONS(3245), - [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(3245), - [sym_none] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_nil] = ACTIONS(3245), - [anon_sym_QMARK_DOT] = ACTIONS(3243), - [anon_sym_POUND_LBRACK] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_DOLLARif] = ACTIONS(3245), - [anon_sym_is] = ACTIONS(3245), - [anon_sym_BANGis] = ACTIONS(3243), - [anon_sym_in] = ACTIONS(3245), - [anon_sym_BANGin] = ACTIONS(3243), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_select] = ACTIONS(3245), - [anon_sym_lock] = ACTIONS(3245), - [anon_sym_rlock] = ACTIONS(3245), - [anon_sym_unsafe] = ACTIONS(3245), - [anon_sym_sql] = ACTIONS(3245), - [sym_int_literal] = ACTIONS(3245), - [sym_float_literal] = ACTIONS(3243), - [sym_rune_literal] = ACTIONS(3243), - [sym_pseudo_compile_time_identifier] = ACTIONS(3245), - [anon_sym_shared] = ACTIONS(3245), - [anon_sym_map_LBRACK] = ACTIONS(3243), - [anon_sym_chan] = ACTIONS(3245), - [anon_sym_thread] = ACTIONS(3245), - [anon_sym_atomic] = ACTIONS(3245), - [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_line_comment] = STATE(1338), + [sym_block_comment] = STATE(1338), + [sym_identifier] = ACTIONS(3327), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3327), + [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_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), }, [1339] = { - [sym_identifier] = ACTIONS(2895), - [sym_comment] = ACTIONS(3), - [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_line_comment] = STATE(1339), + [sym_block_comment] = STATE(1339), + [sym_identifier] = ACTIONS(3363), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3363), + [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_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), }, [1340] = { - [sym_identifier] = ACTIONS(3348), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_PIPE] = ACTIONS(3348), - [anon_sym_fn] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [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(3346), - [anon_sym_RBRACK] = ACTIONS(3346), - [anon_sym_struct] = ACTIONS(3348), - [anon_sym_mut] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_go] = ACTIONS(3348), - [anon_sym_spawn] = ACTIONS(3348), - [anon_sym_json_DOTdecode] = ACTIONS(3346), - [anon_sym_LBRACK2] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_CARET] = ACTIONS(3346), - [anon_sym_AMP] = ACTIONS(3348), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_LT_LT] = ACTIONS(3346), - [anon_sym_GT_GT] = ACTIONS(3348), - [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(3348), - [sym_none] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_nil] = ACTIONS(3348), - [anon_sym_QMARK_DOT] = ACTIONS(3346), - [anon_sym_POUND_LBRACK] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_DOLLARif] = ACTIONS(3348), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3346), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_BANGin] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3348), - [anon_sym_lock] = ACTIONS(3348), - [anon_sym_rlock] = ACTIONS(3348), - [anon_sym_unsafe] = ACTIONS(3348), - [anon_sym_sql] = ACTIONS(3348), - [sym_int_literal] = ACTIONS(3348), - [sym_float_literal] = ACTIONS(3346), - [sym_rune_literal] = ACTIONS(3346), - [sym_pseudo_compile_time_identifier] = ACTIONS(3348), - [anon_sym_shared] = ACTIONS(3348), - [anon_sym_map_LBRACK] = ACTIONS(3346), - [anon_sym_chan] = ACTIONS(3348), - [anon_sym_thread] = ACTIONS(3348), - [anon_sym_atomic] = ACTIONS(3348), - [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), + [sym_line_comment] = STATE(1340), + [sym_block_comment] = STATE(1340), + [sym_identifier] = ACTIONS(3351), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3351), + [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_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), }, [1341] = { - [sym_identifier] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3352), - [anon_sym_as] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_PIPE] = ACTIONS(3352), - [anon_sym_fn] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3352), - [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(3350), - [anon_sym_RBRACK] = ACTIONS(3350), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_mut] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_go] = ACTIONS(3352), - [anon_sym_spawn] = ACTIONS(3352), - [anon_sym_json_DOTdecode] = ACTIONS(3350), - [anon_sym_LBRACK2] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_CARET] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3352), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_LT_LT] = ACTIONS(3350), - [anon_sym_GT_GT] = ACTIONS(3352), - [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(3352), - [sym_none] = ACTIONS(3352), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [sym_nil] = ACTIONS(3352), - [anon_sym_QMARK_DOT] = ACTIONS(3350), - [anon_sym_POUND_LBRACK] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_DOLLARif] = ACTIONS(3352), - [anon_sym_is] = ACTIONS(3352), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3352), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3352), - [anon_sym_select] = ACTIONS(3352), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3352), - [anon_sym_sql] = ACTIONS(3352), - [sym_int_literal] = ACTIONS(3352), - [sym_float_literal] = ACTIONS(3350), - [sym_rune_literal] = ACTIONS(3350), - [sym_pseudo_compile_time_identifier] = ACTIONS(3352), - [anon_sym_shared] = ACTIONS(3352), - [anon_sym_map_LBRACK] = ACTIONS(3350), - [anon_sym_chan] = ACTIONS(3352), - [anon_sym_thread] = ACTIONS(3352), - [anon_sym_atomic] = ACTIONS(3352), - [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), + [sym_line_comment] = STATE(1341), + [sym_block_comment] = STATE(1341), + [sym_identifier] = ACTIONS(3347), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3347), + [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_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), }, [1342] = { - [sym_identifier] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3388), - [anon_sym_as] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3386), - [anon_sym_COMMA] = ACTIONS(3386), - [anon_sym_RBRACE] = ACTIONS(3386), - [anon_sym_LPAREN] = ACTIONS(3386), - [anon_sym_PIPE] = ACTIONS(3388), - [anon_sym_fn] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_STAR] = ACTIONS(3386), - [anon_sym_SLASH] = ACTIONS(3388), - [anon_sym_PERCENT] = ACTIONS(3386), - [anon_sym_LT] = ACTIONS(3388), - [anon_sym_GT] = ACTIONS(3388), - [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(3386), - [anon_sym_RBRACK] = ACTIONS(3386), - [anon_sym_struct] = ACTIONS(3388), - [anon_sym_mut] = ACTIONS(3388), - [anon_sym_COLON] = ACTIONS(3386), - [anon_sym_PLUS_PLUS] = ACTIONS(3386), - [anon_sym_DASH_DASH] = ACTIONS(3386), - [anon_sym_QMARK] = ACTIONS(3388), - [anon_sym_BANG] = ACTIONS(3388), - [anon_sym_go] = ACTIONS(3388), - [anon_sym_spawn] = ACTIONS(3388), - [anon_sym_json_DOTdecode] = ACTIONS(3386), - [anon_sym_LBRACK2] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3388), - [anon_sym_LT_DASH] = ACTIONS(3386), - [anon_sym_LT_LT] = ACTIONS(3386), - [anon_sym_GT_GT] = ACTIONS(3388), - [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(3388), - [sym_none] = ACTIONS(3388), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [sym_nil] = ACTIONS(3388), - [anon_sym_QMARK_DOT] = ACTIONS(3386), - [anon_sym_POUND_LBRACK] = ACTIONS(3386), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_DOLLARif] = ACTIONS(3388), - [anon_sym_is] = ACTIONS(3388), - [anon_sym_BANGis] = ACTIONS(3386), - [anon_sym_in] = ACTIONS(3388), - [anon_sym_BANGin] = ACTIONS(3386), - [anon_sym_match] = ACTIONS(3388), - [anon_sym_select] = ACTIONS(3388), - [anon_sym_lock] = ACTIONS(3388), - [anon_sym_rlock] = ACTIONS(3388), - [anon_sym_unsafe] = ACTIONS(3388), - [anon_sym_sql] = ACTIONS(3388), - [sym_int_literal] = ACTIONS(3388), - [sym_float_literal] = ACTIONS(3386), - [sym_rune_literal] = ACTIONS(3386), - [sym_pseudo_compile_time_identifier] = ACTIONS(3388), - [anon_sym_shared] = ACTIONS(3388), - [anon_sym_map_LBRACK] = ACTIONS(3386), - [anon_sym_chan] = ACTIONS(3388), - [anon_sym_thread] = ACTIONS(3388), - [anon_sym_atomic] = ACTIONS(3388), - [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), + [sym_line_comment] = STATE(1342), + [sym_block_comment] = STATE(1342), + [sym_identifier] = ACTIONS(3293), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_DOT] = ACTIONS(3293), + [anon_sym_as] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_COMMA] = ACTIONS(3291), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_PIPE] = ACTIONS(3293), + [anon_sym_fn] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3291), + [anon_sym_PERCENT] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_GT] = ACTIONS(3293), + [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(3291), + [anon_sym_RBRACK] = ACTIONS(3291), + [anon_sym_struct] = ACTIONS(3293), + [anon_sym_mut] = ACTIONS(3293), + [anon_sym_COLON] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_QMARK] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_go] = ACTIONS(3293), + [anon_sym_spawn] = ACTIONS(3293), + [anon_sym_json_DOTdecode] = ACTIONS(3291), + [anon_sym_LBRACK2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_CARET] = ACTIONS(3291), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_LT_DASH] = ACTIONS(3291), + [anon_sym_LT_LT] = ACTIONS(3291), + [anon_sym_GT_GT] = ACTIONS(3293), + [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(3293), + [sym_none] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_nil] = ACTIONS(3293), + [anon_sym_QMARK_DOT] = ACTIONS(3291), + [anon_sym_POUND_LBRACK] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_DOLLARif] = ACTIONS(3293), + [anon_sym_is] = ACTIONS(3293), + [anon_sym_BANGis] = ACTIONS(3291), + [anon_sym_in] = ACTIONS(3293), + [anon_sym_BANGin] = ACTIONS(3291), + [anon_sym_match] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_rlock] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_sql] = ACTIONS(3293), + [sym_int_literal] = ACTIONS(3293), + [sym_float_literal] = ACTIONS(3291), + [sym_rune_literal] = ACTIONS(3291), + [sym_pseudo_compile_time_identifier] = ACTIONS(3293), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3291), + [anon_sym_chan] = ACTIONS(3293), + [anon_sym_thread] = ACTIONS(3293), + [anon_sym_atomic] = ACTIONS(3293), + [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), }, [1343] = { - [sym_identifier] = ACTIONS(3392), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3392), - [anon_sym_as] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_COMMA] = ACTIONS(3390), - [anon_sym_RBRACE] = ACTIONS(3390), - [anon_sym_LPAREN] = ACTIONS(3390), - [anon_sym_PIPE] = ACTIONS(3392), - [anon_sym_fn] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_STAR] = ACTIONS(3390), - [anon_sym_SLASH] = ACTIONS(3392), - [anon_sym_PERCENT] = ACTIONS(3390), - [anon_sym_LT] = ACTIONS(3392), - [anon_sym_GT] = ACTIONS(3392), - [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(3390), - [anon_sym_RBRACK] = ACTIONS(3390), - [anon_sym_struct] = ACTIONS(3392), - [anon_sym_mut] = ACTIONS(3392), - [anon_sym_COLON] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_QMARK] = ACTIONS(3392), - [anon_sym_BANG] = ACTIONS(3392), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3392), - [anon_sym_json_DOTdecode] = ACTIONS(3390), - [anon_sym_LBRACK2] = ACTIONS(3392), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_CARET] = ACTIONS(3390), - [anon_sym_AMP] = ACTIONS(3392), - [anon_sym_LT_DASH] = ACTIONS(3390), - [anon_sym_LT_LT] = ACTIONS(3390), - [anon_sym_GT_GT] = ACTIONS(3392), - [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(3392), - [sym_none] = ACTIONS(3392), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [sym_nil] = ACTIONS(3392), - [anon_sym_QMARK_DOT] = ACTIONS(3390), - [anon_sym_POUND_LBRACK] = ACTIONS(3390), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_DOLLARif] = ACTIONS(3392), - [anon_sym_is] = ACTIONS(3392), - [anon_sym_BANGis] = ACTIONS(3390), - [anon_sym_in] = ACTIONS(3392), - [anon_sym_BANGin] = ACTIONS(3390), - [anon_sym_match] = ACTIONS(3392), - [anon_sym_select] = ACTIONS(3392), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3392), - [anon_sym_sql] = ACTIONS(3392), - [sym_int_literal] = ACTIONS(3392), - [sym_float_literal] = ACTIONS(3390), - [sym_rune_literal] = ACTIONS(3390), - [sym_pseudo_compile_time_identifier] = ACTIONS(3392), - [anon_sym_shared] = ACTIONS(3392), - [anon_sym_map_LBRACK] = ACTIONS(3390), - [anon_sym_chan] = ACTIONS(3392), - [anon_sym_thread] = ACTIONS(3392), - [anon_sym_atomic] = ACTIONS(3392), - [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), + [sym_line_comment] = STATE(1343), + [sym_block_comment] = STATE(1343), + [sym_identifier] = ACTIONS(3289), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_as] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_fn] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [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(3287), + [anon_sym_RBRACK] = ACTIONS(3287), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_mut] = ACTIONS(3289), + [anon_sym_COLON] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [anon_sym_QMARK] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_go] = ACTIONS(3289), + [anon_sym_spawn] = ACTIONS(3289), + [anon_sym_json_DOTdecode] = ACTIONS(3287), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_CARET] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_LT_DASH] = ACTIONS(3287), + [anon_sym_LT_LT] = ACTIONS(3287), + [anon_sym_GT_GT] = ACTIONS(3289), + [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(3289), + [sym_none] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_nil] = ACTIONS(3289), + [anon_sym_QMARK_DOT] = ACTIONS(3287), + [anon_sym_POUND_LBRACK] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_DOLLARif] = ACTIONS(3289), + [anon_sym_is] = ACTIONS(3289), + [anon_sym_BANGis] = ACTIONS(3287), + [anon_sym_in] = ACTIONS(3289), + [anon_sym_BANGin] = ACTIONS(3287), + [anon_sym_match] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_rlock] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_sql] = ACTIONS(3289), + [sym_int_literal] = ACTIONS(3289), + [sym_float_literal] = ACTIONS(3287), + [sym_rune_literal] = ACTIONS(3287), + [sym_pseudo_compile_time_identifier] = ACTIONS(3289), + [anon_sym_shared] = ACTIONS(3289), + [anon_sym_map_LBRACK] = ACTIONS(3287), + [anon_sym_chan] = ACTIONS(3289), + [anon_sym_thread] = ACTIONS(3289), + [anon_sym_atomic] = ACTIONS(3289), + [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), }, [1344] = { - [sym_identifier] = ACTIONS(2891), - [sym_comment] = ACTIONS(3), - [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_line_comment] = STATE(1344), + [sym_block_comment] = STATE(1344), + [sym_identifier] = ACTIONS(3367), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3367), + [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_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), }, [1345] = { - [sym_identifier] = ACTIONS(3287), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1345), + [sym_block_comment] = STATE(1345), + [sym_identifier] = ACTIONS(3391), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3391), + [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_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), }, [1346] = { - [sym_identifier] = ACTIONS(3213), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3213), - [anon_sym_as] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(3211), - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_PIPE] = ACTIONS(3213), - [anon_sym_fn] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3213), - [anon_sym_PERCENT] = ACTIONS(3211), - [anon_sym_LT] = ACTIONS(3213), - [anon_sym_GT] = ACTIONS(3213), - [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(3211), - [anon_sym_RBRACK] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3213), - [anon_sym_mut] = ACTIONS(3213), - [anon_sym_COLON] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [anon_sym_QMARK] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_go] = ACTIONS(3213), - [anon_sym_spawn] = ACTIONS(3213), - [anon_sym_json_DOTdecode] = ACTIONS(3211), - [anon_sym_LBRACK2] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3213), - [anon_sym_LT_DASH] = ACTIONS(3211), - [anon_sym_LT_LT] = ACTIONS(3211), - [anon_sym_GT_GT] = ACTIONS(3213), - [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(3213), - [sym_none] = ACTIONS(3213), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_nil] = ACTIONS(3213), - [anon_sym_QMARK_DOT] = ACTIONS(3211), - [anon_sym_POUND_LBRACK] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_DOLLARif] = ACTIONS(3213), - [anon_sym_is] = ACTIONS(3213), - [anon_sym_BANGis] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(3213), - [anon_sym_BANGin] = ACTIONS(3211), - [anon_sym_match] = ACTIONS(3213), - [anon_sym_select] = ACTIONS(3213), - [anon_sym_lock] = ACTIONS(3213), - [anon_sym_rlock] = ACTIONS(3213), - [anon_sym_unsafe] = ACTIONS(3213), - [anon_sym_sql] = ACTIONS(3213), - [sym_int_literal] = ACTIONS(3213), - [sym_float_literal] = ACTIONS(3211), - [sym_rune_literal] = ACTIONS(3211), - [sym_pseudo_compile_time_identifier] = ACTIONS(3213), - [anon_sym_shared] = ACTIONS(3213), - [anon_sym_map_LBRACK] = ACTIONS(3211), - [anon_sym_chan] = ACTIONS(3213), - [anon_sym_thread] = ACTIONS(3213), - [anon_sym_atomic] = ACTIONS(3213), - [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_line_comment] = STATE(1346), + [sym_block_comment] = STATE(1346), + [sym_identifier] = ACTIONS(3149), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(2835), + [anon_sym_as] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3147), + [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_fn] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_GT] = ACTIONS(3149), + [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(3147), + [anon_sym_RBRACK] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_mut] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_go] = ACTIONS(3149), + [anon_sym_spawn] = ACTIONS(3149), + [anon_sym_json_DOTdecode] = ACTIONS(3147), + [anon_sym_LBRACK2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_CARET] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_LT_LT] = ACTIONS(3147), + [anon_sym_GT_GT] = ACTIONS(3149), + [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(3149), + [sym_none] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_nil] = ACTIONS(3149), + [anon_sym_QMARK_DOT] = ACTIONS(3147), + [anon_sym_POUND_LBRACK] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_DOLLARif] = ACTIONS(3149), + [anon_sym_is] = ACTIONS(3149), + [anon_sym_BANGis] = ACTIONS(3147), + [anon_sym_in] = ACTIONS(3149), + [anon_sym_BANGin] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_rlock] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_sql] = ACTIONS(3149), + [sym_int_literal] = ACTIONS(3149), + [sym_float_literal] = ACTIONS(3147), + [sym_rune_literal] = ACTIONS(3147), + [sym_pseudo_compile_time_identifier] = ACTIONS(3149), + [anon_sym_shared] = ACTIONS(3149), + [anon_sym_map_LBRACK] = ACTIONS(3147), + [anon_sym_chan] = ACTIONS(3149), + [anon_sym_thread] = ACTIONS(3149), + [anon_sym_atomic] = ACTIONS(3149), + [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), }, [1347] = { - [sym_identifier] = ACTIONS(3382), - [sym_comment] = ACTIONS(3), - [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), - }, - [1348] = { - [sym_identifier] = ACTIONS(3436), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_as] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_COMMA] = ACTIONS(3434), - [anon_sym_RBRACE] = ACTIONS(3434), - [anon_sym_LPAREN] = ACTIONS(3434), - [anon_sym_PIPE] = ACTIONS(3436), - [anon_sym_fn] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3434), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_GT] = ACTIONS(3436), - [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(3434), - [anon_sym_RBRACK] = ACTIONS(3434), - [anon_sym_struct] = ACTIONS(3436), - [anon_sym_mut] = ACTIONS(3436), - [anon_sym_COLON] = ACTIONS(3434), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_QMARK] = ACTIONS(3436), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_go] = ACTIONS(3436), - [anon_sym_spawn] = ACTIONS(3436), - [anon_sym_json_DOTdecode] = ACTIONS(3434), - [anon_sym_LBRACK2] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_CARET] = ACTIONS(3434), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_LT_DASH] = ACTIONS(3434), - [anon_sym_LT_LT] = ACTIONS(3434), - [anon_sym_GT_GT] = ACTIONS(3436), - [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(3436), - [sym_none] = ACTIONS(3436), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [sym_nil] = ACTIONS(3436), - [anon_sym_QMARK_DOT] = ACTIONS(3434), - [anon_sym_POUND_LBRACK] = ACTIONS(3434), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_DOLLARif] = ACTIONS(3436), - [anon_sym_is] = ACTIONS(3436), - [anon_sym_BANGis] = ACTIONS(3434), - [anon_sym_in] = ACTIONS(3436), - [anon_sym_BANGin] = ACTIONS(3434), - [anon_sym_match] = ACTIONS(3436), - [anon_sym_select] = ACTIONS(3436), - [anon_sym_lock] = ACTIONS(3436), - [anon_sym_rlock] = ACTIONS(3436), - [anon_sym_unsafe] = ACTIONS(3436), - [anon_sym_sql] = ACTIONS(3436), - [sym_int_literal] = ACTIONS(3436), - [sym_float_literal] = ACTIONS(3434), - [sym_rune_literal] = ACTIONS(3434), - [sym_pseudo_compile_time_identifier] = ACTIONS(3436), - [anon_sym_shared] = ACTIONS(3436), - [anon_sym_map_LBRACK] = ACTIONS(3434), - [anon_sym_chan] = ACTIONS(3436), - [anon_sym_thread] = ACTIONS(3436), - [anon_sym_atomic] = ACTIONS(3436), - [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), - }, - [1349] = { - [sym_identifier] = ACTIONS(3452), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3452), - [anon_sym_as] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_COMMA] = ACTIONS(3450), - [anon_sym_RBRACE] = ACTIONS(3450), - [anon_sym_LPAREN] = ACTIONS(3450), - [anon_sym_PIPE] = ACTIONS(3452), - [anon_sym_fn] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [anon_sym_STAR] = ACTIONS(3450), - [anon_sym_SLASH] = ACTIONS(3452), - [anon_sym_PERCENT] = ACTIONS(3450), - [anon_sym_LT] = ACTIONS(3452), - [anon_sym_GT] = ACTIONS(3452), - [anon_sym_EQ_EQ] = ACTIONS(3450), - [anon_sym_BANG_EQ] = ACTIONS(3450), - [anon_sym_LT_EQ] = ACTIONS(3450), - [anon_sym_GT_EQ] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_RBRACK] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3452), - [anon_sym_mut] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3450), - [anon_sym_PLUS_PLUS] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3450), - [anon_sym_QMARK] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_go] = ACTIONS(3452), - [anon_sym_spawn] = ACTIONS(3452), - [anon_sym_json_DOTdecode] = ACTIONS(3450), - [anon_sym_LBRACK2] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3450), - [anon_sym_CARET] = ACTIONS(3450), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_LT_DASH] = ACTIONS(3450), - [anon_sym_LT_LT] = ACTIONS(3450), - [anon_sym_GT_GT] = ACTIONS(3452), - [anon_sym_GT_GT_GT] = ACTIONS(3450), - [anon_sym_AMP_CARET] = ACTIONS(3450), - [anon_sym_AMP_AMP] = ACTIONS(3450), - [anon_sym_PIPE_PIPE] = ACTIONS(3450), - [anon_sym_or] = ACTIONS(3452), - [sym_none] = ACTIONS(3452), - [sym_true] = ACTIONS(3452), - [sym_false] = ACTIONS(3452), - [sym_nil] = ACTIONS(3452), - [anon_sym_QMARK_DOT] = ACTIONS(3450), - [anon_sym_POUND_LBRACK] = ACTIONS(3450), - [anon_sym_if] = ACTIONS(3452), - [anon_sym_DOLLARif] = ACTIONS(3452), - [anon_sym_is] = ACTIONS(3452), - [anon_sym_BANGis] = ACTIONS(3450), - [anon_sym_in] = ACTIONS(3452), - [anon_sym_BANGin] = ACTIONS(3450), - [anon_sym_match] = ACTIONS(3452), - [anon_sym_select] = ACTIONS(3452), - [anon_sym_lock] = ACTIONS(3452), - [anon_sym_rlock] = ACTIONS(3452), - [anon_sym_unsafe] = ACTIONS(3452), - [anon_sym_sql] = ACTIONS(3452), - [sym_int_literal] = ACTIONS(3452), - [sym_float_literal] = ACTIONS(3450), - [sym_rune_literal] = ACTIONS(3450), - [sym_pseudo_compile_time_identifier] = ACTIONS(3452), - [anon_sym_shared] = ACTIONS(3452), - [anon_sym_map_LBRACK] = ACTIONS(3450), - [anon_sym_chan] = ACTIONS(3452), - [anon_sym_thread] = ACTIONS(3452), - [anon_sym_atomic] = ACTIONS(3452), - [sym___double_quote] = ACTIONS(3450), - [sym___single_quote] = ACTIONS(3450), - [sym___c_double_quote] = ACTIONS(3450), - [sym___c_single_quote] = ACTIONS(3450), - [sym___r_double_quote] = ACTIONS(3450), - [sym___r_single_quote] = ACTIONS(3450), - }, - [1350] = { - [sym_identifier] = ACTIONS(3311), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(3313), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_COMMA] = 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(3951), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_COLON] = ACTIONS(3951), - [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), - }, - [1351] = { - [sym_identifier] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_COMMA] = ACTIONS(3418), - [anon_sym_RBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3420), - [anon_sym_fn] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [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(3418), - [anon_sym_RBRACK] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(3420), - [anon_sym_mut] = ACTIONS(3420), - [anon_sym_COLON] = ACTIONS(3418), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_QMARK] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(3420), - [anon_sym_spawn] = ACTIONS(3420), - [anon_sym_json_DOTdecode] = ACTIONS(3418), - [anon_sym_LBRACK2] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3418), - [anon_sym_CARET] = ACTIONS(3418), - [anon_sym_AMP] = ACTIONS(3420), - [anon_sym_LT_DASH] = ACTIONS(3418), - [anon_sym_LT_LT] = ACTIONS(3418), - [anon_sym_GT_GT] = ACTIONS(3420), - [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(3420), - [sym_none] = ACTIONS(3420), - [sym_true] = ACTIONS(3420), - [sym_false] = ACTIONS(3420), - [sym_nil] = ACTIONS(3420), - [anon_sym_QMARK_DOT] = ACTIONS(3418), - [anon_sym_POUND_LBRACK] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_DOLLARif] = ACTIONS(3420), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3418), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_BANGin] = ACTIONS(3418), - [anon_sym_match] = ACTIONS(3420), - [anon_sym_select] = ACTIONS(3420), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3420), - [anon_sym_sql] = ACTIONS(3420), - [sym_int_literal] = ACTIONS(3420), - [sym_float_literal] = ACTIONS(3418), - [sym_rune_literal] = ACTIONS(3418), - [sym_pseudo_compile_time_identifier] = ACTIONS(3420), - [anon_sym_shared] = ACTIONS(3420), - [anon_sym_map_LBRACK] = ACTIONS(3418), - [anon_sym_chan] = ACTIONS(3420), - [anon_sym_thread] = ACTIONS(3420), - [anon_sym_atomic] = ACTIONS(3420), - [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), - }, - [1352] = { - [sym_identifier] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3396), - [anon_sym_as] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3394), - [anon_sym_RBRACE] = ACTIONS(3394), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3396), - [anon_sym_fn] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3394), - [anon_sym_SLASH] = ACTIONS(3396), - [anon_sym_PERCENT] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3396), - [anon_sym_GT] = ACTIONS(3396), - [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(3394), - [anon_sym_RBRACK] = ACTIONS(3394), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_mut] = ACTIONS(3396), - [anon_sym_COLON] = ACTIONS(3394), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [anon_sym_QMARK] = ACTIONS(3396), - [anon_sym_BANG] = ACTIONS(3396), - [anon_sym_go] = ACTIONS(3396), - [anon_sym_spawn] = ACTIONS(3396), - [anon_sym_json_DOTdecode] = ACTIONS(3394), - [anon_sym_LBRACK2] = ACTIONS(3396), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3394), - [anon_sym_LT_LT] = ACTIONS(3394), - [anon_sym_GT_GT] = ACTIONS(3396), - [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(3396), - [sym_none] = ACTIONS(3396), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [sym_nil] = ACTIONS(3396), - [anon_sym_QMARK_DOT] = ACTIONS(3394), - [anon_sym_POUND_LBRACK] = ACTIONS(3394), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_DOLLARif] = ACTIONS(3396), - [anon_sym_is] = ACTIONS(3396), - [anon_sym_BANGis] = ACTIONS(3394), - [anon_sym_in] = ACTIONS(3396), - [anon_sym_BANGin] = ACTIONS(3394), - [anon_sym_match] = ACTIONS(3396), - [anon_sym_select] = ACTIONS(3396), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(3396), - [anon_sym_sql] = ACTIONS(3396), - [sym_int_literal] = ACTIONS(3396), - [sym_float_literal] = ACTIONS(3394), - [sym_rune_literal] = ACTIONS(3394), - [sym_pseudo_compile_time_identifier] = ACTIONS(3396), - [anon_sym_shared] = ACTIONS(3396), - [anon_sym_map_LBRACK] = ACTIONS(3394), - [anon_sym_chan] = ACTIONS(3396), - [anon_sym_thread] = ACTIONS(3396), - [anon_sym_atomic] = ACTIONS(3396), - [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), + [sym_line_comment] = STATE(1347), + [sym_block_comment] = STATE(1347), + [sym_identifier] = ACTIONS(3253), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_DOT] = ACTIONS(3253), + [anon_sym_as] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_fn] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3251), + [anon_sym_PERCENT] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3253), + [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(3251), + [anon_sym_RBRACK] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3253), + [anon_sym_mut] = ACTIONS(3253), + [anon_sym_COLON] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_QMARK] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_go] = ACTIONS(3253), + [anon_sym_spawn] = ACTIONS(3253), + [anon_sym_json_DOTdecode] = ACTIONS(3251), + [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_CARET] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_LT_DASH] = ACTIONS(3251), + [anon_sym_LT_LT] = ACTIONS(3251), + [anon_sym_GT_GT] = ACTIONS(3253), + [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(3253), + [sym_none] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_nil] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3251), + [anon_sym_POUND_LBRACK] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_DOLLARif] = ACTIONS(3253), + [anon_sym_is] = ACTIONS(3253), + [anon_sym_BANGis] = ACTIONS(3251), + [anon_sym_in] = ACTIONS(3253), + [anon_sym_BANGin] = ACTIONS(3251), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_select] = ACTIONS(3253), + [anon_sym_lock] = ACTIONS(3253), + [anon_sym_rlock] = ACTIONS(3253), + [anon_sym_unsafe] = ACTIONS(3253), + [anon_sym_sql] = ACTIONS(3253), + [sym_int_literal] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3251), + [sym_rune_literal] = ACTIONS(3251), + [sym_pseudo_compile_time_identifier] = ACTIONS(3253), + [anon_sym_shared] = ACTIONS(3253), + [anon_sym_map_LBRACK] = ACTIONS(3251), + [anon_sym_chan] = ACTIONS(3253), + [anon_sym_thread] = ACTIONS(3253), + [anon_sym_atomic] = ACTIONS(3253), + [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), }, - [1353] = { - [sym_identifier] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_as] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_COMMA] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_PIPE] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_SLASH] = ACTIONS(2715), - [anon_sym_PERCENT] = ACTIONS(2713), - [anon_sym_LT] = ACTIONS(2715), - [anon_sym_GT] = ACTIONS(2715), - [anon_sym_EQ_EQ] = ACTIONS(2713), - [anon_sym_BANG_EQ] = ACTIONS(2713), - [anon_sym_LT_EQ] = ACTIONS(2713), - [anon_sym_GT_EQ] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_RBRACK] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_mut] = ACTIONS(2715), - [anon_sym_COLON] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_QMARK] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_go] = ACTIONS(2715), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(2713), - [anon_sym_LBRACK2] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_CARET] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_LT_DASH] = ACTIONS(2713), - [anon_sym_LT_LT] = ACTIONS(2713), - [anon_sym_GT_GT] = ACTIONS(2715), - [anon_sym_GT_GT_GT] = ACTIONS(2713), - [anon_sym_AMP_CARET] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_PIPE_PIPE] = ACTIONS(2713), - [anon_sym_or] = ACTIONS(2715), - [sym_none] = ACTIONS(2715), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [sym_nil] = ACTIONS(2715), - [anon_sym_QMARK_DOT] = ACTIONS(2713), - [anon_sym_POUND_LBRACK] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_DOLLARif] = ACTIONS(2715), - [anon_sym_is] = ACTIONS(2715), - [anon_sym_BANGis] = ACTIONS(2713), - [anon_sym_in] = ACTIONS(2715), - [anon_sym_BANGin] = ACTIONS(2713), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_select] = ACTIONS(2715), - [anon_sym_lock] = ACTIONS(2715), - [anon_sym_rlock] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_sql] = ACTIONS(2715), - [sym_int_literal] = ACTIONS(2715), - [sym_float_literal] = ACTIONS(2713), - [sym_rune_literal] = ACTIONS(2713), - [sym_pseudo_compile_time_identifier] = ACTIONS(2715), - [anon_sym_shared] = ACTIONS(2715), - [anon_sym_map_LBRACK] = ACTIONS(2713), - [anon_sym_chan] = ACTIONS(2715), - [anon_sym_thread] = ACTIONS(2715), - [anon_sym_atomic] = ACTIONS(2715), - [sym___double_quote] = ACTIONS(2713), - [sym___single_quote] = ACTIONS(2713), - [sym___c_double_quote] = ACTIONS(2713), - [sym___c_single_quote] = ACTIONS(2713), - [sym___r_double_quote] = ACTIONS(2713), - [sym___r_single_quote] = ACTIONS(2713), + [1348] = { + [sym_line_comment] = STATE(1348), + [sym_block_comment] = STATE(1348), + [sym_identifier] = ACTIONS(3395), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3395), + [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_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), }, - [1354] = { + [1349] = { + [sym_line_comment] = STATE(1349), + [sym_block_comment] = STATE(1349), [sym_identifier] = ACTIONS(3265), - [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3265), [anon_sym_DOT] = ACTIONS(3265), [anon_sym_as] = ACTIONS(3265), [anon_sym_LBRACE] = ACTIONS(3263), @@ -171356,7 +172126,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3265), [anon_sym_DASH] = ACTIONS(3265), [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_SLASH] = ACTIONS(3265), [anon_sym_PERCENT] = ACTIONS(3263), [anon_sym_LT] = ACTIONS(3265), [anon_sym_GT] = ACTIONS(3265), @@ -171422,329 +172191,843 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3263), [sym___r_single_quote] = ACTIONS(3263), }, - [1355] = { - [sym_identifier] = ACTIONS(3374), - [sym_comment] = ACTIONS(3), - [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), + [1350] = { + [sym_line_comment] = STATE(1350), + [sym_block_comment] = STATE(1350), + [sym_identifier] = ACTIONS(3261), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3259), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3261), + [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(3259), + [anon_sym_RBRACK] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_COLON] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3259), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3259), + [anon_sym_CARET] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3259), + [anon_sym_LT_LT] = ACTIONS(3259), + [anon_sym_GT_GT] = ACTIONS(3261), + [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(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_QMARK_DOT] = ACTIONS(3259), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_is] = ACTIONS(3261), + [anon_sym_BANGis] = ACTIONS(3259), + [anon_sym_in] = ACTIONS(3261), + [anon_sym_BANGin] = ACTIONS(3259), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3259), + [sym_rune_literal] = ACTIONS(3259), + [sym_pseudo_compile_time_identifier] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3259), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [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), }, - [1356] = { - [sym_identifier] = ACTIONS(3253), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_as] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_COMMA] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_PIPE] = ACTIONS(3253), - [anon_sym_fn] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3253), - [anon_sym_GT] = ACTIONS(3253), - [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(3251), - [anon_sym_RBRACK] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_mut] = ACTIONS(3253), - [anon_sym_COLON] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_go] = ACTIONS(3253), - [anon_sym_spawn] = ACTIONS(3253), - [anon_sym_json_DOTdecode] = ACTIONS(3251), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_CARET] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3251), - [anon_sym_LT_LT] = ACTIONS(3251), - [anon_sym_GT_GT] = ACTIONS(3253), - [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(3253), - [sym_none] = ACTIONS(3253), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [sym_nil] = ACTIONS(3253), - [anon_sym_QMARK_DOT] = ACTIONS(3251), - [anon_sym_POUND_LBRACK] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_DOLLARif] = ACTIONS(3253), - [anon_sym_is] = ACTIONS(3253), - [anon_sym_BANGis] = ACTIONS(3251), - [anon_sym_in] = ACTIONS(3253), - [anon_sym_BANGin] = ACTIONS(3251), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_select] = ACTIONS(3253), - [anon_sym_lock] = ACTIONS(3253), - [anon_sym_rlock] = ACTIONS(3253), - [anon_sym_unsafe] = ACTIONS(3253), - [anon_sym_sql] = ACTIONS(3253), - [sym_int_literal] = ACTIONS(3253), - [sym_float_literal] = ACTIONS(3251), - [sym_rune_literal] = ACTIONS(3251), - [sym_pseudo_compile_time_identifier] = ACTIONS(3253), - [anon_sym_shared] = ACTIONS(3253), - [anon_sym_map_LBRACK] = ACTIONS(3251), - [anon_sym_chan] = ACTIONS(3253), - [anon_sym_thread] = ACTIONS(3253), - [anon_sym_atomic] = ACTIONS(3253), - [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), + [1351] = { + [sym_line_comment] = STATE(1351), + [sym_block_comment] = STATE(1351), + [sym_identifier] = ACTIONS(3257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_COMMA] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_PERCENT] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3257), + [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(3255), + [anon_sym_RBRACK] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_COLON] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3255), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_CARET] = ACTIONS(3255), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3255), + [anon_sym_LT_LT] = ACTIONS(3255), + [anon_sym_GT_GT] = ACTIONS(3257), + [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(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_QMARK_DOT] = ACTIONS(3255), + [anon_sym_POUND_LBRACK] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_is] = ACTIONS(3257), + [anon_sym_BANGis] = ACTIONS(3255), + [anon_sym_in] = ACTIONS(3257), + [anon_sym_BANGin] = ACTIONS(3255), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3255), + [sym_rune_literal] = ACTIONS(3255), + [sym_pseudo_compile_time_identifier] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3255), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [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), + }, + [1352] = { + [sym_line_comment] = STATE(1352), + [sym_block_comment] = STATE(1352), + [sym_identifier] = ACTIONS(3249), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3247), + [anon_sym_PERCENT] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [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(3247), + [anon_sym_RBRACK] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_COLON] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3247), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_CARET] = ACTIONS(3247), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3247), + [anon_sym_LT_LT] = ACTIONS(3247), + [anon_sym_GT_GT] = ACTIONS(3249), + [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(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3247), + [anon_sym_POUND_LBRACK] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3247), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3247), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3247), + [sym_rune_literal] = ACTIONS(3247), + [sym_pseudo_compile_time_identifier] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3247), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [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), + }, + [1353] = { + [sym_line_comment] = STATE(1353), + [sym_block_comment] = STATE(1353), + [sym_identifier] = ACTIONS(3442), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_as] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3442), + [anon_sym_fn] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_PERCENT] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3442), + [anon_sym_GT] = ACTIONS(3442), + [anon_sym_EQ_EQ] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3440), + [anon_sym_LT_EQ] = ACTIONS(3440), + [anon_sym_GT_EQ] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3440), + [anon_sym_RBRACK] = ACTIONS(3440), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_mut] = ACTIONS(3442), + [anon_sym_COLON] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [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(3440), + [anon_sym_LBRACK2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_CARET] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3440), + [anon_sym_LT_LT] = ACTIONS(3440), + [anon_sym_GT_GT] = ACTIONS(3442), + [anon_sym_GT_GT_GT] = ACTIONS(3440), + [anon_sym_AMP_CARET] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_PIPE_PIPE] = ACTIONS(3440), + [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(3440), + [anon_sym_POUND_LBRACK] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_DOLLARif] = ACTIONS(3442), + [anon_sym_is] = ACTIONS(3442), + [anon_sym_BANGis] = ACTIONS(3440), + [anon_sym_in] = ACTIONS(3442), + [anon_sym_BANGin] = ACTIONS(3440), + [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(3440), + [sym_rune_literal] = ACTIONS(3440), + [sym_pseudo_compile_time_identifier] = ACTIONS(3442), + [anon_sym_shared] = ACTIONS(3442), + [anon_sym_map_LBRACK] = ACTIONS(3440), + [anon_sym_chan] = ACTIONS(3442), + [anon_sym_thread] = ACTIONS(3442), + [anon_sym_atomic] = ACTIONS(3442), + [sym___double_quote] = ACTIONS(3440), + [sym___single_quote] = ACTIONS(3440), + [sym___c_double_quote] = ACTIONS(3440), + [sym___c_single_quote] = ACTIONS(3440), + [sym___r_double_quote] = ACTIONS(3440), + [sym___r_single_quote] = ACTIONS(3440), + }, + [1354] = { + [sym_line_comment] = STATE(1354), + [sym_block_comment] = STATE(1354), + [sym_identifier] = ACTIONS(3011), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3011), + [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_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), + }, + [1355] = { + [sym_line_comment] = STATE(1355), + [sym_block_comment] = STATE(1355), + [sym_identifier] = ACTIONS(3245), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_as] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_COMMA] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3243), + [anon_sym_PERCENT] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [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(3243), + [anon_sym_RBRACK] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_COLON] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3243), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3243), + [anon_sym_LT_LT] = ACTIONS(3243), + [anon_sym_GT_GT] = ACTIONS(3245), + [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(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_QMARK_DOT] = ACTIONS(3243), + [anon_sym_POUND_LBRACK] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_is] = ACTIONS(3245), + [anon_sym_BANGis] = ACTIONS(3243), + [anon_sym_in] = ACTIONS(3245), + [anon_sym_BANGin] = ACTIONS(3243), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3243), + [sym_rune_literal] = ACTIONS(3243), + [sym_pseudo_compile_time_identifier] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3243), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [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), + }, + [1356] = { + [sym_line_comment] = STATE(1356), + [sym_block_comment] = STATE(1356), + [sym_identifier] = ACTIONS(3431), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3431), + [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_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), }, [1357] = { - [sym_identifier] = ACTIONS(3412), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_as] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_COMMA] = ACTIONS(3410), - [anon_sym_RBRACE] = ACTIONS(3410), - [anon_sym_LPAREN] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_fn] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_SLASH] = ACTIONS(3412), - [anon_sym_PERCENT] = ACTIONS(3410), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [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(3410), - [anon_sym_RBRACK] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_mut] = ACTIONS(3412), - [anon_sym_COLON] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_QMARK] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_go] = ACTIONS(3412), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3410), - [anon_sym_LBRACK2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_CARET] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_LT_DASH] = ACTIONS(3410), - [anon_sym_LT_LT] = ACTIONS(3410), - [anon_sym_GT_GT] = ACTIONS(3412), - [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(3412), - [sym_none] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_nil] = ACTIONS(3412), - [anon_sym_QMARK_DOT] = ACTIONS(3410), - [anon_sym_POUND_LBRACK] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOLLARif] = ACTIONS(3412), - [anon_sym_is] = ACTIONS(3412), - [anon_sym_BANGis] = ACTIONS(3410), - [anon_sym_in] = ACTIONS(3412), - [anon_sym_BANGin] = ACTIONS(3410), - [anon_sym_match] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_rlock] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_sql] = ACTIONS(3412), - [sym_int_literal] = ACTIONS(3412), - [sym_float_literal] = ACTIONS(3410), - [sym_rune_literal] = ACTIONS(3410), - [sym_pseudo_compile_time_identifier] = ACTIONS(3412), - [anon_sym_shared] = ACTIONS(3412), - [anon_sym_map_LBRACK] = ACTIONS(3410), - [anon_sym_chan] = ACTIONS(3412), - [anon_sym_thread] = ACTIONS(3412), - [anon_sym_atomic] = ACTIONS(3412), - [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), + [sym_line_comment] = STATE(1357), + [sym_block_comment] = STATE(1357), + [sym_identifier] = ACTIONS(3438), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3438), + [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_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), }, [1358] = { - [sym_identifier] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1358), + [sym_block_comment] = STATE(1358), + [sym_identifier] = ACTIONS(2975), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2975), + [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_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(2975), + [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), }, [1359] = { + [sym_line_comment] = STATE(1359), + [sym_block_comment] = STATE(1359), + [sym_identifier] = ACTIONS(3145), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3145), + [anon_sym_as] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_fn] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3145), + [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(3143), + [anon_sym_RBRACK] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_mut] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_go] = ACTIONS(3145), + [anon_sym_spawn] = ACTIONS(3145), + [anon_sym_json_DOTdecode] = ACTIONS(3143), + [anon_sym_LBRACK2] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_CARET] = ACTIONS(3143), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_LT_LT] = ACTIONS(3143), + [anon_sym_GT_GT] = ACTIONS(3145), + [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(3145), + [sym_none] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_nil] = ACTIONS(3145), + [anon_sym_QMARK_DOT] = ACTIONS(3143), + [anon_sym_POUND_LBRACK] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_DOLLARif] = ACTIONS(3145), + [anon_sym_is] = ACTIONS(3145), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_in] = ACTIONS(3145), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3145), + [anon_sym_select] = ACTIONS(3145), + [anon_sym_lock] = ACTIONS(3145), + [anon_sym_rlock] = ACTIONS(3145), + [anon_sym_unsafe] = ACTIONS(3145), + [anon_sym_sql] = ACTIONS(3145), + [sym_int_literal] = ACTIONS(3145), + [sym_float_literal] = ACTIONS(3143), + [sym_rune_literal] = ACTIONS(3143), + [sym_pseudo_compile_time_identifier] = ACTIONS(3145), + [anon_sym_shared] = ACTIONS(3145), + [anon_sym_map_LBRACK] = ACTIONS(3143), + [anon_sym_chan] = ACTIONS(3145), + [anon_sym_thread] = ACTIONS(3145), + [anon_sym_atomic] = ACTIONS(3145), + [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), + }, + [1360] = { + [sym_line_comment] = STATE(1360), + [sym_block_comment] = STATE(1360), [sym_identifier] = ACTIONS(3027), - [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3027), [anon_sym_DOT] = ACTIONS(3027), [anon_sym_as] = ACTIONS(3027), [anon_sym_LBRACE] = ACTIONS(3025), @@ -171756,7 +173039,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(3027), [anon_sym_DASH] = ACTIONS(3027), [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_SLASH] = ACTIONS(3027), [anon_sym_PERCENT] = ACTIONS(3025), [anon_sym_LT] = ACTIONS(3027), [anon_sym_GT] = ACTIONS(3027), @@ -171822,864 +173104,1229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3025), [sym___r_single_quote] = ACTIONS(3025), }, - [1360] = { - [sym_identifier] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), + [1361] = { + [sym_line_comment] = STATE(1361), + [sym_block_comment] = STATE(1361), + [sym_identifier] = ACTIONS(3035), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3033), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_RBRACE] = ACTIONS(3033), + [anon_sym_LPAREN] = ACTIONS(3033), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_PERCENT] = ACTIONS(3033), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3033), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_LT_EQ] = ACTIONS(3033), + [anon_sym_GT_EQ] = ACTIONS(3033), + [anon_sym_LBRACK] = ACTIONS(3033), + [anon_sym_RBRACK] = ACTIONS(3033), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_mut] = ACTIONS(3035), + [anon_sym_COLON] = ACTIONS(3033), + [anon_sym_PLUS_PLUS] = ACTIONS(3033), + [anon_sym_DASH_DASH] = ACTIONS(3033), + [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(3033), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3033), + [anon_sym_CARET] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3033), + [anon_sym_LT_LT] = ACTIONS(3033), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3033), + [anon_sym_AMP_CARET] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(3033), + [anon_sym_PIPE_PIPE] = ACTIONS(3033), + [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(3033), + [anon_sym_POUND_LBRACK] = ACTIONS(3033), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_DOLLARif] = ACTIONS(3035), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3033), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3033), + [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(3033), + [sym_rune_literal] = ACTIONS(3033), + [sym_pseudo_compile_time_identifier] = ACTIONS(3035), + [anon_sym_shared] = ACTIONS(3035), + [anon_sym_map_LBRACK] = ACTIONS(3033), + [anon_sym_chan] = ACTIONS(3035), + [anon_sym_thread] = ACTIONS(3035), + [anon_sym_atomic] = ACTIONS(3035), + [sym___double_quote] = ACTIONS(3033), + [sym___single_quote] = ACTIONS(3033), + [sym___c_double_quote] = ACTIONS(3033), + [sym___c_single_quote] = ACTIONS(3033), + [sym___r_double_quote] = ACTIONS(3033), + [sym___r_single_quote] = ACTIONS(3033), + }, + [1362] = { + [sym_line_comment] = STATE(1362), + [sym_block_comment] = STATE(1362), + [sym_identifier] = ACTIONS(3015), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3015), + [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_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), + }, + [1363] = { + [sym_line_comment] = STATE(1363), + [sym_block_comment] = STATE(1363), + [sym_identifier] = ACTIONS(3003), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3003), + [anon_sym_as] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3003), + [anon_sym_fn] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(3003), + [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(3001), + [anon_sym_RBRACK] = ACTIONS(3001), + [anon_sym_struct] = ACTIONS(3003), + [anon_sym_mut] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_go] = ACTIONS(3003), + [anon_sym_spawn] = ACTIONS(3003), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3003), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3003), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3003), + [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(3003), + [sym_none] = ACTIONS(3003), + [sym_true] = ACTIONS(3003), + [sym_false] = ACTIONS(3003), + [sym_nil] = ACTIONS(3003), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3003), + [anon_sym_DOLLARif] = ACTIONS(3003), + [anon_sym_is] = ACTIONS(3003), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3003), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3003), + [anon_sym_select] = ACTIONS(3003), + [anon_sym_lock] = ACTIONS(3003), + [anon_sym_rlock] = ACTIONS(3003), + [anon_sym_unsafe] = ACTIONS(3003), + [anon_sym_sql] = ACTIONS(3003), + [sym_int_literal] = ACTIONS(3003), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3003), + [anon_sym_shared] = ACTIONS(3003), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3003), + [anon_sym_thread] = ACTIONS(3003), + [anon_sym_atomic] = ACTIONS(3003), + [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), + }, + [1364] = { + [sym_line_comment] = STATE(1364), + [sym_block_comment] = STATE(1364), + [sym_identifier] = ACTIONS(2999), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2999), + [anon_sym_as] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2999), + [anon_sym_fn] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2999), + [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(2997), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2999), + [anon_sym_mut] = ACTIONS(2999), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_go] = ACTIONS(2999), + [anon_sym_spawn] = ACTIONS(2999), + [anon_sym_json_DOTdecode] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2999), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2999), + [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(2999), + [sym_none] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_nil] = ACTIONS(2999), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_DOLLARif] = ACTIONS(2999), + [anon_sym_is] = ACTIONS(2999), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2999), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2999), + [anon_sym_select] = ACTIONS(2999), + [anon_sym_lock] = ACTIONS(2999), + [anon_sym_rlock] = ACTIONS(2999), + [anon_sym_unsafe] = ACTIONS(2999), + [anon_sym_sql] = ACTIONS(2999), + [sym_int_literal] = ACTIONS(2999), + [sym_float_literal] = ACTIONS(2997), + [sym_rune_literal] = ACTIONS(2997), + [sym_pseudo_compile_time_identifier] = ACTIONS(2999), + [anon_sym_shared] = ACTIONS(2999), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2999), + [anon_sym_thread] = ACTIONS(2999), + [anon_sym_atomic] = ACTIONS(2999), + [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), + }, + [1365] = { + [sym_line_comment] = STATE(1365), + [sym_block_comment] = STATE(1365), + [sym_identifier] = ACTIONS(2983), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2983), + [anon_sym_as] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2983), + [anon_sym_fn] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_GT] = ACTIONS(2983), + [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(2981), + [anon_sym_RBRACK] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2983), + [anon_sym_mut] = ACTIONS(2983), + [anon_sym_COLON] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_QMARK] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_go] = ACTIONS(2983), + [anon_sym_spawn] = ACTIONS(2983), + [anon_sym_json_DOTdecode] = ACTIONS(2981), + [anon_sym_LBRACK2] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_LT_DASH] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2981), + [anon_sym_GT_GT] = ACTIONS(2983), + [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(2983), + [sym_none] = ACTIONS(2983), + [sym_true] = ACTIONS(2983), + [sym_false] = ACTIONS(2983), + [sym_nil] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(2981), + [anon_sym_POUND_LBRACK] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_DOLLARif] = ACTIONS(2983), + [anon_sym_is] = ACTIONS(2983), + [anon_sym_BANGis] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2983), + [anon_sym_BANGin] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2983), + [anon_sym_select] = ACTIONS(2983), + [anon_sym_lock] = ACTIONS(2983), + [anon_sym_rlock] = ACTIONS(2983), + [anon_sym_unsafe] = ACTIONS(2983), + [anon_sym_sql] = ACTIONS(2983), + [sym_int_literal] = ACTIONS(2983), + [sym_float_literal] = ACTIONS(2981), + [sym_rune_literal] = ACTIONS(2981), + [sym_pseudo_compile_time_identifier] = ACTIONS(2983), + [anon_sym_shared] = ACTIONS(2983), + [anon_sym_map_LBRACK] = ACTIONS(2981), + [anon_sym_chan] = ACTIONS(2983), + [anon_sym_thread] = ACTIONS(2983), + [anon_sym_atomic] = ACTIONS(2983), + [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), + }, + [1366] = { + [sym_line_comment] = STATE(1366), + [sym_block_comment] = STATE(1366), + [sym_identifier] = ACTIONS(3043), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_as] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym_PIPE] = ACTIONS(3043), + [anon_sym_fn] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_PERCENT] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(3043), + [anon_sym_GT] = ACTIONS(3043), + [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(3041), + [anon_sym_RBRACK] = ACTIONS(3041), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_mut] = ACTIONS(3043), + [anon_sym_COLON] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_go] = ACTIONS(3043), + [anon_sym_spawn] = ACTIONS(3043), + [anon_sym_json_DOTdecode] = ACTIONS(3041), + [anon_sym_LBRACK2] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_CARET] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3041), + [anon_sym_LT_LT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(3043), + [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(3043), + [sym_none] = ACTIONS(3043), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [sym_nil] = ACTIONS(3043), + [anon_sym_QMARK_DOT] = ACTIONS(3041), + [anon_sym_POUND_LBRACK] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_DOLLARif] = ACTIONS(3043), + [anon_sym_is] = ACTIONS(3043), + [anon_sym_BANGis] = ACTIONS(3041), + [anon_sym_in] = ACTIONS(3043), + [anon_sym_BANGin] = ACTIONS(3041), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3043), + [anon_sym_rlock] = ACTIONS(3043), + [anon_sym_unsafe] = ACTIONS(3043), + [anon_sym_sql] = ACTIONS(3043), + [sym_int_literal] = ACTIONS(3043), + [sym_float_literal] = ACTIONS(3041), + [sym_rune_literal] = ACTIONS(3041), + [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_shared] = ACTIONS(3043), + [anon_sym_map_LBRACK] = ACTIONS(3041), + [anon_sym_chan] = ACTIONS(3043), + [anon_sym_thread] = ACTIONS(3043), + [anon_sym_atomic] = ACTIONS(3043), + [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), + }, + [1367] = { + [sym_line_comment] = STATE(1367), + [sym_block_comment] = STATE(1367), + [sym_identifier] = ACTIONS(3051), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3051), + [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_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), + }, + [1368] = { + [sym_line_comment] = STATE(1368), + [sym_block_comment] = STATE(1368), + [sym_identifier] = ACTIONS(3229), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3229), [anon_sym_DOT] = ACTIONS(3229), [anon_sym_as] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_COMMA] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_fn] = ACTIONS(3227), + [anon_sym_fn] = ACTIONS(3229), [anon_sym_PLUS] = ACTIONS(3229), [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3227), + [anon_sym_PERCENT] = ACTIONS(3227), [anon_sym_LT] = ACTIONS(3229), [anon_sym_GT] = ACTIONS(3229), - [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(3225), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_mut] = ACTIONS(3227), - [anon_sym_COLON] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), + [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(3227), + [anon_sym_RBRACK] = ACTIONS(3227), + [anon_sym_struct] = ACTIONS(3229), + [anon_sym_mut] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), [anon_sym_QMARK] = ACTIONS(3229), [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3225), + [anon_sym_go] = ACTIONS(3229), + [anon_sym_spawn] = ACTIONS(3229), + [anon_sym_json_DOTdecode] = ACTIONS(3227), [anon_sym_LBRACK2] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_CARET] = ACTIONS(3227), [anon_sym_AMP] = ACTIONS(3229), - [anon_sym_LT_DASH] = ACTIONS(3225), - [anon_sym_LT_LT] = ACTIONS(3232), + [anon_sym_LT_DASH] = ACTIONS(3227), + [anon_sym_LT_LT] = ACTIONS(3227), [anon_sym_GT_GT] = ACTIONS(3229), - [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_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(3229), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3232), - [anon_sym_POUND_LBRACK] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), + [sym_none] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_nil] = ACTIONS(3229), + [anon_sym_QMARK_DOT] = ACTIONS(3227), + [anon_sym_POUND_LBRACK] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_DOLLARif] = ACTIONS(3229), [anon_sym_is] = ACTIONS(3229), - [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_BANGis] = ACTIONS(3227), [anon_sym_in] = ACTIONS(3229), - [anon_sym_BANGin] = ACTIONS(3232), - [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), - }, - [1361] = { - [sym_identifier] = ACTIONS(3217), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3215), - [anon_sym_RBRACE] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [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(3222), - [anon_sym_RBRACK] = ACTIONS(3215), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_mut] = ACTIONS(3217), - [anon_sym_COLON] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_go] = ACTIONS(3217), - [anon_sym_spawn] = ACTIONS(3217), - [anon_sym_json_DOTdecode] = ACTIONS(3215), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3222), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3222), - [anon_sym_GT_GT] = ACTIONS(3219), - [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(3219), - [sym_none] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_nil] = ACTIONS(3217), - [anon_sym_QMARK_DOT] = ACTIONS(3222), - [anon_sym_POUND_LBRACK] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_DOLLARif] = ACTIONS(3217), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3222), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3222), - [anon_sym_match] = ACTIONS(3217), - [anon_sym_select] = ACTIONS(3217), - [anon_sym_lock] = ACTIONS(3217), - [anon_sym_rlock] = ACTIONS(3217), - [anon_sym_unsafe] = ACTIONS(3217), - [anon_sym_sql] = ACTIONS(3217), - [sym_int_literal] = ACTIONS(3217), - [sym_float_literal] = ACTIONS(3215), - [sym_rune_literal] = ACTIONS(3215), - [sym_pseudo_compile_time_identifier] = ACTIONS(3217), - [anon_sym_shared] = ACTIONS(3217), - [anon_sym_map_LBRACK] = ACTIONS(3215), - [anon_sym_chan] = ACTIONS(3217), - [anon_sym_thread] = ACTIONS(3217), - [anon_sym_atomic] = ACTIONS(3217), - [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), - }, - [1362] = { - [sym_identifier] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [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), - }, - [1363] = { - [sym_identifier] = ACTIONS(3275), - [sym_comment] = ACTIONS(3), - [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), + [anon_sym_BANGin] = ACTIONS(3227), + [anon_sym_match] = ACTIONS(3229), + [anon_sym_select] = ACTIONS(3229), + [anon_sym_lock] = ACTIONS(3229), + [anon_sym_rlock] = ACTIONS(3229), + [anon_sym_unsafe] = ACTIONS(3229), + [anon_sym_sql] = ACTIONS(3229), + [sym_int_literal] = ACTIONS(3229), + [sym_float_literal] = ACTIONS(3227), + [sym_rune_literal] = ACTIONS(3227), + [sym_pseudo_compile_time_identifier] = ACTIONS(3229), + [anon_sym_shared] = ACTIONS(3229), + [anon_sym_map_LBRACK] = ACTIONS(3227), + [anon_sym_chan] = ACTIONS(3229), + [anon_sym_thread] = ACTIONS(3229), + [anon_sym_atomic] = ACTIONS(3229), + [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), }, - [1364] = { - [sym_identifier] = ACTIONS(3322), - [sym_comment] = ACTIONS(3), - [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), + [1369] = { + [sym_line_comment] = STATE(1369), + [sym_block_comment] = STATE(1369), + [sym_identifier] = ACTIONS(3221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_DOT] = ACTIONS(3221), + [anon_sym_as] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_fn] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT] = ACTIONS(3221), + [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(3219), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3221), + [anon_sym_mut] = ACTIONS(3221), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [anon_sym_QMARK] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_go] = ACTIONS(3221), + [anon_sym_spawn] = ACTIONS(3221), + [anon_sym_json_DOTdecode] = ACTIONS(3219), + [anon_sym_LBRACK2] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_CARET] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(3219), + [anon_sym_LT_LT] = ACTIONS(3219), + [anon_sym_GT_GT] = ACTIONS(3221), + [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(3221), + [sym_none] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_nil] = ACTIONS(3221), + [anon_sym_QMARK_DOT] = ACTIONS(3219), + [anon_sym_POUND_LBRACK] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_DOLLARif] = ACTIONS(3221), + [anon_sym_is] = ACTIONS(3221), + [anon_sym_BANGis] = ACTIONS(3219), + [anon_sym_in] = ACTIONS(3221), + [anon_sym_BANGin] = ACTIONS(3219), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_lock] = ACTIONS(3221), + [anon_sym_rlock] = ACTIONS(3221), + [anon_sym_unsafe] = ACTIONS(3221), + [anon_sym_sql] = ACTIONS(3221), + [sym_int_literal] = ACTIONS(3221), + [sym_float_literal] = ACTIONS(3219), + [sym_rune_literal] = ACTIONS(3219), + [sym_pseudo_compile_time_identifier] = ACTIONS(3221), + [anon_sym_shared] = ACTIONS(3221), + [anon_sym_map_LBRACK] = ACTIONS(3219), + [anon_sym_chan] = ACTIONS(3221), + [anon_sym_thread] = ACTIONS(3221), + [anon_sym_atomic] = ACTIONS(3221), + [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), }, - [1365] = { - [sym_identifier] = ACTIONS(3318), - [sym_comment] = ACTIONS(3), - [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), + [1370] = { + [sym_line_comment] = STATE(1370), + [sym_block_comment] = STATE(1370), + [sym_identifier] = ACTIONS(3023), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3023), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_as] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3021), + [anon_sym_COMMA] = ACTIONS(3021), + [anon_sym_RBRACE] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(3021), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_fn] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(3021), + [anon_sym_PERCENT] = ACTIONS(3021), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_EQ_EQ] = ACTIONS(3021), + [anon_sym_BANG_EQ] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3021), + [anon_sym_GT_EQ] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_RBRACK] = ACTIONS(3021), + [anon_sym_struct] = ACTIONS(3023), + [anon_sym_mut] = ACTIONS(3023), + [anon_sym_COLON] = ACTIONS(3021), + [anon_sym_PLUS_PLUS] = ACTIONS(3021), + [anon_sym_DASH_DASH] = ACTIONS(3021), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3023), + [anon_sym_go] = ACTIONS(3023), + [anon_sym_spawn] = ACTIONS(3023), + [anon_sym_json_DOTdecode] = ACTIONS(3021), + [anon_sym_LBRACK2] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3021), + [anon_sym_LT_LT] = ACTIONS(3021), + [anon_sym_GT_GT] = ACTIONS(3023), + [anon_sym_GT_GT_GT] = ACTIONS(3021), + [anon_sym_AMP_CARET] = ACTIONS(3021), + [anon_sym_AMP_AMP] = ACTIONS(3021), + [anon_sym_PIPE_PIPE] = ACTIONS(3021), + [anon_sym_or] = ACTIONS(3023), + [sym_none] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_nil] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(3021), + [anon_sym_POUND_LBRACK] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_DOLLARif] = ACTIONS(3023), + [anon_sym_is] = ACTIONS(3023), + [anon_sym_BANGis] = ACTIONS(3021), + [anon_sym_in] = ACTIONS(3023), + [anon_sym_BANGin] = ACTIONS(3021), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_select] = ACTIONS(3023), + [anon_sym_lock] = ACTIONS(3023), + [anon_sym_rlock] = ACTIONS(3023), + [anon_sym_unsafe] = ACTIONS(3023), + [anon_sym_sql] = ACTIONS(3023), + [sym_int_literal] = ACTIONS(3023), + [sym_float_literal] = ACTIONS(3021), + [sym_rune_literal] = ACTIONS(3021), + [sym_pseudo_compile_time_identifier] = ACTIONS(3023), + [anon_sym_shared] = ACTIONS(3023), + [anon_sym_map_LBRACK] = ACTIONS(3021), + [anon_sym_chan] = ACTIONS(3023), + [anon_sym_thread] = ACTIONS(3023), + [anon_sym_atomic] = ACTIONS(3023), + [sym___double_quote] = ACTIONS(3021), + [sym___single_quote] = ACTIONS(3021), + [sym___c_double_quote] = ACTIONS(3021), + [sym___c_single_quote] = ACTIONS(3021), + [sym___r_double_quote] = ACTIONS(3021), + [sym___r_single_quote] = ACTIONS(3021), }, - [1366] = { - [sym_identifier] = ACTIONS(3307), - [sym_comment] = ACTIONS(3), - [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), + [1371] = { + [sym_line_comment] = STATE(1371), + [sym_block_comment] = STATE(1371), + [sym_identifier] = ACTIONS(2979), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2979), + [anon_sym_as] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_COMMA] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_fn] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2977), + [anon_sym_BANG_EQ] = ACTIONS(2977), + [anon_sym_LT_EQ] = ACTIONS(2977), + [anon_sym_GT_EQ] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_RBRACK] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2979), + [anon_sym_mut] = ACTIONS(2979), + [anon_sym_COLON] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_go] = ACTIONS(2979), + [anon_sym_spawn] = ACTIONS(2979), + [anon_sym_json_DOTdecode] = ACTIONS(2977), + [anon_sym_LBRACK2] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_CARET] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_LT_DASH] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2977), + [anon_sym_GT_GT] = ACTIONS(2979), + [anon_sym_GT_GT_GT] = ACTIONS(2977), + [anon_sym_AMP_CARET] = ACTIONS(2977), + [anon_sym_AMP_AMP] = ACTIONS(2977), + [anon_sym_PIPE_PIPE] = ACTIONS(2977), + [anon_sym_or] = ACTIONS(2979), + [sym_none] = ACTIONS(2979), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [sym_nil] = ACTIONS(2979), + [anon_sym_QMARK_DOT] = ACTIONS(2977), + [anon_sym_POUND_LBRACK] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_DOLLARif] = ACTIONS(2979), + [anon_sym_is] = ACTIONS(2979), + [anon_sym_BANGis] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_BANGin] = ACTIONS(2977), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_select] = ACTIONS(2979), + [anon_sym_lock] = ACTIONS(2979), + [anon_sym_rlock] = ACTIONS(2979), + [anon_sym_unsafe] = ACTIONS(2979), + [anon_sym_sql] = ACTIONS(2979), + [sym_int_literal] = ACTIONS(2979), + [sym_float_literal] = ACTIONS(2977), + [sym_rune_literal] = ACTIONS(2977), + [sym_pseudo_compile_time_identifier] = ACTIONS(2979), + [anon_sym_shared] = ACTIONS(2979), + [anon_sym_map_LBRACK] = ACTIONS(2977), + [anon_sym_chan] = ACTIONS(2979), + [anon_sym_thread] = ACTIONS(2979), + [anon_sym_atomic] = ACTIONS(2979), + [sym___double_quote] = ACTIONS(2977), + [sym___single_quote] = ACTIONS(2977), + [sym___c_double_quote] = ACTIONS(2977), + [sym___c_single_quote] = ACTIONS(2977), + [sym___r_double_quote] = ACTIONS(2977), + [sym___r_single_quote] = ACTIONS(2977), }, - [1367] = { - [sym_identifier] = ACTIONS(3378), - [sym_comment] = ACTIONS(3), - [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), + [1372] = { + [sym_line_comment] = STATE(1372), + [sym_block_comment] = STATE(1372), + [sym_identifier] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_LT_EQ] = ACTIONS(3284), + [anon_sym_GT_EQ] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3284), + [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(3284), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3279), + [anon_sym_spawn] = ACTIONS(3279), + [anon_sym_json_DOTdecode] = ACTIONS(3277), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_CARET] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3277), + [anon_sym_LT_LT] = ACTIONS(3284), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym_GT_GT_GT] = ACTIONS(3284), + [anon_sym_AMP_CARET] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_PIPE_PIPE] = ACTIONS(3284), + [anon_sym_or] = ACTIONS(3281), + [sym_none] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_nil] = ACTIONS(3279), + [anon_sym_QMARK_DOT] = ACTIONS(3284), + [anon_sym_POUND_LBRACK] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_DOLLARif] = ACTIONS(3279), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3284), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3284), + [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), }, - [1368] = { - [sym_identifier] = ACTIONS(3303), - [sym_comment] = ACTIONS(3), - [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), + [1373] = { + [sym_line_comment] = STATE(1373), + [sym_block_comment] = STATE(1373), + [sym_identifier] = ACTIONS(2743), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_as] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_COMMA] = ACTIONS(2741), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [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(2741), + [anon_sym_RBRACK] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_mut] = ACTIONS(2743), + [anon_sym_COLON] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_go] = ACTIONS(2743), + [anon_sym_spawn] = ACTIONS(2743), + [anon_sym_json_DOTdecode] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LT_LT] = ACTIONS(2741), + [anon_sym_GT_GT] = ACTIONS(2743), + [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(2743), + [sym_none] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_nil] = ACTIONS(2743), + [anon_sym_QMARK_DOT] = ACTIONS(2741), + [anon_sym_POUND_LBRACK] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_DOLLARif] = ACTIONS(2743), + [anon_sym_is] = ACTIONS(2743), + [anon_sym_BANGis] = ACTIONS(2741), + [anon_sym_in] = ACTIONS(2743), + [anon_sym_BANGin] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_select] = ACTIONS(2743), + [anon_sym_lock] = ACTIONS(2743), + [anon_sym_rlock] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_sql] = ACTIONS(2743), + [sym_int_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2741), + [sym_rune_literal] = ACTIONS(2741), + [sym_pseudo_compile_time_identifier] = ACTIONS(2743), + [anon_sym_shared] = ACTIONS(2743), + [anon_sym_map_LBRACK] = ACTIONS(2741), + [anon_sym_chan] = ACTIONS(2743), + [anon_sym_thread] = ACTIONS(2743), + [anon_sym_atomic] = ACTIONS(2743), + [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), }, - [1369] = { - [sym_identifier] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [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(3175), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_COLON] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3175), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3175), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3177), - [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(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3175), - [anon_sym_POUND_LBRACK] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3175), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3175), - [sym_rune_literal] = ACTIONS(3175), - [sym_pseudo_compile_time_identifier] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3175), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [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), + [1374] = { + [sym_line_comment] = STATE(1374), + [sym_block_comment] = STATE(1374), + [sym_identifier] = ACTIONS(3387), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3387), + [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_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), }, - [1370] = { + [1375] = { + [sym_line_comment] = STATE(1375), + [sym_block_comment] = STATE(1375), [sym_identifier] = ACTIONS(3269), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3269), - [anon_sym_as] = ACTIONS(3269), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_DOT] = ACTIONS(3271), + [anon_sym_as] = ACTIONS(3271), [anon_sym_LBRACE] = ACTIONS(3267), [anon_sym_COMMA] = ACTIONS(3267), [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_PIPE] = ACTIONS(3271), [anon_sym_fn] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3269), - [anon_sym_PERCENT] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3269), - [anon_sym_GT] = ACTIONS(3269), - [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(3267), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_GT] = ACTIONS(3271), + [anon_sym_EQ_EQ] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_LT_EQ] = ACTIONS(3274), + [anon_sym_GT_EQ] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), [anon_sym_RBRACK] = ACTIONS(3267), [anon_sym_struct] = ACTIONS(3269), [anon_sym_mut] = ACTIONS(3269), [anon_sym_COLON] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_QMARK] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3953), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), [anon_sym_go] = ACTIONS(3269), [anon_sym_spawn] = ACTIONS(3269), [anon_sym_json_DOTdecode] = ACTIONS(3267), - [anon_sym_LBRACK2] = ACTIONS(3269), + [anon_sym_LBRACK2] = ACTIONS(3271), [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_CARET] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3271), [anon_sym_LT_DASH] = ACTIONS(3267), - [anon_sym_LT_LT] = ACTIONS(3267), - [anon_sym_GT_GT] = ACTIONS(3269), - [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(3269), + [anon_sym_LT_LT] = ACTIONS(3274), + [anon_sym_GT_GT] = ACTIONS(3271), + [anon_sym_GT_GT_GT] = ACTIONS(3274), + [anon_sym_AMP_CARET] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3271), [sym_none] = ACTIONS(3269), [sym_true] = ACTIONS(3269), [sym_false] = ACTIONS(3269), [sym_nil] = ACTIONS(3269), - [anon_sym_QMARK_DOT] = ACTIONS(3267), - [anon_sym_POUND_LBRACK] = ACTIONS(3267), + [anon_sym_QMARK_DOT] = ACTIONS(3274), + [anon_sym_POUND_LBRACK] = ACTIONS(3274), [anon_sym_if] = ACTIONS(3269), [anon_sym_DOLLARif] = ACTIONS(3269), - [anon_sym_is] = ACTIONS(3269), - [anon_sym_BANGis] = ACTIONS(3267), - [anon_sym_in] = ACTIONS(3269), - [anon_sym_BANGin] = ACTIONS(3267), + [anon_sym_is] = ACTIONS(3271), + [anon_sym_BANGis] = ACTIONS(3274), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3274), [anon_sym_match] = ACTIONS(3269), [anon_sym_select] = ACTIONS(3269), [anon_sym_lock] = ACTIONS(3269), @@ -172702,4514 +174349,5258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3267), [sym___r_single_quote] = ACTIONS(3267), }, - [1371] = { - [sym_identifier] = ACTIONS(3299), - [sym_comment] = ACTIONS(3), - [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), - }, - [1372] = { - [sym_identifier] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [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_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), - }, - [1373] = { - [sym_identifier] = ACTIONS(3295), - [sym_comment] = ACTIONS(3), - [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), - }, - [1374] = { - [sym_identifier] = ACTIONS(3404), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3404), - [anon_sym_as] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_COMMA] = ACTIONS(3402), - [anon_sym_RBRACE] = ACTIONS(3402), - [anon_sym_LPAREN] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_fn] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3402), - [anon_sym_SLASH] = ACTIONS(3404), - [anon_sym_PERCENT] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [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(3402), - [anon_sym_RBRACK] = ACTIONS(3402), - [anon_sym_struct] = ACTIONS(3404), - [anon_sym_mut] = ACTIONS(3404), - [anon_sym_COLON] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_QMARK] = ACTIONS(3404), - [anon_sym_BANG] = ACTIONS(3404), - [anon_sym_go] = ACTIONS(3404), - [anon_sym_spawn] = ACTIONS(3404), - [anon_sym_json_DOTdecode] = ACTIONS(3402), - [anon_sym_LBRACK2] = ACTIONS(3404), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_CARET] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(3402), - [anon_sym_GT_GT] = ACTIONS(3404), - [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(3404), - [sym_none] = ACTIONS(3404), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [sym_nil] = ACTIONS(3404), - [anon_sym_QMARK_DOT] = ACTIONS(3402), - [anon_sym_POUND_LBRACK] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_DOLLARif] = ACTIONS(3404), - [anon_sym_is] = ACTIONS(3404), - [anon_sym_BANGis] = ACTIONS(3402), - [anon_sym_in] = ACTIONS(3404), - [anon_sym_BANGin] = ACTIONS(3402), - [anon_sym_match] = ACTIONS(3404), - [anon_sym_select] = ACTIONS(3404), - [anon_sym_lock] = ACTIONS(3404), - [anon_sym_rlock] = ACTIONS(3404), - [anon_sym_unsafe] = ACTIONS(3404), - [anon_sym_sql] = ACTIONS(3404), - [sym_int_literal] = ACTIONS(3404), - [sym_float_literal] = ACTIONS(3402), - [sym_rune_literal] = ACTIONS(3402), - [sym_pseudo_compile_time_identifier] = ACTIONS(3404), - [anon_sym_shared] = ACTIONS(3404), - [anon_sym_map_LBRACK] = ACTIONS(3402), - [anon_sym_chan] = ACTIONS(3404), - [anon_sym_thread] = ACTIONS(3404), - [anon_sym_atomic] = ACTIONS(3404), - [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), - }, - [1375] = { - [sym_identifier] = ACTIONS(3340), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_as] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_COMMA] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_fn] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PERCENT] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [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(3338), - [anon_sym_RBRACK] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_mut] = ACTIONS(3340), - [anon_sym_COLON] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_QMARK] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_go] = ACTIONS(3340), - [anon_sym_spawn] = ACTIONS(3340), - [anon_sym_json_DOTdecode] = ACTIONS(3338), - [anon_sym_LBRACK2] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_CARET] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_LT_DASH] = ACTIONS(3338), - [anon_sym_LT_LT] = ACTIONS(3338), - [anon_sym_GT_GT] = ACTIONS(3340), - [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(3340), - [sym_none] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_nil] = ACTIONS(3340), - [anon_sym_QMARK_DOT] = ACTIONS(3338), - [anon_sym_POUND_LBRACK] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_DOLLARif] = ACTIONS(3340), - [anon_sym_is] = ACTIONS(3340), - [anon_sym_BANGis] = ACTIONS(3338), - [anon_sym_in] = ACTIONS(3340), - [anon_sym_BANGin] = ACTIONS(3338), - [anon_sym_match] = ACTIONS(3340), - [anon_sym_select] = ACTIONS(3340), - [anon_sym_lock] = ACTIONS(3340), - [anon_sym_rlock] = ACTIONS(3340), - [anon_sym_unsafe] = ACTIONS(3340), - [anon_sym_sql] = ACTIONS(3340), - [sym_int_literal] = ACTIONS(3340), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(3340), - [anon_sym_map_LBRACK] = ACTIONS(3338), - [anon_sym_chan] = ACTIONS(3340), - [anon_sym_thread] = ACTIONS(3340), - [anon_sym_atomic] = ACTIONS(3340), - [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), - }, [1376] = { - [sym_identifier] = ACTIONS(3444), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3444), - [anon_sym_as] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3442), - [anon_sym_COMMA] = ACTIONS(3442), - [anon_sym_RBRACE] = ACTIONS(3442), - [anon_sym_LPAREN] = ACTIONS(3442), - [anon_sym_PIPE] = ACTIONS(3444), - [anon_sym_fn] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3442), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_PERCENT] = ACTIONS(3442), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_GT] = ACTIONS(3444), - [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(3442), - [anon_sym_RBRACK] = ACTIONS(3442), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_mut] = ACTIONS(3444), - [anon_sym_COLON] = ACTIONS(3442), - [anon_sym_PLUS_PLUS] = ACTIONS(3442), - [anon_sym_DASH_DASH] = ACTIONS(3442), - [anon_sym_QMARK] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_go] = ACTIONS(3444), - [anon_sym_spawn] = ACTIONS(3444), - [anon_sym_json_DOTdecode] = ACTIONS(3442), - [anon_sym_LBRACK2] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3442), - [anon_sym_CARET] = ACTIONS(3442), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_LT_DASH] = ACTIONS(3442), - [anon_sym_LT_LT] = ACTIONS(3442), - [anon_sym_GT_GT] = ACTIONS(3444), - [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(3444), - [sym_none] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_nil] = ACTIONS(3444), - [anon_sym_QMARK_DOT] = ACTIONS(3442), - [anon_sym_POUND_LBRACK] = ACTIONS(3442), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_DOLLARif] = ACTIONS(3444), - [anon_sym_is] = ACTIONS(3444), - [anon_sym_BANGis] = ACTIONS(3442), - [anon_sym_in] = ACTIONS(3444), - [anon_sym_BANGin] = ACTIONS(3442), - [anon_sym_match] = ACTIONS(3444), - [anon_sym_select] = ACTIONS(3444), - [anon_sym_lock] = ACTIONS(3444), - [anon_sym_rlock] = ACTIONS(3444), - [anon_sym_unsafe] = ACTIONS(3444), - [anon_sym_sql] = ACTIONS(3444), - [sym_int_literal] = ACTIONS(3444), - [sym_float_literal] = ACTIONS(3442), - [sym_rune_literal] = ACTIONS(3442), - [sym_pseudo_compile_time_identifier] = ACTIONS(3444), - [anon_sym_shared] = ACTIONS(3444), - [anon_sym_map_LBRACK] = ACTIONS(3442), - [anon_sym_chan] = ACTIONS(3444), - [anon_sym_thread] = ACTIONS(3444), - [anon_sym_atomic] = ACTIONS(3444), - [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_line_comment] = STATE(1376), + [sym_block_comment] = STATE(1376), + [sym_identifier] = ACTIONS(3213), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_DOT] = ACTIONS(3213), + [anon_sym_as] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(3211), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_PIPE] = ACTIONS(3213), + [anon_sym_fn] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_PERCENT] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_GT] = ACTIONS(3213), + [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(3211), + [anon_sym_RBRACK] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_mut] = ACTIONS(3213), + [anon_sym_COLON] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [anon_sym_QMARK] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_go] = ACTIONS(3213), + [anon_sym_spawn] = ACTIONS(3213), + [anon_sym_json_DOTdecode] = ACTIONS(3211), + [anon_sym_LBRACK2] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_CARET] = ACTIONS(3211), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_LT_DASH] = ACTIONS(3211), + [anon_sym_LT_LT] = ACTIONS(3211), + [anon_sym_GT_GT] = ACTIONS(3213), + [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(3213), + [sym_none] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_nil] = ACTIONS(3213), + [anon_sym_QMARK_DOT] = ACTIONS(3211), + [anon_sym_POUND_LBRACK] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_DOLLARif] = ACTIONS(3213), + [anon_sym_is] = ACTIONS(3213), + [anon_sym_BANGis] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(3213), + [anon_sym_BANGin] = ACTIONS(3211), + [anon_sym_match] = ACTIONS(3213), + [anon_sym_select] = ACTIONS(3213), + [anon_sym_lock] = ACTIONS(3213), + [anon_sym_rlock] = ACTIONS(3213), + [anon_sym_unsafe] = ACTIONS(3213), + [anon_sym_sql] = ACTIONS(3213), + [sym_int_literal] = ACTIONS(3213), + [sym_float_literal] = ACTIONS(3211), + [sym_rune_literal] = ACTIONS(3211), + [sym_pseudo_compile_time_identifier] = ACTIONS(3213), + [anon_sym_shared] = ACTIONS(3213), + [anon_sym_map_LBRACK] = ACTIONS(3211), + [anon_sym_chan] = ACTIONS(3213), + [anon_sym_thread] = ACTIONS(3213), + [anon_sym_atomic] = ACTIONS(3213), + [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), }, [1377] = { - [sym_identifier] = ACTIONS(3336), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_as] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_COMMA] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_PERCENT] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_GT] = ACTIONS(3336), - [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(3334), - [anon_sym_RBRACK] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_COLON] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3334), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_CARET] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3334), - [anon_sym_LT_LT] = ACTIONS(3334), - [anon_sym_GT_GT] = ACTIONS(3336), - [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(3336), - [sym_none] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_nil] = ACTIONS(3336), - [anon_sym_QMARK_DOT] = ACTIONS(3334), - [anon_sym_POUND_LBRACK] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_DOLLARif] = ACTIONS(3336), - [anon_sym_is] = ACTIONS(3336), - [anon_sym_BANGis] = ACTIONS(3334), - [anon_sym_in] = ACTIONS(3336), - [anon_sym_BANGin] = ACTIONS(3334), - [anon_sym_match] = ACTIONS(3336), - [anon_sym_select] = ACTIONS(3336), - [anon_sym_lock] = ACTIONS(3336), - [anon_sym_rlock] = ACTIONS(3336), - [anon_sym_unsafe] = ACTIONS(3336), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3336), - [sym_float_literal] = ACTIONS(3334), - [sym_rune_literal] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(3336), - [anon_sym_map_LBRACK] = ACTIONS(3334), - [anon_sym_chan] = ACTIONS(3336), - [anon_sym_thread] = ACTIONS(3336), - [anon_sym_atomic] = ACTIONS(3336), - [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), + [sym_line_comment] = STATE(1377), + [sym_block_comment] = STATE(1377), + [sym_identifier] = ACTIONS(3323), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3323), + [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_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), }, [1378] = { - [sym_identifier] = ACTIONS(3279), - [sym_comment] = ACTIONS(3), - [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_line_comment] = STATE(1378), + [sym_block_comment] = STATE(1378), + [sym_identifier] = ACTIONS(3207), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3207), + [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_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), }, [1379] = { - [sym_identifier] = ACTIONS(3241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3241), - [anon_sym_as] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3241), - [anon_sym_fn] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [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(3239), - [anon_sym_RBRACK] = ACTIONS(3239), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_mut] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_go] = ACTIONS(3241), - [anon_sym_spawn] = ACTIONS(3241), - [anon_sym_json_DOTdecode] = ACTIONS(3239), - [anon_sym_LBRACK2] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3241), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3241), - [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(3241), - [sym_none] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_nil] = ACTIONS(3241), - [anon_sym_QMARK_DOT] = ACTIONS(3239), - [anon_sym_POUND_LBRACK] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_DOLLARif] = ACTIONS(3241), - [anon_sym_is] = ACTIONS(3241), - [anon_sym_BANGis] = ACTIONS(3239), - [anon_sym_in] = ACTIONS(3241), - [anon_sym_BANGin] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3241), - [anon_sym_select] = ACTIONS(3241), - [anon_sym_lock] = ACTIONS(3241), - [anon_sym_rlock] = ACTIONS(3241), - [anon_sym_unsafe] = ACTIONS(3241), - [anon_sym_sql] = ACTIONS(3241), - [sym_int_literal] = ACTIONS(3241), - [sym_float_literal] = ACTIONS(3239), - [sym_rune_literal] = ACTIONS(3239), - [sym_pseudo_compile_time_identifier] = ACTIONS(3241), - [anon_sym_shared] = ACTIONS(3241), - [anon_sym_map_LBRACK] = ACTIONS(3239), - [anon_sym_chan] = ACTIONS(3241), - [anon_sym_thread] = ACTIONS(3241), - [anon_sym_atomic] = ACTIONS(3241), - [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_line_comment] = STATE(1379), + [sym_block_comment] = STATE(1379), + [sym_identifier] = ACTIONS(3371), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3371), + [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_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), }, [1380] = { - [sym_identifier] = ACTIONS(3344), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_PIPE] = ACTIONS(3344), - [anon_sym_fn] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [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(3342), - [anon_sym_RBRACK] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_mut] = ACTIONS(3344), - [anon_sym_COLON] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_QMARK] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_go] = ACTIONS(3344), - [anon_sym_spawn] = ACTIONS(3344), - [anon_sym_json_DOTdecode] = ACTIONS(3342), - [anon_sym_LBRACK2] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_CARET] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3344), - [anon_sym_LT_DASH] = ACTIONS(3342), - [anon_sym_LT_LT] = ACTIONS(3342), - [anon_sym_GT_GT] = ACTIONS(3344), - [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(3344), - [sym_none] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_nil] = ACTIONS(3344), - [anon_sym_QMARK_DOT] = ACTIONS(3342), - [anon_sym_POUND_LBRACK] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_DOLLARif] = ACTIONS(3344), - [anon_sym_is] = ACTIONS(3344), - [anon_sym_BANGis] = ACTIONS(3342), - [anon_sym_in] = ACTIONS(3344), - [anon_sym_BANGin] = ACTIONS(3342), - [anon_sym_match] = ACTIONS(3344), - [anon_sym_select] = ACTIONS(3344), - [anon_sym_lock] = ACTIONS(3344), - [anon_sym_rlock] = ACTIONS(3344), - [anon_sym_unsafe] = ACTIONS(3344), - [anon_sym_sql] = ACTIONS(3344), - [sym_int_literal] = ACTIONS(3344), - [sym_float_literal] = ACTIONS(3342), - [sym_rune_literal] = ACTIONS(3342), - [sym_pseudo_compile_time_identifier] = ACTIONS(3344), - [anon_sym_shared] = ACTIONS(3344), - [anon_sym_map_LBRACK] = ACTIONS(3342), - [anon_sym_chan] = ACTIONS(3344), - [anon_sym_thread] = ACTIONS(3344), - [anon_sym_atomic] = ACTIONS(3344), - [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), + [sym_line_comment] = STATE(1380), + [sym_block_comment] = STATE(1380), + [sym_identifier] = ACTIONS(3399), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3399), + [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_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), }, [1381] = { - [sym_identifier] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_as] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_COMMA] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2897), - [anon_sym_BANG_EQ] = ACTIONS(2897), - [anon_sym_LT_EQ] = ACTIONS(2897), - [anon_sym_GT_EQ] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_RBRACK] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_COLON] = ACTIONS(2897), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2897), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2897), - [anon_sym_CARET] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2897), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_GT_GT_GT] = ACTIONS(2897), - [anon_sym_AMP_CARET] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [anon_sym_or] = ACTIONS(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2897), - [anon_sym_POUND_LBRACK] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2897), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2897), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_select] = ACTIONS(2899), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_sql] = ACTIONS(2899), - [sym_int_literal] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2897), - [sym_rune_literal] = ACTIONS(2897), - [sym_pseudo_compile_time_identifier] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2897), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [sym___double_quote] = ACTIONS(2897), - [sym___single_quote] = ACTIONS(2897), - [sym___c_double_quote] = ACTIONS(2897), - [sym___c_single_quote] = ACTIONS(2897), - [sym___r_double_quote] = ACTIONS(2897), - [sym___r_single_quote] = ACTIONS(2897), - }, - [1382] = { - [sym_identifier] = ACTIONS(2903), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2901), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [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(2901), - [anon_sym_RBRACK] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_COLON] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2901), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2901), - [anon_sym_CARET] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2901), - [anon_sym_LT_LT] = ACTIONS(2901), - [anon_sym_GT_GT] = ACTIONS(2903), - [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(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2901), - [anon_sym_POUND_LBRACK] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2901), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2901), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2901), - [sym_rune_literal] = ACTIONS(2901), - [sym_pseudo_compile_time_identifier] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2901), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [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), - }, - [1383] = { - [sym_identifier] = ACTIONS(2911), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [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(2909), - [anon_sym_RBRACK] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_COLON] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2911), - [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(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [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), - }, - [1384] = { - [sym_identifier] = ACTIONS(3311), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3313), - [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_line_comment] = STATE(1381), + [sym_block_comment] = STATE(1381), + [sym_identifier] = ACTIONS(3203), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3203), + [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_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), + }, + [1382] = { + [sym_line_comment] = STATE(1382), + [sym_block_comment] = STATE(1382), + [sym_identifier] = ACTIONS(3423), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3423), + [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_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), + }, + [1383] = { + [sym_line_comment] = STATE(1383), + [sym_block_comment] = STATE(1383), + [sym_identifier] = ACTIONS(3383), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3383), + [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_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), + }, + [1384] = { + [sym_line_comment] = STATE(1384), + [sym_block_comment] = STATE(1384), + [sym_identifier] = ACTIONS(3379), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3379), + [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_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), }, [1385] = { - [sym_identifier] = ACTIONS(3261), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3261), - [anon_sym_as] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_COMMA] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [anon_sym_fn] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3261), - [anon_sym_PERCENT] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3261), - [anon_sym_GT] = ACTIONS(3261), - [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(3259), - [anon_sym_RBRACK] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_mut] = ACTIONS(3261), - [anon_sym_COLON] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_QMARK] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_go] = ACTIONS(3261), - [anon_sym_spawn] = ACTIONS(3261), - [anon_sym_json_DOTdecode] = ACTIONS(3259), - [anon_sym_LBRACK2] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym_LT_DASH] = ACTIONS(3259), - [anon_sym_LT_LT] = ACTIONS(3259), - [anon_sym_GT_GT] = ACTIONS(3261), - [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(3261), - [sym_none] = ACTIONS(3261), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [sym_nil] = ACTIONS(3261), - [anon_sym_QMARK_DOT] = ACTIONS(3259), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_DOLLARif] = ACTIONS(3261), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3259), - [anon_sym_in] = ACTIONS(3261), - [anon_sym_BANGin] = ACTIONS(3259), - [anon_sym_match] = ACTIONS(3261), - [anon_sym_select] = ACTIONS(3261), - [anon_sym_lock] = ACTIONS(3261), - [anon_sym_rlock] = ACTIONS(3261), - [anon_sym_unsafe] = ACTIONS(3261), - [anon_sym_sql] = ACTIONS(3261), - [sym_int_literal] = ACTIONS(3261), - [sym_float_literal] = ACTIONS(3259), - [sym_rune_literal] = ACTIONS(3259), - [sym_pseudo_compile_time_identifier] = ACTIONS(3261), - [anon_sym_shared] = ACTIONS(3261), - [anon_sym_map_LBRACK] = ACTIONS(3259), - [anon_sym_chan] = ACTIONS(3261), - [anon_sym_thread] = ACTIONS(3261), - [anon_sym_atomic] = ACTIONS(3261), - [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_line_comment] = STATE(1385), + [sym_block_comment] = STATE(1385), + [sym_identifier] = ACTIONS(3431), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3433), + [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_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), }, [1386] = { - [sym_identifier] = ACTIONS(3432), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3432), - [anon_sym_as] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3430), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_RBRACE] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3430), - [anon_sym_PIPE] = ACTIONS(3432), - [anon_sym_fn] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3430), - [anon_sym_SLASH] = ACTIONS(3432), - [anon_sym_PERCENT] = ACTIONS(3430), - [anon_sym_LT] = ACTIONS(3432), - [anon_sym_GT] = ACTIONS(3432), - [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(3430), - [anon_sym_RBRACK] = ACTIONS(3430), - [anon_sym_struct] = ACTIONS(3432), - [anon_sym_mut] = ACTIONS(3432), - [anon_sym_COLON] = ACTIONS(3430), - [anon_sym_PLUS_PLUS] = ACTIONS(3430), - [anon_sym_DASH_DASH] = ACTIONS(3430), - [anon_sym_QMARK] = ACTIONS(3432), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_go] = ACTIONS(3432), - [anon_sym_spawn] = ACTIONS(3432), - [anon_sym_json_DOTdecode] = ACTIONS(3430), - [anon_sym_LBRACK2] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_CARET] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_LT_DASH] = ACTIONS(3430), - [anon_sym_LT_LT] = ACTIONS(3430), - [anon_sym_GT_GT] = ACTIONS(3432), - [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(3432), - [sym_none] = ACTIONS(3432), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [sym_nil] = ACTIONS(3432), - [anon_sym_QMARK_DOT] = ACTIONS(3430), - [anon_sym_POUND_LBRACK] = ACTIONS(3430), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_DOLLARif] = ACTIONS(3432), - [anon_sym_is] = ACTIONS(3432), - [anon_sym_BANGis] = ACTIONS(3430), - [anon_sym_in] = ACTIONS(3432), - [anon_sym_BANGin] = ACTIONS(3430), - [anon_sym_match] = ACTIONS(3432), - [anon_sym_select] = ACTIONS(3432), - [anon_sym_lock] = ACTIONS(3432), - [anon_sym_rlock] = ACTIONS(3432), - [anon_sym_unsafe] = ACTIONS(3432), - [anon_sym_sql] = ACTIONS(3432), - [sym_int_literal] = ACTIONS(3432), - [sym_float_literal] = ACTIONS(3430), - [sym_rune_literal] = ACTIONS(3430), - [sym_pseudo_compile_time_identifier] = ACTIONS(3432), - [anon_sym_shared] = ACTIONS(3432), - [anon_sym_map_LBRACK] = ACTIONS(3430), - [anon_sym_chan] = ACTIONS(3432), - [anon_sym_thread] = ACTIONS(3432), - [anon_sym_atomic] = ACTIONS(3432), - [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), + [sym_line_comment] = STATE(1386), + [sym_block_comment] = STATE(1386), + [sym_identifier] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3199), + [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_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), }, [1387] = { - [sym_identifier] = ACTIONS(3237), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3237), - [anon_sym_GT] = ACTIONS(3237), - [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(3235), - [anon_sym_RBRACK] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3237), - [anon_sym_mut] = ACTIONS(3237), - [anon_sym_COLON] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_QMARK] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_go] = ACTIONS(3237), - [anon_sym_spawn] = ACTIONS(3237), - [anon_sym_json_DOTdecode] = ACTIONS(3235), - [anon_sym_LBRACK2] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3237), - [anon_sym_LT_DASH] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3235), - [anon_sym_GT_GT] = ACTIONS(3237), - [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(3237), - [sym_none] = ACTIONS(3237), - [sym_true] = ACTIONS(3237), - [sym_false] = ACTIONS(3237), - [sym_nil] = ACTIONS(3237), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_DOLLARif] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3237), - [anon_sym_BANGis] = ACTIONS(3235), - [anon_sym_in] = ACTIONS(3237), - [anon_sym_BANGin] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3237), - [anon_sym_select] = ACTIONS(3237), - [anon_sym_lock] = ACTIONS(3237), - [anon_sym_rlock] = ACTIONS(3237), - [anon_sym_unsafe] = ACTIONS(3237), - [anon_sym_sql] = ACTIONS(3237), - [sym_int_literal] = ACTIONS(3237), - [sym_float_literal] = ACTIONS(3235), - [sym_rune_literal] = ACTIONS(3235), - [sym_pseudo_compile_time_identifier] = ACTIONS(3237), - [anon_sym_shared] = ACTIONS(3237), - [anon_sym_map_LBRACK] = ACTIONS(3235), - [anon_sym_chan] = ACTIONS(3237), - [anon_sym_thread] = ACTIONS(3237), - [anon_sym_atomic] = ACTIONS(3237), - [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_line_comment] = STATE(1387), + [sym_block_comment] = STATE(1387), + [sym_type_parameters] = STATE(4172), + [sym_argument_list] = STATE(1370), + [sym_or_block] = STATE(1371), + [sym_identifier] = ACTIONS(3873), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_RBRACE] = ACTIONS(3879), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_fn] = ACTIONS(3873), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [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(3873), + [anon_sym_mut] = ACTIONS(3873), + [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(3873), + [anon_sym_spawn] = ACTIONS(3873), + [anon_sym_json_DOTdecode] = ACTIONS(3879), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3875), + [anon_sym_LT_DASH] = ACTIONS(3879), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3897), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_or] = ACTIONS(3901), + [sym_none] = ACTIONS(3873), + [sym_true] = ACTIONS(3873), + [sym_false] = ACTIONS(3873), + [sym_nil] = ACTIONS(3873), + [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), + [anon_sym_BANGis] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3907), + [anon_sym_BANGin] = ACTIONS(3909), + [anon_sym_match] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), + [anon_sym_lock] = ACTIONS(3873), + [anon_sym_rlock] = ACTIONS(3873), + [anon_sym_unsafe] = ACTIONS(3873), + [anon_sym_sql] = ACTIONS(3873), + [sym_int_literal] = ACTIONS(3873), + [sym_float_literal] = ACTIONS(3879), + [sym_rune_literal] = ACTIONS(3879), + [sym_pseudo_compile_time_identifier] = ACTIONS(3873), + [anon_sym_shared] = ACTIONS(3873), + [anon_sym_map_LBRACK] = ACTIONS(3879), + [anon_sym_chan] = ACTIONS(3873), + [anon_sym_thread] = ACTIONS(3873), + [anon_sym_atomic] = ACTIONS(3873), + [sym___double_quote] = ACTIONS(3879), + [sym___single_quote] = ACTIONS(3879), + [sym___c_double_quote] = ACTIONS(3879), + [sym___c_single_quote] = ACTIONS(3879), + [sym___r_double_quote] = ACTIONS(3879), + [sym___r_single_quote] = ACTIONS(3879), }, [1388] = { - [sym_identifier] = ACTIONS(3370), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1388), + [sym_block_comment] = STATE(1388), + [sym_identifier] = ACTIONS(3403), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3403), + [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_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), }, [1389] = { - [sym_identifier] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1389), + [sym_block_comment] = STATE(1389), + [sym_identifier] = ACTIONS(3411), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3411), + [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_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), }, [1390] = { - [sym_identifier] = ACTIONS(2993), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1390), + [sym_block_comment] = STATE(1390), + [sym_identifier] = ACTIONS(3305), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_COMMA] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_PERCENT] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [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(3303), + [anon_sym_RBRACK] = ACTIONS(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_mut] = ACTIONS(3305), + [anon_sym_COLON] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_go] = ACTIONS(3305), + [anon_sym_spawn] = ACTIONS(3305), + [anon_sym_json_DOTdecode] = ACTIONS(3303), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_CARET] = ACTIONS(3303), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3303), + [anon_sym_LT_LT] = ACTIONS(3303), + [anon_sym_GT_GT] = ACTIONS(3305), + [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(3305), + [sym_none] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_nil] = ACTIONS(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3303), + [anon_sym_POUND_LBRACK] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_DOLLARif] = ACTIONS(3305), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3303), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = ACTIONS(3303), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_rlock] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_sql] = ACTIONS(3305), + [sym_int_literal] = ACTIONS(3305), + [sym_float_literal] = ACTIONS(3303), + [sym_rune_literal] = ACTIONS(3303), + [sym_pseudo_compile_time_identifier] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3303), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + [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), }, [1391] = { - [sym_identifier] = ACTIONS(2997), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1391), + [sym_block_comment] = STATE(1391), + [sym_identifier] = ACTIONS(3191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_as] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_PIPE] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_PERCENT] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_mut] = ACTIONS(3191), + [anon_sym_COLON] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_go] = ACTIONS(3191), + [anon_sym_spawn] = ACTIONS(3191), + [anon_sym_json_DOTdecode] = ACTIONS(3189), + [anon_sym_LBRACK2] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_CARET] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_LT_DASH] = ACTIONS(3189), + [anon_sym_LT_LT] = ACTIONS(3189), + [anon_sym_GT_GT] = ACTIONS(3191), + [anon_sym_GT_GT_GT] = ACTIONS(3189), + [anon_sym_AMP_CARET] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3191), + [sym_none] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_nil] = ACTIONS(3191), + [anon_sym_QMARK_DOT] = ACTIONS(3189), + [anon_sym_POUND_LBRACK] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_DOLLARif] = ACTIONS(3191), + [anon_sym_is] = ACTIONS(3191), + [anon_sym_BANGis] = ACTIONS(3189), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_BANGin] = ACTIONS(3189), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_select] = ACTIONS(3191), + [anon_sym_lock] = ACTIONS(3191), + [anon_sym_rlock] = ACTIONS(3191), + [anon_sym_unsafe] = ACTIONS(3191), + [anon_sym_sql] = ACTIONS(3191), + [sym_int_literal] = ACTIONS(3191), + [sym_float_literal] = ACTIONS(3189), + [sym_rune_literal] = ACTIONS(3189), + [sym_pseudo_compile_time_identifier] = ACTIONS(3191), + [anon_sym_shared] = ACTIONS(3191), + [anon_sym_map_LBRACK] = ACTIONS(3189), + [anon_sym_chan] = ACTIONS(3191), + [anon_sym_thread] = ACTIONS(3191), + [anon_sym_atomic] = ACTIONS(3191), + [sym___double_quote] = ACTIONS(3189), + [sym___single_quote] = ACTIONS(3189), + [sym___c_double_quote] = ACTIONS(3189), + [sym___c_single_quote] = ACTIONS(3189), + [sym___r_double_quote] = ACTIONS(3189), + [sym___r_single_quote] = ACTIONS(3189), }, [1392] = { - [sym_identifier] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [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(3195), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_COLON] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3197), - [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(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [sym_pseudo_compile_time_identifier] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [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_line_comment] = STATE(1392), + [sym_block_comment] = STATE(1392), + [sym_identifier] = ACTIONS(3301), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [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(3299), + [anon_sym_RBRACK] = ACTIONS(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_mut] = ACTIONS(3301), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_go] = ACTIONS(3301), + [anon_sym_spawn] = ACTIONS(3301), + [anon_sym_json_DOTdecode] = ACTIONS(3299), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_CARET] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(3301), + [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(3301), + [sym_none] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_nil] = ACTIONS(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3299), + [anon_sym_POUND_LBRACK] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_DOLLARif] = ACTIONS(3301), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3299), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_rlock] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_sql] = ACTIONS(3301), + [sym_int_literal] = ACTIONS(3301), + [sym_float_literal] = ACTIONS(3299), + [sym_rune_literal] = ACTIONS(3299), + [sym_pseudo_compile_time_identifier] = ACTIONS(3301), + [anon_sym_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3299), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + [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), }, [1393] = { - [sym_identifier] = ACTIONS(3185), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3183), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT_EQ] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_COLON] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3183), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(3183), - [anon_sym_GT_GT] = ACTIONS(3185), - [anon_sym_GT_GT_GT] = ACTIONS(3183), - [anon_sym_AMP_CARET] = ACTIONS(3183), - [anon_sym_AMP_AMP] = ACTIONS(3183), - [anon_sym_PIPE_PIPE] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3183), - [anon_sym_POUND_LBRACK] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3183), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3183), - [sym_rune_literal] = ACTIONS(3183), - [sym_pseudo_compile_time_identifier] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [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_line_comment] = STATE(1393), + [sym_block_comment] = STATE(1393), + [sym_identifier] = ACTIONS(3343), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3343), + [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_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), }, [1394] = { - [sym_identifier] = ACTIONS(3001), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1394), + [sym_block_comment] = STATE(1394), + [sym_identifier] = ACTIONS(3309), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_DOT] = ACTIONS(3309), + [anon_sym_as] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_COMMA] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_fn] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_PERCENT] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [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(3307), + [anon_sym_RBRACK] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3309), + [anon_sym_mut] = ACTIONS(3309), + [anon_sym_COLON] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [anon_sym_QMARK] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3943), + [anon_sym_go] = ACTIONS(3309), + [anon_sym_spawn] = ACTIONS(3309), + [anon_sym_json_DOTdecode] = ACTIONS(3307), + [anon_sym_LBRACK2] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_CARET] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_LT_DASH] = ACTIONS(3307), + [anon_sym_LT_LT] = ACTIONS(3307), + [anon_sym_GT_GT] = ACTIONS(3309), + [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(3309), + [sym_none] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_nil] = ACTIONS(3309), + [anon_sym_QMARK_DOT] = ACTIONS(3307), + [anon_sym_POUND_LBRACK] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_DOLLARif] = ACTIONS(3309), + [anon_sym_is] = ACTIONS(3309), + [anon_sym_BANGis] = ACTIONS(3307), + [anon_sym_in] = ACTIONS(3309), + [anon_sym_BANGin] = ACTIONS(3307), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_lock] = ACTIONS(3309), + [anon_sym_rlock] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_sql] = ACTIONS(3309), + [sym_int_literal] = ACTIONS(3309), + [sym_float_literal] = ACTIONS(3307), + [sym_rune_literal] = ACTIONS(3307), + [sym_pseudo_compile_time_identifier] = ACTIONS(3309), + [anon_sym_shared] = ACTIONS(3309), + [anon_sym_map_LBRACK] = ACTIONS(3307), + [anon_sym_chan] = ACTIONS(3309), + [anon_sym_thread] = ACTIONS(3309), + [anon_sym_atomic] = ACTIONS(3309), + [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), }, [1395] = { - [sym_identifier] = ACTIONS(3328), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_PIPE] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_GT] = ACTIONS(3328), - [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(3326), - [anon_sym_RBRACK] = ACTIONS(3326), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_mut] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_go] = ACTIONS(3328), - [anon_sym_spawn] = ACTIONS(3328), - [anon_sym_json_DOTdecode] = ACTIONS(3326), - [anon_sym_LBRACK2] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_CARET] = ACTIONS(3326), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_LT_LT] = ACTIONS(3326), - [anon_sym_GT_GT] = ACTIONS(3328), - [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(3328), - [sym_none] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_nil] = ACTIONS(3328), - [anon_sym_QMARK_DOT] = ACTIONS(3326), - [anon_sym_POUND_LBRACK] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_DOLLARif] = ACTIONS(3328), - [anon_sym_is] = ACTIONS(3328), - [anon_sym_BANGis] = ACTIONS(3326), - [anon_sym_in] = ACTIONS(3328), - [anon_sym_BANGin] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3328), - [anon_sym_lock] = ACTIONS(3328), - [anon_sym_rlock] = ACTIONS(3328), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3328), - [sym_int_literal] = ACTIONS(3328), - [sym_float_literal] = ACTIONS(3326), - [sym_rune_literal] = ACTIONS(3326), - [sym_pseudo_compile_time_identifier] = ACTIONS(3328), - [anon_sym_shared] = ACTIONS(3328), - [anon_sym_map_LBRACK] = ACTIONS(3326), - [anon_sym_chan] = ACTIONS(3328), - [anon_sym_thread] = ACTIONS(3328), - [anon_sym_atomic] = ACTIONS(3328), - [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), + [sym_line_comment] = STATE(1395), + [sym_block_comment] = STATE(1395), + [sym_identifier] = ACTIONS(3415), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3415), + [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_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), }, [1396] = { - [sym_identifier] = ACTIONS(2907), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_COMMA] = ACTIONS(2905), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [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(2905), - [anon_sym_RBRACK] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_COLON] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2905), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2905), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2905), - [anon_sym_CARET] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2905), - [anon_sym_LT_LT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2907), - [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(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2905), - [anon_sym_POUND_LBRACK] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2905), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2905), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2905), - [sym_rune_literal] = ACTIONS(2905), - [sym_pseudo_compile_time_identifier] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2905), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [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), + [sym_line_comment] = STATE(1396), + [sym_block_comment] = STATE(1396), + [sym_identifier] = ACTIONS(3187), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3187), + [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_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), }, [1397] = { - [sym_identifier] = ACTIONS(3017), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [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(3015), - [anon_sym_RBRACK] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_COLON] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3015), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3017), - [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(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3015), - [anon_sym_POUND_LBRACK] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3015), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3015), - [sym_rune_literal] = ACTIONS(3015), - [sym_pseudo_compile_time_identifier] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3015), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [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_line_comment] = STATE(1397), + [sym_block_comment] = STATE(1397), + [sym_identifier] = ACTIONS(3355), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3355), + [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_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), }, [1398] = { - [sym_identifier] = ACTIONS(3424), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3424), - [anon_sym_as] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_fn] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3424), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [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(3422), - [anon_sym_RBRACK] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3424), - [anon_sym_mut] = ACTIONS(3424), - [anon_sym_COLON] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_QMARK] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_go] = ACTIONS(3424), - [anon_sym_spawn] = ACTIONS(3424), - [anon_sym_json_DOTdecode] = ACTIONS(3422), - [anon_sym_LBRACK2] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3422), - [anon_sym_CARET] = ACTIONS(3422), - [anon_sym_AMP] = ACTIONS(3424), - [anon_sym_LT_DASH] = ACTIONS(3422), - [anon_sym_LT_LT] = ACTIONS(3422), - [anon_sym_GT_GT] = ACTIONS(3424), - [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(3424), - [sym_none] = ACTIONS(3424), - [sym_true] = ACTIONS(3424), - [sym_false] = ACTIONS(3424), - [sym_nil] = ACTIONS(3424), - [anon_sym_QMARK_DOT] = ACTIONS(3422), - [anon_sym_POUND_LBRACK] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_DOLLARif] = ACTIONS(3424), - [anon_sym_is] = ACTIONS(3424), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3424), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_match] = ACTIONS(3424), - [anon_sym_select] = ACTIONS(3424), - [anon_sym_lock] = ACTIONS(3424), - [anon_sym_rlock] = ACTIONS(3424), - [anon_sym_unsafe] = ACTIONS(3424), - [anon_sym_sql] = ACTIONS(3424), - [sym_int_literal] = ACTIONS(3424), - [sym_float_literal] = ACTIONS(3422), - [sym_rune_literal] = ACTIONS(3422), - [sym_pseudo_compile_time_identifier] = ACTIONS(3424), - [anon_sym_shared] = ACTIONS(3424), - [anon_sym_map_LBRACK] = ACTIONS(3422), - [anon_sym_chan] = ACTIONS(3424), - [anon_sym_thread] = ACTIONS(3424), - [anon_sym_atomic] = ACTIONS(3424), - [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), + [sym_line_comment] = STATE(1398), + [sym_block_comment] = STATE(1398), + [sym_identifier] = ACTIONS(3427), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3427), + [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_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), }, [1399] = { - [sym_identifier] = ACTIONS(2915), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [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(2913), - [anon_sym_RBRACK] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_COLON] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_CARET] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2913), - [anon_sym_GT_GT] = ACTIONS(2915), - [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(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2913), - [anon_sym_POUND_LBRACK] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2913), - [sym_rune_literal] = ACTIONS(2913), - [sym_pseudo_compile_time_identifier] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2913), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [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), + [sym_line_comment] = STATE(1399), + [sym_block_comment] = STATE(1399), + [sym_identifier] = ACTIONS(3055), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3055), + [anon_sym_DOT] = ACTIONS(3055), + [anon_sym_as] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_COMMA] = ACTIONS(3053), + [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_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_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), }, [1400] = { - [sym_identifier] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1400), + [sym_block_comment] = STATE(1400), + [sym_identifier] = ACTIONS(3335), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3335), + [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_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), }, [1401] = { - [sym_identifier] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_RBRACK] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3047), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_LT_LT] = ACTIONS(3047), - [anon_sym_GT_GT] = ACTIONS(3049), - [anon_sym_GT_GT_GT] = ACTIONS(3047), - [anon_sym_AMP_CARET] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_or] = ACTIONS(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3047), - [anon_sym_POUND_LBRACK] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3047), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3047), - [sym_rune_literal] = ACTIONS(3047), - [sym_pseudo_compile_time_identifier] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3047), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [sym___double_quote] = ACTIONS(3047), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3047), - [sym___c_single_quote] = ACTIONS(3047), - [sym___r_double_quote] = ACTIONS(3047), - [sym___r_single_quote] = ACTIONS(3047), + [sym_line_comment] = STATE(1401), + [sym_block_comment] = STATE(1401), + [sym_identifier] = ACTIONS(3047), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3047), + [anon_sym_as] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_fn] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(3047), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [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(3045), + [anon_sym_RBRACK] = ACTIONS(3045), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_mut] = ACTIONS(3047), + [anon_sym_COLON] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3045), + [anon_sym_DASH_DASH] = ACTIONS(3045), + [anon_sym_QMARK] = ACTIONS(3047), + [anon_sym_BANG] = ACTIONS(3047), + [anon_sym_go] = ACTIONS(3047), + [anon_sym_spawn] = ACTIONS(3047), + [anon_sym_json_DOTdecode] = ACTIONS(3045), + [anon_sym_LBRACK2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_LT_DASH] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3045), + [anon_sym_GT_GT] = ACTIONS(3047), + [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(3047), + [sym_none] = ACTIONS(3047), + [sym_true] = ACTIONS(3047), + [sym_false] = ACTIONS(3047), + [sym_nil] = ACTIONS(3047), + [anon_sym_QMARK_DOT] = ACTIONS(3045), + [anon_sym_POUND_LBRACK] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_DOLLARif] = ACTIONS(3047), + [anon_sym_is] = ACTIONS(3047), + [anon_sym_BANGis] = ACTIONS(3045), + [anon_sym_in] = ACTIONS(3047), + [anon_sym_BANGin] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3047), + [anon_sym_select] = ACTIONS(3047), + [anon_sym_lock] = ACTIONS(3047), + [anon_sym_rlock] = ACTIONS(3047), + [anon_sym_unsafe] = ACTIONS(3047), + [anon_sym_sql] = ACTIONS(3047), + [sym_int_literal] = ACTIONS(3047), + [sym_float_literal] = ACTIONS(3045), + [sym_rune_literal] = ACTIONS(3045), + [sym_pseudo_compile_time_identifier] = ACTIONS(3047), + [anon_sym_shared] = ACTIONS(3047), + [anon_sym_map_LBRACK] = ACTIONS(3045), + [anon_sym_chan] = ACTIONS(3047), + [anon_sym_thread] = ACTIONS(3047), + [anon_sym_atomic] = ACTIONS(3047), + [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), }, [1402] = { - [sym_identifier] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [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(3051), - [anon_sym_RBRACK] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_COLON] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3053), - [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(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3051), - [anon_sym_POUND_LBRACK] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [sym_pseudo_compile_time_identifier] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [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_line_comment] = STATE(1402), + [sym_block_comment] = STATE(1402), + [sym_identifier] = ACTIONS(3331), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3331), + [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_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), }, [1403] = { - [sym_identifier] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_COMMA] = ACTIONS(3055), - [anon_sym_RBRACE] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3055), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [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(3055), - [anon_sym_RBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_COLON] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3055), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_CARET] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3055), - [anon_sym_LT_LT] = ACTIONS(3055), - [anon_sym_GT_GT] = ACTIONS(3057), - [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(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3055), - [anon_sym_POUND_LBRACK] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3055), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3055), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3055), - [sym_rune_literal] = ACTIONS(3055), - [sym_pseudo_compile_time_identifier] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3055), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [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_line_comment] = STATE(1403), + [sym_block_comment] = STATE(1403), + [sym_identifier] = ACTIONS(3297), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3297), + [anon_sym_as] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_fn] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_PERCENT] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_GT] = ACTIONS(3297), + [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(3295), + [anon_sym_RBRACK] = ACTIONS(3295), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_mut] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_go] = ACTIONS(3297), + [anon_sym_spawn] = ACTIONS(3297), + [anon_sym_json_DOTdecode] = ACTIONS(3295), + [anon_sym_LBRACK2] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_CARET] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3297), + [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(3297), + [sym_none] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_nil] = ACTIONS(3297), + [anon_sym_QMARK_DOT] = ACTIONS(3295), + [anon_sym_POUND_LBRACK] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_DOLLARif] = ACTIONS(3297), + [anon_sym_is] = ACTIONS(3297), + [anon_sym_BANGis] = ACTIONS(3295), + [anon_sym_in] = ACTIONS(3297), + [anon_sym_BANGin] = ACTIONS(3295), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_rlock] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_sql] = ACTIONS(3297), + [sym_int_literal] = ACTIONS(3297), + [sym_float_literal] = ACTIONS(3295), + [sym_rune_literal] = ACTIONS(3295), + [sym_pseudo_compile_time_identifier] = ACTIONS(3297), + [anon_sym_shared] = ACTIONS(3297), + [anon_sym_map_LBRACK] = ACTIONS(3295), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3297), + [anon_sym_atomic] = ACTIONS(3297), + [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), }, [1404] = { - [sym_identifier] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_COMMA] = ACTIONS(3059), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3059), - [anon_sym_LT_EQ] = ACTIONS(3059), - [anon_sym_GT_EQ] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_RBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_COLON] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3059), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_CARET] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3059), - [anon_sym_LT_LT] = ACTIONS(3059), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3059), - [anon_sym_AMP_CARET] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3059), - [anon_sym_POUND_LBRACK] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3059), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3059), - [sym_rune_literal] = ACTIONS(3059), - [sym_pseudo_compile_time_identifier] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3059), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3059), - [sym___single_quote] = ACTIONS(3059), - [sym___c_double_quote] = ACTIONS(3059), - [sym___c_single_quote] = ACTIONS(3059), - [sym___r_double_quote] = ACTIONS(3059), - [sym___r_single_quote] = ACTIONS(3059), + [sym_line_comment] = STATE(1404), + [sym_block_comment] = STATE(1404), + [sym_identifier] = ACTIONS(3419), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3419), + [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_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), }, [1405] = { - [sym_identifier] = ACTIONS(2985), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1405), + [sym_block_comment] = STATE(1405), + [sym_identifier] = ACTIONS(3149), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3149), + [anon_sym_as] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3147), + [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_fn] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_GT] = ACTIONS(3149), + [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(3147), + [anon_sym_RBRACK] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_mut] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_go] = ACTIONS(3149), + [anon_sym_spawn] = ACTIONS(3149), + [anon_sym_json_DOTdecode] = ACTIONS(3147), + [anon_sym_LBRACK2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_CARET] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_LT_LT] = ACTIONS(3147), + [anon_sym_GT_GT] = ACTIONS(3149), + [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(3149), + [sym_none] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_nil] = ACTIONS(3149), + [anon_sym_QMARK_DOT] = ACTIONS(3147), + [anon_sym_POUND_LBRACK] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_DOLLARif] = ACTIONS(3149), + [anon_sym_is] = ACTIONS(3149), + [anon_sym_BANGis] = ACTIONS(3147), + [anon_sym_in] = ACTIONS(3149), + [anon_sym_BANGin] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_rlock] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_sql] = ACTIONS(3149), + [sym_int_literal] = ACTIONS(3149), + [sym_float_literal] = ACTIONS(3147), + [sym_rune_literal] = ACTIONS(3147), + [sym_pseudo_compile_time_identifier] = ACTIONS(3149), + [anon_sym_shared] = ACTIONS(3149), + [anon_sym_map_LBRACK] = ACTIONS(3147), + [anon_sym_chan] = ACTIONS(3149), + [anon_sym_thread] = ACTIONS(3149), + [anon_sym_atomic] = ACTIONS(3149), + [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), }, [1406] = { - [sym_identifier] = ACTIONS(3083), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_as] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3083), - [anon_sym_fn] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3083), - [anon_sym_GT] = ACTIONS(3083), - [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(3081), - [anon_sym_RBRACK] = ACTIONS(3081), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_mut] = ACTIONS(3083), - [anon_sym_COLON] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_BANG] = ACTIONS(3083), - [anon_sym_go] = ACTIONS(3083), - [anon_sym_spawn] = ACTIONS(3083), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3083), - [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(3083), - [sym_none] = ACTIONS(3083), - [sym_true] = ACTIONS(3083), - [sym_false] = ACTIONS(3083), - [sym_nil] = ACTIONS(3083), - [anon_sym_QMARK_DOT] = ACTIONS(3081), - [anon_sym_POUND_LBRACK] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_DOLLARif] = ACTIONS(3083), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_BANGis] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3083), - [anon_sym_BANGin] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_select] = ACTIONS(3083), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(3083), - [anon_sym_sql] = ACTIONS(3083), - [sym_int_literal] = ACTIONS(3083), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [sym_pseudo_compile_time_identifier] = ACTIONS(3083), - [anon_sym_shared] = ACTIONS(3083), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3083), - [anon_sym_thread] = ACTIONS(3083), - [anon_sym_atomic] = ACTIONS(3083), - [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), - }, - [1407] = { - [sym_identifier] = ACTIONS(3013), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1406), + [sym_block_comment] = STATE(1406), + [sym_identifier] = ACTIONS(3237), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [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(3235), + [anon_sym_RBRACK] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3235), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_CARET] = ACTIONS(3235), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_LT_LT] = ACTIONS(3235), + [anon_sym_GT_GT] = ACTIONS(3237), + [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(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_is] = ACTIONS(3237), + [anon_sym_BANGis] = ACTIONS(3235), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_BANGin] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3235), + [sym_rune_literal] = ACTIONS(3235), + [sym_pseudo_compile_time_identifier] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3235), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [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), + }, + [1407] = { + [sym_line_comment] = STATE(1407), + [sym_block_comment] = STATE(1407), + [sym_identifier] = ACTIONS(2941), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2941), + [anon_sym_DOT] = ACTIONS(2941), + [anon_sym_as] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_COMMA] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(2939), + [anon_sym_PIPE] = ACTIONS(2941), + [anon_sym_fn] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_PERCENT] = ACTIONS(2939), + [anon_sym_LT] = ACTIONS(2941), + [anon_sym_GT] = ACTIONS(2941), + [anon_sym_EQ_EQ] = ACTIONS(2939), + [anon_sym_BANG_EQ] = ACTIONS(2939), + [anon_sym_LT_EQ] = ACTIONS(2939), + [anon_sym_GT_EQ] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_RBRACK] = ACTIONS(2939), + [anon_sym_struct] = ACTIONS(2941), + [anon_sym_mut] = ACTIONS(2941), + [anon_sym_COLON] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2939), + [anon_sym_DASH_DASH] = ACTIONS(2939), + [anon_sym_QMARK] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_go] = ACTIONS(2941), + [anon_sym_spawn] = ACTIONS(2941), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_CARET] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2941), + [anon_sym_LT_DASH] = ACTIONS(2939), + [anon_sym_LT_LT] = ACTIONS(2939), + [anon_sym_GT_GT] = ACTIONS(2941), + [anon_sym_GT_GT_GT] = ACTIONS(2939), + [anon_sym_AMP_CARET] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2939), + [anon_sym_PIPE_PIPE] = ACTIONS(2939), + [anon_sym_or] = ACTIONS(2941), + [sym_none] = ACTIONS(2941), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [sym_nil] = ACTIONS(2941), + [anon_sym_QMARK_DOT] = ACTIONS(2939), + [anon_sym_POUND_LBRACK] = ACTIONS(2939), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_DOLLARif] = ACTIONS(2941), + [anon_sym_is] = ACTIONS(2941), + [anon_sym_BANGis] = ACTIONS(2939), + [anon_sym_in] = ACTIONS(2941), + [anon_sym_BANGin] = ACTIONS(2939), + [anon_sym_match] = ACTIONS(2941), + [anon_sym_select] = ACTIONS(2941), + [anon_sym_lock] = ACTIONS(2941), + [anon_sym_rlock] = ACTIONS(2941), + [anon_sym_unsafe] = ACTIONS(2941), + [anon_sym_sql] = ACTIONS(2941), + [sym_int_literal] = ACTIONS(2941), + [sym_float_literal] = ACTIONS(2939), + [sym_rune_literal] = ACTIONS(2939), + [sym_pseudo_compile_time_identifier] = ACTIONS(2941), + [anon_sym_shared] = ACTIONS(2941), + [anon_sym_map_LBRACK] = ACTIONS(2939), + [anon_sym_chan] = ACTIONS(2941), + [anon_sym_thread] = ACTIONS(2941), + [anon_sym_atomic] = ACTIONS(2941), + [sym___double_quote] = ACTIONS(2939), + [sym___single_quote] = ACTIONS(2939), + [sym___c_double_quote] = ACTIONS(2939), + [sym___c_single_quote] = ACTIONS(2939), + [sym___r_double_quote] = ACTIONS(2939), + [sym___r_single_quote] = ACTIONS(2939), }, [1408] = { - [sym_identifier] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [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_line_comment] = STATE(1408), + [sym_block_comment] = STATE(1408), + [sym_identifier] = ACTIONS(2945), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(2945), + [anon_sym_as] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_COMMA] = ACTIONS(2943), + [anon_sym_RBRACE] = ACTIONS(2943), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_fn] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_PERCENT] = ACTIONS(2943), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_GT] = ACTIONS(2945), + [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(2943), + [anon_sym_RBRACK] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(2945), + [anon_sym_mut] = ACTIONS(2945), + [anon_sym_COLON] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2945), + [anon_sym_go] = ACTIONS(2945), + [anon_sym_spawn] = ACTIONS(2945), + [anon_sym_json_DOTdecode] = ACTIONS(2943), + [anon_sym_LBRACK2] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_CARET] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_LT_DASH] = ACTIONS(2943), + [anon_sym_LT_LT] = ACTIONS(2943), + [anon_sym_GT_GT] = ACTIONS(2945), + [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(2945), + [sym_none] = ACTIONS(2945), + [sym_true] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [sym_nil] = ACTIONS(2945), + [anon_sym_QMARK_DOT] = ACTIONS(2943), + [anon_sym_POUND_LBRACK] = ACTIONS(2943), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_DOLLARif] = ACTIONS(2945), + [anon_sym_is] = ACTIONS(2945), + [anon_sym_BANGis] = ACTIONS(2943), + [anon_sym_in] = ACTIONS(2945), + [anon_sym_BANGin] = ACTIONS(2943), + [anon_sym_match] = ACTIONS(2945), + [anon_sym_select] = ACTIONS(2945), + [anon_sym_lock] = ACTIONS(2945), + [anon_sym_rlock] = ACTIONS(2945), + [anon_sym_unsafe] = ACTIONS(2945), + [anon_sym_sql] = ACTIONS(2945), + [sym_int_literal] = ACTIONS(2945), + [sym_float_literal] = ACTIONS(2943), + [sym_rune_literal] = ACTIONS(2943), + [sym_pseudo_compile_time_identifier] = ACTIONS(2945), + [anon_sym_shared] = ACTIONS(2945), + [anon_sym_map_LBRACK] = ACTIONS(2943), + [anon_sym_chan] = ACTIONS(2945), + [anon_sym_thread] = ACTIONS(2945), + [anon_sym_atomic] = ACTIONS(2945), + [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), }, [1409] = { - [sym_identifier] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3416), - [anon_sym_as] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_COMMA] = ACTIONS(3414), - [anon_sym_RBRACE] = ACTIONS(3414), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3416), - [anon_sym_fn] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_PERCENT] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_GT] = ACTIONS(3416), - [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(3414), - [anon_sym_RBRACK] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3416), - [anon_sym_mut] = ACTIONS(3416), - [anon_sym_COLON] = ACTIONS(3414), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_QMARK] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_go] = ACTIONS(3416), - [anon_sym_spawn] = ACTIONS(3416), - [anon_sym_json_DOTdecode] = ACTIONS(3414), - [anon_sym_LBRACK2] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_CARET] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3416), - [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(3416), - [sym_none] = ACTIONS(3416), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [sym_nil] = ACTIONS(3416), - [anon_sym_QMARK_DOT] = ACTIONS(3414), - [anon_sym_POUND_LBRACK] = ACTIONS(3414), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_DOLLARif] = ACTIONS(3416), - [anon_sym_is] = ACTIONS(3416), - [anon_sym_BANGis] = ACTIONS(3414), - [anon_sym_in] = ACTIONS(3416), - [anon_sym_BANGin] = ACTIONS(3414), - [anon_sym_match] = ACTIONS(3416), - [anon_sym_select] = ACTIONS(3416), - [anon_sym_lock] = ACTIONS(3416), - [anon_sym_rlock] = ACTIONS(3416), - [anon_sym_unsafe] = ACTIONS(3416), - [anon_sym_sql] = ACTIONS(3416), - [sym_int_literal] = ACTIONS(3416), - [sym_float_literal] = ACTIONS(3414), - [sym_rune_literal] = ACTIONS(3414), - [sym_pseudo_compile_time_identifier] = ACTIONS(3416), - [anon_sym_shared] = ACTIONS(3416), - [anon_sym_map_LBRACK] = ACTIONS(3414), - [anon_sym_chan] = ACTIONS(3416), - [anon_sym_thread] = ACTIONS(3416), - [anon_sym_atomic] = ACTIONS(3416), - [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), + [sym_line_comment] = STATE(1409), + [sym_block_comment] = STATE(1409), + [sym_identifier] = ACTIONS(2953), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_as] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_fn] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_RBRACK] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2953), + [anon_sym_mut] = ACTIONS(2953), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_go] = ACTIONS(2953), + [anon_sym_spawn] = ACTIONS(2953), + [anon_sym_json_DOTdecode] = ACTIONS(2951), + [anon_sym_LBRACK2] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_LT_DASH] = ACTIONS(2951), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_AMP_CARET] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2953), + [sym_none] = ACTIONS(2953), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [sym_nil] = ACTIONS(2953), + [anon_sym_QMARK_DOT] = ACTIONS(2951), + [anon_sym_POUND_LBRACK] = ACTIONS(2951), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_DOLLARif] = ACTIONS(2953), + [anon_sym_is] = ACTIONS(2953), + [anon_sym_BANGis] = ACTIONS(2951), + [anon_sym_in] = ACTIONS(2953), + [anon_sym_BANGin] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2953), + [anon_sym_lock] = ACTIONS(2953), + [anon_sym_rlock] = ACTIONS(2953), + [anon_sym_unsafe] = ACTIONS(2953), + [anon_sym_sql] = ACTIONS(2953), + [sym_int_literal] = ACTIONS(2953), + [sym_float_literal] = ACTIONS(2951), + [sym_rune_literal] = ACTIONS(2951), + [sym_pseudo_compile_time_identifier] = ACTIONS(2953), + [anon_sym_shared] = ACTIONS(2953), + [anon_sym_map_LBRACK] = ACTIONS(2951), + [anon_sym_chan] = ACTIONS(2953), + [anon_sym_thread] = ACTIONS(2953), + [anon_sym_atomic] = ACTIONS(2953), + [sym___double_quote] = ACTIONS(2951), + [sym___single_quote] = ACTIONS(2951), + [sym___c_double_quote] = ACTIONS(2951), + [sym___c_single_quote] = ACTIONS(2951), + [sym___r_double_quote] = ACTIONS(2951), + [sym___r_single_quote] = ACTIONS(2951), }, [1410] = { - [sym_identifier] = ACTIONS(3091), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_as] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3091), - [anon_sym_fn] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3091), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3091), - [anon_sym_GT] = ACTIONS(3091), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_mut] = ACTIONS(3091), - [anon_sym_COLON] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_BANG] = ACTIONS(3091), - [anon_sym_go] = ACTIONS(3091), - [anon_sym_spawn] = ACTIONS(3091), - [anon_sym_json_DOTdecode] = ACTIONS(3089), - [anon_sym_LBRACK2] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LT_DASH] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3091), - [anon_sym_GT_GT_GT] = ACTIONS(3089), - [anon_sym_AMP_CARET] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3091), - [sym_none] = ACTIONS(3091), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [sym_nil] = ACTIONS(3091), - [anon_sym_QMARK_DOT] = ACTIONS(3089), - [anon_sym_POUND_LBRACK] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_DOLLARif] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3091), - [anon_sym_BANGis] = ACTIONS(3089), - [anon_sym_in] = ACTIONS(3091), - [anon_sym_BANGin] = ACTIONS(3089), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_select] = ACTIONS(3091), - [anon_sym_lock] = ACTIONS(3091), - [anon_sym_rlock] = ACTIONS(3091), - [anon_sym_unsafe] = ACTIONS(3091), - [anon_sym_sql] = ACTIONS(3091), - [sym_int_literal] = ACTIONS(3091), - [sym_float_literal] = ACTIONS(3089), - [sym_rune_literal] = ACTIONS(3089), - [sym_pseudo_compile_time_identifier] = ACTIONS(3091), - [anon_sym_shared] = ACTIONS(3091), - [anon_sym_map_LBRACK] = ACTIONS(3089), - [anon_sym_chan] = ACTIONS(3091), - [anon_sym_thread] = ACTIONS(3091), - [anon_sym_atomic] = ACTIONS(3091), - [sym___double_quote] = ACTIONS(3089), - [sym___single_quote] = ACTIONS(3089), - [sym___c_double_quote] = ACTIONS(3089), - [sym___c_single_quote] = ACTIONS(3089), - [sym___r_double_quote] = ACTIONS(3089), - [sym___r_single_quote] = ACTIONS(3089), + [sym_line_comment] = STATE(1410), + [sym_block_comment] = STATE(1410), + [sym_identifier] = ACTIONS(3233), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_DOT] = ACTIONS(3233), + [anon_sym_as] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_COMMA] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3233), + [anon_sym_fn] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_STAR] = ACTIONS(3231), + [anon_sym_PERCENT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_GT] = ACTIONS(3233), + [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(3231), + [anon_sym_RBRACK] = ACTIONS(3231), + [anon_sym_struct] = ACTIONS(3233), + [anon_sym_mut] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), + [anon_sym_QMARK] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_go] = ACTIONS(3233), + [anon_sym_spawn] = ACTIONS(3233), + [anon_sym_json_DOTdecode] = ACTIONS(3231), + [anon_sym_LBRACK2] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_CARET] = ACTIONS(3231), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_LT_DASH] = ACTIONS(3231), + [anon_sym_LT_LT] = ACTIONS(3231), + [anon_sym_GT_GT] = ACTIONS(3233), + [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(3233), + [sym_none] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_nil] = ACTIONS(3233), + [anon_sym_QMARK_DOT] = ACTIONS(3231), + [anon_sym_POUND_LBRACK] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_DOLLARif] = ACTIONS(3233), + [anon_sym_is] = ACTIONS(3233), + [anon_sym_BANGis] = ACTIONS(3231), + [anon_sym_in] = ACTIONS(3233), + [anon_sym_BANGin] = ACTIONS(3231), + [anon_sym_match] = ACTIONS(3233), + [anon_sym_select] = ACTIONS(3233), + [anon_sym_lock] = ACTIONS(3233), + [anon_sym_rlock] = ACTIONS(3233), + [anon_sym_unsafe] = ACTIONS(3233), + [anon_sym_sql] = ACTIONS(3233), + [sym_int_literal] = ACTIONS(3233), + [sym_float_literal] = ACTIONS(3231), + [sym_rune_literal] = ACTIONS(3231), + [sym_pseudo_compile_time_identifier] = ACTIONS(3233), + [anon_sym_shared] = ACTIONS(3233), + [anon_sym_map_LBRACK] = ACTIONS(3231), + [anon_sym_chan] = ACTIONS(3233), + [anon_sym_thread] = ACTIONS(3233), + [anon_sym_atomic] = ACTIONS(3233), + [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), }, [1411] = { - [sym_identifier] = ACTIONS(3095), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_as] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_RBRACE] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_fn] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3095), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_LT_EQ] = ACTIONS(3093), - [anon_sym_GT_EQ] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_RBRACK] = ACTIONS(3093), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_mut] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3095), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3095), - [anon_sym_json_DOTdecode] = ACTIONS(3093), - [anon_sym_LBRACK2] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3093), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_GT_GT_GT] = ACTIONS(3093), - [anon_sym_AMP_CARET] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3095), - [sym_none] = ACTIONS(3095), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [sym_nil] = ACTIONS(3095), - [anon_sym_QMARK_DOT] = ACTIONS(3093), - [anon_sym_POUND_LBRACK] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_DOLLARif] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_BANGis] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3095), - [anon_sym_BANGin] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3095), - [anon_sym_select] = ACTIONS(3095), - [anon_sym_lock] = ACTIONS(3095), - [anon_sym_rlock] = ACTIONS(3095), - [anon_sym_unsafe] = ACTIONS(3095), - [anon_sym_sql] = ACTIONS(3095), - [sym_int_literal] = ACTIONS(3095), - [sym_float_literal] = ACTIONS(3093), - [sym_rune_literal] = ACTIONS(3093), - [sym_pseudo_compile_time_identifier] = ACTIONS(3095), - [anon_sym_shared] = ACTIONS(3095), - [anon_sym_map_LBRACK] = ACTIONS(3093), - [anon_sym_chan] = ACTIONS(3095), - [anon_sym_thread] = ACTIONS(3095), - [anon_sym_atomic] = ACTIONS(3095), - [sym___double_quote] = ACTIONS(3093), - [sym___single_quote] = ACTIONS(3093), - [sym___c_double_quote] = ACTIONS(3093), - [sym___c_single_quote] = ACTIONS(3093), - [sym___r_double_quote] = ACTIONS(3093), - [sym___r_single_quote] = ACTIONS(3093), + [sym_line_comment] = STATE(1411), + [sym_block_comment] = STATE(1411), + [sym_identifier] = ACTIONS(3407), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3407), + [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_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), }, [1412] = { - [sym_identifier] = ACTIONS(3291), - [sym_comment] = ACTIONS(3), - [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), + [sym_line_comment] = STATE(1412), + [sym_block_comment] = STATE(1412), + [sym_identifier] = ACTIONS(3225), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_DOT] = ACTIONS(3225), + [anon_sym_as] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_COMMA] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_PIPE] = ACTIONS(3225), + [anon_sym_fn] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_PERCENT] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_GT] = ACTIONS(3225), + [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(3223), + [anon_sym_RBRACK] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3225), + [anon_sym_mut] = ACTIONS(3225), + [anon_sym_COLON] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_go] = ACTIONS(3225), + [anon_sym_spawn] = ACTIONS(3225), + [anon_sym_json_DOTdecode] = ACTIONS(3223), + [anon_sym_LBRACK2] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_CARET] = ACTIONS(3223), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_LT_DASH] = ACTIONS(3223), + [anon_sym_LT_LT] = ACTIONS(3223), + [anon_sym_GT_GT] = ACTIONS(3225), + [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(3225), + [sym_none] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_nil] = ACTIONS(3225), + [anon_sym_QMARK_DOT] = ACTIONS(3223), + [anon_sym_POUND_LBRACK] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_DOLLARif] = ACTIONS(3225), + [anon_sym_is] = ACTIONS(3225), + [anon_sym_BANGis] = ACTIONS(3223), + [anon_sym_in] = ACTIONS(3225), + [anon_sym_BANGin] = ACTIONS(3223), + [anon_sym_match] = ACTIONS(3225), + [anon_sym_select] = ACTIONS(3225), + [anon_sym_lock] = ACTIONS(3225), + [anon_sym_rlock] = ACTIONS(3225), + [anon_sym_unsafe] = ACTIONS(3225), + [anon_sym_sql] = ACTIONS(3225), + [sym_int_literal] = ACTIONS(3225), + [sym_float_literal] = ACTIONS(3223), + [sym_rune_literal] = ACTIONS(3223), + [sym_pseudo_compile_time_identifier] = ACTIONS(3225), + [anon_sym_shared] = ACTIONS(3225), + [anon_sym_map_LBRACK] = ACTIONS(3223), + [anon_sym_chan] = ACTIONS(3225), + [anon_sym_thread] = ACTIONS(3225), + [anon_sym_atomic] = ACTIONS(3225), + [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), }, [1413] = { - [sym_identifier] = ACTIONS(3103), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_RBRACE] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3103), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_EQ] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_RBRACK] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_mut] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_go] = ACTIONS(3103), - [anon_sym_spawn] = ACTIONS(3103), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_GT_GT_GT] = ACTIONS(3101), - [anon_sym_AMP_CARET] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3103), - [sym_none] = ACTIONS(3103), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [sym_nil] = ACTIONS(3103), - [anon_sym_QMARK_DOT] = ACTIONS(3101), - [anon_sym_POUND_LBRACK] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_DOLLARif] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_BANGis] = ACTIONS(3101), - [anon_sym_in] = ACTIONS(3103), - [anon_sym_BANGin] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3103), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3103), - [anon_sym_rlock] = ACTIONS(3103), - [anon_sym_unsafe] = ACTIONS(3103), - [anon_sym_sql] = ACTIONS(3103), - [sym_int_literal] = ACTIONS(3103), - [sym_float_literal] = ACTIONS(3101), - [sym_rune_literal] = ACTIONS(3101), - [sym_pseudo_compile_time_identifier] = ACTIONS(3103), - [anon_sym_shared] = ACTIONS(3103), - [anon_sym_map_LBRACK] = ACTIONS(3101), - [anon_sym_chan] = ACTIONS(3103), - [anon_sym_thread] = ACTIONS(3103), - [anon_sym_atomic] = ACTIONS(3103), - [sym___double_quote] = ACTIONS(3101), - [sym___single_quote] = ACTIONS(3101), - [sym___c_double_quote] = ACTIONS(3101), - [sym___c_single_quote] = ACTIONS(3101), - [sym___r_double_quote] = ACTIONS(3101), - [sym___r_single_quote] = ACTIONS(3101), + [sym_line_comment] = STATE(1413), + [sym_block_comment] = STATE(1413), + [sym_identifier] = ACTIONS(3217), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_DOT] = ACTIONS(3217), + [anon_sym_as] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_COMMA] = ACTIONS(3215), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_PIPE] = ACTIONS(3217), + [anon_sym_fn] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_GT] = ACTIONS(3217), + [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(3215), + [anon_sym_RBRACK] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3217), + [anon_sym_mut] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3215), + [anon_sym_DASH_DASH] = ACTIONS(3215), + [anon_sym_QMARK] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_go] = ACTIONS(3217), + [anon_sym_spawn] = ACTIONS(3217), + [anon_sym_json_DOTdecode] = ACTIONS(3215), + [anon_sym_LBRACK2] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_CARET] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_LT_DASH] = ACTIONS(3215), + [anon_sym_LT_LT] = ACTIONS(3215), + [anon_sym_GT_GT] = ACTIONS(3217), + [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(3217), + [sym_none] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_nil] = ACTIONS(3217), + [anon_sym_QMARK_DOT] = ACTIONS(3215), + [anon_sym_POUND_LBRACK] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_DOLLARif] = ACTIONS(3217), + [anon_sym_is] = ACTIONS(3217), + [anon_sym_BANGis] = ACTIONS(3215), + [anon_sym_in] = ACTIONS(3217), + [anon_sym_BANGin] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3217), + [anon_sym_select] = ACTIONS(3217), + [anon_sym_lock] = ACTIONS(3217), + [anon_sym_rlock] = ACTIONS(3217), + [anon_sym_unsafe] = ACTIONS(3217), + [anon_sym_sql] = ACTIONS(3217), + [sym_int_literal] = ACTIONS(3217), + [sym_float_literal] = ACTIONS(3215), + [sym_rune_literal] = ACTIONS(3215), + [sym_pseudo_compile_time_identifier] = ACTIONS(3217), + [anon_sym_shared] = ACTIONS(3217), + [anon_sym_map_LBRACK] = ACTIONS(3215), + [anon_sym_chan] = ACTIONS(3217), + [anon_sym_thread] = ACTIONS(3217), + [anon_sym_atomic] = ACTIONS(3217), + [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), }, [1414] = { - [sym_identifier] = ACTIONS(3129), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [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(3127), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_COLON] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3127), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3129), - [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(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3127), - [anon_sym_POUND_LBRACK] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3127), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3127), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3127), - [sym_rune_literal] = ACTIONS(3127), - [sym_pseudo_compile_time_identifier] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3127), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [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_line_comment] = STATE(1414), + [sym_block_comment] = STATE(1414), + [sym_identifier] = ACTIONS(2987), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2987), + [anon_sym_DOT] = ACTIONS(2987), + [anon_sym_as] = ACTIONS(2987), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_fn] = ACTIONS(2987), + [anon_sym_PLUS] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [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(2985), + [anon_sym_RBRACK] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2987), + [anon_sym_mut] = ACTIONS(2987), + [anon_sym_COLON] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_go] = ACTIONS(2987), + [anon_sym_spawn] = ACTIONS(2987), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), + [anon_sym_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2987), + [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(2987), + [sym_none] = ACTIONS(2987), + [sym_true] = ACTIONS(2987), + [sym_false] = ACTIONS(2987), + [sym_nil] = ACTIONS(2987), + [anon_sym_QMARK_DOT] = ACTIONS(2985), + [anon_sym_POUND_LBRACK] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2987), + [anon_sym_DOLLARif] = ACTIONS(2987), + [anon_sym_is] = ACTIONS(2987), + [anon_sym_BANGis] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2987), + [anon_sym_BANGin] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2987), + [anon_sym_select] = ACTIONS(2987), + [anon_sym_lock] = ACTIONS(2987), + [anon_sym_rlock] = ACTIONS(2987), + [anon_sym_unsafe] = ACTIONS(2987), + [anon_sym_sql] = ACTIONS(2987), + [sym_int_literal] = ACTIONS(2987), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2987), + [anon_sym_shared] = ACTIONS(2987), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2987), + [anon_sym_thread] = ACTIONS(2987), + [anon_sym_atomic] = ACTIONS(2987), + [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), }, [1415] = { - [sym_identifier] = ACTIONS(3141), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [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(3139), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_COLON] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3139), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3139), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3141), - [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(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3139), - [anon_sym_POUND_LBRACK] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3139), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3139), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3139), - [sym_rune_literal] = ACTIONS(3139), - [sym_pseudo_compile_time_identifier] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3139), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [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_line_comment] = STATE(1415), + [sym_block_comment] = STATE(1415), + [sym_identifier] = ACTIONS(2991), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2991), + [anon_sym_DOT] = ACTIONS(2991), + [anon_sym_as] = ACTIONS(2991), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_RBRACE] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2991), + [anon_sym_fn] = ACTIONS(2991), + [anon_sym_PLUS] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2991), + [anon_sym_GT] = ACTIONS(2991), + [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(2989), + [anon_sym_RBRACK] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2991), + [anon_sym_mut] = ACTIONS(2991), + [anon_sym_COLON] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_go] = ACTIONS(2991), + [anon_sym_spawn] = ACTIONS(2991), + [anon_sym_json_DOTdecode] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2991), + [anon_sym_LT_DASH] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2991), + [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(2991), + [sym_none] = ACTIONS(2991), + [sym_true] = ACTIONS(2991), + [sym_false] = ACTIONS(2991), + [sym_nil] = ACTIONS(2991), + [anon_sym_QMARK_DOT] = ACTIONS(2989), + [anon_sym_POUND_LBRACK] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2991), + [anon_sym_DOLLARif] = ACTIONS(2991), + [anon_sym_is] = ACTIONS(2991), + [anon_sym_BANGis] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2991), + [anon_sym_BANGin] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2991), + [anon_sym_select] = ACTIONS(2991), + [anon_sym_lock] = ACTIONS(2991), + [anon_sym_rlock] = ACTIONS(2991), + [anon_sym_unsafe] = ACTIONS(2991), + [anon_sym_sql] = ACTIONS(2991), + [sym_int_literal] = ACTIONS(2991), + [sym_float_literal] = ACTIONS(2989), + [sym_rune_literal] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2991), + [anon_sym_shared] = ACTIONS(2991), + [anon_sym_map_LBRACK] = ACTIONS(2989), + [anon_sym_chan] = ACTIONS(2991), + [anon_sym_thread] = ACTIONS(2991), + [anon_sym_atomic] = ACTIONS(2991), + [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), }, [1416] = { - [sym_identifier] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [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(3143), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_COLON] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3143), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3143), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3145), - [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(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3143), - [anon_sym_POUND_LBRACK] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3143), - [sym_rune_literal] = ACTIONS(3143), - [sym_pseudo_compile_time_identifier] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3143), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [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_line_comment] = STATE(1416), + [sym_block_comment] = STATE(1416), + [sym_identifier] = ACTIONS(2995), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_as] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2995), + [anon_sym_fn] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2995), + [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(2993), + [anon_sym_RBRACK] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_mut] = ACTIONS(2995), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_go] = ACTIONS(2995), + [anon_sym_spawn] = ACTIONS(2995), + [anon_sym_json_DOTdecode] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2995), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2993), + [anon_sym_GT_GT] = ACTIONS(2995), + [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(2995), + [sym_none] = ACTIONS(2995), + [sym_true] = ACTIONS(2995), + [sym_false] = ACTIONS(2995), + [sym_nil] = ACTIONS(2995), + [anon_sym_QMARK_DOT] = ACTIONS(2993), + [anon_sym_POUND_LBRACK] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_DOLLARif] = ACTIONS(2995), + [anon_sym_is] = ACTIONS(2995), + [anon_sym_BANGis] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2995), + [anon_sym_BANGin] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2995), + [anon_sym_select] = ACTIONS(2995), + [anon_sym_lock] = ACTIONS(2995), + [anon_sym_rlock] = ACTIONS(2995), + [anon_sym_unsafe] = ACTIONS(2995), + [anon_sym_sql] = ACTIONS(2995), + [sym_int_literal] = ACTIONS(2995), + [sym_float_literal] = ACTIONS(2993), + [sym_rune_literal] = ACTIONS(2993), + [sym_pseudo_compile_time_identifier] = ACTIONS(2995), + [anon_sym_shared] = ACTIONS(2995), + [anon_sym_map_LBRACK] = ACTIONS(2993), + [anon_sym_chan] = ACTIONS(2995), + [anon_sym_thread] = ACTIONS(2995), + [anon_sym_atomic] = ACTIONS(2995), + [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), }, [1417] = { - [sym_identifier] = ACTIONS(3412), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3412), - [anon_sym_as] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_COMMA] = ACTIONS(3410), - [anon_sym_RBRACE] = ACTIONS(3410), - [anon_sym_LPAREN] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_fn] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_SLASH] = ACTIONS(3412), - [anon_sym_PERCENT] = ACTIONS(3410), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [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(3410), - [anon_sym_RBRACK] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_mut] = ACTIONS(3412), - [anon_sym_COLON] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_QMARK] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_go] = ACTIONS(3412), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3410), - [anon_sym_LBRACK2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_CARET] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_LT_DASH] = ACTIONS(3410), - [anon_sym_LT_LT] = ACTIONS(3410), - [anon_sym_GT_GT] = ACTIONS(3412), - [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(3412), - [sym_none] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_nil] = ACTIONS(3412), - [anon_sym_QMARK_DOT] = ACTIONS(3410), - [anon_sym_POUND_LBRACK] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOLLARif] = ACTIONS(3412), - [anon_sym_is] = ACTIONS(3412), - [anon_sym_BANGis] = ACTIONS(3410), - [anon_sym_in] = ACTIONS(3412), - [anon_sym_BANGin] = ACTIONS(3410), - [anon_sym_match] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_rlock] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_sql] = ACTIONS(3412), - [sym_int_literal] = ACTIONS(3412), - [sym_float_literal] = ACTIONS(3410), - [sym_rune_literal] = ACTIONS(3410), - [sym_pseudo_compile_time_identifier] = ACTIONS(3412), - [anon_sym_shared] = ACTIONS(3412), - [anon_sym_map_LBRACK] = ACTIONS(3410), - [anon_sym_chan] = ACTIONS(3412), - [anon_sym_thread] = ACTIONS(3412), - [anon_sym_atomic] = ACTIONS(3412), - [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), - }, - [1418] = { - [sym_identifier] = ACTIONS(3173), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [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(3171), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_COLON] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3171), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3171), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3173), - [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(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3171), - [anon_sym_POUND_LBRACK] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3171), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3171), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3171), - [sym_rune_literal] = ACTIONS(3171), - [sym_pseudo_compile_time_identifier] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3171), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [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), - }, - [1419] = { - [sym_identifier] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3249), - [anon_sym_as] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_fn] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_PERCENT] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_GT] = ACTIONS(3249), - [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(3247), - [anon_sym_RBRACK] = ACTIONS(3955), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_mut] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_go] = ACTIONS(3249), - [anon_sym_spawn] = ACTIONS(3249), - [anon_sym_json_DOTdecode] = ACTIONS(3247), - [anon_sym_LBRACK2] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3249), - [anon_sym_LT_DASH] = ACTIONS(3247), - [anon_sym_LT_LT] = ACTIONS(3247), - [anon_sym_GT_GT] = ACTIONS(3249), - [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(3249), - [sym_none] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_nil] = ACTIONS(3249), - [anon_sym_QMARK_DOT] = ACTIONS(3247), - [anon_sym_POUND_LBRACK] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_DOLLARif] = ACTIONS(3249), - [anon_sym_is] = ACTIONS(3249), - [anon_sym_BANGis] = ACTIONS(3247), - [anon_sym_in] = ACTIONS(3249), - [anon_sym_BANGin] = ACTIONS(3247), - [anon_sym_match] = ACTIONS(3249), - [anon_sym_select] = ACTIONS(3249), - [anon_sym_lock] = ACTIONS(3249), - [anon_sym_rlock] = ACTIONS(3249), - [anon_sym_unsafe] = ACTIONS(3249), - [anon_sym_sql] = ACTIONS(3249), - [sym_int_literal] = ACTIONS(3249), - [sym_float_literal] = ACTIONS(3247), - [sym_rune_literal] = ACTIONS(3247), - [sym_pseudo_compile_time_identifier] = ACTIONS(3249), - [anon_sym_shared] = ACTIONS(3249), - [anon_sym_map_LBRACK] = ACTIONS(3247), - [anon_sym_chan] = ACTIONS(3249), - [anon_sym_thread] = ACTIONS(3249), - [anon_sym_atomic] = ACTIONS(3249), - [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_line_comment] = STATE(1417), + [sym_block_comment] = STATE(1417), + [sym_identifier] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3195), + [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_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), + }, + [1418] = { + [sym_line_comment] = STATE(1418), + [sym_block_comment] = STATE(1418), + [sym_identifier] = ACTIONS(3157), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3157), + [anon_sym_as] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_PIPE] = ACTIONS(3157), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_GT] = ACTIONS(3157), + [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(3155), + [anon_sym_RBRACK] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_mut] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_go] = ACTIONS(3157), + [anon_sym_spawn] = ACTIONS(3157), + [anon_sym_json_DOTdecode] = ACTIONS(3155), + [anon_sym_LBRACK2] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_CARET] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_LT_LT] = ACTIONS(3155), + [anon_sym_GT_GT] = ACTIONS(3157), + [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(3157), + [sym_none] = ACTIONS(3157), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_nil] = ACTIONS(3157), + [anon_sym_QMARK_DOT] = ACTIONS(3155), + [anon_sym_POUND_LBRACK] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_DOLLARif] = ACTIONS(3157), + [anon_sym_is] = ACTIONS(3157), + [anon_sym_BANGis] = ACTIONS(3155), + [anon_sym_in] = ACTIONS(3157), + [anon_sym_BANGin] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3157), + [anon_sym_lock] = ACTIONS(3157), + [anon_sym_rlock] = ACTIONS(3157), + [anon_sym_unsafe] = ACTIONS(3157), + [anon_sym_sql] = ACTIONS(3157), + [sym_int_literal] = ACTIONS(3157), + [sym_float_literal] = ACTIONS(3155), + [sym_rune_literal] = ACTIONS(3155), + [sym_pseudo_compile_time_identifier] = ACTIONS(3157), + [anon_sym_shared] = ACTIONS(3157), + [anon_sym_map_LBRACK] = ACTIONS(3155), + [anon_sym_chan] = ACTIONS(3157), + [anon_sym_thread] = ACTIONS(3157), + [anon_sym_atomic] = ACTIONS(3157), + [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), + }, + [1419] = { + [sym_line_comment] = STATE(1419), + [sym_block_comment] = STATE(1419), + [sym_identifier] = ACTIONS(3153), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3153), + [anon_sym_as] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3151), + [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_PIPE] = ACTIONS(3153), + [anon_sym_fn] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_GT] = ACTIONS(3153), + [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(3151), + [anon_sym_RBRACK] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3153), + [anon_sym_mut] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_go] = ACTIONS(3153), + [anon_sym_spawn] = ACTIONS(3153), + [anon_sym_json_DOTdecode] = ACTIONS(3151), + [anon_sym_LBRACK2] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_CARET] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(3153), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_LT_LT] = ACTIONS(3151), + [anon_sym_GT_GT] = ACTIONS(3153), + [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(3153), + [sym_none] = ACTIONS(3153), + [sym_true] = ACTIONS(3153), + [sym_false] = ACTIONS(3153), + [sym_nil] = ACTIONS(3153), + [anon_sym_QMARK_DOT] = ACTIONS(3151), + [anon_sym_POUND_LBRACK] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3153), + [anon_sym_is] = ACTIONS(3153), + [anon_sym_BANGis] = ACTIONS(3151), + [anon_sym_in] = ACTIONS(3153), + [anon_sym_BANGin] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3153), + [anon_sym_select] = ACTIONS(3153), + [anon_sym_lock] = ACTIONS(3153), + [anon_sym_rlock] = ACTIONS(3153), + [anon_sym_unsafe] = ACTIONS(3153), + [anon_sym_sql] = ACTIONS(3153), + [sym_int_literal] = ACTIONS(3153), + [sym_float_literal] = ACTIONS(3151), + [sym_rune_literal] = ACTIONS(3151), + [sym_pseudo_compile_time_identifier] = ACTIONS(3153), + [anon_sym_shared] = ACTIONS(3153), + [anon_sym_map_LBRACK] = ACTIONS(3151), + [anon_sym_chan] = ACTIONS(3153), + [anon_sym_thread] = ACTIONS(3153), + [anon_sym_atomic] = ACTIONS(3153), + [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), }, [1420] = { - [sym_identifier] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym_DOT] = ACTIONS(3958), - [anon_sym_as] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3962), - [anon_sym_COMMA] = ACTIONS(3962), - [anon_sym_LPAREN] = ACTIONS(3962), - [anon_sym_PIPE] = ACTIONS(3958), - [anon_sym_fn] = ACTIONS(3958), - [anon_sym_PLUS] = ACTIONS(3958), - [anon_sym_DASH] = ACTIONS(3958), - [anon_sym_STAR] = ACTIONS(3962), - [anon_sym_SLASH] = ACTIONS(3958), - [anon_sym_PERCENT] = ACTIONS(3962), - [anon_sym_LT] = ACTIONS(3958), - [anon_sym_GT] = ACTIONS(3958), - [anon_sym_EQ_EQ] = ACTIONS(3962), - [anon_sym_BANG_EQ] = ACTIONS(3962), - [anon_sym_LT_EQ] = ACTIONS(3962), - [anon_sym_GT_EQ] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_RBRACK] = ACTIONS(3960), - [anon_sym_struct] = ACTIONS(3958), - [anon_sym_mut] = ACTIONS(3958), - [anon_sym_PLUS_PLUS] = ACTIONS(3962), - [anon_sym_DASH_DASH] = ACTIONS(3962), - [anon_sym_QMARK] = ACTIONS(3958), - [anon_sym_BANG] = ACTIONS(3958), - [anon_sym_go] = ACTIONS(3958), - [anon_sym_spawn] = ACTIONS(3958), - [anon_sym_json_DOTdecode] = ACTIONS(3962), - [anon_sym_LBRACK2] = ACTIONS(3958), - [anon_sym_TILDE] = ACTIONS(3962), - [anon_sym_CARET] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_LT_DASH] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3962), - [anon_sym_GT_GT] = ACTIONS(3958), - [anon_sym_GT_GT_GT] = ACTIONS(3962), - [anon_sym_AMP_CARET] = ACTIONS(3962), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3962), - [anon_sym_or] = ACTIONS(3958), - [sym_none] = ACTIONS(3958), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [sym_nil] = ACTIONS(3958), - [anon_sym_QMARK_DOT] = ACTIONS(3962), - [anon_sym_POUND_LBRACK] = ACTIONS(3962), - [anon_sym_if] = ACTIONS(3958), - [anon_sym_DOLLARif] = ACTIONS(3958), - [anon_sym_is] = ACTIONS(3958), - [anon_sym_BANGis] = ACTIONS(3962), - [anon_sym_in] = ACTIONS(3958), - [anon_sym_BANGin] = ACTIONS(3962), - [anon_sym_match] = ACTIONS(3958), - [anon_sym_select] = ACTIONS(3958), - [anon_sym_lock] = ACTIONS(3958), - [anon_sym_rlock] = ACTIONS(3958), - [anon_sym_unsafe] = ACTIONS(3958), - [anon_sym_sql] = ACTIONS(3958), - [sym_int_literal] = ACTIONS(3958), - [sym_float_literal] = ACTIONS(3962), - [sym_rune_literal] = ACTIONS(3962), - [sym_pseudo_compile_time_identifier] = ACTIONS(3958), - [anon_sym_shared] = ACTIONS(3958), - [anon_sym_map_LBRACK] = ACTIONS(3962), - [anon_sym_chan] = ACTIONS(3958), - [anon_sym_thread] = ACTIONS(3958), - [anon_sym_atomic] = ACTIONS(3958), - [sym___double_quote] = ACTIONS(3962), - [sym___single_quote] = ACTIONS(3962), - [sym___c_double_quote] = ACTIONS(3962), - [sym___c_single_quote] = ACTIONS(3962), - [sym___r_double_quote] = ACTIONS(3962), - [sym___r_single_quote] = ACTIONS(3962), + [sym_line_comment] = STATE(1420), + [sym_block_comment] = STATE(1420), + [sym_identifier] = ACTIONS(3141), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3141), + [anon_sym_as] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_PIPE] = ACTIONS(3141), + [anon_sym_fn] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_GT] = ACTIONS(3141), + [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(3139), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_struct] = ACTIONS(3141), + [anon_sym_mut] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_go] = ACTIONS(3141), + [anon_sym_spawn] = ACTIONS(3141), + [anon_sym_json_DOTdecode] = ACTIONS(3139), + [anon_sym_LBRACK2] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_LT_LT] = ACTIONS(3139), + [anon_sym_GT_GT] = ACTIONS(3141), + [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(3141), + [sym_none] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_nil] = ACTIONS(3141), + [anon_sym_QMARK_DOT] = ACTIONS(3139), + [anon_sym_POUND_LBRACK] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_DOLLARif] = ACTIONS(3141), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3139), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_BANGin] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_select] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_rlock] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_sql] = ACTIONS(3141), + [sym_int_literal] = ACTIONS(3141), + [sym_float_literal] = ACTIONS(3139), + [sym_rune_literal] = ACTIONS(3139), + [sym_pseudo_compile_time_identifier] = ACTIONS(3141), + [anon_sym_shared] = ACTIONS(3141), + [anon_sym_map_LBRACK] = ACTIONS(3139), + [anon_sym_chan] = ACTIONS(3141), + [anon_sym_thread] = ACTIONS(3141), + [anon_sym_atomic] = ACTIONS(3141), + [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), }, [1421] = { - [sym_identifier] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2647), - [anon_sym_LT_EQ] = ACTIONS(2647), - [anon_sym_GT_EQ] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2647), - [anon_sym_AMP_CARET] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2647), - [anon_sym_POUND_LBRACK] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2647), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2647), - [sym_rune_literal] = ACTIONS(2647), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2647), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2647), - [sym___single_quote] = ACTIONS(2647), - [sym___c_double_quote] = ACTIONS(2647), - [sym___c_single_quote] = ACTIONS(2647), - [sym___r_double_quote] = ACTIONS(2647), - [sym___r_single_quote] = ACTIONS(2647), + [sym_line_comment] = STATE(1421), + [sym_block_comment] = STATE(1421), + [sym_identifier] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_as] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_COMMA] = ACTIONS(3181), + [anon_sym_RBRACE] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_PIPE] = ACTIONS(3183), + [anon_sym_fn] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_PERCENT] = ACTIONS(3181), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3181), + [anon_sym_BANG_EQ] = ACTIONS(3181), + [anon_sym_LT_EQ] = ACTIONS(3181), + [anon_sym_GT_EQ] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3181), + [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(3181), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_go] = ACTIONS(3183), + [anon_sym_spawn] = ACTIONS(3183), + [anon_sym_json_DOTdecode] = ACTIONS(3181), + [anon_sym_LBRACK2] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_CARET] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_LT_DASH] = ACTIONS(3181), + [anon_sym_LT_LT] = ACTIONS(3181), + [anon_sym_GT_GT] = ACTIONS(3183), + [anon_sym_GT_GT_GT] = ACTIONS(3181), + [anon_sym_AMP_CARET] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_PIPE_PIPE] = ACTIONS(3181), + [anon_sym_or] = ACTIONS(3183), + [sym_none] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_nil] = ACTIONS(3183), + [anon_sym_QMARK_DOT] = ACTIONS(3181), + [anon_sym_POUND_LBRACK] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_DOLLARif] = ACTIONS(3183), + [anon_sym_is] = ACTIONS(3183), + [anon_sym_BANGis] = ACTIONS(3181), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_BANGin] = ACTIONS(3181), + [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), }, [1422] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(615), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym___global] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_AT_LBRACK] = ACTIONS(615), + [sym_line_comment] = STATE(1422), + [sym_block_comment] = STATE(1422), + [sym_identifier] = ACTIONS(3031), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_as] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_RBRACE] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3031), + [anon_sym_fn] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3031), + [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(3029), + [anon_sym_RBRACK] = ACTIONS(3029), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_mut] = ACTIONS(3031), + [anon_sym_COLON] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3031), + [anon_sym_go] = ACTIONS(3031), + [anon_sym_spawn] = ACTIONS(3031), + [anon_sym_json_DOTdecode] = ACTIONS(3029), + [anon_sym_LBRACK2] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3029), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3031), + [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(3031), + [sym_none] = ACTIONS(3031), + [sym_true] = ACTIONS(3031), + [sym_false] = ACTIONS(3031), + [sym_nil] = ACTIONS(3031), + [anon_sym_QMARK_DOT] = ACTIONS(3029), + [anon_sym_POUND_LBRACK] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_DOLLARif] = ACTIONS(3031), + [anon_sym_is] = ACTIONS(3031), + [anon_sym_BANGis] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3031), + [anon_sym_BANGin] = ACTIONS(3029), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_select] = ACTIONS(3031), + [anon_sym_lock] = ACTIONS(3031), + [anon_sym_rlock] = ACTIONS(3031), + [anon_sym_unsafe] = ACTIONS(3031), + [anon_sym_sql] = ACTIONS(3031), + [sym_int_literal] = ACTIONS(3031), + [sym_float_literal] = ACTIONS(3029), + [sym_rune_literal] = ACTIONS(3029), + [sym_pseudo_compile_time_identifier] = ACTIONS(3031), + [anon_sym_shared] = ACTIONS(3031), + [anon_sym_map_LBRACK] = ACTIONS(3029), + [anon_sym_chan] = ACTIONS(3031), + [anon_sym_thread] = ACTIONS(3031), + [anon_sym_atomic] = ACTIONS(3031), + [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), }, [1423] = { - [sym_identifier] = ACTIONS(3201), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_fn] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3201), - [anon_sym_PERCENT] = ACTIONS(3199), - [anon_sym_LT] = ACTIONS(3201), - [anon_sym_GT] = ACTIONS(3201), - [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(3199), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_mut] = ACTIONS(3201), - [anon_sym_COLON] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_go] = ACTIONS(3201), - [anon_sym_spawn] = ACTIONS(3201), - [anon_sym_json_DOTdecode] = ACTIONS(3199), - [anon_sym_LBRACK2] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3199), - [anon_sym_GT_GT] = ACTIONS(3201), - [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(3201), - [sym_none] = ACTIONS(3201), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [sym_nil] = ACTIONS(3201), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_DOLLARif] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_BANGin] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_lock] = ACTIONS(3201), - [anon_sym_rlock] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_sql] = ACTIONS(3201), - [sym_int_literal] = ACTIONS(3201), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [sym_pseudo_compile_time_identifier] = ACTIONS(3201), - [anon_sym_shared] = ACTIONS(3201), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3201), - [anon_sym_thread] = ACTIONS(3201), - [anon_sym_atomic] = ACTIONS(3201), - [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_line_comment] = STATE(1423), + [sym_block_comment] = STATE(1423), + [sym_identifier] = ACTIONS(3179), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3179), + [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_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), }, [1424] = { - [sym_identifier] = ACTIONS(3311), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_COMMA] = 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(3964), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [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_line_comment] = STATE(1424), + [sym_block_comment] = STATE(1424), + [sym_identifier] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_COMMA] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_LPAREN] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_PERCENT] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2831), + [anon_sym_BANG_EQ] = ACTIONS(2831), + [anon_sym_LT_EQ] = ACTIONS(2831), + [anon_sym_GT_EQ] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_RBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_COLON] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2831), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_CARET] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2831), + [anon_sym_LT_LT] = ACTIONS(2831), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2831), + [anon_sym_AMP_CARET] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2831), + [anon_sym_POUND_LBRACK] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2831), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2831), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2831), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [sym___double_quote] = ACTIONS(2831), + [sym___single_quote] = ACTIONS(2831), + [sym___c_double_quote] = ACTIONS(2831), + [sym___c_single_quote] = ACTIONS(2831), + [sym___r_double_quote] = ACTIONS(2831), + [sym___r_single_quote] = ACTIONS(2831), + }, + [1425] = { + [sym_line_comment] = STATE(1425), + [sym_block_comment] = STATE(1425), + [sym_identifier] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_fn] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [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(3131), + [anon_sym_RBRACK] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_mut] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_go] = ACTIONS(3133), + [anon_sym_spawn] = ACTIONS(3133), + [anon_sym_json_DOTdecode] = ACTIONS(3131), + [anon_sym_LBRACK2] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_CARET] = ACTIONS(3131), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_LT_LT] = ACTIONS(3131), + [anon_sym_GT_GT] = ACTIONS(3133), + [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(3133), + [sym_none] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_nil] = ACTIONS(3133), + [anon_sym_QMARK_DOT] = ACTIONS(3131), + [anon_sym_POUND_LBRACK] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_DOLLARif] = ACTIONS(3133), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3131), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_BANGin] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_rlock] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_sql] = ACTIONS(3133), + [sym_int_literal] = ACTIONS(3133), + [sym_float_literal] = ACTIONS(3131), + [sym_rune_literal] = ACTIONS(3131), + [sym_pseudo_compile_time_identifier] = ACTIONS(3133), + [anon_sym_shared] = ACTIONS(3133), + [anon_sym_map_LBRACK] = ACTIONS(3131), + [anon_sym_chan] = ACTIONS(3133), + [anon_sym_thread] = ACTIONS(3133), + [anon_sym_atomic] = ACTIONS(3133), + [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), + }, + [1426] = { + [sym_line_comment] = STATE(1426), + [sym_block_comment] = STATE(1426), + [sym_identifier] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_as] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_fn] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3137), + [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(3135), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_mut] = ACTIONS(3137), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_go] = ACTIONS(3137), + [anon_sym_spawn] = ACTIONS(3137), + [anon_sym_json_DOTdecode] = ACTIONS(3135), + [anon_sym_LBRACK2] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_CARET] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_LT_LT] = ACTIONS(3135), + [anon_sym_GT_GT] = ACTIONS(3137), + [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(3137), + [sym_none] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_nil] = ACTIONS(3137), + [anon_sym_QMARK_DOT] = ACTIONS(3135), + [anon_sym_POUND_LBRACK] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_DOLLARif] = ACTIONS(3137), + [anon_sym_is] = ACTIONS(3137), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(3137), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3137), + [anon_sym_select] = ACTIONS(3137), + [anon_sym_lock] = ACTIONS(3137), + [anon_sym_rlock] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(3137), + [anon_sym_sql] = ACTIONS(3137), + [sym_int_literal] = ACTIONS(3137), + [sym_float_literal] = ACTIONS(3135), + [sym_rune_literal] = ACTIONS(3135), + [sym_pseudo_compile_time_identifier] = ACTIONS(3137), + [anon_sym_shared] = ACTIONS(3137), + [anon_sym_map_LBRACK] = ACTIONS(3135), + [anon_sym_chan] = ACTIONS(3137), + [anon_sym_thread] = ACTIONS(3137), + [anon_sym_atomic] = ACTIONS(3137), + [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), + }, + [1427] = { + [sym_line_comment] = STATE(1427), + [sym_block_comment] = STATE(1427), + [sym_identifier] = ACTIONS(3315), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3313), + [anon_sym_DOT] = ACTIONS(3315), + [anon_sym_as] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_COMMA] = 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_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(3945), + [anon_sym_struct] = ACTIONS(3315), + [anon_sym_mut] = ACTIONS(3315), + [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), + }, + [1428] = { + [sym_line_comment] = STATE(1428), + [sym_block_comment] = STATE(1428), + [sym_identifier] = ACTIONS(3359), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_DOT] = ACTIONS(3359), + [anon_sym_as] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_COMMA] = 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_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(3948), + [anon_sym_struct] = ACTIONS(3359), + [anon_sym_mut] = ACTIONS(3359), + [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), + }, + [1429] = { + [sym_line_comment] = STATE(1429), + [sym_block_comment] = STATE(1429), + [sym_identifier] = ACTIONS(3241), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_COMMA] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3239), + [anon_sym_PERCENT] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [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(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_COLON] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3239), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_CARET] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3239), + [anon_sym_LT_LT] = ACTIONS(3239), + [anon_sym_GT_GT] = ACTIONS(3241), + [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(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3239), + [anon_sym_POUND_LBRACK] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3239), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3239), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3239), + [sym_rune_literal] = ACTIONS(3239), + [sym_pseudo_compile_time_identifier] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3239), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [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), + }, + [1430] = { + [sym_line_comment] = STATE(1430), + [sym_block_comment] = STATE(1430), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(565), + [anon_sym_CR] = ACTIONS(565), + [anon_sym_CR_LF] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym___global] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_EQ_EQ] = ACTIONS(565), + [anon_sym_BANG_EQ] = ACTIONS(565), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_mut] = ACTIONS(565), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_AMP_CARET] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_POUND_LBRACK] = ACTIONS(565), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_BANGin] = ACTIONS(565), + [anon_sym_shared] = ACTIONS(619), + [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(565), + }, + [1431] = { + [sym_line_comment] = STATE(1431), + [sym_block_comment] = STATE(1431), + [sym_identifier] = ACTIONS(2747), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2747), + [anon_sym_DOT] = ACTIONS(2747), + [anon_sym_as] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_COMMA] = ACTIONS(2759), + [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_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), + }, + [1432] = { + [sym_line_comment] = STATE(1432), + [sym_block_comment] = STATE(1432), + [sym_identifier] = ACTIONS(3431), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3433), + [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_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), + }, + [1433] = { + [sym_line_comment] = STATE(1433), + [sym_block_comment] = STATE(1433), + [sym_identifier] = ACTIONS(3241), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3239), + [anon_sym_PERCENT] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [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(3239), + [anon_sym_RBRACK] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3239), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_CARET] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3239), + [anon_sym_LT_LT] = ACTIONS(3239), + [anon_sym_GT_GT] = ACTIONS(3241), + [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(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3239), + [anon_sym_POUND_LBRACK] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3239), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3239), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3239), + [sym_rune_literal] = ACTIONS(3239), + [sym_pseudo_compile_time_identifier] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3239), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [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), + }, + [1434] = { + [sym_line_comment] = STATE(1434), + [sym_block_comment] = STATE(1434), + [sym_identifier] = ACTIONS(3431), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3431), + [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_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), + }, + [1435] = { + [sym_line_comment] = STATE(1435), + [sym_block_comment] = STATE(1435), + [sym_identifier] = ACTIONS(2747), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(2747), + [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_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), + }, + [1436] = { + [sym_line_comment] = STATE(1436), + [sym_block_comment] = STATE(1436), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(603), + [anon_sym_CR] = ACTIONS(603), + [anon_sym_CR_LF] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym___global] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(599), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_pub] = ACTIONS(603), + [anon_sym_mut] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3953), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(603), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(619), + [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(603), }, - [1425] = { - [sym_reference_expression] = STATE(4525), - [sym_type_reference_expression] = STATE(2176), - [sym_plain_type] = STATE(2234), - [sym__plain_type_without_special] = STATE(2254), - [sym_anon_struct_type] = STATE(2184), - [sym_multi_return_type] = STATE(2254), - [sym_result_type] = STATE(2254), - [sym_option_type] = STATE(2254), - [sym_qualified_type] = STATE(2176), - [sym_fixed_array_type] = STATE(2184), - [sym_array_type] = STATE(2184), - [sym_pointer_type] = STATE(2184), - [sym_wrong_pointer_type] = STATE(2184), - [sym_map_type] = STATE(2184), - [sym_channel_type] = STATE(2184), - [sym_shared_type] = STATE(2184), - [sym_thread_type] = STATE(2184), - [sym_atomic_type] = STATE(2184), - [sym_generic_type] = STATE(2184), - [sym_function_type] = STATE(2184), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym___global] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [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(581), - [anon_sym_struct] = ACTIONS(3975), - [anon_sym_pub] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(3977), - [anon_sym_BANG] = ACTIONS(3979), - [anon_sym_LBRACK2] = ACTIONS(3981), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(3983), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [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(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(3985), - [anon_sym_map_LBRACK] = ACTIONS(3987), - [anon_sym_chan] = ACTIONS(3989), - [anon_sym_thread] = ACTIONS(3991), - [anon_sym_atomic] = ACTIONS(3993), - [anon_sym_AT_LBRACK] = ACTIONS(585), + [1437] = { + [sym_line_comment] = STATE(1437), + [sym_block_comment] = STATE(1437), + [sym_reference_expression] = STATE(4566), + [sym_type_reference_expression] = STATE(2183), + [sym_plain_type] = STATE(2226), + [sym__plain_type_without_special] = STATE(2213), + [sym_anon_struct_type] = STATE(2214), + [sym_multi_return_type] = STATE(2213), + [sym_result_type] = STATE(2213), + [sym_option_type] = STATE(2213), + [sym_qualified_type] = STATE(2183), + [sym_fixed_array_type] = STATE(2214), + [sym_array_type] = STATE(2214), + [sym_pointer_type] = STATE(2214), + [sym_wrong_pointer_type] = STATE(2214), + [sym_map_type] = STATE(2214), + [sym_channel_type] = STATE(2214), + [sym_shared_type] = STATE(2214), + [sym_thread_type] = STATE(2214), + [sym_atomic_type] = STATE(2214), + [sym_generic_type] = STATE(2214), + [sym_function_type] = STATE(2214), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(627), + [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(3957), + [anon_sym___global] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(3961), + [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(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_QMARK] = ACTIONS(3965), + [anon_sym_BANG] = ACTIONS(3967), + [anon_sym_LBRACK2] = ACTIONS(3969), + [anon_sym_CARET] = ACTIONS(627), + [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_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), }, - [1426] = { - [sym_reference_expression] = STATE(4525), - [sym_type_reference_expression] = STATE(2176), - [sym_plain_type] = STATE(2230), - [sym__plain_type_without_special] = STATE(2254), - [sym_anon_struct_type] = STATE(2184), - [sym_multi_return_type] = STATE(2254), - [sym_result_type] = STATE(2254), - [sym_option_type] = STATE(2254), - [sym_qualified_type] = STATE(2176), - [sym_fixed_array_type] = STATE(2184), - [sym_array_type] = STATE(2184), - [sym_pointer_type] = STATE(2184), - [sym_wrong_pointer_type] = STATE(2184), - [sym_map_type] = STATE(2184), - [sym_channel_type] = STATE(2184), - [sym_shared_type] = STATE(2184), - [sym_thread_type] = STATE(2184), - [sym_atomic_type] = STATE(2184), - [sym_generic_type] = STATE(2184), - [sym_function_type] = STATE(2184), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [sym_comment] = ACTIONS(495), - [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(3969), - [anon_sym___global] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3973), - [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(3975), - [anon_sym_pub] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3977), - [anon_sym_BANG] = ACTIONS(3979), - [anon_sym_LBRACK2] = ACTIONS(3981), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3983), - [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(3985), - [anon_sym_map_LBRACK] = ACTIONS(3987), - [anon_sym_chan] = ACTIONS(3989), - [anon_sym_thread] = ACTIONS(3991), - [anon_sym_atomic] = ACTIONS(3993), - [anon_sym_AT_LBRACK] = ACTIONS(619), + [1438] = { + [sym_line_comment] = STATE(1438), + [sym_block_comment] = STATE(1438), + [sym_reference_expression] = STATE(4566), + [sym_type_reference_expression] = STATE(2183), + [sym_plain_type] = STATE(2267), + [sym__plain_type_without_special] = STATE(2213), + [sym_anon_struct_type] = STATE(2214), + [sym_multi_return_type] = STATE(2213), + [sym_result_type] = STATE(2213), + [sym_option_type] = STATE(2213), + [sym_qualified_type] = STATE(2183), + [sym_fixed_array_type] = STATE(2214), + [sym_array_type] = STATE(2214), + [sym_pointer_type] = STATE(2214), + [sym_wrong_pointer_type] = STATE(2214), + [sym_map_type] = STATE(2214), + [sym_channel_type] = STATE(2214), + [sym_shared_type] = STATE(2214), + [sym_thread_type] = STATE(2214), + [sym_atomic_type] = STATE(2214), + [sym_generic_type] = STATE(2214), + [sym_function_type] = STATE(2214), + [sym_identifier] = ACTIONS(3955), + [anon_sym_LF] = ACTIONS(571), + [anon_sym_CR] = ACTIONS(571), + [anon_sym_CR_LF] = ACTIONS(571), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_as] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym___global] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_struct] = ACTIONS(3963), + [anon_sym_pub] = ACTIONS(571), + [anon_sym_mut] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(571), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_BANG] = ACTIONS(3967), + [anon_sym_LBRACK2] = ACTIONS(3969), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(3971), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_GT_GT_GT] = ACTIONS(571), + [anon_sym_AMP_CARET] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_or] = ACTIONS(571), + [anon_sym_QMARK_DOT] = ACTIONS(571), + [anon_sym_POUND_LBRACK] = ACTIONS(571), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(571), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(571), + [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(571), }, - [1427] = { - [sym_reference_expression] = STATE(4525), - [sym_type_reference_expression] = STATE(2176), - [sym_plain_type] = STATE(2194), - [sym__plain_type_without_special] = STATE(2254), - [sym_anon_struct_type] = STATE(2184), - [sym_multi_return_type] = STATE(2254), - [sym_result_type] = STATE(2254), - [sym_option_type] = STATE(2254), - [sym_qualified_type] = STATE(2176), - [sym_fixed_array_type] = STATE(2184), - [sym_array_type] = STATE(2184), - [sym_pointer_type] = STATE(2184), - [sym_wrong_pointer_type] = STATE(2184), - [sym_map_type] = STATE(2184), - [sym_channel_type] = STATE(2184), - [sym_shared_type] = STATE(2184), - [sym_thread_type] = STATE(2184), - [sym_atomic_type] = STATE(2184), - [sym_generic_type] = STATE(2184), - [sym_function_type] = STATE(2184), - [sym_identifier] = ACTIONS(3967), + [1439] = { + [sym_line_comment] = STATE(1439), + [sym_block_comment] = STATE(1439), + [sym_reference_expression] = STATE(4566), + [sym_type_reference_expression] = STATE(2183), + [sym_plain_type] = STATE(2271), + [sym__plain_type_without_special] = STATE(2213), + [sym_anon_struct_type] = STATE(2214), + [sym_multi_return_type] = STATE(2213), + [sym_result_type] = STATE(2213), + [sym_option_type] = STATE(2213), + [sym_qualified_type] = STATE(2183), + [sym_fixed_array_type] = STATE(2214), + [sym_array_type] = STATE(2214), + [sym_pointer_type] = STATE(2214), + [sym_wrong_pointer_type] = STATE(2214), + [sym_map_type] = STATE(2214), + [sym_channel_type] = STATE(2214), + [sym_shared_type] = STATE(2214), + [sym_thread_type] = STATE(2214), + [sym_atomic_type] = STATE(2214), + [sym_generic_type] = STATE(2214), + [sym_function_type] = STATE(2214), + [sym_identifier] = ACTIONS(3955), [anon_sym_LF] = ACTIONS(623), [anon_sym_CR] = ACTIONS(623), [anon_sym_CR_LF] = ACTIONS(623), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(623), [anon_sym_SEMI] = ACTIONS(623), [anon_sym_DOT] = ACTIONS(623), [anon_sym_as] = ACTIONS(623), [anon_sym_COMMA] = ACTIONS(623), [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_LPAREN] = ACTIONS(3957), [anon_sym___global] = ACTIONS(623), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3971), + [anon_sym_fn] = ACTIONS(3959), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3961), [anon_sym_PERCENT] = ACTIONS(623), [anon_sym_LT] = ACTIONS(623), [anon_sym_GT] = ACTIONS(623), @@ -177219,16 +179610,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(623), [anon_sym_DOT_DOT_DOT] = ACTIONS(623), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3975), + [anon_sym_struct] = ACTIONS(3963), [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(3977), - [anon_sym_BANG] = ACTIONS(3979), - [anon_sym_LBRACK2] = ACTIONS(3981), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_BANG] = ACTIONS(3967), + [anon_sym_LBRACK2] = ACTIONS(3969), [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3971), [anon_sym_LT_LT] = ACTIONS(623), [anon_sym_GT_GT] = ACTIONS(623), [anon_sym_GT_GT_GT] = ACTIONS(623), @@ -177242,511 +179633,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(623), [anon_sym_in] = ACTIONS(623), [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3985), - [anon_sym_map_LBRACK] = ACTIONS(3987), - [anon_sym_chan] = ACTIONS(3989), - [anon_sym_thread] = ACTIONS(3991), - [anon_sym_atomic] = ACTIONS(3993), + [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(623), }, - [1428] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(563), - [anon_sym_CR] = ACTIONS(563), - [anon_sym_CR_LF] = ACTIONS(563), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym___global] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [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_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_pub] = ACTIONS(563), - [anon_sym_mut] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [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(563), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_AT_LBRACK] = ACTIONS(563), - }, - [1429] = { - [sym_identifier] = ACTIONS(3311), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3313), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_COMMA] = 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(3964), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [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), - }, - [1430] = { - [sym_identifier] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_as] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2647), - [anon_sym_LT_EQ] = ACTIONS(2647), - [anon_sym_GT_EQ] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_RBRACK] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2647), - [anon_sym_AMP_CARET] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_or] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_QMARK_DOT] = ACTIONS(2647), - [anon_sym_POUND_LBRACK] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_is] = ACTIONS(2649), - [anon_sym_BANGis] = ACTIONS(2647), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_BANGin] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2647), - [sym_rune_literal] = ACTIONS(2647), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2647), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2647), - [sym___single_quote] = ACTIONS(2647), - [sym___c_double_quote] = ACTIONS(2647), - [sym___c_single_quote] = ACTIONS(2647), - [sym___r_double_quote] = ACTIONS(2647), - [sym___r_single_quote] = ACTIONS(2647), - }, - [1431] = { - [sym_identifier] = ACTIONS(3201), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3201), - [anon_sym_as] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_fn] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3201), - [anon_sym_PERCENT] = ACTIONS(3199), - [anon_sym_LT] = ACTIONS(3201), - [anon_sym_GT] = ACTIONS(3201), - [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(3199), - [anon_sym_RBRACK] = ACTIONS(3199), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_mut] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3201), - [anon_sym_go] = ACTIONS(3201), - [anon_sym_spawn] = ACTIONS(3201), - [anon_sym_json_DOTdecode] = ACTIONS(3199), - [anon_sym_LBRACK2] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3199), - [anon_sym_GT_GT] = ACTIONS(3201), - [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(3201), - [sym_none] = ACTIONS(3201), - [sym_true] = ACTIONS(3201), - [sym_false] = ACTIONS(3201), - [sym_nil] = ACTIONS(3201), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_DOLLARif] = ACTIONS(3201), - [anon_sym_is] = ACTIONS(3201), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_BANGin] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_lock] = ACTIONS(3201), - [anon_sym_rlock] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_sql] = ACTIONS(3201), - [sym_int_literal] = ACTIONS(3201), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [sym_pseudo_compile_time_identifier] = ACTIONS(3201), - [anon_sym_shared] = ACTIONS(3201), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3201), - [anon_sym_thread] = ACTIONS(3201), - [anon_sym_atomic] = ACTIONS(3201), - [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), - }, - [1432] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(2323), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(2323), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3997), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(3999), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(4001), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_BANG_EQ] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(581), - [anon_sym_GT_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(581), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [anon_sym_QMARK] = ACTIONS(4003), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_LBRACK2] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(4009), - [anon_sym_LT_LT] = ACTIONS(581), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(581), - [anon_sym_AMP_CARET] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(581), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(581), - [anon_sym_POUND_LBRACK] = ACTIONS(581), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(581), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(581), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_shared] = ACTIONS(4011), - [anon_sym_map_LBRACK] = ACTIONS(4013), - [anon_sym_chan] = ACTIONS(4015), - [anon_sym_thread] = ACTIONS(4017), - [anon_sym_atomic] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(581), - }, - [1433] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(2323), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(2323), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3997), - [sym_comment] = ACTIONS(3), - [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(3630), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3999), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(4001), - [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(571), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(4003), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_LBRACK2] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(4009), - [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_shared] = ACTIONS(4011), - [anon_sym_map_LBRACK] = ACTIONS(4013), - [anon_sym_chan] = ACTIONS(4015), - [anon_sym_thread] = ACTIONS(4017), - [anon_sym_atomic] = ACTIONS(4019), - [anon_sym_DOT_DOT] = ACTIONS(617), - }, - [1434] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(2323), - [sym_plain_type] = STATE(2408), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(2323), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(3997), - [sym_comment] = ACTIONS(3), + [1440] = { + [sym_line_comment] = STATE(1440), + [sym_block_comment] = STATE(1440), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(2346), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(2346), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3983), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(623), [anon_sym_SEMI] = ACTIONS(621), [anon_sym_DOT] = ACTIONS(623), [anon_sym_as] = ACTIONS(623), [anon_sym_LBRACE] = ACTIONS(621), [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3616), [anon_sym_RPAREN] = ACTIONS(621), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3999), + [anon_sym_fn] = ACTIONS(3985), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(4001), - [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3987), [anon_sym_PERCENT] = ACTIONS(621), [anon_sym_LT] = ACTIONS(623), [anon_sym_GT] = ACTIONS(623), @@ -177756,15 +179688,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(621), [anon_sym_LBRACK] = ACTIONS(621), [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(571), + [anon_sym_struct] = ACTIONS(611), [anon_sym_COLON] = ACTIONS(623), [anon_sym_PLUS_PLUS] = ACTIONS(621), [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(4003), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_LBRACK2] = ACTIONS(4007), + [anon_sym_QMARK] = ACTIONS(3989), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_LBRACK2] = ACTIONS(3993), [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_AMP] = ACTIONS(3995), [anon_sym_LT_LT] = ACTIONS(621), [anon_sym_GT_GT] = ACTIONS(623), [anon_sym_GT_GT_GT] = ACTIONS(621), @@ -177779,177 +179711,804 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(623), [anon_sym_BANGin] = ACTIONS(621), [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(4011), - [anon_sym_map_LBRACK] = ACTIONS(4013), - [anon_sym_chan] = ACTIONS(4015), - [anon_sym_thread] = ACTIONS(4017), - [anon_sym_atomic] = ACTIONS(4019), + [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(621), }, - [1435] = { - [sym_type_parameters] = STATE(1505), - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2715), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_CR] = ACTIONS(2715), - [anon_sym_CR_LF] = ACTIONS(2715), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym___global] = ACTIONS(2715), - [anon_sym_type] = ACTIONS(2715), - [anon_sym_PIPE] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_pub] = ACTIONS(2715), - [anon_sym_mut] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_interface] = ACTIONS(2715), - [anon_sym_QMARK] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_go] = ACTIONS(2715), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(2715), - [anon_sym_LBRACK2] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_CARET] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_LT_DASH] = ACTIONS(2715), - [sym_none] = ACTIONS(2715), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [sym_nil] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_DOLLARif] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_select] = ACTIONS(2715), - [anon_sym_lock] = ACTIONS(2715), - [anon_sym_rlock] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_sql] = ACTIONS(2715), - [sym_int_literal] = ACTIONS(2715), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(2715), - [anon_sym_shared] = ACTIONS(2715), - [anon_sym_map_LBRACK] = ACTIONS(2715), - [anon_sym_chan] = ACTIONS(2715), - [anon_sym_thread] = ACTIONS(2715), - [anon_sym_atomic] = ACTIONS(2715), - [anon_sym_assert] = ACTIONS(2715), - [anon_sym_defer] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_DOLLARfor] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_POUND] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym_AT_LBRACK] = ACTIONS(2715), - [sym___double_quote] = ACTIONS(2715), - [sym___single_quote] = ACTIONS(2715), - [sym___c_double_quote] = ACTIONS(2715), - [sym___c_single_quote] = ACTIONS(2715), - [sym___r_double_quote] = ACTIONS(2715), - [sym___r_single_quote] = ACTIONS(2715), + [1441] = { + [sym_line_comment] = STATE(1441), + [sym_block_comment] = STATE(1441), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(2346), + [sym_plain_type] = STATE(2468), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(2346), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3983), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(627), + [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(3616), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(3987), + [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(611), + [anon_sym_COLON] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(3989), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_LBRACK2] = ACTIONS(3993), + [anon_sym_CARET] = ACTIONS(625), + [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_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), }, - [1436] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(3512), - [sym_identifier] = ACTIONS(1719), - [anon_sym_LF] = ACTIONS(1719), - [anon_sym_CR] = ACTIONS(1719), - [anon_sym_CR_LF] = ACTIONS(1719), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(3518), - [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), + [1442] = { + [sym_line_comment] = STATE(1442), + [sym_block_comment] = STATE(1442), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(2346), + [sym_plain_type] = STATE(2361), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(2346), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(3983), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_as] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(3987), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [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(567), + [anon_sym_RBRACK] = ACTIONS(567), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_COLON] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(3989), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_LBRACK2] = ACTIONS(3993), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(3995), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(571), + [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(571), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_COLON_EQ] = ACTIONS(567), + [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(567), }, - [1437] = { - [aux_sym__type_union_list_repeat1] = STATE(1443), + [1443] = { + [sym_line_comment] = STATE(1443), + [sym_block_comment] = STATE(1443), + [sym_type_parameters] = STATE(1474), + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2743), + [anon_sym_LF] = ACTIONS(2743), + [anon_sym_CR] = ACTIONS(2743), + [anon_sym_CR_LF] = ACTIONS(2743), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym___global] = ACTIONS(2743), + [anon_sym_type] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(4007), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_pub] = ACTIONS(2743), + [anon_sym_mut] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_interface] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_go] = ACTIONS(2743), + [anon_sym_spawn] = ACTIONS(2743), + [anon_sym_json_DOTdecode] = ACTIONS(2743), + [anon_sym_LBRACK2] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2743), + [sym_none] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_nil] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_DOLLARif] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_select] = ACTIONS(2743), + [anon_sym_lock] = ACTIONS(2743), + [anon_sym_rlock] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_sql] = ACTIONS(2743), + [sym_int_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), + [sym_rune_literal] = ACTIONS(2743), + [sym_pseudo_compile_time_identifier] = ACTIONS(2743), + [anon_sym_shared] = ACTIONS(2743), + [anon_sym_map_LBRACK] = ACTIONS(2743), + [anon_sym_chan] = ACTIONS(2743), + [anon_sym_thread] = ACTIONS(2743), + [anon_sym_atomic] = ACTIONS(2743), + [anon_sym_assert] = ACTIONS(2743), + [anon_sym_defer] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_DOLLARfor] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym_AT_LBRACK] = ACTIONS(2743), + [sym___double_quote] = ACTIONS(2743), + [sym___single_quote] = ACTIONS(2743), + [sym___c_double_quote] = ACTIONS(2743), + [sym___c_single_quote] = ACTIONS(2743), + [sym___r_double_quote] = ACTIONS(2743), + [sym___r_single_quote] = ACTIONS(2743), + }, + [1444] = { + [sym_line_comment] = STATE(1444), + [sym_block_comment] = STATE(1444), + [aux_sym_strictly_expression_list_repeat1] = STATE(1452), + [ts_builtin_sym_end] = ACTIONS(4009), + [sym_identifier] = ACTIONS(4011), + [anon_sym_LF] = ACTIONS(4011), + [anon_sym_CR] = ACTIONS(4011), + [anon_sym_CR_LF] = ACTIONS(4011), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(4011), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(4011), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym___global] = ACTIONS(4011), + [anon_sym_type] = ACTIONS(4011), + [anon_sym_fn] = ACTIONS(4011), + [anon_sym_PLUS] = ACTIONS(4011), + [anon_sym_DASH] = ACTIONS(4011), + [anon_sym_STAR] = ACTIONS(4011), + [anon_sym_struct] = ACTIONS(4011), + [anon_sym_union] = ACTIONS(4011), + [anon_sym_pub] = ACTIONS(4011), + [anon_sym_mut] = ACTIONS(4011), + [anon_sym_enum] = ACTIONS(4011), + [anon_sym_interface] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(4011), + [anon_sym_BANG] = ACTIONS(4011), + [anon_sym_go] = ACTIONS(4011), + [anon_sym_spawn] = ACTIONS(4011), + [anon_sym_json_DOTdecode] = ACTIONS(4011), + [anon_sym_LBRACK2] = ACTIONS(4011), + [anon_sym_TILDE] = ACTIONS(4011), + [anon_sym_CARET] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4011), + [anon_sym_LT_DASH] = ACTIONS(4011), + [sym_none] = ACTIONS(4011), + [sym_true] = ACTIONS(4011), + [sym_false] = ACTIONS(4011), + [sym_nil] = ACTIONS(4011), + [anon_sym_if] = ACTIONS(4011), + [anon_sym_DOLLARif] = ACTIONS(4011), + [anon_sym_match] = ACTIONS(4011), + [anon_sym_select] = ACTIONS(4011), + [anon_sym_lock] = ACTIONS(4011), + [anon_sym_rlock] = ACTIONS(4011), + [anon_sym_unsafe] = ACTIONS(4011), + [anon_sym_sql] = ACTIONS(4011), + [sym_int_literal] = ACTIONS(4011), + [sym_float_literal] = ACTIONS(4011), + [sym_rune_literal] = ACTIONS(4011), + [sym_pseudo_compile_time_identifier] = ACTIONS(4011), + [anon_sym_shared] = ACTIONS(4011), + [anon_sym_map_LBRACK] = ACTIONS(4011), + [anon_sym_chan] = ACTIONS(4011), + [anon_sym_thread] = ACTIONS(4011), + [anon_sym_atomic] = ACTIONS(4011), + [anon_sym_assert] = ACTIONS(4011), + [anon_sym_defer] = ACTIONS(4011), + [anon_sym_goto] = ACTIONS(4011), + [anon_sym_break] = ACTIONS(4011), + [anon_sym_continue] = ACTIONS(4011), + [anon_sym_return] = ACTIONS(4011), + [anon_sym_DOLLARfor] = ACTIONS(4011), + [anon_sym_for] = ACTIONS(4011), + [anon_sym_POUND] = ACTIONS(4011), + [anon_sym_asm] = ACTIONS(4011), + [anon_sym_AT_LBRACK] = ACTIONS(4011), + [sym___double_quote] = ACTIONS(4011), + [sym___single_quote] = ACTIONS(4011), + [sym___c_double_quote] = ACTIONS(4011), + [sym___c_single_quote] = ACTIONS(4011), + [sym___r_double_quote] = ACTIONS(4011), + [sym___r_single_quote] = ACTIONS(4011), + }, + [1445] = { + [sym_line_comment] = STATE(1445), + [sym_block_comment] = STATE(1445), + [aux_sym_strictly_expression_list_repeat1] = STATE(1451), + [ts_builtin_sym_end] = ACTIONS(3502), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1725), + [anon_sym_CR] = ACTIONS(1725), + [anon_sym_CR_LF] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym___global] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_struct] = ACTIONS(1725), + [anon_sym_union] = ACTIONS(1725), + [anon_sym_pub] = ACTIONS(1725), + [anon_sym_mut] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [anon_sym_interface] = ACTIONS(1725), + [anon_sym_QMARK] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_go] = ACTIONS(1725), + [anon_sym_spawn] = ACTIONS(1725), + [anon_sym_json_DOTdecode] = ACTIONS(1725), + [anon_sym_LBRACK2] = ACTIONS(1725), + [anon_sym_TILDE] = ACTIONS(1725), + [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_DASH] = ACTIONS(1725), + [sym_none] = ACTIONS(1725), + [sym_true] = ACTIONS(1725), + [sym_false] = ACTIONS(1725), + [sym_nil] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_DOLLARif] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1725), + [anon_sym_select] = ACTIONS(1725), + [anon_sym_lock] = ACTIONS(1725), + [anon_sym_rlock] = ACTIONS(1725), + [anon_sym_unsafe] = ACTIONS(1725), + [anon_sym_sql] = ACTIONS(1725), + [sym_int_literal] = ACTIONS(1725), + [sym_float_literal] = ACTIONS(1725), + [sym_rune_literal] = ACTIONS(1725), + [sym_pseudo_compile_time_identifier] = ACTIONS(1725), + [anon_sym_shared] = ACTIONS(1725), + [anon_sym_map_LBRACK] = ACTIONS(1725), + [anon_sym_chan] = ACTIONS(1725), + [anon_sym_thread] = ACTIONS(1725), + [anon_sym_atomic] = ACTIONS(1725), + [anon_sym_assert] = ACTIONS(1725), + [anon_sym_defer] = ACTIONS(1725), + [anon_sym_goto] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_DOLLARfor] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(1725), + [anon_sym_asm] = ACTIONS(1725), + [anon_sym_AT_LBRACK] = ACTIONS(1725), + [sym___double_quote] = ACTIONS(1725), + [sym___single_quote] = ACTIONS(1725), + [sym___c_double_quote] = ACTIONS(1725), + [sym___c_single_quote] = ACTIONS(1725), + [sym___r_double_quote] = ACTIONS(1725), + [sym___r_single_quote] = ACTIONS(1725), + }, + [1446] = { + [sym_line_comment] = STATE(1446), + [sym_block_comment] = STATE(1446), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(565), + [anon_sym_CR] = ACTIONS(565), + [anon_sym_CR_LF] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_EQ_EQ] = ACTIONS(565), + [anon_sym_BANG_EQ] = ACTIONS(565), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_DASH_DASH] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_AMP_CARET] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_POUND_LBRACK] = ACTIONS(565), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_BANGin] = ACTIONS(565), + [anon_sym_shared] = ACTIONS(619), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1447] = { + [sym_line_comment] = STATE(1447), + [sym_block_comment] = STATE(1447), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3419), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3419), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [sym_nil] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_DOLLARif] = 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), + }, + [1448] = { + [sym_line_comment] = STATE(1448), + [sym_block_comment] = STATE(1448), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [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(611), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(565), + [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(565), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(565), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(619), + [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), + }, + [1449] = { + [sym_line_comment] = STATE(1449), + [sym_block_comment] = STATE(1449), + [aux_sym__type_union_list_repeat1] = STATE(1449), + [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(497), + [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), + }, + [1450] = { + [sym_line_comment] = STATE(1450), + [sym_block_comment] = STATE(1450), + [ts_builtin_sym_end] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3149), + [anon_sym_LF] = ACTIONS(3149), + [anon_sym_CR] = ACTIONS(3149), + [anon_sym_CR_LF] = ACTIONS(3149), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym___global] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_fn] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_pub] = ACTIONS(3149), + [anon_sym_mut] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_QMARK] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_go] = ACTIONS(3149), + [anon_sym_spawn] = ACTIONS(3149), + [anon_sym_json_DOTdecode] = ACTIONS(3149), + [anon_sym_LBRACK2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_LT_DASH] = ACTIONS(3149), + [sym_none] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_nil] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_DOLLARif] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_rlock] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_sql] = ACTIONS(3149), + [sym_int_literal] = ACTIONS(3149), + [sym_float_literal] = ACTIONS(3149), + [sym_rune_literal] = ACTIONS(3149), + [sym_pseudo_compile_time_identifier] = ACTIONS(3149), + [anon_sym_shared] = ACTIONS(3149), + [anon_sym_map_LBRACK] = ACTIONS(3149), + [anon_sym_chan] = ACTIONS(3149), + [anon_sym_thread] = ACTIONS(3149), + [anon_sym_atomic] = ACTIONS(3149), + [anon_sym_assert] = ACTIONS(3149), + [anon_sym_defer] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_DOLLARfor] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_POUND] = ACTIONS(3149), + [anon_sym_asm] = ACTIONS(3149), + [anon_sym_AT_LBRACK] = ACTIONS(3149), + [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), + }, + [1451] = { + [sym_line_comment] = STATE(1451), + [sym_block_comment] = STATE(1451), + [aux_sym_strictly_expression_list_repeat1] = STATE(1452), [ts_builtin_sym_end] = ACTIONS(4023), [sym_identifier] = ACTIONS(4025), - [anon_sym_LF] = ACTIONS(4027), - [anon_sym_CR] = ACTIONS(4027), - [anon_sym_CR_LF] = ACTIONS(4027), - [sym_comment] = ACTIONS(495), + [anon_sym_LF] = ACTIONS(4025), + [anon_sym_CR] = ACTIONS(4025), + [anon_sym_CR_LF] = ACTIONS(4025), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4025), [anon_sym_LBRACE] = ACTIONS(4025), + [anon_sym_COMMA] = ACTIONS(3510), [anon_sym_const] = ACTIONS(4025), [anon_sym_LPAREN] = ACTIONS(4025), [anon_sym___global] = ACTIONS(4025), [anon_sym_type] = ACTIONS(4025), - [anon_sym_PIPE] = ACTIONS(4030), [anon_sym_fn] = ACTIONS(4025), [anon_sym_PLUS] = ACTIONS(4025), [anon_sym_DASH] = ACTIONS(4025), @@ -178009,1121 +180568,1239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4025), [sym___r_single_quote] = ACTIONS(4025), }, - [1438] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(3554), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_CR] = ACTIONS(1761), - [anon_sym_CR_LF] = ACTIONS(1761), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_COMMA] = ACTIONS(4032), - [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), - }, - [1439] = { - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_CR] = ACTIONS(3412), - [anon_sym_CR_LF] = ACTIONS(3412), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3412), - [anon_sym___global] = ACTIONS(3412), - [anon_sym_type] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_fn] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_union] = ACTIONS(3412), - [anon_sym_pub] = ACTIONS(3412), - [anon_sym_mut] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_interface] = ACTIONS(3412), - [anon_sym_QMARK] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_go] = ACTIONS(3412), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3412), - [anon_sym_LBRACK2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_CARET] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_LT_DASH] = ACTIONS(3412), - [sym_none] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_nil] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOLLARif] = ACTIONS(3412), - [anon_sym_match] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_rlock] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_sql] = ACTIONS(3412), - [sym_int_literal] = ACTIONS(3412), - [sym_float_literal] = ACTIONS(3412), - [sym_rune_literal] = ACTIONS(3412), - [sym_pseudo_compile_time_identifier] = ACTIONS(3412), - [anon_sym_shared] = ACTIONS(3412), - [anon_sym_map_LBRACK] = ACTIONS(3412), - [anon_sym_chan] = ACTIONS(3412), - [anon_sym_thread] = ACTIONS(3412), - [anon_sym_atomic] = ACTIONS(3412), - [anon_sym_assert] = ACTIONS(3412), - [anon_sym_defer] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_DOLLARfor] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_POUND] = ACTIONS(3412), - [anon_sym_asm] = ACTIONS(3412), - [anon_sym_AT_LBRACK] = ACTIONS(3412), - [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), + [1452] = { + [sym_line_comment] = STATE(1452), + [sym_block_comment] = STATE(1452), + [aux_sym_strictly_expression_list_repeat1] = STATE(1452), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(4027), + [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), }, - [1440] = { - [aux_sym__type_union_list_repeat1] = STATE(1440), - [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), - [sym_comment] = ACTIONS(495), - [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(4042), - [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), + [1453] = { + [sym_line_comment] = STATE(1453), + [sym_block_comment] = STATE(1453), + [aux_sym__type_union_list_repeat1] = STATE(1454), + [ts_builtin_sym_end] = ACTIONS(4030), + [sym_identifier] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4034), + [anon_sym_CR] = ACTIONS(4034), + [anon_sym_CR_LF] = ACTIONS(4034), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym___global] = ACTIONS(4032), + [anon_sym_type] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4037), + [anon_sym_fn] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_struct] = ACTIONS(4032), + [anon_sym_union] = ACTIONS(4032), + [anon_sym_pub] = ACTIONS(4032), + [anon_sym_mut] = ACTIONS(4032), + [anon_sym_enum] = ACTIONS(4032), + [anon_sym_interface] = ACTIONS(4032), + [anon_sym_QMARK] = ACTIONS(4032), + [anon_sym_BANG] = ACTIONS(4032), + [anon_sym_go] = ACTIONS(4032), + [anon_sym_spawn] = ACTIONS(4032), + [anon_sym_json_DOTdecode] = ACTIONS(4032), + [anon_sym_LBRACK2] = ACTIONS(4032), + [anon_sym_TILDE] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4032), + [anon_sym_LT_DASH] = ACTIONS(4032), + [sym_none] = ACTIONS(4032), + [sym_true] = ACTIONS(4032), + [sym_false] = ACTIONS(4032), + [sym_nil] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_DOLLARif] = ACTIONS(4032), + [anon_sym_match] = ACTIONS(4032), + [anon_sym_select] = ACTIONS(4032), + [anon_sym_lock] = ACTIONS(4032), + [anon_sym_rlock] = ACTIONS(4032), + [anon_sym_unsafe] = ACTIONS(4032), + [anon_sym_sql] = ACTIONS(4032), + [sym_int_literal] = ACTIONS(4032), + [sym_float_literal] = ACTIONS(4032), + [sym_rune_literal] = ACTIONS(4032), + [sym_pseudo_compile_time_identifier] = ACTIONS(4032), + [anon_sym_shared] = ACTIONS(4032), + [anon_sym_map_LBRACK] = ACTIONS(4032), + [anon_sym_chan] = ACTIONS(4032), + [anon_sym_thread] = ACTIONS(4032), + [anon_sym_atomic] = ACTIONS(4032), + [anon_sym_assert] = ACTIONS(4032), + [anon_sym_defer] = ACTIONS(4032), + [anon_sym_goto] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_DOLLARfor] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_POUND] = ACTIONS(4032), + [anon_sym_asm] = ACTIONS(4032), + [anon_sym_AT_LBRACK] = ACTIONS(4032), + [sym___double_quote] = ACTIONS(4032), + [sym___single_quote] = ACTIONS(4032), + [sym___c_double_quote] = ACTIONS(4032), + [sym___c_single_quote] = ACTIONS(4032), + [sym___r_double_quote] = ACTIONS(4032), + [sym___r_single_quote] = ACTIONS(4032), }, - [1441] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(4045), - [sym_identifier] = ACTIONS(4047), - [anon_sym_LF] = ACTIONS(4047), - [anon_sym_CR] = ACTIONS(4047), - [anon_sym_CR_LF] = ACTIONS(4047), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_LBRACE] = ACTIONS(4047), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(4047), - [anon_sym_LPAREN] = ACTIONS(4047), - [anon_sym___global] = ACTIONS(4047), - [anon_sym_type] = ACTIONS(4047), - [anon_sym_fn] = ACTIONS(4047), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [anon_sym_struct] = ACTIONS(4047), - [anon_sym_union] = ACTIONS(4047), - [anon_sym_pub] = ACTIONS(4047), - [anon_sym_mut] = ACTIONS(4047), - [anon_sym_enum] = ACTIONS(4047), - [anon_sym_interface] = ACTIONS(4047), - [anon_sym_QMARK] = ACTIONS(4047), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_go] = ACTIONS(4047), - [anon_sym_spawn] = ACTIONS(4047), - [anon_sym_json_DOTdecode] = ACTIONS(4047), - [anon_sym_LBRACK2] = ACTIONS(4047), - [anon_sym_TILDE] = ACTIONS(4047), - [anon_sym_CARET] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(4047), - [anon_sym_LT_DASH] = ACTIONS(4047), - [sym_none] = ACTIONS(4047), - [sym_true] = ACTIONS(4047), - [sym_false] = ACTIONS(4047), - [sym_nil] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_DOLLARif] = ACTIONS(4047), - [anon_sym_match] = ACTIONS(4047), - [anon_sym_select] = ACTIONS(4047), - [anon_sym_lock] = ACTIONS(4047), - [anon_sym_rlock] = ACTIONS(4047), - [anon_sym_unsafe] = ACTIONS(4047), - [anon_sym_sql] = ACTIONS(4047), - [sym_int_literal] = ACTIONS(4047), - [sym_float_literal] = ACTIONS(4047), - [sym_rune_literal] = ACTIONS(4047), - [sym_pseudo_compile_time_identifier] = ACTIONS(4047), - [anon_sym_shared] = ACTIONS(4047), - [anon_sym_map_LBRACK] = ACTIONS(4047), - [anon_sym_chan] = ACTIONS(4047), - [anon_sym_thread] = ACTIONS(4047), - [anon_sym_atomic] = ACTIONS(4047), - [anon_sym_assert] = ACTIONS(4047), - [anon_sym_defer] = ACTIONS(4047), - [anon_sym_goto] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_DOLLARfor] = ACTIONS(4047), - [anon_sym_for] = ACTIONS(4047), - [anon_sym_POUND] = ACTIONS(4047), - [anon_sym_asm] = ACTIONS(4047), - [anon_sym_AT_LBRACK] = ACTIONS(4047), - [sym___double_quote] = ACTIONS(4047), - [sym___single_quote] = ACTIONS(4047), - [sym___c_double_quote] = ACTIONS(4047), - [sym___c_single_quote] = ACTIONS(4047), - [sym___r_double_quote] = ACTIONS(4047), - [sym___r_single_quote] = ACTIONS(4047), + [1454] = { + [sym_line_comment] = STATE(1454), + [sym_block_comment] = STATE(1454), + [aux_sym__type_union_list_repeat1] = STATE(1449), + [ts_builtin_sym_end] = ACTIONS(4039), + [sym_identifier] = ACTIONS(4041), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_CR] = ACTIONS(4043), + [anon_sym_CR_LF] = ACTIONS(4043), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4041), + [anon_sym_LBRACE] = ACTIONS(4041), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_LPAREN] = ACTIONS(4041), + [anon_sym___global] = ACTIONS(4041), + [anon_sym_type] = ACTIONS(4041), + [anon_sym_PIPE] = ACTIONS(4037), + [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), }, - [1442] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [1455] = { + [sym_line_comment] = STATE(1455), + [sym_block_comment] = STATE(1455), + [ts_builtin_sym_end] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3149), + [anon_sym_LF] = ACTIONS(3149), + [anon_sym_CR] = ACTIONS(3149), + [anon_sym_CR_LF] = ACTIONS(3149), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym___global] = ACTIONS(3149), + [anon_sym_type] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_fn] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_pub] = ACTIONS(3149), + [anon_sym_mut] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_QMARK] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_go] = ACTIONS(3149), + [anon_sym_spawn] = ACTIONS(3149), + [anon_sym_json_DOTdecode] = ACTIONS(3149), + [anon_sym_LBRACK2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_LT_DASH] = ACTIONS(3149), + [sym_none] = ACTIONS(3149), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [sym_nil] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_DOLLARif] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_rlock] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_sql] = ACTIONS(3149), + [sym_int_literal] = ACTIONS(3149), + [sym_float_literal] = ACTIONS(3149), + [sym_rune_literal] = ACTIONS(3149), + [sym_pseudo_compile_time_identifier] = ACTIONS(3149), + [anon_sym_shared] = ACTIONS(3149), + [anon_sym_map_LBRACK] = ACTIONS(3149), + [anon_sym_chan] = ACTIONS(3149), + [anon_sym_thread] = ACTIONS(3149), + [anon_sym_atomic] = ACTIONS(3149), + [anon_sym_assert] = ACTIONS(3149), + [anon_sym_defer] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_DOLLARfor] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_POUND] = ACTIONS(3149), + [anon_sym_asm] = ACTIONS(3149), + [anon_sym_AT_LBRACK] = ACTIONS(3149), + [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), }, - [1443] = { - [aux_sym__type_union_list_repeat1] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(4049), - [sym_identifier] = ACTIONS(4051), - [anon_sym_LF] = ACTIONS(4053), - [anon_sym_CR] = ACTIONS(4053), - [anon_sym_CR_LF] = ACTIONS(4053), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(4051), - [anon_sym_const] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(4051), - [anon_sym___global] = ACTIONS(4051), - [anon_sym_type] = ACTIONS(4051), - [anon_sym_PIPE] = ACTIONS(4030), - [anon_sym_fn] = ACTIONS(4051), - [anon_sym_PLUS] = ACTIONS(4051), - [anon_sym_DASH] = ACTIONS(4051), - [anon_sym_STAR] = ACTIONS(4051), - [anon_sym_struct] = ACTIONS(4051), - [anon_sym_union] = ACTIONS(4051), - [anon_sym_pub] = ACTIONS(4051), - [anon_sym_mut] = ACTIONS(4051), - [anon_sym_enum] = ACTIONS(4051), - [anon_sym_interface] = ACTIONS(4051), - [anon_sym_QMARK] = ACTIONS(4051), - [anon_sym_BANG] = ACTIONS(4051), - [anon_sym_go] = ACTIONS(4051), - [anon_sym_spawn] = ACTIONS(4051), - [anon_sym_json_DOTdecode] = ACTIONS(4051), - [anon_sym_LBRACK2] = ACTIONS(4051), - [anon_sym_TILDE] = ACTIONS(4051), - [anon_sym_CARET] = ACTIONS(4051), - [anon_sym_AMP] = ACTIONS(4051), - [anon_sym_LT_DASH] = ACTIONS(4051), - [sym_none] = ACTIONS(4051), - [sym_true] = ACTIONS(4051), - [sym_false] = ACTIONS(4051), - [sym_nil] = ACTIONS(4051), - [anon_sym_if] = ACTIONS(4051), - [anon_sym_DOLLARif] = ACTIONS(4051), - [anon_sym_match] = ACTIONS(4051), - [anon_sym_select] = ACTIONS(4051), - [anon_sym_lock] = ACTIONS(4051), - [anon_sym_rlock] = ACTIONS(4051), - [anon_sym_unsafe] = ACTIONS(4051), - [anon_sym_sql] = ACTIONS(4051), - [sym_int_literal] = ACTIONS(4051), - [sym_float_literal] = ACTIONS(4051), - [sym_rune_literal] = ACTIONS(4051), - [sym_pseudo_compile_time_identifier] = ACTIONS(4051), - [anon_sym_shared] = ACTIONS(4051), - [anon_sym_map_LBRACK] = ACTIONS(4051), - [anon_sym_chan] = ACTIONS(4051), - [anon_sym_thread] = ACTIONS(4051), - [anon_sym_atomic] = ACTIONS(4051), - [anon_sym_assert] = ACTIONS(4051), - [anon_sym_defer] = ACTIONS(4051), - [anon_sym_goto] = ACTIONS(4051), - [anon_sym_break] = ACTIONS(4051), - [anon_sym_continue] = ACTIONS(4051), - [anon_sym_return] = ACTIONS(4051), - [anon_sym_DOLLARfor] = ACTIONS(4051), - [anon_sym_for] = ACTIONS(4051), - [anon_sym_POUND] = ACTIONS(4051), - [anon_sym_asm] = ACTIONS(4051), - [anon_sym_AT_LBRACK] = ACTIONS(4051), - [sym___double_quote] = ACTIONS(4051), - [sym___single_quote] = ACTIONS(4051), - [sym___c_double_quote] = ACTIONS(4051), - [sym___c_single_quote] = ACTIONS(4051), - [sym___r_double_quote] = ACTIONS(4051), - [sym___r_single_quote] = ACTIONS(4051), + [1456] = { + [sym_line_comment] = STATE(1456), + [sym_block_comment] = STATE(1456), + [sym_block] = STATE(1562), + [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), + [anon_sym_SLASH_STAR] = 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), }, - [1444] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1438), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_COMMA] = ACTIONS(3518), - [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), + [1457] = { + [sym_line_comment] = STATE(1457), + [sym_block_comment] = STATE(1457), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3179), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3179), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_nil] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_DOLLARif] = 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), }, - [1445] = { - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3416), - [anon_sym_LF] = ACTIONS(3416), - [anon_sym_CR] = ACTIONS(3416), - [anon_sym_CR_LF] = ACTIONS(3416), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_LPAREN] = ACTIONS(3416), - [anon_sym___global] = ACTIONS(3416), - [anon_sym_type] = ACTIONS(3416), - [anon_sym_PIPE] = ACTIONS(3416), - [anon_sym_fn] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_struct] = ACTIONS(3416), - [anon_sym_union] = ACTIONS(3416), - [anon_sym_pub] = ACTIONS(3416), - [anon_sym_mut] = ACTIONS(3416), - [anon_sym_enum] = ACTIONS(3416), - [anon_sym_interface] = ACTIONS(3416), - [anon_sym_QMARK] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3416), - [anon_sym_go] = ACTIONS(3416), - [anon_sym_spawn] = ACTIONS(3416), - [anon_sym_json_DOTdecode] = ACTIONS(3416), - [anon_sym_LBRACK2] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3416), - [anon_sym_CARET] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3416), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [sym_nil] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_DOLLARif] = ACTIONS(3416), - [anon_sym_match] = ACTIONS(3416), - [anon_sym_select] = ACTIONS(3416), - [anon_sym_lock] = ACTIONS(3416), - [anon_sym_rlock] = ACTIONS(3416), - [anon_sym_unsafe] = ACTIONS(3416), - [anon_sym_sql] = ACTIONS(3416), - [sym_int_literal] = ACTIONS(3416), - [sym_float_literal] = ACTIONS(3416), - [sym_rune_literal] = ACTIONS(3416), - [sym_pseudo_compile_time_identifier] = ACTIONS(3416), - [anon_sym_shared] = ACTIONS(3416), - [anon_sym_map_LBRACK] = ACTIONS(3416), - [anon_sym_chan] = ACTIONS(3416), - [anon_sym_thread] = ACTIONS(3416), - [anon_sym_atomic] = ACTIONS(3416), - [anon_sym_assert] = ACTIONS(3416), - [anon_sym_defer] = ACTIONS(3416), - [anon_sym_goto] = ACTIONS(3416), - [anon_sym_break] = ACTIONS(3416), - [anon_sym_continue] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3416), - [anon_sym_DOLLARfor] = ACTIONS(3416), - [anon_sym_for] = ACTIONS(3416), - [anon_sym_POUND] = ACTIONS(3416), - [anon_sym_asm] = ACTIONS(3416), - [anon_sym_AT_LBRACK] = ACTIONS(3416), - [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), + [1458] = { + [sym_line_comment] = STATE(1458), + [sym_block_comment] = STATE(1458), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3411), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3411), + [sym_true] = ACTIONS(3411), + [sym_false] = ACTIONS(3411), + [sym_nil] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_DOLLARif] = 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), }, - [1446] = { - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_CR] = ACTIONS(3412), - [anon_sym_CR_LF] = ACTIONS(3412), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3412), - [anon_sym___global] = ACTIONS(3412), - [anon_sym_type] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_fn] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_union] = ACTIONS(3412), - [anon_sym_pub] = ACTIONS(3412), - [anon_sym_mut] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_interface] = ACTIONS(3412), - [anon_sym_QMARK] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3412), - [anon_sym_go] = ACTIONS(3412), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3412), - [anon_sym_LBRACK2] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3412), - [anon_sym_CARET] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - [anon_sym_LT_DASH] = ACTIONS(3412), - [sym_none] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_nil] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOLLARif] = ACTIONS(3412), - [anon_sym_match] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_rlock] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_sql] = ACTIONS(3412), - [sym_int_literal] = ACTIONS(3412), - [sym_float_literal] = ACTIONS(3412), - [sym_rune_literal] = ACTIONS(3412), - [sym_pseudo_compile_time_identifier] = ACTIONS(3412), - [anon_sym_shared] = ACTIONS(3412), - [anon_sym_map_LBRACK] = ACTIONS(3412), - [anon_sym_chan] = ACTIONS(3412), - [anon_sym_thread] = ACTIONS(3412), - [anon_sym_atomic] = ACTIONS(3412), - [anon_sym_assert] = ACTIONS(3412), - [anon_sym_defer] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_DOLLARfor] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_POUND] = ACTIONS(3412), - [anon_sym_asm] = ACTIONS(3412), - [anon_sym_AT_LBRACK] = ACTIONS(3412), - [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), + [1459] = { + [sym_line_comment] = STATE(1459), + [sym_block_comment] = STATE(1459), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3383), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3383), + [sym_true] = ACTIONS(3383), + [sym_false] = ACTIONS(3383), + [sym_nil] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_DOLLARif] = 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), }, - [1447] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_RBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_COLON] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(613), + [1460] = { + [sym_line_comment] = STATE(1460), + [sym_block_comment] = STATE(1460), + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3133), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_CR] = ACTIONS(3133), + [anon_sym_CR_LF] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3133), + [anon_sym___global] = ACTIONS(3133), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_fn] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_pub] = ACTIONS(3133), + [anon_sym_mut] = ACTIONS(3133), + [anon_sym_enum] = ACTIONS(3133), + [anon_sym_interface] = ACTIONS(3133), + [anon_sym_QMARK] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_go] = ACTIONS(3133), + [anon_sym_spawn] = ACTIONS(3133), + [anon_sym_json_DOTdecode] = ACTIONS(3133), + [anon_sym_LBRACK2] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_CARET] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_LT_DASH] = ACTIONS(3133), + [sym_none] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_nil] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_DOLLARif] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_rlock] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_sql] = ACTIONS(3133), + [sym_int_literal] = ACTIONS(3133), + [sym_float_literal] = ACTIONS(3133), + [sym_rune_literal] = ACTIONS(3133), + [sym_pseudo_compile_time_identifier] = ACTIONS(3133), + [anon_sym_shared] = ACTIONS(3133), + [anon_sym_map_LBRACK] = ACTIONS(3133), + [anon_sym_chan] = ACTIONS(3133), + [anon_sym_thread] = ACTIONS(3133), + [anon_sym_atomic] = ACTIONS(3133), + [anon_sym_assert] = ACTIONS(3133), + [anon_sym_defer] = ACTIONS(3133), + [anon_sym_goto] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_DOLLARfor] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_POUND] = ACTIONS(3133), + [anon_sym_asm] = ACTIONS(3133), + [anon_sym_AT_LBRACK] = ACTIONS(3133), + [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), }, - [1448] = { - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3193), - [anon_sym_LF] = ACTIONS(3193), - [anon_sym_CR] = ACTIONS(3193), - [anon_sym_CR_LF] = ACTIONS(3193), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym___global] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_pub] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [sym_pseudo_compile_time_identifier] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [anon_sym_assert] = ACTIONS(3193), - [anon_sym_defer] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_DOLLARfor] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym_AT_LBRACK] = ACTIONS(3193), - [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), + [1461] = { + [sym_line_comment] = STATE(1461), + [sym_block_comment] = STATE(1461), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3379), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3379), + [sym_true] = ACTIONS(3379), + [sym_false] = ACTIONS(3379), + [sym_nil] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_DOLLARif] = 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), }, - [1449] = { - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2715), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_CR] = ACTIONS(2715), - [anon_sym_CR_LF] = ACTIONS(2715), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym___global] = ACTIONS(2715), - [anon_sym_type] = ACTIONS(2715), - [anon_sym_PIPE] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_pub] = ACTIONS(2715), - [anon_sym_mut] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_interface] = ACTIONS(2715), - [anon_sym_QMARK] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_go] = ACTIONS(2715), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(2715), - [anon_sym_LBRACK2] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_CARET] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_LT_DASH] = ACTIONS(2715), - [sym_none] = ACTIONS(2715), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [sym_nil] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_DOLLARif] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_select] = ACTIONS(2715), - [anon_sym_lock] = ACTIONS(2715), - [anon_sym_rlock] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_sql] = ACTIONS(2715), - [sym_int_literal] = ACTIONS(2715), - [sym_float_literal] = ACTIONS(2715), - [sym_rune_literal] = ACTIONS(2715), - [sym_pseudo_compile_time_identifier] = ACTIONS(2715), - [anon_sym_shared] = ACTIONS(2715), - [anon_sym_map_LBRACK] = ACTIONS(2715), - [anon_sym_chan] = ACTIONS(2715), - [anon_sym_thread] = ACTIONS(2715), - [anon_sym_atomic] = ACTIONS(2715), - [anon_sym_assert] = ACTIONS(2715), - [anon_sym_defer] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_DOLLARfor] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_POUND] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym_AT_LBRACK] = ACTIONS(2715), - [sym___double_quote] = ACTIONS(2715), - [sym___single_quote] = ACTIONS(2715), - [sym___c_double_quote] = ACTIONS(2715), - [sym___c_single_quote] = ACTIONS(2715), - [sym___r_double_quote] = ACTIONS(2715), - [sym___r_single_quote] = ACTIONS(2715), + [1462] = { + [sym_line_comment] = STATE(1462), + [sym_block_comment] = STATE(1462), + [sym_block] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(4052), + [sym_identifier] = ACTIONS(4054), + [anon_sym_LF] = ACTIONS(4054), + [anon_sym_CR] = ACTIONS(4054), + [anon_sym_CR_LF] = ACTIONS(4054), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4054), + [anon_sym_LPAREN] = ACTIONS(4054), + [anon_sym___global] = ACTIONS(4054), + [anon_sym_type] = ACTIONS(4054), + [anon_sym_fn] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_struct] = ACTIONS(4054), + [anon_sym_union] = ACTIONS(4054), + [anon_sym_pub] = ACTIONS(4054), + [anon_sym_mut] = ACTIONS(4054), + [anon_sym_enum] = ACTIONS(4054), + [anon_sym_interface] = ACTIONS(4054), + [anon_sym_QMARK] = ACTIONS(4054), + [anon_sym_BANG] = ACTIONS(4054), + [anon_sym_go] = ACTIONS(4054), + [anon_sym_spawn] = ACTIONS(4054), + [anon_sym_json_DOTdecode] = ACTIONS(4054), + [anon_sym_LBRACK2] = ACTIONS(4054), + [anon_sym_TILDE] = ACTIONS(4054), + [anon_sym_CARET] = ACTIONS(4054), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_LT_DASH] = ACTIONS(4054), + [sym_none] = ACTIONS(4054), + [sym_true] = ACTIONS(4054), + [sym_false] = ACTIONS(4054), + [sym_nil] = ACTIONS(4054), + [anon_sym_if] = ACTIONS(4054), + [anon_sym_DOLLARif] = ACTIONS(4054), + [anon_sym_match] = ACTIONS(4054), + [anon_sym_select] = ACTIONS(4054), + [anon_sym_lock] = ACTIONS(4054), + [anon_sym_rlock] = ACTIONS(4054), + [anon_sym_unsafe] = ACTIONS(4054), + [anon_sym_sql] = ACTIONS(4054), + [sym_int_literal] = ACTIONS(4054), + [sym_float_literal] = ACTIONS(4054), + [sym_rune_literal] = ACTIONS(4054), + [sym_pseudo_compile_time_identifier] = ACTIONS(4054), + [anon_sym_shared] = ACTIONS(4054), + [anon_sym_map_LBRACK] = ACTIONS(4054), + [anon_sym_chan] = ACTIONS(4054), + [anon_sym_thread] = ACTIONS(4054), + [anon_sym_atomic] = ACTIONS(4054), + [anon_sym_assert] = ACTIONS(4054), + [anon_sym_defer] = ACTIONS(4054), + [anon_sym_goto] = ACTIONS(4054), + [anon_sym_break] = ACTIONS(4054), + [anon_sym_continue] = ACTIONS(4054), + [anon_sym_return] = ACTIONS(4054), + [anon_sym_DOLLARfor] = ACTIONS(4054), + [anon_sym_for] = ACTIONS(4054), + [anon_sym_POUND] = ACTIONS(4054), + [anon_sym_asm] = ACTIONS(4054), + [anon_sym_AT_LBRACK] = ACTIONS(4054), + [sym___double_quote] = ACTIONS(4054), + [sym___single_quote] = ACTIONS(4054), + [sym___c_double_quote] = ACTIONS(4054), + [sym___c_single_quote] = ACTIONS(4054), + [sym___r_double_quote] = ACTIONS(4054), + [sym___r_single_quote] = ACTIONS(4054), }, - [1450] = { - [ts_builtin_sym_end] = ACTIONS(3554), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_CR] = ACTIONS(1761), - [anon_sym_CR_LF] = ACTIONS(1761), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_COMMA] = ACTIONS(1761), - [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), + [1463] = { + [sym_line_comment] = STATE(1463), + [sym_block_comment] = STATE(1463), + [sym_label_reference] = STATE(1578), + [ts_builtin_sym_end] = ACTIONS(4056), + [sym_identifier] = ACTIONS(4058), + [anon_sym_LF] = ACTIONS(4060), + [anon_sym_CR] = ACTIONS(4060), + [anon_sym_CR_LF] = ACTIONS(4060), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4060), + [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), }, - [1451] = { - [sym_block] = STATE(1575), - [ts_builtin_sym_end] = ACTIONS(4060), - [sym_identifier] = ACTIONS(4062), - [anon_sym_LF] = ACTIONS(4062), - [anon_sym_CR] = ACTIONS(4062), - [anon_sym_CR_LF] = ACTIONS(4062), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4062), + [1464] = { + [sym_line_comment] = STATE(1464), + [sym_block_comment] = STATE(1464), + [sym_label_reference] = STATE(1581), + [ts_builtin_sym_end] = ACTIONS(4062), + [sym_identifier] = ACTIONS(4058), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_CR] = ACTIONS(4064), + [anon_sym_CR_LF] = ACTIONS(4064), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4064), [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4062), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym___global] = ACTIONS(4062), - [anon_sym_type] = ACTIONS(4062), - [anon_sym_fn] = ACTIONS(4062), - [anon_sym_PLUS] = ACTIONS(4062), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4062), - [anon_sym_struct] = ACTIONS(4062), - [anon_sym_union] = ACTIONS(4062), - [anon_sym_pub] = ACTIONS(4062), - [anon_sym_mut] = ACTIONS(4062), - [anon_sym_enum] = ACTIONS(4062), - [anon_sym_interface] = ACTIONS(4062), - [anon_sym_QMARK] = ACTIONS(4062), - [anon_sym_BANG] = ACTIONS(4062), - [anon_sym_go] = ACTIONS(4062), - [anon_sym_spawn] = ACTIONS(4062), - [anon_sym_json_DOTdecode] = ACTIONS(4062), - [anon_sym_LBRACK2] = ACTIONS(4062), - [anon_sym_TILDE] = ACTIONS(4062), - [anon_sym_CARET] = ACTIONS(4062), - [anon_sym_AMP] = ACTIONS(4062), - [anon_sym_LT_DASH] = ACTIONS(4062), - [sym_none] = ACTIONS(4062), - [sym_true] = ACTIONS(4062), - [sym_false] = ACTIONS(4062), - [sym_nil] = ACTIONS(4062), - [anon_sym_if] = ACTIONS(4062), - [anon_sym_DOLLARif] = ACTIONS(4062), - [anon_sym_match] = ACTIONS(4062), - [anon_sym_select] = ACTIONS(4062), - [anon_sym_lock] = ACTIONS(4062), - [anon_sym_rlock] = ACTIONS(4062), - [anon_sym_unsafe] = ACTIONS(4062), - [anon_sym_sql] = ACTIONS(4062), - [sym_int_literal] = ACTIONS(4062), - [sym_float_literal] = ACTIONS(4062), - [sym_rune_literal] = ACTIONS(4062), - [sym_pseudo_compile_time_identifier] = ACTIONS(4062), - [anon_sym_shared] = ACTIONS(4062), - [anon_sym_map_LBRACK] = ACTIONS(4062), - [anon_sym_chan] = ACTIONS(4062), - [anon_sym_thread] = ACTIONS(4062), - [anon_sym_atomic] = ACTIONS(4062), - [anon_sym_assert] = ACTIONS(4062), - [anon_sym_defer] = ACTIONS(4062), - [anon_sym_goto] = ACTIONS(4062), - [anon_sym_break] = ACTIONS(4062), - [anon_sym_continue] = ACTIONS(4062), - [anon_sym_return] = ACTIONS(4062), - [anon_sym_DOLLARfor] = ACTIONS(4062), - [anon_sym_for] = ACTIONS(4062), - [anon_sym_POUND] = ACTIONS(4062), - [anon_sym_asm] = ACTIONS(4062), - [anon_sym_AT_LBRACK] = ACTIONS(4062), - [sym___double_quote] = ACTIONS(4062), - [sym___single_quote] = ACTIONS(4062), - [sym___c_double_quote] = ACTIONS(4062), - [sym___c_single_quote] = ACTIONS(4062), - [sym___r_double_quote] = ACTIONS(4062), - [sym___r_single_quote] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4064), + [anon_sym___global] = ACTIONS(4064), + [anon_sym_type] = ACTIONS(4064), + [anon_sym_fn] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4064), + [anon_sym_DASH] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_struct] = ACTIONS(4064), + [anon_sym_union] = ACTIONS(4064), + [anon_sym_pub] = ACTIONS(4064), + [anon_sym_mut] = ACTIONS(4064), + [anon_sym_enum] = ACTIONS(4064), + [anon_sym_interface] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4064), + [anon_sym_BANG] = ACTIONS(4064), + [anon_sym_go] = ACTIONS(4064), + [anon_sym_spawn] = ACTIONS(4064), + [anon_sym_json_DOTdecode] = ACTIONS(4064), + [anon_sym_LBRACK2] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_CARET] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_LT_DASH] = ACTIONS(4064), + [sym_none] = ACTIONS(4064), + [sym_true] = ACTIONS(4064), + [sym_false] = ACTIONS(4064), + [sym_nil] = ACTIONS(4064), + [anon_sym_if] = ACTIONS(4064), + [anon_sym_DOLLARif] = ACTIONS(4064), + [anon_sym_match] = ACTIONS(4064), + [anon_sym_select] = ACTIONS(4064), + [anon_sym_lock] = ACTIONS(4064), + [anon_sym_rlock] = ACTIONS(4064), + [anon_sym_unsafe] = ACTIONS(4064), + [anon_sym_sql] = ACTIONS(4064), + [sym_int_literal] = ACTIONS(4064), + [sym_float_literal] = ACTIONS(4064), + [sym_rune_literal] = ACTIONS(4064), + [sym_pseudo_compile_time_identifier] = ACTIONS(4064), + [anon_sym_shared] = ACTIONS(4064), + [anon_sym_map_LBRACK] = ACTIONS(4064), + [anon_sym_chan] = ACTIONS(4064), + [anon_sym_thread] = ACTIONS(4064), + [anon_sym_atomic] = ACTIONS(4064), + [anon_sym_assert] = ACTIONS(4064), + [anon_sym_defer] = ACTIONS(4064), + [anon_sym_goto] = ACTIONS(4064), + [anon_sym_break] = ACTIONS(4064), + [anon_sym_continue] = ACTIONS(4064), + [anon_sym_return] = ACTIONS(4064), + [anon_sym_DOLLARfor] = ACTIONS(4064), + [anon_sym_for] = ACTIONS(4064), + [anon_sym_POUND] = ACTIONS(4064), + [anon_sym_asm] = ACTIONS(4064), + [anon_sym_AT_LBRACK] = ACTIONS(4064), + [sym___double_quote] = ACTIONS(4064), + [sym___single_quote] = ACTIONS(4064), + [sym___c_double_quote] = ACTIONS(4064), + [sym___c_single_quote] = ACTIONS(4064), + [sym___r_double_quote] = ACTIONS(4064), + [sym___r_single_quote] = ACTIONS(4064), }, - [1452] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_LBRACE] = 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_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_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), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = 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), + [1465] = { + [sym_line_comment] = STATE(1465), + [sym_block_comment] = STATE(1465), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_nil] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_DOLLARif] = 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), }, - [1453] = { - [sym_block] = STATE(1578), + [1466] = { + [sym_line_comment] = STATE(1466), + [sym_block_comment] = STATE(1466), + [ts_builtin_sym_end] = ACTIONS(3041), + [sym_identifier] = ACTIONS(3043), + [anon_sym_LF] = ACTIONS(3043), + [anon_sym_CR] = ACTIONS(3043), + [anon_sym_CR_LF] = ACTIONS(3043), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym___global] = ACTIONS(3043), + [anon_sym_type] = ACTIONS(3043), + [anon_sym_PIPE] = ACTIONS(3043), + [anon_sym_fn] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_pub] = ACTIONS(3043), + [anon_sym_mut] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_interface] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_go] = ACTIONS(3043), + [anon_sym_spawn] = ACTIONS(3043), + [anon_sym_json_DOTdecode] = ACTIONS(3043), + [anon_sym_LBRACK2] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3043), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [sym_none] = ACTIONS(3043), + [sym_true] = ACTIONS(3043), + [sym_false] = ACTIONS(3043), + [sym_nil] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_DOLLARif] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3043), + [anon_sym_rlock] = ACTIONS(3043), + [anon_sym_unsafe] = ACTIONS(3043), + [anon_sym_sql] = ACTIONS(3043), + [sym_int_literal] = ACTIONS(3043), + [sym_float_literal] = ACTIONS(3043), + [sym_rune_literal] = ACTIONS(3043), + [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_shared] = ACTIONS(3043), + [anon_sym_map_LBRACK] = ACTIONS(3043), + [anon_sym_chan] = ACTIONS(3043), + [anon_sym_thread] = ACTIONS(3043), + [anon_sym_atomic] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_defer] = ACTIONS(3043), + [anon_sym_goto] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_DOLLARfor] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_POUND] = ACTIONS(3043), + [anon_sym_asm] = ACTIONS(3043), + [anon_sym_AT_LBRACK] = ACTIONS(3043), + [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), + }, + [1467] = { + [sym_line_comment] = STATE(1467), + [sym_block_comment] = STATE(1467), + [ts_builtin_sym_end] = ACTIONS(3033), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3035), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_nil] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_DOLLARif] = 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), + }, + [1468] = { + [sym_line_comment] = STATE(1468), + [sym_block_comment] = STATE(1468), + [sym_block] = STATE(1553), [ts_builtin_sym_end] = ACTIONS(4066), [sym_identifier] = ACTIONS(4068), [anon_sym_LF] = ACTIONS(4068), [anon_sym_CR] = ACTIONS(4068), [anon_sym_CR_LF] = ACTIONS(4068), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4068), - [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4050), [anon_sym_const] = ACTIONS(4068), [anon_sym_LPAREN] = ACTIONS(4068), [anon_sym___global] = ACTIONS(4068), @@ -179187,235 +181864,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4068), [sym___r_single_quote] = ACTIONS(4068), }, - [1454] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_LBRACE] = 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_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_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), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = 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), - }, - [1455] = { - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_CR] = ACTIONS(3424), - [anon_sym_CR_LF] = ACTIONS(3424), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_const] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym___global] = ACTIONS(3424), - [anon_sym_type] = ACTIONS(3424), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_fn] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_struct] = ACTIONS(3424), - [anon_sym_union] = ACTIONS(3424), - [anon_sym_pub] = ACTIONS(3424), - [anon_sym_mut] = ACTIONS(3424), - [anon_sym_enum] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3424), - [anon_sym_QMARK] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_go] = ACTIONS(3424), - [anon_sym_spawn] = ACTIONS(3424), - [anon_sym_json_DOTdecode] = ACTIONS(3424), - [anon_sym_LBRACK2] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_CARET] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - [anon_sym_LT_DASH] = ACTIONS(3424), - [sym_none] = ACTIONS(3424), - [sym_true] = ACTIONS(3424), - [sym_false] = ACTIONS(3424), - [sym_nil] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_DOLLARif] = ACTIONS(3424), - [anon_sym_match] = ACTIONS(3424), - [anon_sym_select] = ACTIONS(3424), - [anon_sym_lock] = ACTIONS(3424), - [anon_sym_rlock] = ACTIONS(3424), - [anon_sym_unsafe] = ACTIONS(3424), - [anon_sym_sql] = ACTIONS(3424), - [sym_int_literal] = ACTIONS(3424), - [sym_float_literal] = ACTIONS(3424), - [sym_rune_literal] = ACTIONS(3424), - [sym_pseudo_compile_time_identifier] = ACTIONS(3424), - [anon_sym_shared] = ACTIONS(3424), - [anon_sym_map_LBRACK] = ACTIONS(3424), - [anon_sym_chan] = ACTIONS(3424), - [anon_sym_thread] = ACTIONS(3424), - [anon_sym_atomic] = ACTIONS(3424), - [anon_sym_assert] = ACTIONS(3424), - [anon_sym_defer] = ACTIONS(3424), - [anon_sym_goto] = ACTIONS(3424), - [anon_sym_break] = ACTIONS(3424), - [anon_sym_continue] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3424), - [anon_sym_DOLLARfor] = ACTIONS(3424), - [anon_sym_for] = ACTIONS(3424), - [anon_sym_POUND] = ACTIONS(3424), - [anon_sym_asm] = ACTIONS(3424), - [anon_sym_AT_LBRACK] = ACTIONS(3424), - [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), + [1469] = { + [sym_line_comment] = STATE(1469), + [sym_block_comment] = STATE(1469), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_nil] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_DOLLARif] = 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), }, - [1456] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym___global] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_pub] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_interface] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [sym_pseudo_compile_time_identifier] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [anon_sym_assert] = ACTIONS(2915), - [anon_sym_defer] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_DOLLARfor] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym_AT_LBRACK] = ACTIONS(2915), - [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), + [1470] = { + [sym_line_comment] = STATE(1470), + [sym_block_comment] = STATE(1470), + [ts_builtin_sym_end] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2949), + [anon_sym_LF] = ACTIONS(2949), + [anon_sym_CR] = ACTIONS(2949), + [anon_sym_CR_LF] = ACTIONS(2949), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_LPAREN] = ACTIONS(2949), + [anon_sym___global] = ACTIONS(2949), + [anon_sym_type] = ACTIONS(2949), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_fn] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_pub] = ACTIONS(2949), + [anon_sym_mut] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_interface] = ACTIONS(2949), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_go] = ACTIONS(2949), + [anon_sym_spawn] = ACTIONS(2949), + [anon_sym_json_DOTdecode] = ACTIONS(2949), + [anon_sym_LBRACK2] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_CARET] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2949), + [sym_none] = ACTIONS(2949), + [sym_true] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [sym_nil] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2949), + [anon_sym_match] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [anon_sym_lock] = ACTIONS(2949), + [anon_sym_rlock] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_sql] = ACTIONS(2949), + [sym_int_literal] = ACTIONS(2949), + [sym_float_literal] = ACTIONS(2949), + [sym_rune_literal] = ACTIONS(2949), + [sym_pseudo_compile_time_identifier] = ACTIONS(2949), + [anon_sym_shared] = ACTIONS(2949), + [anon_sym_map_LBRACK] = ACTIONS(2949), + [anon_sym_chan] = ACTIONS(2949), + [anon_sym_thread] = ACTIONS(2949), + [anon_sym_atomic] = ACTIONS(2949), + [anon_sym_assert] = ACTIONS(2949), + [anon_sym_defer] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_DOLLARfor] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_POUND] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym_AT_LBRACK] = ACTIONS(2949), + [sym___double_quote] = ACTIONS(2949), + [sym___single_quote] = ACTIONS(2949), + [sym___c_double_quote] = ACTIONS(2949), + [sym___c_single_quote] = ACTIONS(2949), + [sym___r_double_quote] = ACTIONS(2949), + [sym___r_single_quote] = ACTIONS(2949), }, - [1457] = { - [sym_block] = STATE(1529), + [1471] = { + [sym_line_comment] = STATE(1471), + [sym_block_comment] = STATE(1471), + [sym_block] = STATE(1536), [ts_builtin_sym_end] = ACTIONS(4070), [sym_identifier] = ACTIONS(4072), [anon_sym_LF] = ACTIONS(4072), [anon_sym_CR] = ACTIONS(4072), [anon_sym_CR_LF] = ACTIONS(4072), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4072), - [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4050), [anon_sym_const] = ACTIONS(4072), [anon_sym_LPAREN] = ACTIONS(4072), [anon_sym___global] = ACTIONS(4072), @@ -179479,746 +182092,1387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4072), [sym___r_single_quote] = ACTIONS(4072), }, - [1458] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [1472] = { + [sym_line_comment] = STATE(1472), + [sym_block_comment] = STATE(1472), + [sym_block] = STATE(1533), + [ts_builtin_sym_end] = ACTIONS(4074), + [sym_identifier] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4076), + [anon_sym_CR] = ACTIONS(4076), + [anon_sym_CR_LF] = ACTIONS(4076), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym___global] = ACTIONS(4076), + [anon_sym_type] = ACTIONS(4076), + [anon_sym_fn] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_struct] = ACTIONS(4076), + [anon_sym_union] = ACTIONS(4076), + [anon_sym_pub] = ACTIONS(4076), + [anon_sym_mut] = ACTIONS(4076), + [anon_sym_enum] = ACTIONS(4076), + [anon_sym_interface] = ACTIONS(4076), + [anon_sym_QMARK] = ACTIONS(4076), + [anon_sym_BANG] = ACTIONS(4076), + [anon_sym_go] = ACTIONS(4076), + [anon_sym_spawn] = ACTIONS(4076), + [anon_sym_json_DOTdecode] = ACTIONS(4076), + [anon_sym_LBRACK2] = ACTIONS(4076), + [anon_sym_TILDE] = ACTIONS(4076), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4076), + [anon_sym_LT_DASH] = ACTIONS(4076), + [sym_none] = ACTIONS(4076), + [sym_true] = ACTIONS(4076), + [sym_false] = ACTIONS(4076), + [sym_nil] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_DOLLARif] = ACTIONS(4076), + [anon_sym_match] = ACTIONS(4076), + [anon_sym_select] = ACTIONS(4076), + [anon_sym_lock] = ACTIONS(4076), + [anon_sym_rlock] = ACTIONS(4076), + [anon_sym_unsafe] = ACTIONS(4076), + [anon_sym_sql] = ACTIONS(4076), + [sym_int_literal] = ACTIONS(4076), + [sym_float_literal] = ACTIONS(4076), + [sym_rune_literal] = ACTIONS(4076), + [sym_pseudo_compile_time_identifier] = ACTIONS(4076), + [anon_sym_shared] = ACTIONS(4076), + [anon_sym_map_LBRACK] = ACTIONS(4076), + [anon_sym_chan] = ACTIONS(4076), + [anon_sym_thread] = ACTIONS(4076), + [anon_sym_atomic] = ACTIONS(4076), + [anon_sym_assert] = ACTIONS(4076), + [anon_sym_defer] = ACTIONS(4076), + [anon_sym_goto] = ACTIONS(4076), + [anon_sym_break] = ACTIONS(4076), + [anon_sym_continue] = ACTIONS(4076), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_DOLLARfor] = ACTIONS(4076), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_POUND] = ACTIONS(4076), + [anon_sym_asm] = ACTIONS(4076), + [anon_sym_AT_LBRACK] = ACTIONS(4076), + [sym___double_quote] = ACTIONS(4076), + [sym___single_quote] = ACTIONS(4076), + [sym___c_double_quote] = ACTIONS(4076), + [sym___c_single_quote] = ACTIONS(4076), + [sym___r_double_quote] = ACTIONS(4076), + [sym___r_single_quote] = ACTIONS(4076), }, - [1459] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(563), - [anon_sym_CR] = ACTIONS(563), - [anon_sym_CR_LF] = ACTIONS(563), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [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(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(4074), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [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(563), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [1473] = { + [sym_line_comment] = STATE(1473), + [sym_block_comment] = STATE(1473), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3415), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3415), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [sym_nil] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_DOLLARif] = 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), + }, + [1474] = { + [sym_line_comment] = STATE(1474), + [sym_block_comment] = STATE(1474), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3427), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3427), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_nil] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_DOLLARif] = 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), + }, + [1475] = { + [sym_line_comment] = STATE(1475), + [sym_block_comment] = STATE(1475), + [sym_block] = STATE(1589), + [ts_builtin_sym_end] = ACTIONS(4078), + [sym_identifier] = ACTIONS(4080), + [anon_sym_LF] = ACTIONS(4080), + [anon_sym_CR] = ACTIONS(4080), + [anon_sym_CR_LF] = ACTIONS(4080), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(4080), + [anon_sym___global] = ACTIONS(4080), + [anon_sym_type] = ACTIONS(4080), + [anon_sym_fn] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_pub] = ACTIONS(4080), + [anon_sym_mut] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_interface] = ACTIONS(4080), + [anon_sym_QMARK] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4080), + [anon_sym_go] = ACTIONS(4080), + [anon_sym_spawn] = ACTIONS(4080), + [anon_sym_json_DOTdecode] = ACTIONS(4080), + [anon_sym_LBRACK2] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(4080), + [anon_sym_CARET] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_LT_DASH] = ACTIONS(4080), + [sym_none] = ACTIONS(4080), + [sym_true] = ACTIONS(4080), + [sym_false] = ACTIONS(4080), + [sym_nil] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_DOLLARif] = ACTIONS(4080), + [anon_sym_match] = ACTIONS(4080), + [anon_sym_select] = ACTIONS(4080), + [anon_sym_lock] = ACTIONS(4080), + [anon_sym_rlock] = ACTIONS(4080), + [anon_sym_unsafe] = ACTIONS(4080), + [anon_sym_sql] = ACTIONS(4080), + [sym_int_literal] = ACTIONS(4080), + [sym_float_literal] = ACTIONS(4080), + [sym_rune_literal] = ACTIONS(4080), + [sym_pseudo_compile_time_identifier] = ACTIONS(4080), + [anon_sym_shared] = ACTIONS(4080), + [anon_sym_map_LBRACK] = ACTIONS(4080), + [anon_sym_chan] = ACTIONS(4080), + [anon_sym_thread] = ACTIONS(4080), + [anon_sym_atomic] = ACTIONS(4080), + [anon_sym_assert] = ACTIONS(4080), + [anon_sym_defer] = ACTIONS(4080), + [anon_sym_goto] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_DOLLARfor] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_POUND] = ACTIONS(4080), + [anon_sym_asm] = ACTIONS(4080), + [anon_sym_AT_LBRACK] = ACTIONS(4080), + [sym___double_quote] = ACTIONS(4080), + [sym___single_quote] = ACTIONS(4080), + [sym___c_double_quote] = ACTIONS(4080), + [sym___c_single_quote] = ACTIONS(4080), + [sym___r_double_quote] = ACTIONS(4080), + [sym___r_single_quote] = ACTIONS(4080), + }, + [1476] = { + [sym_line_comment] = STATE(1476), + [sym_block_comment] = STATE(1476), + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LF] = ACTIONS(3027), + [anon_sym_CR] = ACTIONS(3027), + [anon_sym_CR_LF] = ACTIONS(3027), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym___global] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_pub] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_interface] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3027), + [sym_rune_literal] = ACTIONS(3027), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [anon_sym_map_LBRACK] = ACTIONS(3027), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_defer] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_DOLLARfor] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_POUND] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym_AT_LBRACK] = ACTIONS(3027), + [sym___double_quote] = ACTIONS(3027), + [sym___single_quote] = ACTIONS(3027), + [sym___c_double_quote] = ACTIONS(3027), + [sym___c_single_quote] = ACTIONS(3027), + [sym___r_double_quote] = ACTIONS(3027), + [sym___r_single_quote] = ACTIONS(3027), }, - [1460] = { - [sym_reference_expression] = STATE(4445), - [sym_type_reference_expression] = STATE(2489), - [sym_plain_type] = STATE(2511), - [sym__plain_type_without_special] = STATE(2574), - [sym_anon_struct_type] = STATE(2572), - [sym_multi_return_type] = STATE(2574), - [sym_result_type] = STATE(2574), - [sym_option_type] = STATE(2574), - [sym_qualified_type] = STATE(2489), - [sym_fixed_array_type] = STATE(2572), - [sym_array_type] = STATE(2572), - [sym_pointer_type] = STATE(2572), - [sym_wrong_pointer_type] = STATE(2572), - [sym_map_type] = STATE(2572), - [sym_channel_type] = STATE(2572), - [sym_shared_type] = STATE(2572), - [sym_thread_type] = STATE(2572), - [sym_atomic_type] = STATE(2572), - [sym_generic_type] = STATE(2572), - [sym_function_type] = STATE(2572), - [sym_identifier] = ACTIONS(4076), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(4078), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(4082), - [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), + [1477] = { + [sym_line_comment] = STATE(1477), + [sym_block_comment] = STATE(1477), + [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), + [anon_sym_SLASH_STAR] = 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), + }, + [1478] = { + [sym_line_comment] = STATE(1478), + [sym_block_comment] = STATE(1478), + [ts_builtin_sym_end] = ACTIONS(4082), + [sym_identifier] = ACTIONS(4084), + [anon_sym_LF] = ACTIONS(4084), + [anon_sym_CR] = ACTIONS(4084), + [anon_sym_CR_LF] = ACTIONS(4084), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4084), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym___global] = ACTIONS(4084), + [anon_sym_type] = ACTIONS(4084), + [anon_sym_PIPE] = ACTIONS(4084), + [anon_sym_fn] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(4084), [anon_sym_struct] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_LBRACK2] = ACTIONS(4090), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(4092), - [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(4094), - [anon_sym_map_LBRACK] = ACTIONS(4096), - [anon_sym_chan] = ACTIONS(4098), - [anon_sym_thread] = ACTIONS(4100), - [anon_sym_atomic] = ACTIONS(4102), + [anon_sym_union] = ACTIONS(4084), + [anon_sym_pub] = ACTIONS(4084), + [anon_sym_mut] = ACTIONS(4084), + [anon_sym_enum] = ACTIONS(4084), + [anon_sym_interface] = ACTIONS(4084), + [anon_sym_QMARK] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4084), + [anon_sym_go] = ACTIONS(4084), + [anon_sym_spawn] = ACTIONS(4084), + [anon_sym_json_DOTdecode] = ACTIONS(4084), + [anon_sym_LBRACK2] = ACTIONS(4084), + [anon_sym_TILDE] = ACTIONS(4084), + [anon_sym_CARET] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_LT_DASH] = ACTIONS(4084), + [sym_none] = ACTIONS(4084), + [sym_true] = ACTIONS(4084), + [sym_false] = ACTIONS(4084), + [sym_nil] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4084), + [anon_sym_DOLLARif] = ACTIONS(4084), + [anon_sym_match] = ACTIONS(4084), + [anon_sym_select] = ACTIONS(4084), + [anon_sym_lock] = ACTIONS(4084), + [anon_sym_rlock] = ACTIONS(4084), + [anon_sym_unsafe] = ACTIONS(4084), + [anon_sym_sql] = ACTIONS(4084), + [sym_int_literal] = ACTIONS(4084), + [sym_float_literal] = ACTIONS(4084), + [sym_rune_literal] = ACTIONS(4084), + [sym_pseudo_compile_time_identifier] = ACTIONS(4084), + [anon_sym_shared] = ACTIONS(4084), + [anon_sym_map_LBRACK] = ACTIONS(4084), + [anon_sym_chan] = ACTIONS(4084), + [anon_sym_thread] = ACTIONS(4084), + [anon_sym_atomic] = ACTIONS(4084), + [anon_sym_assert] = ACTIONS(4084), + [anon_sym_defer] = ACTIONS(4084), + [anon_sym_goto] = ACTIONS(4084), + [anon_sym_break] = ACTIONS(4084), + [anon_sym_continue] = ACTIONS(4084), + [anon_sym_return] = ACTIONS(4084), + [anon_sym_DOLLARfor] = ACTIONS(4084), + [anon_sym_for] = ACTIONS(4084), + [anon_sym_POUND] = ACTIONS(4084), + [anon_sym_asm] = ACTIONS(4084), + [anon_sym_AT_LBRACK] = ACTIONS(4084), + [sym___double_quote] = ACTIONS(4084), + [sym___single_quote] = ACTIONS(4084), + [sym___c_double_quote] = ACTIONS(4084), + [sym___c_single_quote] = ACTIONS(4084), + [sym___r_double_quote] = ACTIONS(4084), + [sym___r_single_quote] = ACTIONS(4084), }, - [1461] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_LBRACE] = 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_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_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), - [sym_none] = ACTIONS(3009), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_nil] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_DOLLARif] = 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), + [1479] = { + [sym_line_comment] = STATE(1479), + [sym_block_comment] = STATE(1479), + [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(497), + [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), }, - [1462] = { - [sym_reference_expression] = STATE(4445), - [sym_type_reference_expression] = STATE(2489), - [sym_plain_type] = STATE(2619), - [sym__plain_type_without_special] = STATE(2574), - [sym_anon_struct_type] = STATE(2572), - [sym_multi_return_type] = STATE(2574), - [sym_result_type] = STATE(2574), - [sym_option_type] = STATE(2574), - [sym_qualified_type] = STATE(2489), - [sym_fixed_array_type] = STATE(2572), - [sym_array_type] = STATE(2572), - [sym_pointer_type] = STATE(2572), - [sym_wrong_pointer_type] = STATE(2572), - [sym_map_type] = STATE(2572), - [sym_channel_type] = STATE(2572), - [sym_shared_type] = STATE(2572), - [sym_thread_type] = STATE(2572), - [sym_atomic_type] = STATE(2572), - [sym_generic_type] = STATE(2572), - [sym_function_type] = STATE(2572), - [sym_identifier] = ACTIONS(4076), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [sym_comment] = ACTIONS(495), - [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(4078), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(4082), - [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(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_LBRACK2] = ACTIONS(4090), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(4092), - [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(4094), - [anon_sym_map_LBRACK] = ACTIONS(4096), - [anon_sym_chan] = ACTIONS(4098), - [anon_sym_thread] = ACTIONS(4100), - [anon_sym_atomic] = ACTIONS(4102), + [1480] = { + [sym_line_comment] = STATE(1480), + [sym_block_comment] = STATE(1480), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3335), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3335), + [sym_true] = ACTIONS(3335), + [sym_false] = ACTIONS(3335), + [sym_nil] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_DOLLARif] = 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), }, - [1463] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_LBRACE] = 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_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_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), - [sym_none] = ACTIONS(3013), - [sym_true] = ACTIONS(3013), - [sym_false] = ACTIONS(3013), - [sym_nil] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_DOLLARif] = 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), + [1481] = { + [sym_line_comment] = STATE(1481), + [sym_block_comment] = STATE(1481), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3331), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3331), + [sym_true] = ACTIONS(3331), + [sym_false] = ACTIONS(3331), + [sym_nil] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_DOLLARif] = 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), }, - [1464] = { - [sym_reference_expression] = STATE(4445), - [sym_type_reference_expression] = STATE(2489), - [sym_plain_type] = STATE(2571), - [sym__plain_type_without_special] = STATE(2574), - [sym_anon_struct_type] = STATE(2572), - [sym_multi_return_type] = STATE(2574), - [sym_result_type] = STATE(2574), - [sym_option_type] = STATE(2574), - [sym_qualified_type] = STATE(2489), - [sym_fixed_array_type] = STATE(2572), - [sym_array_type] = STATE(2572), - [sym_pointer_type] = STATE(2572), - [sym_wrong_pointer_type] = STATE(2572), - [sym_map_type] = STATE(2572), - [sym_channel_type] = STATE(2572), - [sym_shared_type] = STATE(2572), - [sym_thread_type] = STATE(2572), - [sym_atomic_type] = STATE(2572), - [sym_generic_type] = STATE(2572), - [sym_function_type] = STATE(2572), - [sym_identifier] = ACTIONS(4076), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(4078), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [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(581), - [anon_sym_struct] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(4086), + [1482] = { + [sym_line_comment] = STATE(1482), + [sym_block_comment] = STATE(1482), + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3305), + [anon_sym_LF] = ACTIONS(3305), + [anon_sym_CR] = ACTIONS(3305), + [anon_sym_CR_LF] = ACTIONS(3305), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym___global] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_union] = ACTIONS(3305), + [anon_sym_pub] = ACTIONS(3305), + [anon_sym_mut] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_go] = ACTIONS(3305), + [anon_sym_spawn] = ACTIONS(3305), + [anon_sym_json_DOTdecode] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3305), + [sym_none] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_nil] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_DOLLARif] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_rlock] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_sql] = ACTIONS(3305), + [sym_int_literal] = ACTIONS(3305), + [sym_float_literal] = ACTIONS(3305), + [sym_rune_literal] = ACTIONS(3305), + [sym_pseudo_compile_time_identifier] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3305), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_defer] = ACTIONS(3305), + [anon_sym_goto] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_DOLLARfor] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_POUND] = ACTIONS(3305), + [anon_sym_asm] = ACTIONS(3305), + [anon_sym_AT_LBRACK] = ACTIONS(3305), + [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), + }, + [1483] = { + [sym_line_comment] = STATE(1483), + [sym_block_comment] = STATE(1483), + [ts_builtin_sym_end] = ACTIONS(3299), + [sym_identifier] = ACTIONS(3301), + [anon_sym_LF] = ACTIONS(3301), + [anon_sym_CR] = ACTIONS(3301), + [anon_sym_CR_LF] = ACTIONS(3301), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym___global] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_union] = ACTIONS(3301), + [anon_sym_pub] = ACTIONS(3301), + [anon_sym_mut] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_go] = ACTIONS(3301), + [anon_sym_spawn] = ACTIONS(3301), + [anon_sym_json_DOTdecode] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_DASH] = ACTIONS(3301), + [sym_none] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_nil] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_DOLLARif] = ACTIONS(3301), + [anon_sym_match] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_rlock] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_sql] = ACTIONS(3301), + [sym_int_literal] = ACTIONS(3301), + [sym_float_literal] = ACTIONS(3301), + [sym_rune_literal] = ACTIONS(3301), + [sym_pseudo_compile_time_identifier] = ACTIONS(3301), + [anon_sym_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3301), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + [anon_sym_assert] = ACTIONS(3301), + [anon_sym_defer] = ACTIONS(3301), + [anon_sym_goto] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_DOLLARfor] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_POUND] = ACTIONS(3301), + [anon_sym_asm] = ACTIONS(3301), + [anon_sym_AT_LBRACK] = ACTIONS(3301), + [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), + }, + [1484] = { + [sym_line_comment] = STATE(1484), + [sym_block_comment] = STATE(1484), + [sym_block] = STATE(1587), + [ts_builtin_sym_end] = ACTIONS(4086), + [sym_identifier] = ACTIONS(4088), + [anon_sym_LF] = ACTIONS(4088), + [anon_sym_CR] = ACTIONS(4088), + [anon_sym_CR_LF] = ACTIONS(4088), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4088), + [anon_sym___global] = ACTIONS(4088), + [anon_sym_type] = ACTIONS(4088), + [anon_sym_fn] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(4088), + [anon_sym_union] = ACTIONS(4088), + [anon_sym_pub] = ACTIONS(4088), + [anon_sym_mut] = ACTIONS(4088), + [anon_sym_enum] = ACTIONS(4088), + [anon_sym_interface] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(4088), [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_LBRACK2] = ACTIONS(4090), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [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(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(4094), - [anon_sym_map_LBRACK] = ACTIONS(4096), - [anon_sym_chan] = ACTIONS(4098), - [anon_sym_thread] = ACTIONS(4100), - [anon_sym_atomic] = ACTIONS(4102), + [anon_sym_go] = ACTIONS(4088), + [anon_sym_spawn] = ACTIONS(4088), + [anon_sym_json_DOTdecode] = ACTIONS(4088), + [anon_sym_LBRACK2] = ACTIONS(4088), + [anon_sym_TILDE] = ACTIONS(4088), + [anon_sym_CARET] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_LT_DASH] = ACTIONS(4088), + [sym_none] = ACTIONS(4088), + [sym_true] = ACTIONS(4088), + [sym_false] = ACTIONS(4088), + [sym_nil] = ACTIONS(4088), + [anon_sym_if] = ACTIONS(4088), + [anon_sym_DOLLARif] = ACTIONS(4088), + [anon_sym_match] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_lock] = ACTIONS(4088), + [anon_sym_rlock] = ACTIONS(4088), + [anon_sym_unsafe] = ACTIONS(4088), + [anon_sym_sql] = ACTIONS(4088), + [sym_int_literal] = ACTIONS(4088), + [sym_float_literal] = ACTIONS(4088), + [sym_rune_literal] = ACTIONS(4088), + [sym_pseudo_compile_time_identifier] = ACTIONS(4088), + [anon_sym_shared] = ACTIONS(4088), + [anon_sym_map_LBRACK] = ACTIONS(4088), + [anon_sym_chan] = ACTIONS(4088), + [anon_sym_thread] = ACTIONS(4088), + [anon_sym_atomic] = ACTIONS(4088), + [anon_sym_assert] = ACTIONS(4088), + [anon_sym_defer] = ACTIONS(4088), + [anon_sym_goto] = ACTIONS(4088), + [anon_sym_break] = ACTIONS(4088), + [anon_sym_continue] = ACTIONS(4088), + [anon_sym_return] = ACTIONS(4088), + [anon_sym_DOLLARfor] = ACTIONS(4088), + [anon_sym_for] = ACTIONS(4088), + [anon_sym_POUND] = ACTIONS(4088), + [anon_sym_asm] = ACTIONS(4088), + [anon_sym_AT_LBRACK] = ACTIONS(4088), + [sym___double_quote] = ACTIONS(4088), + [sym___single_quote] = ACTIONS(4088), + [sym___c_double_quote] = ACTIONS(4088), + [sym___c_single_quote] = ACTIONS(4088), + [sym___r_double_quote] = ACTIONS(4088), + [sym___r_single_quote] = ACTIONS(4088), }, - [1465] = { - [sym_block] = STATE(1600), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym___global] = ACTIONS(4106), - [anon_sym_type] = ACTIONS(4106), - [anon_sym_fn] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4106), - [anon_sym_DASH] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_struct] = ACTIONS(4106), - [anon_sym_union] = ACTIONS(4106), - [anon_sym_pub] = ACTIONS(4106), - [anon_sym_mut] = ACTIONS(4106), - [anon_sym_enum] = ACTIONS(4106), - [anon_sym_interface] = ACTIONS(4106), - [anon_sym_QMARK] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4106), - [anon_sym_go] = ACTIONS(4106), - [anon_sym_spawn] = ACTIONS(4106), - [anon_sym_json_DOTdecode] = ACTIONS(4106), - [anon_sym_LBRACK2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_CARET] = ACTIONS(4106), - [anon_sym_AMP] = ACTIONS(4106), - [anon_sym_LT_DASH] = ACTIONS(4106), - [sym_none] = ACTIONS(4106), - [sym_true] = ACTIONS(4106), - [sym_false] = ACTIONS(4106), - [sym_nil] = ACTIONS(4106), - [anon_sym_if] = ACTIONS(4106), - [anon_sym_DOLLARif] = ACTIONS(4106), - [anon_sym_match] = ACTIONS(4106), - [anon_sym_select] = ACTIONS(4106), - [anon_sym_lock] = ACTIONS(4106), - [anon_sym_rlock] = ACTIONS(4106), - [anon_sym_unsafe] = ACTIONS(4106), - [anon_sym_sql] = ACTIONS(4106), - [sym_int_literal] = ACTIONS(4106), - [sym_float_literal] = ACTIONS(4106), - [sym_rune_literal] = ACTIONS(4106), - [sym_pseudo_compile_time_identifier] = ACTIONS(4106), - [anon_sym_shared] = ACTIONS(4106), - [anon_sym_map_LBRACK] = ACTIONS(4106), - [anon_sym_chan] = ACTIONS(4106), - [anon_sym_thread] = ACTIONS(4106), - [anon_sym_atomic] = ACTIONS(4106), - [anon_sym_assert] = ACTIONS(4106), - [anon_sym_defer] = ACTIONS(4106), - [anon_sym_goto] = ACTIONS(4106), - [anon_sym_break] = ACTIONS(4106), - [anon_sym_continue] = ACTIONS(4106), - [anon_sym_return] = ACTIONS(4106), - [anon_sym_DOLLARfor] = ACTIONS(4106), - [anon_sym_for] = ACTIONS(4106), - [anon_sym_POUND] = ACTIONS(4106), - [anon_sym_asm] = ACTIONS(4106), - [anon_sym_AT_LBRACK] = ACTIONS(4106), - [sym___double_quote] = ACTIONS(4106), - [sym___single_quote] = ACTIONS(4106), - [sym___c_double_quote] = ACTIONS(4106), - [sym___c_single_quote] = ACTIONS(4106), - [sym___r_double_quote] = ACTIONS(4106), - [sym___r_single_quote] = ACTIONS(4106), + [1485] = { + [sym_line_comment] = STATE(1485), + [sym_block_comment] = STATE(1485), + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2743), + [anon_sym_LF] = ACTIONS(2743), + [anon_sym_CR] = ACTIONS(2743), + [anon_sym_CR_LF] = ACTIONS(2743), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym___global] = ACTIONS(2743), + [anon_sym_type] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_pub] = ACTIONS(2743), + [anon_sym_mut] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), + [anon_sym_interface] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_go] = ACTIONS(2743), + [anon_sym_spawn] = ACTIONS(2743), + [anon_sym_json_DOTdecode] = ACTIONS(2743), + [anon_sym_LBRACK2] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2743), + [sym_none] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_nil] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_DOLLARif] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_select] = ACTIONS(2743), + [anon_sym_lock] = ACTIONS(2743), + [anon_sym_rlock] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_sql] = ACTIONS(2743), + [sym_int_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), + [sym_rune_literal] = ACTIONS(2743), + [sym_pseudo_compile_time_identifier] = ACTIONS(2743), + [anon_sym_shared] = ACTIONS(2743), + [anon_sym_map_LBRACK] = ACTIONS(2743), + [anon_sym_chan] = ACTIONS(2743), + [anon_sym_thread] = ACTIONS(2743), + [anon_sym_atomic] = ACTIONS(2743), + [anon_sym_assert] = ACTIONS(2743), + [anon_sym_defer] = ACTIONS(2743), + [anon_sym_goto] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_DOLLARfor] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_asm] = ACTIONS(2743), + [anon_sym_AT_LBRACK] = ACTIONS(2743), + [sym___double_quote] = ACTIONS(2743), + [sym___single_quote] = ACTIONS(2743), + [sym___c_double_quote] = ACTIONS(2743), + [sym___c_single_quote] = ACTIONS(2743), + [sym___r_double_quote] = ACTIONS(2743), + [sym___r_single_quote] = ACTIONS(2743), }, - [1466] = { - [sym_block] = STATE(1602), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym___global] = ACTIONS(4110), - [anon_sym_type] = ACTIONS(4110), - [anon_sym_fn] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_struct] = ACTIONS(4110), - [anon_sym_union] = ACTIONS(4110), - [anon_sym_pub] = ACTIONS(4110), - [anon_sym_mut] = ACTIONS(4110), - [anon_sym_enum] = ACTIONS(4110), - [anon_sym_interface] = ACTIONS(4110), - [anon_sym_QMARK] = ACTIONS(4110), - [anon_sym_BANG] = ACTIONS(4110), - [anon_sym_go] = ACTIONS(4110), - [anon_sym_spawn] = ACTIONS(4110), - [anon_sym_json_DOTdecode] = ACTIONS(4110), - [anon_sym_LBRACK2] = ACTIONS(4110), - [anon_sym_TILDE] = ACTIONS(4110), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4110), - [anon_sym_LT_DASH] = ACTIONS(4110), - [sym_none] = ACTIONS(4110), - [sym_true] = ACTIONS(4110), - [sym_false] = ACTIONS(4110), - [sym_nil] = ACTIONS(4110), - [anon_sym_if] = ACTIONS(4110), - [anon_sym_DOLLARif] = ACTIONS(4110), - [anon_sym_match] = ACTIONS(4110), - [anon_sym_select] = ACTIONS(4110), - [anon_sym_lock] = ACTIONS(4110), - [anon_sym_rlock] = ACTIONS(4110), - [anon_sym_unsafe] = ACTIONS(4110), - [anon_sym_sql] = ACTIONS(4110), - [sym_int_literal] = ACTIONS(4110), - [sym_float_literal] = ACTIONS(4110), - [sym_rune_literal] = ACTIONS(4110), - [sym_pseudo_compile_time_identifier] = ACTIONS(4110), - [anon_sym_shared] = ACTIONS(4110), - [anon_sym_map_LBRACK] = ACTIONS(4110), - [anon_sym_chan] = ACTIONS(4110), - [anon_sym_thread] = ACTIONS(4110), - [anon_sym_atomic] = ACTIONS(4110), - [anon_sym_assert] = ACTIONS(4110), - [anon_sym_defer] = ACTIONS(4110), - [anon_sym_goto] = ACTIONS(4110), - [anon_sym_break] = ACTIONS(4110), - [anon_sym_continue] = ACTIONS(4110), - [anon_sym_return] = ACTIONS(4110), - [anon_sym_DOLLARfor] = ACTIONS(4110), - [anon_sym_for] = ACTIONS(4110), - [anon_sym_POUND] = ACTIONS(4110), - [anon_sym_asm] = ACTIONS(4110), - [anon_sym_AT_LBRACK] = ACTIONS(4110), - [sym___double_quote] = ACTIONS(4110), - [sym___single_quote] = ACTIONS(4110), - [sym___c_double_quote] = ACTIONS(4110), - [sym___c_single_quote] = ACTIONS(4110), - [sym___r_double_quote] = ACTIONS(4110), - [sym___r_single_quote] = ACTIONS(4110), + [1486] = { + [sym_line_comment] = STATE(1486), + [sym_block_comment] = STATE(1486), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_LBRACE] = 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_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_QMARK] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2975), + [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), + [sym_none] = ACTIONS(2975), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [sym_nil] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_DOLLARif] = 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), }, - [1467] = { - [sym_label_reference] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(4112), - [sym_identifier] = ACTIONS(4114), - [anon_sym_LF] = ACTIONS(4116), - [anon_sym_CR] = ACTIONS(4116), - [anon_sym_CR_LF] = ACTIONS(4116), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4116), - [anon_sym_const] = ACTIONS(4116), - [anon_sym_LPAREN] = ACTIONS(4116), - [anon_sym___global] = ACTIONS(4116), - [anon_sym_type] = ACTIONS(4116), - [anon_sym_fn] = ACTIONS(4116), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [anon_sym_struct] = ACTIONS(4116), - [anon_sym_union] = ACTIONS(4116), - [anon_sym_pub] = ACTIONS(4116), - [anon_sym_mut] = ACTIONS(4116), - [anon_sym_enum] = ACTIONS(4116), - [anon_sym_interface] = ACTIONS(4116), - [anon_sym_QMARK] = ACTIONS(4116), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_go] = ACTIONS(4116), - [anon_sym_spawn] = ACTIONS(4116), - [anon_sym_json_DOTdecode] = ACTIONS(4116), - [anon_sym_LBRACK2] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_CARET] = ACTIONS(4116), - [anon_sym_AMP] = ACTIONS(4116), - [anon_sym_LT_DASH] = ACTIONS(4116), - [sym_none] = ACTIONS(4116), - [sym_true] = ACTIONS(4116), - [sym_false] = ACTIONS(4116), - [sym_nil] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_DOLLARif] = ACTIONS(4116), - [anon_sym_match] = ACTIONS(4116), - [anon_sym_select] = ACTIONS(4116), - [anon_sym_lock] = ACTIONS(4116), - [anon_sym_rlock] = ACTIONS(4116), - [anon_sym_unsafe] = ACTIONS(4116), - [anon_sym_sql] = ACTIONS(4116), - [sym_int_literal] = ACTIONS(4116), - [sym_float_literal] = ACTIONS(4116), - [sym_rune_literal] = ACTIONS(4116), - [sym_pseudo_compile_time_identifier] = ACTIONS(4116), - [anon_sym_shared] = ACTIONS(4116), - [anon_sym_map_LBRACK] = ACTIONS(4116), - [anon_sym_chan] = ACTIONS(4116), - [anon_sym_thread] = ACTIONS(4116), + [1487] = { + [sym_line_comment] = STATE(1487), + [sym_block_comment] = STATE(1487), + [sym_reference_expression] = STATE(4487), + [sym_type_reference_expression] = STATE(2498), + [sym_plain_type] = STATE(2568), + [sym__plain_type_without_special] = STATE(2611), + [sym_anon_struct_type] = STATE(2592), + [sym_multi_return_type] = STATE(2611), + [sym_result_type] = STATE(2611), + [sym_option_type] = STATE(2611), + [sym_qualified_type] = STATE(2498), + [sym_fixed_array_type] = STATE(2592), + [sym_array_type] = STATE(2592), + [sym_pointer_type] = STATE(2592), + [sym_wrong_pointer_type] = STATE(2592), + [sym_map_type] = STATE(2592), + [sym_channel_type] = STATE(2592), + [sym_shared_type] = STATE(2592), + [sym_thread_type] = STATE(2592), + [sym_atomic_type] = STATE(2592), + [sym_generic_type] = STATE(2592), + [sym_function_type] = STATE(2592), + [sym_identifier] = ACTIONS(4090), + [anon_sym_LF] = ACTIONS(571), + [anon_sym_CR] = ACTIONS(571), + [anon_sym_CR_LF] = ACTIONS(571), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_as] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(4092), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(4096), + [anon_sym_PERCENT] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_struct] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(571), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_LBRACK2] = ACTIONS(4104), + [anon_sym_CARET] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_GT_GT_GT] = ACTIONS(571), + [anon_sym_AMP_CARET] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_or] = ACTIONS(571), + [anon_sym_QMARK_DOT] = ACTIONS(571), + [anon_sym_POUND_LBRACK] = ACTIONS(571), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(571), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(571), + [anon_sym_shared] = ACTIONS(4108), + [anon_sym_map_LBRACK] = ACTIONS(4110), + [anon_sym_chan] = ACTIONS(4112), + [anon_sym_thread] = ACTIONS(4114), [anon_sym_atomic] = ACTIONS(4116), - [anon_sym_assert] = ACTIONS(4116), - [anon_sym_defer] = ACTIONS(4116), - [anon_sym_goto] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_DOLLARfor] = ACTIONS(4116), - [anon_sym_for] = ACTIONS(4116), - [anon_sym_POUND] = ACTIONS(4116), - [anon_sym_asm] = ACTIONS(4116), - [anon_sym_AT_LBRACK] = ACTIONS(4116), - [sym___double_quote] = ACTIONS(4116), - [sym___single_quote] = ACTIONS(4116), - [sym___c_double_quote] = ACTIONS(4116), - [sym___c_single_quote] = ACTIONS(4116), - [sym___r_double_quote] = ACTIONS(4116), - [sym___r_single_quote] = ACTIONS(4116), }, - [1468] = { - [sym_label_reference] = STATE(1524), + [1488] = { + [sym_line_comment] = STATE(1488), + [sym_block_comment] = STATE(1488), + [ts_builtin_sym_end] = ACTIONS(4013), + [sym_identifier] = ACTIONS(4015), + [anon_sym_LF] = ACTIONS(4015), + [anon_sym_CR] = ACTIONS(4015), + [anon_sym_CR_LF] = ACTIONS(4015), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [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(4015), + [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), + }, + [1489] = { + [sym_line_comment] = STATE(1489), + [sym_block_comment] = STATE(1489), + [ts_builtin_sym_end] = ACTIONS(3235), + [sym_identifier] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_CR] = ACTIONS(3237), + [anon_sym_CR_LF] = ACTIONS(3237), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym___global] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_union] = ACTIONS(3237), + [anon_sym_pub] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3237), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3237), + [sym_rune_literal] = ACTIONS(3237), + [sym_pseudo_compile_time_identifier] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3237), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [anon_sym_assert] = ACTIONS(3237), + [anon_sym_defer] = ACTIONS(3237), + [anon_sym_goto] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_DOLLARfor] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_POUND] = ACTIONS(3237), + [anon_sym_asm] = ACTIONS(3237), + [anon_sym_AT_LBRACK] = ACTIONS(3237), + [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), + }, + [1490] = { + [sym_line_comment] = STATE(1490), + [sym_block_comment] = STATE(1490), + [sym_block] = STATE(1572), [ts_builtin_sym_end] = ACTIONS(4118), - [sym_identifier] = ACTIONS(4114), + [sym_identifier] = ACTIONS(4120), [anon_sym_LF] = ACTIONS(4120), [anon_sym_CR] = ACTIONS(4120), [anon_sym_CR_LF] = ACTIONS(4120), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4120), - [anon_sym_LBRACE] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4050), [anon_sym_const] = ACTIONS(4120), [anon_sym_LPAREN] = ACTIONS(4120), [anon_sym___global] = ACTIONS(4120), @@ -180282,16 +183536,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4120), [sym___r_single_quote] = ACTIONS(4120), }, - [1469] = { - [sym_block] = STATE(1573), + [1491] = { + [sym_line_comment] = STATE(1491), + [sym_block_comment] = STATE(1491), + [ts_builtin_sym_end] = ACTIONS(3295), + [sym_identifier] = ACTIONS(3297), + [anon_sym_LF] = ACTIONS(3297), + [anon_sym_CR] = ACTIONS(3297), + [anon_sym_CR_LF] = ACTIONS(3297), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym___global] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_fn] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_union] = ACTIONS(3297), + [anon_sym_pub] = ACTIONS(3297), + [anon_sym_mut] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_go] = ACTIONS(3297), + [anon_sym_spawn] = ACTIONS(3297), + [anon_sym_json_DOTdecode] = ACTIONS(3297), + [anon_sym_LBRACK2] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_LT_DASH] = ACTIONS(3297), + [sym_none] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_nil] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_DOLLARif] = ACTIONS(3297), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_rlock] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_sql] = ACTIONS(3297), + [sym_int_literal] = ACTIONS(3297), + [sym_float_literal] = ACTIONS(3297), + [sym_rune_literal] = ACTIONS(3297), + [sym_pseudo_compile_time_identifier] = ACTIONS(3297), + [anon_sym_shared] = ACTIONS(3297), + [anon_sym_map_LBRACK] = ACTIONS(3297), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3297), + [anon_sym_atomic] = ACTIONS(3297), + [anon_sym_assert] = ACTIONS(3297), + [anon_sym_defer] = ACTIONS(3297), + [anon_sym_goto] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_DOLLARfor] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_POUND] = ACTIONS(3297), + [anon_sym_asm] = ACTIONS(3297), + [anon_sym_AT_LBRACK] = ACTIONS(3297), + [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), + }, + [1492] = { + [sym_line_comment] = STATE(1492), + [sym_block_comment] = STATE(1492), + [sym_block] = STATE(1603), [ts_builtin_sym_end] = ACTIONS(4122), [sym_identifier] = ACTIONS(4124), [anon_sym_LF] = ACTIONS(4124), [anon_sym_CR] = ACTIONS(4124), [anon_sym_CR_LF] = ACTIONS(4124), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4050), [anon_sym_const] = ACTIONS(4124), [anon_sym_LPAREN] = ACTIONS(4124), [anon_sym___global] = ACTIONS(4124), @@ -180355,16 +183688,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4124), [sym___r_single_quote] = ACTIONS(4124), }, - [1470] = { - [sym_block] = STATE(1586), + [1493] = { + [sym_line_comment] = STATE(1493), + [sym_block_comment] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(3231), + [sym_identifier] = ACTIONS(3233), + [anon_sym_LF] = ACTIONS(3233), + [anon_sym_CR] = ACTIONS(3233), + [anon_sym_CR_LF] = ACTIONS(3233), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym___global] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_PIPE] = ACTIONS(3233), + [anon_sym_fn] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_struct] = ACTIONS(3233), + [anon_sym_union] = ACTIONS(3233), + [anon_sym_pub] = ACTIONS(3233), + [anon_sym_mut] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_QMARK] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_go] = ACTIONS(3233), + [anon_sym_spawn] = ACTIONS(3233), + [anon_sym_json_DOTdecode] = ACTIONS(3233), + [anon_sym_LBRACK2] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_CARET] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_LT_DASH] = ACTIONS(3233), + [sym_none] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_nil] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_DOLLARif] = ACTIONS(3233), + [anon_sym_match] = ACTIONS(3233), + [anon_sym_select] = ACTIONS(3233), + [anon_sym_lock] = ACTIONS(3233), + [anon_sym_rlock] = ACTIONS(3233), + [anon_sym_unsafe] = ACTIONS(3233), + [anon_sym_sql] = ACTIONS(3233), + [sym_int_literal] = ACTIONS(3233), + [sym_float_literal] = ACTIONS(3233), + [sym_rune_literal] = ACTIONS(3233), + [sym_pseudo_compile_time_identifier] = ACTIONS(3233), + [anon_sym_shared] = ACTIONS(3233), + [anon_sym_map_LBRACK] = ACTIONS(3233), + [anon_sym_chan] = ACTIONS(3233), + [anon_sym_thread] = ACTIONS(3233), + [anon_sym_atomic] = ACTIONS(3233), + [anon_sym_assert] = ACTIONS(3233), + [anon_sym_defer] = ACTIONS(3233), + [anon_sym_goto] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_DOLLARfor] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_POUND] = ACTIONS(3233), + [anon_sym_asm] = ACTIONS(3233), + [anon_sym_AT_LBRACK] = ACTIONS(3233), + [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), + }, + [1494] = { + [sym_line_comment] = STATE(1494), + [sym_block_comment] = STATE(1494), + [ts_builtin_sym_end] = ACTIONS(3223), + [sym_identifier] = ACTIONS(3225), + [anon_sym_LF] = ACTIONS(3225), + [anon_sym_CR] = ACTIONS(3225), + [anon_sym_CR_LF] = ACTIONS(3225), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym___global] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_PIPE] = ACTIONS(3225), + [anon_sym_fn] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_struct] = ACTIONS(3225), + [anon_sym_union] = ACTIONS(3225), + [anon_sym_pub] = ACTIONS(3225), + [anon_sym_mut] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_go] = ACTIONS(3225), + [anon_sym_spawn] = ACTIONS(3225), + [anon_sym_json_DOTdecode] = ACTIONS(3225), + [anon_sym_LBRACK2] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_CARET] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_LT_DASH] = ACTIONS(3225), + [sym_none] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_nil] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_DOLLARif] = ACTIONS(3225), + [anon_sym_match] = ACTIONS(3225), + [anon_sym_select] = ACTIONS(3225), + [anon_sym_lock] = ACTIONS(3225), + [anon_sym_rlock] = ACTIONS(3225), + [anon_sym_unsafe] = ACTIONS(3225), + [anon_sym_sql] = ACTIONS(3225), + [sym_int_literal] = ACTIONS(3225), + [sym_float_literal] = ACTIONS(3225), + [sym_rune_literal] = ACTIONS(3225), + [sym_pseudo_compile_time_identifier] = ACTIONS(3225), + [anon_sym_shared] = ACTIONS(3225), + [anon_sym_map_LBRACK] = ACTIONS(3225), + [anon_sym_chan] = ACTIONS(3225), + [anon_sym_thread] = ACTIONS(3225), + [anon_sym_atomic] = ACTIONS(3225), + [anon_sym_assert] = ACTIONS(3225), + [anon_sym_defer] = ACTIONS(3225), + [anon_sym_goto] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_DOLLARfor] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_POUND] = ACTIONS(3225), + [anon_sym_asm] = ACTIONS(3225), + [anon_sym_AT_LBRACK] = ACTIONS(3225), + [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), + }, + [1495] = { + [sym_line_comment] = STATE(1495), + [sym_block_comment] = STATE(1495), + [sym_block] = STATE(1594), [ts_builtin_sym_end] = ACTIONS(4126), [sym_identifier] = ACTIONS(4128), [anon_sym_LF] = ACTIONS(4128), [anon_sym_CR] = ACTIONS(4128), [anon_sym_CR_LF] = ACTIONS(4128), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4050), [anon_sym_const] = ACTIONS(4128), [anon_sym_LPAREN] = ACTIONS(4128), [anon_sym___global] = ACTIONS(4128), @@ -180428,16 +183916,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4128), [sym___r_single_quote] = ACTIONS(4128), }, - [1471] = { - [sym_block] = STATE(1581), + [1496] = { + [sym_line_comment] = STATE(1496), + [sym_block_comment] = STATE(1496), + [sym_block] = STATE(1602), [ts_builtin_sym_end] = ACTIONS(4130), [sym_identifier] = ACTIONS(4132), [anon_sym_LF] = ACTIONS(4132), [anon_sym_CR] = ACTIONS(4132), [anon_sym_CR_LF] = ACTIONS(4132), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4050), [anon_sym_const] = ACTIONS(4132), [anon_sym_LPAREN] = ACTIONS(4132), [anon_sym___global] = ACTIONS(4132), @@ -180501,16 +183992,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4132), [sym___r_single_quote] = ACTIONS(4132), }, - [1472] = { - [sym_block] = STATE(1580), + [1497] = { + [sym_line_comment] = STATE(1497), + [sym_block_comment] = STATE(1497), + [sym_block] = STATE(1539), [ts_builtin_sym_end] = ACTIONS(4134), [sym_identifier] = ACTIONS(4136), [anon_sym_LF] = ACTIONS(4136), [anon_sym_CR] = ACTIONS(4136), [anon_sym_CR_LF] = ACTIONS(4136), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4050), [anon_sym_const] = ACTIONS(4136), [anon_sym_LPAREN] = ACTIONS(4136), [anon_sym___global] = ACTIONS(4136), @@ -180574,89 +184068,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4136), [sym___r_single_quote] = ACTIONS(4136), }, - [1473] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_identifier] = ACTIONS(2907), - [anon_sym_LF] = ACTIONS(2907), - [anon_sym_CR] = ACTIONS(2907), - [anon_sym_CR_LF] = ACTIONS(2907), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_const] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym___global] = ACTIONS(2907), - [anon_sym_type] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_union] = ACTIONS(2907), - [anon_sym_pub] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_enum] = ACTIONS(2907), - [anon_sym_interface] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [sym_pseudo_compile_time_identifier] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [anon_sym_assert] = ACTIONS(2907), - [anon_sym_defer] = ACTIONS(2907), - [anon_sym_goto] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_DOLLARfor] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_asm] = ACTIONS(2907), - [anon_sym_AT_LBRACK] = ACTIONS(2907), - [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), - }, - [1474] = { - [sym_block] = STATE(1577), + [1498] = { + [sym_line_comment] = STATE(1498), + [sym_block_comment] = STATE(1498), + [sym_block] = STATE(1538), [ts_builtin_sym_end] = ACTIONS(4138), [sym_identifier] = ACTIONS(4140), [anon_sym_LF] = ACTIONS(4140), [anon_sym_CR] = ACTIONS(4140), [anon_sym_CR_LF] = ACTIONS(4140), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4050), [anon_sym_const] = ACTIONS(4140), [anon_sym_LPAREN] = ACTIONS(4140), [anon_sym___global] = ACTIONS(4140), @@ -180720,89 +184144,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4140), [sym___r_single_quote] = ACTIONS(4140), }, - [1475] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_LBRACE] = 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_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_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), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = 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), - }, - [1476] = { - [sym_block] = STATE(1576), + [1499] = { + [sym_line_comment] = STATE(1499), + [sym_block_comment] = STATE(1499), + [sym_block] = STATE(1560), [ts_builtin_sym_end] = ACTIONS(4142), [sym_identifier] = ACTIONS(4144), [anon_sym_LF] = ACTIONS(4144), [anon_sym_CR] = ACTIONS(4144), [anon_sym_CR_LF] = ACTIONS(4144), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4050), [anon_sym_const] = ACTIONS(4144), [anon_sym_LPAREN] = ACTIONS(4144), [anon_sym___global] = ACTIONS(4144), @@ -180841,3311 +184195,2534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(4144), [sym_int_literal] = ACTIONS(4144), [sym_float_literal] = ACTIONS(4144), - [sym_rune_literal] = ACTIONS(4144), - [sym_pseudo_compile_time_identifier] = ACTIONS(4144), - [anon_sym_shared] = ACTIONS(4144), - [anon_sym_map_LBRACK] = ACTIONS(4144), - [anon_sym_chan] = ACTIONS(4144), - [anon_sym_thread] = ACTIONS(4144), - [anon_sym_atomic] = ACTIONS(4144), - [anon_sym_assert] = ACTIONS(4144), - [anon_sym_defer] = ACTIONS(4144), - [anon_sym_goto] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_DOLLARfor] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_POUND] = ACTIONS(4144), - [anon_sym_asm] = ACTIONS(4144), - [anon_sym_AT_LBRACK] = ACTIONS(4144), - [sym___double_quote] = ACTIONS(4144), - [sym___single_quote] = ACTIONS(4144), - [sym___c_double_quote] = ACTIONS(4144), - [sym___c_single_quote] = ACTIONS(4144), - [sym___r_double_quote] = ACTIONS(4144), - [sym___r_single_quote] = ACTIONS(4144), - }, - [1477] = { - [sym_block] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(4146), - [sym_identifier] = ACTIONS(4148), - [anon_sym_LF] = ACTIONS(4148), - [anon_sym_CR] = ACTIONS(4148), - [anon_sym_CR_LF] = ACTIONS(4148), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym___global] = ACTIONS(4148), - [anon_sym_type] = ACTIONS(4148), - [anon_sym_fn] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4148), - [anon_sym_DASH] = ACTIONS(4148), - [anon_sym_STAR] = ACTIONS(4148), - [anon_sym_struct] = ACTIONS(4148), - [anon_sym_union] = ACTIONS(4148), - [anon_sym_pub] = ACTIONS(4148), - [anon_sym_mut] = ACTIONS(4148), - [anon_sym_enum] = ACTIONS(4148), - [anon_sym_interface] = ACTIONS(4148), - [anon_sym_QMARK] = ACTIONS(4148), - [anon_sym_BANG] = ACTIONS(4148), - [anon_sym_go] = ACTIONS(4148), - [anon_sym_spawn] = ACTIONS(4148), - [anon_sym_json_DOTdecode] = ACTIONS(4148), - [anon_sym_LBRACK2] = ACTIONS(4148), - [anon_sym_TILDE] = ACTIONS(4148), - [anon_sym_CARET] = ACTIONS(4148), - [anon_sym_AMP] = ACTIONS(4148), - [anon_sym_LT_DASH] = ACTIONS(4148), - [sym_none] = ACTIONS(4148), - [sym_true] = ACTIONS(4148), - [sym_false] = ACTIONS(4148), - [sym_nil] = ACTIONS(4148), - [anon_sym_if] = ACTIONS(4148), - [anon_sym_DOLLARif] = ACTIONS(4148), - [anon_sym_match] = ACTIONS(4148), - [anon_sym_select] = ACTIONS(4148), - [anon_sym_lock] = ACTIONS(4148), - [anon_sym_rlock] = ACTIONS(4148), - [anon_sym_unsafe] = ACTIONS(4148), - [anon_sym_sql] = ACTIONS(4148), - [sym_int_literal] = ACTIONS(4148), - [sym_float_literal] = ACTIONS(4148), - [sym_rune_literal] = ACTIONS(4148), - [sym_pseudo_compile_time_identifier] = ACTIONS(4148), - [anon_sym_shared] = ACTIONS(4148), - [anon_sym_map_LBRACK] = ACTIONS(4148), - [anon_sym_chan] = ACTIONS(4148), - [anon_sym_thread] = ACTIONS(4148), - [anon_sym_atomic] = ACTIONS(4148), - [anon_sym_assert] = ACTIONS(4148), - [anon_sym_defer] = ACTIONS(4148), - [anon_sym_goto] = ACTIONS(4148), - [anon_sym_break] = ACTIONS(4148), - [anon_sym_continue] = ACTIONS(4148), - [anon_sym_return] = ACTIONS(4148), - [anon_sym_DOLLARfor] = ACTIONS(4148), - [anon_sym_for] = ACTIONS(4148), - [anon_sym_POUND] = ACTIONS(4148), - [anon_sym_asm] = ACTIONS(4148), - [anon_sym_AT_LBRACK] = ACTIONS(4148), - [sym___double_quote] = ACTIONS(4148), - [sym___single_quote] = ACTIONS(4148), - [sym___c_double_quote] = ACTIONS(4148), - [sym___c_single_quote] = ACTIONS(4148), - [sym___r_double_quote] = ACTIONS(4148), - [sym___r_single_quote] = ACTIONS(4148), - }, - [1478] = { - [ts_builtin_sym_end] = ACTIONS(4035), - [sym_identifier] = ACTIONS(4037), - [anon_sym_LF] = ACTIONS(4037), - [anon_sym_CR] = ACTIONS(4037), - [anon_sym_CR_LF] = ACTIONS(4037), - [sym_comment] = ACTIONS(495), - [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(4037), - [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), - }, - [1479] = { - [sym_block] = STATE(1564), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_LBRACE] = ACTIONS(4064), - [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), - }, - [1480] = { - [sym_block] = STATE(1562), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4064), - [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), - }, - [1481] = { - [sym_block] = STATE(1561), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4064), - [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), - }, - [1482] = { - [sym_block] = STATE(1560), - [ts_builtin_sym_end] = ACTIONS(4162), - [sym_identifier] = ACTIONS(4164), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_CR] = ACTIONS(4164), - [anon_sym_CR_LF] = ACTIONS(4164), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4164), - [anon_sym_LPAREN] = ACTIONS(4164), - [anon_sym___global] = ACTIONS(4164), - [anon_sym_type] = ACTIONS(4164), - [anon_sym_fn] = ACTIONS(4164), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_pub] = ACTIONS(4164), - [anon_sym_mut] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_interface] = ACTIONS(4164), - [anon_sym_QMARK] = ACTIONS(4164), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_go] = ACTIONS(4164), - [anon_sym_spawn] = ACTIONS(4164), - [anon_sym_json_DOTdecode] = ACTIONS(4164), - [anon_sym_LBRACK2] = ACTIONS(4164), - [anon_sym_TILDE] = ACTIONS(4164), - [anon_sym_CARET] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_LT_DASH] = ACTIONS(4164), - [sym_none] = ACTIONS(4164), - [sym_true] = ACTIONS(4164), - [sym_false] = ACTIONS(4164), - [sym_nil] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_DOLLARif] = ACTIONS(4164), - [anon_sym_match] = ACTIONS(4164), - [anon_sym_select] = ACTIONS(4164), - [anon_sym_lock] = ACTIONS(4164), - [anon_sym_rlock] = ACTIONS(4164), - [anon_sym_unsafe] = ACTIONS(4164), - [anon_sym_sql] = ACTIONS(4164), - [sym_int_literal] = ACTIONS(4164), - [sym_float_literal] = ACTIONS(4164), - [sym_rune_literal] = ACTIONS(4164), - [sym_pseudo_compile_time_identifier] = ACTIONS(4164), - [anon_sym_shared] = ACTIONS(4164), - [anon_sym_map_LBRACK] = ACTIONS(4164), - [anon_sym_chan] = ACTIONS(4164), - [anon_sym_thread] = ACTIONS(4164), - [anon_sym_atomic] = ACTIONS(4164), - [anon_sym_assert] = ACTIONS(4164), - [anon_sym_defer] = ACTIONS(4164), - [anon_sym_goto] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_DOLLARfor] = ACTIONS(4164), - [anon_sym_for] = ACTIONS(4164), - [anon_sym_POUND] = ACTIONS(4164), - [anon_sym_asm] = ACTIONS(4164), - [anon_sym_AT_LBRACK] = ACTIONS(4164), - [sym___double_quote] = ACTIONS(4164), - [sym___single_quote] = ACTIONS(4164), - [sym___c_double_quote] = ACTIONS(4164), - [sym___c_single_quote] = ACTIONS(4164), - [sym___r_double_quote] = ACTIONS(4164), - [sym___r_single_quote] = ACTIONS(4164), - }, - [1483] = { - [sym_block] = STATE(1559), - [ts_builtin_sym_end] = ACTIONS(4166), - [sym_identifier] = ACTIONS(4168), - [anon_sym_LF] = ACTIONS(4168), - [anon_sym_CR] = ACTIONS(4168), - [anon_sym_CR_LF] = ACTIONS(4168), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_LPAREN] = ACTIONS(4168), - [anon_sym___global] = ACTIONS(4168), - [anon_sym_type] = ACTIONS(4168), - [anon_sym_fn] = ACTIONS(4168), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_pub] = ACTIONS(4168), - [anon_sym_mut] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_interface] = ACTIONS(4168), - [anon_sym_QMARK] = ACTIONS(4168), - [anon_sym_BANG] = ACTIONS(4168), - [anon_sym_go] = ACTIONS(4168), - [anon_sym_spawn] = ACTIONS(4168), - [anon_sym_json_DOTdecode] = ACTIONS(4168), - [anon_sym_LBRACK2] = ACTIONS(4168), - [anon_sym_TILDE] = ACTIONS(4168), - [anon_sym_CARET] = ACTIONS(4168), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_DASH] = ACTIONS(4168), - [sym_none] = ACTIONS(4168), - [sym_true] = ACTIONS(4168), - [sym_false] = ACTIONS(4168), - [sym_nil] = ACTIONS(4168), - [anon_sym_if] = ACTIONS(4168), - [anon_sym_DOLLARif] = ACTIONS(4168), - [anon_sym_match] = ACTIONS(4168), - [anon_sym_select] = ACTIONS(4168), - [anon_sym_lock] = ACTIONS(4168), - [anon_sym_rlock] = ACTIONS(4168), - [anon_sym_unsafe] = ACTIONS(4168), - [anon_sym_sql] = ACTIONS(4168), - [sym_int_literal] = ACTIONS(4168), - [sym_float_literal] = ACTIONS(4168), - [sym_rune_literal] = ACTIONS(4168), - [sym_pseudo_compile_time_identifier] = ACTIONS(4168), - [anon_sym_shared] = ACTIONS(4168), - [anon_sym_map_LBRACK] = ACTIONS(4168), - [anon_sym_chan] = ACTIONS(4168), - [anon_sym_thread] = ACTIONS(4168), - [anon_sym_atomic] = ACTIONS(4168), - [anon_sym_assert] = ACTIONS(4168), - [anon_sym_defer] = ACTIONS(4168), - [anon_sym_goto] = ACTIONS(4168), - [anon_sym_break] = ACTIONS(4168), - [anon_sym_continue] = ACTIONS(4168), - [anon_sym_return] = ACTIONS(4168), - [anon_sym_DOLLARfor] = ACTIONS(4168), - [anon_sym_for] = ACTIONS(4168), - [anon_sym_POUND] = ACTIONS(4168), - [anon_sym_asm] = ACTIONS(4168), - [anon_sym_AT_LBRACK] = ACTIONS(4168), - [sym___double_quote] = ACTIONS(4168), - [sym___single_quote] = ACTIONS(4168), - [sym___c_double_quote] = ACTIONS(4168), - [sym___c_single_quote] = ACTIONS(4168), - [sym___r_double_quote] = ACTIONS(4168), - [sym___r_single_quote] = ACTIONS(4168), - }, - [1484] = { - [ts_builtin_sym_end] = ACTIONS(3338), - [sym_identifier] = ACTIONS(3340), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_CR] = ACTIONS(3340), - [anon_sym_CR_LF] = ACTIONS(3340), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym___global] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_fn] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3340), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_union] = ACTIONS(3340), - [anon_sym_pub] = ACTIONS(3340), - [anon_sym_mut] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_QMARK] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_go] = ACTIONS(3340), - [anon_sym_spawn] = ACTIONS(3340), - [anon_sym_json_DOTdecode] = ACTIONS(3340), - [anon_sym_LBRACK2] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_CARET] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_LT_DASH] = ACTIONS(3340), - [sym_none] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_nil] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_DOLLARif] = ACTIONS(3340), - [anon_sym_match] = ACTIONS(3340), - [anon_sym_select] = ACTIONS(3340), - [anon_sym_lock] = ACTIONS(3340), - [anon_sym_rlock] = ACTIONS(3340), - [anon_sym_unsafe] = ACTIONS(3340), - [anon_sym_sql] = ACTIONS(3340), - [sym_int_literal] = ACTIONS(3340), - [sym_float_literal] = ACTIONS(3340), - [sym_rune_literal] = ACTIONS(3340), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(3340), - [anon_sym_map_LBRACK] = ACTIONS(3340), - [anon_sym_chan] = ACTIONS(3340), - [anon_sym_thread] = ACTIONS(3340), - [anon_sym_atomic] = ACTIONS(3340), - [anon_sym_assert] = ACTIONS(3340), - [anon_sym_defer] = ACTIONS(3340), - [anon_sym_goto] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_DOLLARfor] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_POUND] = ACTIONS(3340), - [anon_sym_asm] = ACTIONS(3340), - [anon_sym_AT_LBRACK] = ACTIONS(3340), - [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), - }, - [1485] = { - [sym_block] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(4170), - [sym_identifier] = ACTIONS(4172), - [anon_sym_LF] = ACTIONS(4172), - [anon_sym_CR] = ACTIONS(4172), - [anon_sym_CR_LF] = ACTIONS(4172), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4172), - [anon_sym___global] = ACTIONS(4172), - [anon_sym_type] = ACTIONS(4172), - [anon_sym_fn] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4172), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_STAR] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_pub] = ACTIONS(4172), - [anon_sym_mut] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_interface] = ACTIONS(4172), - [anon_sym_QMARK] = ACTIONS(4172), - [anon_sym_BANG] = ACTIONS(4172), - [anon_sym_go] = ACTIONS(4172), - [anon_sym_spawn] = ACTIONS(4172), - [anon_sym_json_DOTdecode] = ACTIONS(4172), - [anon_sym_LBRACK2] = ACTIONS(4172), - [anon_sym_TILDE] = ACTIONS(4172), - [anon_sym_CARET] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_LT_DASH] = ACTIONS(4172), - [sym_none] = ACTIONS(4172), - [sym_true] = ACTIONS(4172), - [sym_false] = ACTIONS(4172), - [sym_nil] = ACTIONS(4172), - [anon_sym_if] = ACTIONS(4172), - [anon_sym_DOLLARif] = ACTIONS(4172), - [anon_sym_match] = ACTIONS(4172), - [anon_sym_select] = ACTIONS(4172), - [anon_sym_lock] = ACTIONS(4172), - [anon_sym_rlock] = ACTIONS(4172), - [anon_sym_unsafe] = ACTIONS(4172), - [anon_sym_sql] = ACTIONS(4172), - [sym_int_literal] = ACTIONS(4172), - [sym_float_literal] = ACTIONS(4172), - [sym_rune_literal] = ACTIONS(4172), - [sym_pseudo_compile_time_identifier] = ACTIONS(4172), - [anon_sym_shared] = ACTIONS(4172), - [anon_sym_map_LBRACK] = ACTIONS(4172), - [anon_sym_chan] = ACTIONS(4172), - [anon_sym_thread] = ACTIONS(4172), - [anon_sym_atomic] = ACTIONS(4172), - [anon_sym_assert] = ACTIONS(4172), - [anon_sym_defer] = ACTIONS(4172), - [anon_sym_goto] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4172), - [anon_sym_continue] = ACTIONS(4172), - [anon_sym_return] = ACTIONS(4172), - [anon_sym_DOLLARfor] = ACTIONS(4172), - [anon_sym_for] = ACTIONS(4172), - [anon_sym_POUND] = ACTIONS(4172), - [anon_sym_asm] = ACTIONS(4172), - [anon_sym_AT_LBRACK] = ACTIONS(4172), - [sym___double_quote] = ACTIONS(4172), - [sym___single_quote] = ACTIONS(4172), - [sym___c_double_quote] = ACTIONS(4172), - [sym___c_single_quote] = ACTIONS(4172), - [sym___r_double_quote] = ACTIONS(4172), - [sym___r_single_quote] = ACTIONS(4172), - }, - [1486] = { - [sym_block] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(4174), - [sym_identifier] = ACTIONS(4176), - [anon_sym_LF] = ACTIONS(4176), - [anon_sym_CR] = ACTIONS(4176), - [anon_sym_CR_LF] = ACTIONS(4176), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_LPAREN] = ACTIONS(4176), - [anon_sym___global] = ACTIONS(4176), - [anon_sym_type] = ACTIONS(4176), - [anon_sym_fn] = ACTIONS(4176), - [anon_sym_PLUS] = ACTIONS(4176), - [anon_sym_DASH] = ACTIONS(4176), - [anon_sym_STAR] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_pub] = ACTIONS(4176), - [anon_sym_mut] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_interface] = ACTIONS(4176), - [anon_sym_QMARK] = ACTIONS(4176), - [anon_sym_BANG] = ACTIONS(4176), - [anon_sym_go] = ACTIONS(4176), - [anon_sym_spawn] = ACTIONS(4176), - [anon_sym_json_DOTdecode] = ACTIONS(4176), - [anon_sym_LBRACK2] = ACTIONS(4176), - [anon_sym_TILDE] = ACTIONS(4176), - [anon_sym_CARET] = ACTIONS(4176), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_LT_DASH] = ACTIONS(4176), - [sym_none] = ACTIONS(4176), - [sym_true] = ACTIONS(4176), - [sym_false] = ACTIONS(4176), - [sym_nil] = ACTIONS(4176), - [anon_sym_if] = ACTIONS(4176), - [anon_sym_DOLLARif] = ACTIONS(4176), - [anon_sym_match] = ACTIONS(4176), - [anon_sym_select] = ACTIONS(4176), - [anon_sym_lock] = ACTIONS(4176), - [anon_sym_rlock] = ACTIONS(4176), - [anon_sym_unsafe] = ACTIONS(4176), - [anon_sym_sql] = ACTIONS(4176), - [sym_int_literal] = ACTIONS(4176), - [sym_float_literal] = ACTIONS(4176), - [sym_rune_literal] = ACTIONS(4176), - [sym_pseudo_compile_time_identifier] = ACTIONS(4176), - [anon_sym_shared] = ACTIONS(4176), - [anon_sym_map_LBRACK] = ACTIONS(4176), - [anon_sym_chan] = ACTIONS(4176), - [anon_sym_thread] = ACTIONS(4176), - [anon_sym_atomic] = ACTIONS(4176), - [anon_sym_assert] = ACTIONS(4176), - [anon_sym_defer] = ACTIONS(4176), - [anon_sym_goto] = ACTIONS(4176), - [anon_sym_break] = ACTIONS(4176), - [anon_sym_continue] = ACTIONS(4176), - [anon_sym_return] = ACTIONS(4176), - [anon_sym_DOLLARfor] = ACTIONS(4176), - [anon_sym_for] = ACTIONS(4176), - [anon_sym_POUND] = ACTIONS(4176), - [anon_sym_asm] = ACTIONS(4176), - [anon_sym_AT_LBRACK] = ACTIONS(4176), - [sym___double_quote] = ACTIONS(4176), - [sym___single_quote] = ACTIONS(4176), - [sym___c_double_quote] = ACTIONS(4176), - [sym___c_single_quote] = ACTIONS(4176), - [sym___r_double_quote] = ACTIONS(4176), - [sym___r_single_quote] = ACTIONS(4176), - }, - [1487] = { - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3396), - [anon_sym_LF] = ACTIONS(3396), - [anon_sym_CR] = ACTIONS(3396), - [anon_sym_CR_LF] = ACTIONS(3396), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_LPAREN] = ACTIONS(3396), - [anon_sym___global] = ACTIONS(3396), - [anon_sym_type] = ACTIONS(3396), - [anon_sym_PIPE] = ACTIONS(3396), - [anon_sym_fn] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(3396), - [anon_sym_union] = ACTIONS(3396), - [anon_sym_pub] = ACTIONS(3396), - [anon_sym_mut] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), - [anon_sym_interface] = ACTIONS(3396), - [anon_sym_QMARK] = ACTIONS(3396), - [anon_sym_BANG] = ACTIONS(3396), - [anon_sym_go] = ACTIONS(3396), - [anon_sym_spawn] = ACTIONS(3396), - [anon_sym_json_DOTdecode] = ACTIONS(3396), - [anon_sym_LBRACK2] = ACTIONS(3396), - [anon_sym_TILDE] = ACTIONS(3396), - [anon_sym_CARET] = ACTIONS(3396), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3396), - [sym_none] = ACTIONS(3396), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [sym_nil] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_DOLLARif] = ACTIONS(3396), - [anon_sym_match] = ACTIONS(3396), - [anon_sym_select] = ACTIONS(3396), - [anon_sym_lock] = ACTIONS(3396), - [anon_sym_rlock] = ACTIONS(3396), - [anon_sym_unsafe] = ACTIONS(3396), - [anon_sym_sql] = ACTIONS(3396), - [sym_int_literal] = ACTIONS(3396), - [sym_float_literal] = ACTIONS(3396), - [sym_rune_literal] = ACTIONS(3396), - [sym_pseudo_compile_time_identifier] = ACTIONS(3396), - [anon_sym_shared] = ACTIONS(3396), - [anon_sym_map_LBRACK] = ACTIONS(3396), - [anon_sym_chan] = ACTIONS(3396), - [anon_sym_thread] = ACTIONS(3396), - [anon_sym_atomic] = ACTIONS(3396), - [anon_sym_assert] = ACTIONS(3396), - [anon_sym_defer] = ACTIONS(3396), - [anon_sym_goto] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_DOLLARfor] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_POUND] = ACTIONS(3396), - [anon_sym_asm] = ACTIONS(3396), - [anon_sym_AT_LBRACK] = ACTIONS(3396), - [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), - }, - [1488] = { - [sym_block] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(4178), - [sym_identifier] = ACTIONS(4180), - [anon_sym_LF] = ACTIONS(4180), - [anon_sym_CR] = ACTIONS(4180), - [anon_sym_CR_LF] = ACTIONS(4180), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_LPAREN] = ACTIONS(4180), - [anon_sym___global] = ACTIONS(4180), - [anon_sym_type] = ACTIONS(4180), - [anon_sym_fn] = ACTIONS(4180), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_STAR] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_pub] = ACTIONS(4180), - [anon_sym_mut] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_interface] = ACTIONS(4180), - [anon_sym_QMARK] = ACTIONS(4180), - [anon_sym_BANG] = ACTIONS(4180), - [anon_sym_go] = ACTIONS(4180), - [anon_sym_spawn] = ACTIONS(4180), - [anon_sym_json_DOTdecode] = ACTIONS(4180), - [anon_sym_LBRACK2] = ACTIONS(4180), - [anon_sym_TILDE] = ACTIONS(4180), - [anon_sym_CARET] = ACTIONS(4180), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_LT_DASH] = ACTIONS(4180), - [sym_none] = ACTIONS(4180), - [sym_true] = ACTIONS(4180), - [sym_false] = ACTIONS(4180), - [sym_nil] = ACTIONS(4180), - [anon_sym_if] = ACTIONS(4180), - [anon_sym_DOLLARif] = ACTIONS(4180), - [anon_sym_match] = ACTIONS(4180), - [anon_sym_select] = ACTIONS(4180), - [anon_sym_lock] = ACTIONS(4180), - [anon_sym_rlock] = ACTIONS(4180), - [anon_sym_unsafe] = ACTIONS(4180), - [anon_sym_sql] = ACTIONS(4180), - [sym_int_literal] = ACTIONS(4180), - [sym_float_literal] = ACTIONS(4180), - [sym_rune_literal] = ACTIONS(4180), - [sym_pseudo_compile_time_identifier] = ACTIONS(4180), - [anon_sym_shared] = ACTIONS(4180), - [anon_sym_map_LBRACK] = ACTIONS(4180), - [anon_sym_chan] = ACTIONS(4180), - [anon_sym_thread] = ACTIONS(4180), - [anon_sym_atomic] = ACTIONS(4180), - [anon_sym_assert] = ACTIONS(4180), - [anon_sym_defer] = ACTIONS(4180), - [anon_sym_goto] = ACTIONS(4180), - [anon_sym_break] = ACTIONS(4180), - [anon_sym_continue] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(4180), - [anon_sym_DOLLARfor] = ACTIONS(4180), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_POUND] = ACTIONS(4180), - [anon_sym_asm] = ACTIONS(4180), - [anon_sym_AT_LBRACK] = ACTIONS(4180), - [sym___double_quote] = ACTIONS(4180), - [sym___single_quote] = ACTIONS(4180), - [sym___c_double_quote] = ACTIONS(4180), - [sym___c_single_quote] = ACTIONS(4180), - [sym___r_double_quote] = ACTIONS(4180), - [sym___r_single_quote] = ACTIONS(4180), - }, - [1489] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_LBRACE] = 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_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_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), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = 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), - }, - [1490] = { - [sym_block] = STATE(1554), - [ts_builtin_sym_end] = ACTIONS(4182), - [sym_identifier] = ACTIONS(4184), - [anon_sym_LF] = ACTIONS(4184), - [anon_sym_CR] = ACTIONS(4184), - [anon_sym_CR_LF] = ACTIONS(4184), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4184), - [anon_sym___global] = ACTIONS(4184), - [anon_sym_type] = ACTIONS(4184), - [anon_sym_fn] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4184), - [anon_sym_DASH] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_pub] = ACTIONS(4184), - [anon_sym_mut] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_interface] = ACTIONS(4184), - [anon_sym_QMARK] = ACTIONS(4184), - [anon_sym_BANG] = ACTIONS(4184), - [anon_sym_go] = ACTIONS(4184), - [anon_sym_spawn] = ACTIONS(4184), - [anon_sym_json_DOTdecode] = ACTIONS(4184), - [anon_sym_LBRACK2] = ACTIONS(4184), - [anon_sym_TILDE] = ACTIONS(4184), - [anon_sym_CARET] = ACTIONS(4184), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_LT_DASH] = ACTIONS(4184), - [sym_none] = ACTIONS(4184), - [sym_true] = ACTIONS(4184), - [sym_false] = ACTIONS(4184), - [sym_nil] = ACTIONS(4184), - [anon_sym_if] = ACTIONS(4184), - [anon_sym_DOLLARif] = ACTIONS(4184), - [anon_sym_match] = ACTIONS(4184), - [anon_sym_select] = ACTIONS(4184), - [anon_sym_lock] = ACTIONS(4184), - [anon_sym_rlock] = ACTIONS(4184), - [anon_sym_unsafe] = ACTIONS(4184), - [anon_sym_sql] = ACTIONS(4184), - [sym_int_literal] = ACTIONS(4184), - [sym_float_literal] = ACTIONS(4184), - [sym_rune_literal] = ACTIONS(4184), - [sym_pseudo_compile_time_identifier] = ACTIONS(4184), - [anon_sym_shared] = ACTIONS(4184), - [anon_sym_map_LBRACK] = ACTIONS(4184), - [anon_sym_chan] = ACTIONS(4184), - [anon_sym_thread] = ACTIONS(4184), - [anon_sym_atomic] = ACTIONS(4184), - [anon_sym_assert] = ACTIONS(4184), - [anon_sym_defer] = ACTIONS(4184), - [anon_sym_goto] = ACTIONS(4184), - [anon_sym_break] = ACTIONS(4184), - [anon_sym_continue] = ACTIONS(4184), - [anon_sym_return] = ACTIONS(4184), - [anon_sym_DOLLARfor] = ACTIONS(4184), - [anon_sym_for] = ACTIONS(4184), - [anon_sym_POUND] = ACTIONS(4184), - [anon_sym_asm] = ACTIONS(4184), - [anon_sym_AT_LBRACK] = ACTIONS(4184), - [sym___double_quote] = ACTIONS(4184), - [sym___single_quote] = ACTIONS(4184), - [sym___c_double_quote] = ACTIONS(4184), - [sym___c_single_quote] = ACTIONS(4184), - [sym___r_double_quote] = ACTIONS(4184), - [sym___r_single_quote] = ACTIONS(4184), - }, - [1491] = { - [sym_block] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(4186), - [sym_identifier] = ACTIONS(4188), - [anon_sym_LF] = ACTIONS(4188), - [anon_sym_CR] = ACTIONS(4188), - [anon_sym_CR_LF] = ACTIONS(4188), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4188), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym___global] = ACTIONS(4188), - [anon_sym_type] = ACTIONS(4188), - [anon_sym_fn] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4188), - [anon_sym_DASH] = ACTIONS(4188), - [anon_sym_STAR] = ACTIONS(4188), - [anon_sym_struct] = ACTIONS(4188), - [anon_sym_union] = ACTIONS(4188), - [anon_sym_pub] = ACTIONS(4188), - [anon_sym_mut] = ACTIONS(4188), - [anon_sym_enum] = ACTIONS(4188), - [anon_sym_interface] = ACTIONS(4188), - [anon_sym_QMARK] = ACTIONS(4188), - [anon_sym_BANG] = ACTIONS(4188), - [anon_sym_go] = ACTIONS(4188), - [anon_sym_spawn] = ACTIONS(4188), - [anon_sym_json_DOTdecode] = ACTIONS(4188), - [anon_sym_LBRACK2] = ACTIONS(4188), - [anon_sym_TILDE] = ACTIONS(4188), - [anon_sym_CARET] = ACTIONS(4188), - [anon_sym_AMP] = ACTIONS(4188), - [anon_sym_LT_DASH] = ACTIONS(4188), - [sym_none] = ACTIONS(4188), - [sym_true] = ACTIONS(4188), - [sym_false] = ACTIONS(4188), - [sym_nil] = ACTIONS(4188), - [anon_sym_if] = ACTIONS(4188), - [anon_sym_DOLLARif] = ACTIONS(4188), - [anon_sym_match] = ACTIONS(4188), - [anon_sym_select] = ACTIONS(4188), - [anon_sym_lock] = ACTIONS(4188), - [anon_sym_rlock] = ACTIONS(4188), - [anon_sym_unsafe] = ACTIONS(4188), - [anon_sym_sql] = ACTIONS(4188), - [sym_int_literal] = ACTIONS(4188), - [sym_float_literal] = ACTIONS(4188), - [sym_rune_literal] = ACTIONS(4188), - [sym_pseudo_compile_time_identifier] = ACTIONS(4188), - [anon_sym_shared] = ACTIONS(4188), - [anon_sym_map_LBRACK] = ACTIONS(4188), - [anon_sym_chan] = ACTIONS(4188), - [anon_sym_thread] = ACTIONS(4188), - [anon_sym_atomic] = ACTIONS(4188), - [anon_sym_assert] = ACTIONS(4188), - [anon_sym_defer] = ACTIONS(4188), - [anon_sym_goto] = ACTIONS(4188), - [anon_sym_break] = ACTIONS(4188), - [anon_sym_continue] = ACTIONS(4188), - [anon_sym_return] = ACTIONS(4188), - [anon_sym_DOLLARfor] = ACTIONS(4188), - [anon_sym_for] = ACTIONS(4188), - [anon_sym_POUND] = ACTIONS(4188), - [anon_sym_asm] = ACTIONS(4188), - [anon_sym_AT_LBRACK] = ACTIONS(4188), - [sym___double_quote] = ACTIONS(4188), - [sym___single_quote] = ACTIONS(4188), - [sym___c_double_quote] = ACTIONS(4188), - [sym___c_single_quote] = ACTIONS(4188), - [sym___r_double_quote] = ACTIONS(4188), - [sym___r_single_quote] = ACTIONS(4188), - }, - [1492] = { - [ts_builtin_sym_end] = ACTIONS(3354), - [sym_identifier] = ACTIONS(3356), - [anon_sym_LF] = ACTIONS(3356), - [anon_sym_CR] = ACTIONS(3356), - [anon_sym_CR_LF] = ACTIONS(3356), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym___global] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_PIPE] = ACTIONS(3356), - [anon_sym_fn] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_STAR] = ACTIONS(3356), - [anon_sym_struct] = ACTIONS(3356), - [anon_sym_union] = ACTIONS(3356), - [anon_sym_pub] = ACTIONS(3356), - [anon_sym_mut] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(3356), - [anon_sym_spawn] = ACTIONS(3356), - [anon_sym_json_DOTdecode] = ACTIONS(3356), - [anon_sym_LBRACK2] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_CARET] = ACTIONS(3356), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [sym_none] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_nil] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_DOLLARif] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_select] = ACTIONS(3356), - [anon_sym_lock] = ACTIONS(3356), - [anon_sym_rlock] = ACTIONS(3356), - [anon_sym_unsafe] = ACTIONS(3356), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(3356), - [sym_float_literal] = ACTIONS(3356), - [sym_rune_literal] = ACTIONS(3356), - [sym_pseudo_compile_time_identifier] = ACTIONS(3356), - [anon_sym_shared] = ACTIONS(3356), - [anon_sym_map_LBRACK] = ACTIONS(3356), - [anon_sym_chan] = ACTIONS(3356), - [anon_sym_thread] = ACTIONS(3356), - [anon_sym_atomic] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_defer] = ACTIONS(3356), - [anon_sym_goto] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_DOLLARfor] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_POUND] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3356), - [anon_sym_AT_LBRACK] = ACTIONS(3356), - [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), - }, - [1493] = { - [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), - [sym_comment] = ACTIONS(495), - [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), - }, - [1494] = { - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym___global] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_pub] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [sym_pseudo_compile_time_identifier] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_defer] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_DOLLARfor] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym_AT_LBRACK] = ACTIONS(3177), - [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), - }, - [1495] = { - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3181), - [anon_sym_LF] = ACTIONS(3181), - [anon_sym_CR] = ACTIONS(3181), - [anon_sym_CR_LF] = ACTIONS(3181), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_const] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym___global] = ACTIONS(3181), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_union] = ACTIONS(3181), - [anon_sym_pub] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_enum] = ACTIONS(3181), - [anon_sym_interface] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [sym_pseudo_compile_time_identifier] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [anon_sym_assert] = ACTIONS(3181), - [anon_sym_defer] = ACTIONS(3181), - [anon_sym_goto] = ACTIONS(3181), - [anon_sym_break] = ACTIONS(3181), - [anon_sym_continue] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3181), - [anon_sym_DOLLARfor] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_asm] = ACTIONS(3181), - [anon_sym_AT_LBRACK] = ACTIONS(3181), - [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), - }, - [1496] = { - [sym_block] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(4190), - [sym_identifier] = ACTIONS(4192), - [anon_sym_LF] = ACTIONS(4192), - [anon_sym_CR] = ACTIONS(4192), - [anon_sym_CR_LF] = ACTIONS(4192), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4192), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_LPAREN] = ACTIONS(4192), - [anon_sym___global] = ACTIONS(4192), - [anon_sym_type] = ACTIONS(4192), - [anon_sym_fn] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4192), - [anon_sym_DASH] = ACTIONS(4192), - [anon_sym_STAR] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_pub] = ACTIONS(4192), - [anon_sym_mut] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_interface] = ACTIONS(4192), - [anon_sym_QMARK] = ACTIONS(4192), - [anon_sym_BANG] = ACTIONS(4192), - [anon_sym_go] = ACTIONS(4192), - [anon_sym_spawn] = ACTIONS(4192), - [anon_sym_json_DOTdecode] = ACTIONS(4192), - [anon_sym_LBRACK2] = ACTIONS(4192), - [anon_sym_TILDE] = ACTIONS(4192), - [anon_sym_CARET] = ACTIONS(4192), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_LT_DASH] = ACTIONS(4192), - [sym_none] = ACTIONS(4192), - [sym_true] = ACTIONS(4192), - [sym_false] = ACTIONS(4192), - [sym_nil] = ACTIONS(4192), - [anon_sym_if] = ACTIONS(4192), - [anon_sym_DOLLARif] = ACTIONS(4192), - [anon_sym_match] = ACTIONS(4192), - [anon_sym_select] = ACTIONS(4192), - [anon_sym_lock] = ACTIONS(4192), - [anon_sym_rlock] = ACTIONS(4192), - [anon_sym_unsafe] = ACTIONS(4192), - [anon_sym_sql] = ACTIONS(4192), - [sym_int_literal] = ACTIONS(4192), - [sym_float_literal] = ACTIONS(4192), - [sym_rune_literal] = ACTIONS(4192), - [sym_pseudo_compile_time_identifier] = ACTIONS(4192), - [anon_sym_shared] = ACTIONS(4192), - [anon_sym_map_LBRACK] = ACTIONS(4192), - [anon_sym_chan] = ACTIONS(4192), - [anon_sym_thread] = ACTIONS(4192), - [anon_sym_atomic] = ACTIONS(4192), - [anon_sym_assert] = ACTIONS(4192), - [anon_sym_defer] = ACTIONS(4192), - [anon_sym_goto] = ACTIONS(4192), - [anon_sym_break] = ACTIONS(4192), - [anon_sym_continue] = ACTIONS(4192), - [anon_sym_return] = ACTIONS(4192), - [anon_sym_DOLLARfor] = ACTIONS(4192), - [anon_sym_for] = ACTIONS(4192), - [anon_sym_POUND] = ACTIONS(4192), - [anon_sym_asm] = ACTIONS(4192), - [anon_sym_AT_LBRACK] = ACTIONS(4192), - [sym___double_quote] = ACTIONS(4192), - [sym___single_quote] = ACTIONS(4192), - [sym___c_double_quote] = ACTIONS(4192), - [sym___c_single_quote] = ACTIONS(4192), - [sym___r_double_quote] = ACTIONS(4192), - [sym___r_single_quote] = ACTIONS(4192), - }, - [1497] = { - [ts_builtin_sym_end] = ACTIONS(3203), - [sym_identifier] = ACTIONS(3205), - [anon_sym_LF] = ACTIONS(3205), - [anon_sym_CR] = ACTIONS(3205), - [anon_sym_CR_LF] = ACTIONS(3205), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym___global] = ACTIONS(3205), - [anon_sym_type] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3205), - [anon_sym_fn] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3205), - [anon_sym_union] = ACTIONS(3205), - [anon_sym_pub] = ACTIONS(3205), - [anon_sym_mut] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_QMARK] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_go] = ACTIONS(3205), - [anon_sym_spawn] = ACTIONS(3205), - [anon_sym_json_DOTdecode] = ACTIONS(3205), - [anon_sym_LBRACK2] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3205), - [anon_sym_LT_DASH] = ACTIONS(3205), - [sym_none] = ACTIONS(3205), - [sym_true] = ACTIONS(3205), - [sym_false] = ACTIONS(3205), - [sym_nil] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_DOLLARif] = ACTIONS(3205), - [anon_sym_match] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [anon_sym_lock] = ACTIONS(3205), - [anon_sym_rlock] = ACTIONS(3205), - [anon_sym_unsafe] = ACTIONS(3205), - [anon_sym_sql] = ACTIONS(3205), - [sym_int_literal] = ACTIONS(3205), - [sym_float_literal] = ACTIONS(3205), - [sym_rune_literal] = ACTIONS(3205), - [sym_pseudo_compile_time_identifier] = ACTIONS(3205), - [anon_sym_shared] = ACTIONS(3205), - [anon_sym_map_LBRACK] = ACTIONS(3205), - [anon_sym_chan] = ACTIONS(3205), - [anon_sym_thread] = ACTIONS(3205), - [anon_sym_atomic] = ACTIONS(3205), - [anon_sym_assert] = ACTIONS(3205), - [anon_sym_defer] = ACTIONS(3205), - [anon_sym_goto] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_DOLLARfor] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_POUND] = ACTIONS(3205), - [anon_sym_asm] = ACTIONS(3205), - [anon_sym_AT_LBRACK] = ACTIONS(3205), - [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), - }, - [1498] = { - [ts_builtin_sym_end] = ACTIONS(4194), - [sym_identifier] = ACTIONS(4196), - [anon_sym_LF] = ACTIONS(4196), - [anon_sym_CR] = ACTIONS(4196), - [anon_sym_CR_LF] = ACTIONS(4196), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4196), - [anon_sym_const] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym___global] = ACTIONS(4196), - [anon_sym_type] = ACTIONS(4196), - [anon_sym_PIPE] = ACTIONS(4196), - [anon_sym_fn] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [anon_sym_struct] = ACTIONS(4196), - [anon_sym_union] = ACTIONS(4196), - [anon_sym_pub] = ACTIONS(4196), - [anon_sym_mut] = ACTIONS(4196), - [anon_sym_enum] = ACTIONS(4196), - [anon_sym_interface] = ACTIONS(4196), - [anon_sym_QMARK] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_go] = ACTIONS(4196), - [anon_sym_spawn] = ACTIONS(4196), - [anon_sym_json_DOTdecode] = ACTIONS(4196), - [anon_sym_LBRACK2] = ACTIONS(4196), - [anon_sym_TILDE] = ACTIONS(4196), - [anon_sym_CARET] = ACTIONS(4196), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_LT_DASH] = ACTIONS(4196), - [sym_none] = ACTIONS(4196), - [sym_true] = ACTIONS(4196), - [sym_false] = ACTIONS(4196), - [sym_nil] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_DOLLARif] = ACTIONS(4196), - [anon_sym_match] = ACTIONS(4196), - [anon_sym_select] = ACTIONS(4196), - [anon_sym_lock] = ACTIONS(4196), - [anon_sym_rlock] = ACTIONS(4196), - [anon_sym_unsafe] = ACTIONS(4196), - [anon_sym_sql] = ACTIONS(4196), - [sym_int_literal] = ACTIONS(4196), - [sym_float_literal] = ACTIONS(4196), - [sym_rune_literal] = ACTIONS(4196), - [sym_pseudo_compile_time_identifier] = ACTIONS(4196), - [anon_sym_shared] = ACTIONS(4196), - [anon_sym_map_LBRACK] = ACTIONS(4196), - [anon_sym_chan] = ACTIONS(4196), - [anon_sym_thread] = ACTIONS(4196), - [anon_sym_atomic] = ACTIONS(4196), - [anon_sym_assert] = ACTIONS(4196), - [anon_sym_defer] = ACTIONS(4196), - [anon_sym_goto] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_DOLLARfor] = ACTIONS(4196), - [anon_sym_for] = ACTIONS(4196), - [anon_sym_POUND] = ACTIONS(4196), - [anon_sym_asm] = ACTIONS(4196), - [anon_sym_AT_LBRACK] = ACTIONS(4196), - [sym___double_quote] = ACTIONS(4196), - [sym___single_quote] = ACTIONS(4196), - [sym___c_double_quote] = ACTIONS(4196), - [sym___c_single_quote] = ACTIONS(4196), - [sym___r_double_quote] = ACTIONS(4196), - [sym___r_single_quote] = ACTIONS(4196), - }, - [1499] = { - [ts_builtin_sym_end] = ACTIONS(3211), - [sym_identifier] = ACTIONS(3213), - [anon_sym_LF] = ACTIONS(3213), - [anon_sym_CR] = ACTIONS(3213), - [anon_sym_CR_LF] = ACTIONS(3213), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_const] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3213), - [anon_sym___global] = ACTIONS(3213), - [anon_sym_type] = ACTIONS(3213), - [anon_sym_PIPE] = ACTIONS(3213), - [anon_sym_fn] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3213), - [anon_sym_union] = ACTIONS(3213), - [anon_sym_pub] = ACTIONS(3213), - [anon_sym_mut] = ACTIONS(3213), - [anon_sym_enum] = ACTIONS(3213), - [anon_sym_interface] = ACTIONS(3213), - [anon_sym_QMARK] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_go] = ACTIONS(3213), - [anon_sym_spawn] = ACTIONS(3213), - [anon_sym_json_DOTdecode] = ACTIONS(3213), - [anon_sym_LBRACK2] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_CARET] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3213), - [anon_sym_LT_DASH] = ACTIONS(3213), - [sym_none] = ACTIONS(3213), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_nil] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_DOLLARif] = ACTIONS(3213), - [anon_sym_match] = ACTIONS(3213), - [anon_sym_select] = ACTIONS(3213), - [anon_sym_lock] = ACTIONS(3213), - [anon_sym_rlock] = ACTIONS(3213), - [anon_sym_unsafe] = ACTIONS(3213), - [anon_sym_sql] = ACTIONS(3213), - [sym_int_literal] = ACTIONS(3213), - [sym_float_literal] = ACTIONS(3213), - [sym_rune_literal] = ACTIONS(3213), - [sym_pseudo_compile_time_identifier] = ACTIONS(3213), - [anon_sym_shared] = ACTIONS(3213), - [anon_sym_map_LBRACK] = ACTIONS(3213), - [anon_sym_chan] = ACTIONS(3213), - [anon_sym_thread] = ACTIONS(3213), - [anon_sym_atomic] = ACTIONS(3213), - [anon_sym_assert] = ACTIONS(3213), - [anon_sym_defer] = ACTIONS(3213), - [anon_sym_goto] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_DOLLARfor] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_POUND] = ACTIONS(3213), - [anon_sym_asm] = ACTIONS(3213), - [anon_sym_AT_LBRACK] = ACTIONS(3213), - [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), + [sym_rune_literal] = ACTIONS(4144), + [sym_pseudo_compile_time_identifier] = ACTIONS(4144), + [anon_sym_shared] = ACTIONS(4144), + [anon_sym_map_LBRACK] = ACTIONS(4144), + [anon_sym_chan] = ACTIONS(4144), + [anon_sym_thread] = ACTIONS(4144), + [anon_sym_atomic] = ACTIONS(4144), + [anon_sym_assert] = ACTIONS(4144), + [anon_sym_defer] = ACTIONS(4144), + [anon_sym_goto] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_DOLLARfor] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_POUND] = ACTIONS(4144), + [anon_sym_asm] = ACTIONS(4144), + [anon_sym_AT_LBRACK] = ACTIONS(4144), + [sym___double_quote] = ACTIONS(4144), + [sym___single_quote] = ACTIONS(4144), + [sym___c_double_quote] = ACTIONS(4144), + [sym___c_single_quote] = ACTIONS(4144), + [sym___r_double_quote] = ACTIONS(4144), + [sym___r_single_quote] = ACTIONS(4144), }, [1500] = { - [ts_builtin_sym_end] = ACTIONS(3243), - [sym_identifier] = ACTIONS(3245), - [anon_sym_LF] = ACTIONS(3245), - [anon_sym_CR] = ACTIONS(3245), - [anon_sym_CR_LF] = ACTIONS(3245), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym___global] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_pub] = ACTIONS(3245), - [anon_sym_mut] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_go] = ACTIONS(3245), - [anon_sym_spawn] = ACTIONS(3245), - [anon_sym_json_DOTdecode] = ACTIONS(3245), - [anon_sym_LBRACK2] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_CARET] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [sym_none] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_nil] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_DOLLARif] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_select] = ACTIONS(3245), - [anon_sym_lock] = ACTIONS(3245), - [anon_sym_rlock] = ACTIONS(3245), - [anon_sym_unsafe] = ACTIONS(3245), - [anon_sym_sql] = ACTIONS(3245), - [sym_int_literal] = ACTIONS(3245), - [sym_float_literal] = ACTIONS(3245), - [sym_rune_literal] = ACTIONS(3245), - [sym_pseudo_compile_time_identifier] = ACTIONS(3245), - [anon_sym_shared] = ACTIONS(3245), - [anon_sym_map_LBRACK] = ACTIONS(3245), - [anon_sym_chan] = ACTIONS(3245), - [anon_sym_thread] = ACTIONS(3245), - [anon_sym_atomic] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_defer] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_DOLLARfor] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_POUND] = ACTIONS(3245), - [anon_sym_asm] = ACTIONS(3245), - [anon_sym_AT_LBRACK] = ACTIONS(3245), - [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), + [sym_line_comment] = STATE(1500), + [sym_block_comment] = STATE(1500), + [ts_builtin_sym_end] = ACTIONS(3215), + [sym_identifier] = ACTIONS(3217), + [anon_sym_LF] = ACTIONS(3217), + [anon_sym_CR] = ACTIONS(3217), + [anon_sym_CR_LF] = ACTIONS(3217), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym___global] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_PIPE] = ACTIONS(3217), + [anon_sym_fn] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_struct] = ACTIONS(3217), + [anon_sym_union] = ACTIONS(3217), + [anon_sym_pub] = ACTIONS(3217), + [anon_sym_mut] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_QMARK] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_go] = ACTIONS(3217), + [anon_sym_spawn] = ACTIONS(3217), + [anon_sym_json_DOTdecode] = ACTIONS(3217), + [anon_sym_LBRACK2] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_CARET] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_LT_DASH] = ACTIONS(3217), + [sym_none] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_nil] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_DOLLARif] = ACTIONS(3217), + [anon_sym_match] = ACTIONS(3217), + [anon_sym_select] = ACTIONS(3217), + [anon_sym_lock] = ACTIONS(3217), + [anon_sym_rlock] = ACTIONS(3217), + [anon_sym_unsafe] = ACTIONS(3217), + [anon_sym_sql] = ACTIONS(3217), + [sym_int_literal] = ACTIONS(3217), + [sym_float_literal] = ACTIONS(3217), + [sym_rune_literal] = ACTIONS(3217), + [sym_pseudo_compile_time_identifier] = ACTIONS(3217), + [anon_sym_shared] = ACTIONS(3217), + [anon_sym_map_LBRACK] = ACTIONS(3217), + [anon_sym_chan] = ACTIONS(3217), + [anon_sym_thread] = ACTIONS(3217), + [anon_sym_atomic] = ACTIONS(3217), + [anon_sym_assert] = ACTIONS(3217), + [anon_sym_defer] = ACTIONS(3217), + [anon_sym_goto] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_DOLLARfor] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_POUND] = ACTIONS(3217), + [anon_sym_asm] = ACTIONS(3217), + [anon_sym_AT_LBRACK] = ACTIONS(3217), + [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), }, [1501] = { - [ts_builtin_sym_end] = ACTIONS(3255), - [sym_identifier] = ACTIONS(3257), - [anon_sym_LF] = ACTIONS(3257), - [anon_sym_CR] = ACTIONS(3257), - [anon_sym_CR_LF] = ACTIONS(3257), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym___global] = ACTIONS(3257), - [anon_sym_type] = ACTIONS(3257), - [anon_sym_PIPE] = ACTIONS(3257), - [anon_sym_fn] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_union] = ACTIONS(3257), - [anon_sym_pub] = ACTIONS(3257), - [anon_sym_mut] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_QMARK] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(3257), - [anon_sym_spawn] = ACTIONS(3257), - [anon_sym_json_DOTdecode] = ACTIONS(3257), - [anon_sym_LBRACK2] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_CARET] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3257), - [anon_sym_LT_DASH] = ACTIONS(3257), - [sym_none] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_nil] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_DOLLARif] = ACTIONS(3257), - [anon_sym_match] = ACTIONS(3257), - [anon_sym_select] = ACTIONS(3257), - [anon_sym_lock] = ACTIONS(3257), - [anon_sym_rlock] = ACTIONS(3257), - [anon_sym_unsafe] = ACTIONS(3257), - [anon_sym_sql] = ACTIONS(3257), - [sym_int_literal] = ACTIONS(3257), - [sym_float_literal] = ACTIONS(3257), - [sym_rune_literal] = ACTIONS(3257), - [sym_pseudo_compile_time_identifier] = ACTIONS(3257), - [anon_sym_shared] = ACTIONS(3257), - [anon_sym_map_LBRACK] = ACTIONS(3257), - [anon_sym_chan] = ACTIONS(3257), - [anon_sym_thread] = ACTIONS(3257), - [anon_sym_atomic] = ACTIONS(3257), - [anon_sym_assert] = ACTIONS(3257), - [anon_sym_defer] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_DOLLARfor] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(3257), - [anon_sym_asm] = ACTIONS(3257), - [anon_sym_AT_LBRACK] = ACTIONS(3257), - [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), + [sym_line_comment] = STATE(1501), + [sym_block_comment] = STATE(1501), + [sym_reference_expression] = STATE(4487), + [sym_type_reference_expression] = STATE(2498), + [sym_plain_type] = STATE(2584), + [sym__plain_type_without_special] = STATE(2611), + [sym_anon_struct_type] = STATE(2592), + [sym_multi_return_type] = STATE(2611), + [sym_result_type] = STATE(2611), + [sym_option_type] = STATE(2611), + [sym_qualified_type] = STATE(2498), + [sym_fixed_array_type] = STATE(2592), + [sym_array_type] = STATE(2592), + [sym_pointer_type] = STATE(2592), + [sym_wrong_pointer_type] = STATE(2592), + [sym_map_type] = STATE(2592), + [sym_channel_type] = STATE(2592), + [sym_shared_type] = STATE(2592), + [sym_thread_type] = STATE(2592), + [sym_atomic_type] = STATE(2592), + [sym_generic_type] = STATE(2592), + [sym_function_type] = STATE(2592), + [sym_identifier] = ACTIONS(4090), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(4092), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(4096), + [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(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_LBRACK2] = ACTIONS(4104), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(4106), + [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(4108), + [anon_sym_map_LBRACK] = ACTIONS(4110), + [anon_sym_chan] = ACTIONS(4112), + [anon_sym_thread] = ACTIONS(4114), + [anon_sym_atomic] = ACTIONS(4116), }, [1502] = { - [ts_builtin_sym_end] = ACTIONS(3259), - [sym_identifier] = ACTIONS(3261), - [anon_sym_LF] = ACTIONS(3261), - [anon_sym_CR] = ACTIONS(3261), - [anon_sym_CR_LF] = ACTIONS(3261), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_LPAREN] = ACTIONS(3261), - [anon_sym___global] = ACTIONS(3261), - [anon_sym_type] = ACTIONS(3261), - [anon_sym_PIPE] = ACTIONS(3261), - [anon_sym_fn] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [anon_sym_pub] = ACTIONS(3261), - [anon_sym_mut] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_interface] = ACTIONS(3261), - [anon_sym_QMARK] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_go] = ACTIONS(3261), - [anon_sym_spawn] = ACTIONS(3261), - [anon_sym_json_DOTdecode] = ACTIONS(3261), - [anon_sym_LBRACK2] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_CARET] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym_LT_DASH] = ACTIONS(3261), - [sym_none] = ACTIONS(3261), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [sym_nil] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_DOLLARif] = ACTIONS(3261), - [anon_sym_match] = ACTIONS(3261), - [anon_sym_select] = ACTIONS(3261), - [anon_sym_lock] = ACTIONS(3261), - [anon_sym_rlock] = ACTIONS(3261), - [anon_sym_unsafe] = ACTIONS(3261), - [anon_sym_sql] = ACTIONS(3261), - [sym_int_literal] = ACTIONS(3261), - [sym_float_literal] = ACTIONS(3261), - [sym_rune_literal] = ACTIONS(3261), - [sym_pseudo_compile_time_identifier] = ACTIONS(3261), - [anon_sym_shared] = ACTIONS(3261), - [anon_sym_map_LBRACK] = ACTIONS(3261), - [anon_sym_chan] = ACTIONS(3261), - [anon_sym_thread] = ACTIONS(3261), - [anon_sym_atomic] = ACTIONS(3261), - [anon_sym_assert] = ACTIONS(3261), - [anon_sym_defer] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_DOLLARfor] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_POUND] = ACTIONS(3261), - [anon_sym_asm] = ACTIONS(3261), - [anon_sym_AT_LBRACK] = ACTIONS(3261), - [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_line_comment] = STATE(1502), + [sym_block_comment] = STATE(1502), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(603), + [anon_sym_CR] = ACTIONS(603), + [anon_sym_CR_LF] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(599), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(603), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(619), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), }, [1503] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1503), + [sym_block_comment] = STATE(1503), + [ts_builtin_sym_end] = ACTIONS(3143), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LF] = ACTIONS(3145), + [anon_sym_CR] = ACTIONS(3145), + [anon_sym_CR_LF] = ACTIONS(3145), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym___global] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_fn] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_union] = ACTIONS(3145), + [anon_sym_pub] = ACTIONS(3145), + [anon_sym_mut] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_go] = ACTIONS(3145), + [anon_sym_spawn] = ACTIONS(3145), + [anon_sym_json_DOTdecode] = ACTIONS(3145), + [anon_sym_LBRACK2] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_LT_DASH] = ACTIONS(3145), + [sym_none] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_nil] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_DOLLARif] = ACTIONS(3145), + [anon_sym_match] = ACTIONS(3145), + [anon_sym_select] = ACTIONS(3145), + [anon_sym_lock] = ACTIONS(3145), + [anon_sym_rlock] = ACTIONS(3145), + [anon_sym_unsafe] = ACTIONS(3145), + [anon_sym_sql] = ACTIONS(3145), + [sym_int_literal] = ACTIONS(3145), + [sym_float_literal] = ACTIONS(3145), + [sym_rune_literal] = ACTIONS(3145), + [sym_pseudo_compile_time_identifier] = ACTIONS(3145), + [anon_sym_shared] = ACTIONS(3145), + [anon_sym_map_LBRACK] = ACTIONS(3145), + [anon_sym_chan] = ACTIONS(3145), + [anon_sym_thread] = ACTIONS(3145), + [anon_sym_atomic] = ACTIONS(3145), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_defer] = ACTIONS(3145), + [anon_sym_goto] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_DOLLARfor] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(3145), + [anon_sym_asm] = ACTIONS(3145), + [anon_sym_AT_LBRACK] = ACTIONS(3145), + [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), }, [1504] = { - [ts_builtin_sym_end] = ACTIONS(3326), - [sym_identifier] = ACTIONS(3328), - [anon_sym_LF] = ACTIONS(3328), - [anon_sym_CR] = ACTIONS(3328), - [anon_sym_CR_LF] = ACTIONS(3328), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym___global] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3328), - [anon_sym_struct] = ACTIONS(3328), - [anon_sym_union] = ACTIONS(3328), - [anon_sym_pub] = ACTIONS(3328), - [anon_sym_mut] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_QMARK] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_go] = ACTIONS(3328), - [anon_sym_spawn] = ACTIONS(3328), - [anon_sym_json_DOTdecode] = ACTIONS(3328), - [anon_sym_LBRACK2] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_LT_DASH] = ACTIONS(3328), - [sym_none] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_nil] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_DOLLARif] = ACTIONS(3328), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3328), - [anon_sym_lock] = ACTIONS(3328), - [anon_sym_rlock] = ACTIONS(3328), - [anon_sym_unsafe] = ACTIONS(3328), - [anon_sym_sql] = ACTIONS(3328), - [sym_int_literal] = ACTIONS(3328), - [sym_float_literal] = ACTIONS(3328), - [sym_rune_literal] = ACTIONS(3328), - [sym_pseudo_compile_time_identifier] = ACTIONS(3328), - [anon_sym_shared] = ACTIONS(3328), - [anon_sym_map_LBRACK] = ACTIONS(3328), - [anon_sym_chan] = ACTIONS(3328), - [anon_sym_thread] = ACTIONS(3328), - [anon_sym_atomic] = ACTIONS(3328), - [anon_sym_assert] = ACTIONS(3328), - [anon_sym_defer] = ACTIONS(3328), - [anon_sym_goto] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_DOLLARfor] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_POUND] = ACTIONS(3328), - [anon_sym_asm] = ACTIONS(3328), - [anon_sym_AT_LBRACK] = ACTIONS(3328), - [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), + [sym_line_comment] = STATE(1504), + [sym_block_comment] = STATE(1504), + [sym_reference_expression] = STATE(4487), + [sym_type_reference_expression] = STATE(2498), + [sym_plain_type] = STATE(2605), + [sym__plain_type_without_special] = STATE(2611), + [sym_anon_struct_type] = STATE(2592), + [sym_multi_return_type] = STATE(2611), + [sym_result_type] = STATE(2611), + [sym_option_type] = STATE(2611), + [sym_qualified_type] = STATE(2498), + [sym_fixed_array_type] = STATE(2592), + [sym_array_type] = STATE(2592), + [sym_pointer_type] = STATE(2592), + [sym_wrong_pointer_type] = STATE(2592), + [sym_map_type] = STATE(2592), + [sym_channel_type] = STATE(2592), + [sym_shared_type] = STATE(2592), + [sym_thread_type] = STATE(2592), + [sym_atomic_type] = STATE(2592), + [sym_generic_type] = STATE(2592), + [sym_function_type] = STATE(2592), + [sym_identifier] = ACTIONS(4090), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_CR] = ACTIONS(627), + [anon_sym_CR_LF] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(627), + [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(4092), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(4096), + [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(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_LBRACK2] = ACTIONS(4104), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(4106), + [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(4108), + [anon_sym_map_LBRACK] = ACTIONS(4110), + [anon_sym_chan] = ACTIONS(4112), + [anon_sym_thread] = ACTIONS(4114), + [anon_sym_atomic] = ACTIONS(4116), }, [1505] = { - [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), - [sym_comment] = ACTIONS(495), - [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), + [sym_line_comment] = STATE(1505), + [sym_block_comment] = STATE(1505), + [sym_block] = STATE(1593), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4050), + [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), }, [1506] = { - [ts_builtin_sym_end] = ACTIONS(3330), - [sym_identifier] = ACTIONS(3332), - [anon_sym_LF] = ACTIONS(3332), - [anon_sym_CR] = ACTIONS(3332), - [anon_sym_CR_LF] = ACTIONS(3332), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym___global] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_PIPE] = ACTIONS(3332), - [anon_sym_fn] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_struct] = ACTIONS(3332), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_pub] = ACTIONS(3332), - [anon_sym_mut] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_QMARK] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_go] = ACTIONS(3332), - [anon_sym_spawn] = ACTIONS(3332), - [anon_sym_json_DOTdecode] = ACTIONS(3332), - [anon_sym_LBRACK2] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_CARET] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_LT_DASH] = ACTIONS(3332), - [sym_none] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_nil] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_DOLLARif] = ACTIONS(3332), - [anon_sym_match] = ACTIONS(3332), - [anon_sym_select] = ACTIONS(3332), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3332), - [anon_sym_sql] = ACTIONS(3332), - [sym_int_literal] = ACTIONS(3332), - [sym_float_literal] = ACTIONS(3332), - [sym_rune_literal] = ACTIONS(3332), - [sym_pseudo_compile_time_identifier] = ACTIONS(3332), - [anon_sym_shared] = ACTIONS(3332), - [anon_sym_map_LBRACK] = ACTIONS(3332), - [anon_sym_chan] = ACTIONS(3332), - [anon_sym_thread] = ACTIONS(3332), - [anon_sym_atomic] = ACTIONS(3332), - [anon_sym_assert] = ACTIONS(3332), - [anon_sym_defer] = ACTIONS(3332), - [anon_sym_goto] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_DOLLARfor] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_POUND] = ACTIONS(3332), - [anon_sym_asm] = ACTIONS(3332), - [anon_sym_AT_LBRACK] = ACTIONS(3332), - [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), + [sym_line_comment] = STATE(1506), + [sym_block_comment] = STATE(1506), + [sym_block] = STATE(1591), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(4050), + [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), }, [1507] = { - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3432), - [anon_sym_LF] = ACTIONS(3432), - [anon_sym_CR] = ACTIONS(3432), - [anon_sym_CR_LF] = ACTIONS(3432), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym___global] = ACTIONS(3432), - [anon_sym_type] = ACTIONS(3432), - [anon_sym_PIPE] = ACTIONS(3432), - [anon_sym_fn] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_struct] = ACTIONS(3432), - [anon_sym_union] = ACTIONS(3432), - [anon_sym_pub] = ACTIONS(3432), - [anon_sym_mut] = ACTIONS(3432), - [anon_sym_enum] = ACTIONS(3432), - [anon_sym_interface] = ACTIONS(3432), - [anon_sym_QMARK] = ACTIONS(3432), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_go] = ACTIONS(3432), - [anon_sym_spawn] = ACTIONS(3432), - [anon_sym_json_DOTdecode] = ACTIONS(3432), - [anon_sym_LBRACK2] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3432), - [anon_sym_CARET] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_LT_DASH] = ACTIONS(3432), - [sym_none] = ACTIONS(3432), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [sym_nil] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_DOLLARif] = ACTIONS(3432), - [anon_sym_match] = ACTIONS(3432), - [anon_sym_select] = ACTIONS(3432), - [anon_sym_lock] = ACTIONS(3432), - [anon_sym_rlock] = ACTIONS(3432), - [anon_sym_unsafe] = ACTIONS(3432), - [anon_sym_sql] = ACTIONS(3432), - [sym_int_literal] = ACTIONS(3432), - [sym_float_literal] = ACTIONS(3432), - [sym_rune_literal] = ACTIONS(3432), - [sym_pseudo_compile_time_identifier] = ACTIONS(3432), - [anon_sym_shared] = ACTIONS(3432), - [anon_sym_map_LBRACK] = ACTIONS(3432), - [anon_sym_chan] = ACTIONS(3432), - [anon_sym_thread] = ACTIONS(3432), - [anon_sym_atomic] = ACTIONS(3432), - [anon_sym_assert] = ACTIONS(3432), - [anon_sym_defer] = ACTIONS(3432), - [anon_sym_goto] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_DOLLARfor] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_POUND] = ACTIONS(3432), - [anon_sym_asm] = ACTIONS(3432), - [anon_sym_AT_LBRACK] = ACTIONS(3432), - [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), + [sym_line_comment] = STATE(1507), + [sym_block_comment] = STATE(1507), + [sym_block] = STATE(1590), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4050), + [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), }, [1508] = { - [ts_builtin_sym_end] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_CR] = ACTIONS(3336), - [anon_sym_CR_LF] = ACTIONS(3336), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym___global] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_fn] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_pub] = ACTIONS(3336), - [anon_sym_mut] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_QMARK] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_go] = ACTIONS(3336), - [anon_sym_spawn] = ACTIONS(3336), - [anon_sym_json_DOTdecode] = ACTIONS(3336), - [anon_sym_LBRACK2] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_LT_DASH] = ACTIONS(3336), - [sym_none] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_nil] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_DOLLARif] = ACTIONS(3336), - [anon_sym_match] = ACTIONS(3336), - [anon_sym_select] = ACTIONS(3336), - [anon_sym_lock] = ACTIONS(3336), - [anon_sym_rlock] = ACTIONS(3336), - [anon_sym_unsafe] = ACTIONS(3336), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3336), - [sym_float_literal] = ACTIONS(3336), - [sym_rune_literal] = ACTIONS(3336), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(3336), - [anon_sym_map_LBRACK] = ACTIONS(3336), - [anon_sym_chan] = ACTIONS(3336), - [anon_sym_thread] = ACTIONS(3336), - [anon_sym_atomic] = ACTIONS(3336), - [anon_sym_assert] = ACTIONS(3336), - [anon_sym_defer] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_DOLLARfor] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_POUND] = ACTIONS(3336), - [anon_sym_asm] = ACTIONS(3336), - [anon_sym_AT_LBRACK] = ACTIONS(3336), - [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), + [sym_line_comment] = STATE(1508), + [sym_block_comment] = STATE(1508), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3051), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3051), + [sym_true] = ACTIONS(3051), + [sym_false] = ACTIONS(3051), + [sym_nil] = ACTIONS(3051), + [anon_sym_if] = ACTIONS(3051), + [anon_sym_DOLLARif] = 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), }, [1509] = { - [sym_block] = STATE(1552), - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4064), - [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_line_comment] = STATE(1509), + [sym_block_comment] = STATE(1509), + [sym_block] = STATE(1527), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4050), + [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), }, [1510] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4204), - [anon_sym_LBRACE] = ACTIONS(4204), - [anon_sym_const] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym___global] = ACTIONS(4204), - [anon_sym_type] = ACTIONS(4204), - [anon_sym_fn] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4204), - [anon_sym_DASH] = ACTIONS(4204), - [anon_sym_STAR] = ACTIONS(4204), - [anon_sym_struct] = ACTIONS(4204), - [anon_sym_union] = ACTIONS(4204), - [anon_sym_pub] = ACTIONS(4204), - [anon_sym_mut] = ACTIONS(4204), - [anon_sym_enum] = ACTIONS(4204), - [anon_sym_interface] = ACTIONS(4204), - [anon_sym_QMARK] = ACTIONS(4204), - [anon_sym_BANG] = ACTIONS(4204), - [anon_sym_go] = ACTIONS(4204), - [anon_sym_spawn] = ACTIONS(4204), - [anon_sym_json_DOTdecode] = ACTIONS(4204), - [anon_sym_LBRACK2] = ACTIONS(4204), - [anon_sym_TILDE] = ACTIONS(4204), - [anon_sym_CARET] = ACTIONS(4204), - [anon_sym_AMP] = ACTIONS(4204), - [anon_sym_LT_DASH] = ACTIONS(4204), - [sym_none] = ACTIONS(4204), - [sym_true] = ACTIONS(4204), - [sym_false] = ACTIONS(4204), - [sym_nil] = ACTIONS(4204), - [anon_sym_if] = ACTIONS(4204), - [anon_sym_DOLLARif] = ACTIONS(4204), - [anon_sym_match] = ACTIONS(4204), - [anon_sym_select] = ACTIONS(4204), - [anon_sym_lock] = ACTIONS(4204), - [anon_sym_rlock] = ACTIONS(4204), - [anon_sym_unsafe] = ACTIONS(4204), - [anon_sym_sql] = ACTIONS(4204), - [sym_int_literal] = ACTIONS(4204), - [sym_float_literal] = ACTIONS(4204), - [sym_rune_literal] = ACTIONS(4204), - [sym_pseudo_compile_time_identifier] = ACTIONS(4204), - [anon_sym_shared] = ACTIONS(4204), - [anon_sym_map_LBRACK] = ACTIONS(4204), - [anon_sym_chan] = ACTIONS(4204), - [anon_sym_thread] = ACTIONS(4204), - [anon_sym_atomic] = ACTIONS(4204), - [anon_sym_assert] = ACTIONS(4204), - [anon_sym_defer] = ACTIONS(4204), - [anon_sym_goto] = ACTIONS(4204), - [anon_sym_break] = ACTIONS(4204), - [anon_sym_continue] = ACTIONS(4204), - [anon_sym_return] = ACTIONS(4204), - [anon_sym_DOLLARfor] = ACTIONS(4204), - [anon_sym_for] = ACTIONS(4204), - [anon_sym_POUND] = ACTIONS(4204), - [anon_sym_asm] = ACTIONS(4204), - [anon_sym_AT_LBRACK] = ACTIONS(4204), - [sym___double_quote] = ACTIONS(4204), - [sym___single_quote] = ACTIONS(4204), - [sym___c_double_quote] = ACTIONS(4204), - [sym___c_single_quote] = ACTIONS(4204), - [sym___r_double_quote] = ACTIONS(4204), - [sym___r_single_quote] = ACTIONS(4204), + [sym_line_comment] = STATE(1510), + [sym_block_comment] = STATE(1510), + [sym_block] = STATE(1563), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym___global] = ACTIONS(4166), + [anon_sym_type] = ACTIONS(4166), + [anon_sym_fn] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_struct] = ACTIONS(4166), + [anon_sym_union] = ACTIONS(4166), + [anon_sym_pub] = ACTIONS(4166), + [anon_sym_mut] = ACTIONS(4166), + [anon_sym_enum] = ACTIONS(4166), + [anon_sym_interface] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_go] = ACTIONS(4166), + [anon_sym_spawn] = ACTIONS(4166), + [anon_sym_json_DOTdecode] = ACTIONS(4166), + [anon_sym_LBRACK2] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_DASH] = ACTIONS(4166), + [sym_none] = ACTIONS(4166), + [sym_true] = ACTIONS(4166), + [sym_false] = ACTIONS(4166), + [sym_nil] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_DOLLARif] = ACTIONS(4166), + [anon_sym_match] = ACTIONS(4166), + [anon_sym_select] = ACTIONS(4166), + [anon_sym_lock] = ACTIONS(4166), + [anon_sym_rlock] = ACTIONS(4166), + [anon_sym_unsafe] = ACTIONS(4166), + [anon_sym_sql] = ACTIONS(4166), + [sym_int_literal] = ACTIONS(4166), + [sym_float_literal] = ACTIONS(4166), + [sym_rune_literal] = ACTIONS(4166), + [sym_pseudo_compile_time_identifier] = ACTIONS(4166), + [anon_sym_shared] = ACTIONS(4166), + [anon_sym_map_LBRACK] = ACTIONS(4166), + [anon_sym_chan] = ACTIONS(4166), + [anon_sym_thread] = ACTIONS(4166), + [anon_sym_atomic] = ACTIONS(4166), + [anon_sym_assert] = ACTIONS(4166), + [anon_sym_defer] = ACTIONS(4166), + [anon_sym_goto] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_DOLLARfor] = ACTIONS(4166), + [anon_sym_for] = ACTIONS(4166), + [anon_sym_POUND] = ACTIONS(4166), + [anon_sym_asm] = ACTIONS(4166), + [anon_sym_AT_LBRACK] = ACTIONS(4166), + [sym___double_quote] = ACTIONS(4166), + [sym___single_quote] = ACTIONS(4166), + [sym___c_double_quote] = ACTIONS(4166), + [sym___c_single_quote] = ACTIONS(4166), + [sym___r_double_quote] = ACTIONS(4166), + [sym___r_single_quote] = ACTIONS(4166), }, [1511] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4208), - [anon_sym_const] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [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_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_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), - [sym_none] = ACTIONS(4208), - [sym_true] = ACTIONS(4208), - [sym_false] = ACTIONS(4208), - [sym_nil] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_DOLLARif] = ACTIONS(4208), - [anon_sym_match] = ACTIONS(4208), - [anon_sym_select] = ACTIONS(4208), - [anon_sym_lock] = ACTIONS(4208), - [anon_sym_rlock] = ACTIONS(4208), - [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_pseudo_compile_time_identifier] = ACTIONS(4208), - [anon_sym_shared] = ACTIONS(4208), - [anon_sym_map_LBRACK] = ACTIONS(4208), - [anon_sym_chan] = ACTIONS(4208), - [anon_sym_thread] = ACTIONS(4208), - [anon_sym_atomic] = ACTIONS(4208), - [anon_sym_assert] = ACTIONS(4208), - [anon_sym_defer] = ACTIONS(4208), - [anon_sym_goto] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_DOLLARfor] = ACTIONS(4208), - [anon_sym_for] = ACTIONS(4208), - [anon_sym_POUND] = ACTIONS(4208), - [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), + [sym_line_comment] = STATE(1511), + [sym_block_comment] = STATE(1511), + [sym_block] = STATE(1565), + [ts_builtin_sym_end] = ACTIONS(4168), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4170), + [anon_sym_LPAREN] = ACTIONS(4170), + [anon_sym___global] = ACTIONS(4170), + [anon_sym_type] = ACTIONS(4170), + [anon_sym_fn] = ACTIONS(4170), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_struct] = ACTIONS(4170), + [anon_sym_union] = ACTIONS(4170), + [anon_sym_pub] = ACTIONS(4170), + [anon_sym_mut] = ACTIONS(4170), + [anon_sym_enum] = ACTIONS(4170), + [anon_sym_interface] = ACTIONS(4170), + [anon_sym_QMARK] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_go] = ACTIONS(4170), + [anon_sym_spawn] = ACTIONS(4170), + [anon_sym_json_DOTdecode] = ACTIONS(4170), + [anon_sym_LBRACK2] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_CARET] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_LT_DASH] = ACTIONS(4170), + [sym_none] = ACTIONS(4170), + [sym_true] = ACTIONS(4170), + [sym_false] = ACTIONS(4170), + [sym_nil] = ACTIONS(4170), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_DOLLARif] = ACTIONS(4170), + [anon_sym_match] = ACTIONS(4170), + [anon_sym_select] = ACTIONS(4170), + [anon_sym_lock] = ACTIONS(4170), + [anon_sym_rlock] = ACTIONS(4170), + [anon_sym_unsafe] = ACTIONS(4170), + [anon_sym_sql] = ACTIONS(4170), + [sym_int_literal] = ACTIONS(4170), + [sym_float_literal] = ACTIONS(4170), + [sym_rune_literal] = ACTIONS(4170), + [sym_pseudo_compile_time_identifier] = ACTIONS(4170), + [anon_sym_shared] = ACTIONS(4170), + [anon_sym_map_LBRACK] = ACTIONS(4170), + [anon_sym_chan] = ACTIONS(4170), + [anon_sym_thread] = ACTIONS(4170), + [anon_sym_atomic] = ACTIONS(4170), + [anon_sym_assert] = ACTIONS(4170), + [anon_sym_defer] = ACTIONS(4170), + [anon_sym_goto] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_DOLLARfor] = ACTIONS(4170), + [anon_sym_for] = ACTIONS(4170), + [anon_sym_POUND] = ACTIONS(4170), + [anon_sym_asm] = ACTIONS(4170), + [anon_sym_AT_LBRACK] = ACTIONS(4170), + [sym___double_quote] = ACTIONS(4170), + [sym___single_quote] = ACTIONS(4170), + [sym___c_double_quote] = ACTIONS(4170), + [sym___c_single_quote] = ACTIONS(4170), + [sym___r_double_quote] = ACTIONS(4170), + [sym___r_single_quote] = ACTIONS(4170), }, [1512] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LF] = ACTIONS(2649), - [anon_sym_CR] = ACTIONS(2649), - [anon_sym_CR_LF] = ACTIONS(2649), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym___global] = ACTIONS(2649), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_pub] = ACTIONS(2649), - [anon_sym_mut] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2649), - [anon_sym_json_DOTdecode] = ACTIONS(2649), - [anon_sym_LBRACK2] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [sym_none] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_nil] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_DOLLARif] = ACTIONS(2649), - [anon_sym_match] = ACTIONS(2649), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2649), - [anon_sym_rlock] = ACTIONS(2649), - [anon_sym_unsafe] = ACTIONS(2649), - [anon_sym_sql] = ACTIONS(2649), - [sym_int_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_rune_literal] = ACTIONS(2649), - [sym_pseudo_compile_time_identifier] = ACTIONS(2649), - [anon_sym_shared] = ACTIONS(2649), - [anon_sym_map_LBRACK] = ACTIONS(2649), - [anon_sym_chan] = ACTIONS(2649), - [anon_sym_thread] = ACTIONS(2649), - [anon_sym_atomic] = ACTIONS(2649), - [anon_sym_assert] = ACTIONS(2649), - [anon_sym_defer] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_DOLLARfor] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym_AT_LBRACK] = ACTIONS(2649), - [sym___double_quote] = ACTIONS(2649), - [sym___single_quote] = ACTIONS(2649), - [sym___c_double_quote] = ACTIONS(2649), - [sym___c_single_quote] = ACTIONS(2649), - [sym___r_double_quote] = ACTIONS(2649), - [sym___r_single_quote] = ACTIONS(2649), + [sym_line_comment] = STATE(1512), + [sym_block_comment] = STATE(1512), + [sym_block] = STATE(1595), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4174), + [anon_sym_LPAREN] = ACTIONS(4174), + [anon_sym___global] = ACTIONS(4174), + [anon_sym_type] = ACTIONS(4174), + [anon_sym_fn] = ACTIONS(4174), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_struct] = ACTIONS(4174), + [anon_sym_union] = ACTIONS(4174), + [anon_sym_pub] = ACTIONS(4174), + [anon_sym_mut] = ACTIONS(4174), + [anon_sym_enum] = ACTIONS(4174), + [anon_sym_interface] = ACTIONS(4174), + [anon_sym_QMARK] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_go] = ACTIONS(4174), + [anon_sym_spawn] = ACTIONS(4174), + [anon_sym_json_DOTdecode] = ACTIONS(4174), + [anon_sym_LBRACK2] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_CARET] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4174), + [anon_sym_LT_DASH] = ACTIONS(4174), + [sym_none] = ACTIONS(4174), + [sym_true] = ACTIONS(4174), + [sym_false] = ACTIONS(4174), + [sym_nil] = ACTIONS(4174), + [anon_sym_if] = ACTIONS(4174), + [anon_sym_DOLLARif] = ACTIONS(4174), + [anon_sym_match] = ACTIONS(4174), + [anon_sym_select] = ACTIONS(4174), + [anon_sym_lock] = ACTIONS(4174), + [anon_sym_rlock] = ACTIONS(4174), + [anon_sym_unsafe] = ACTIONS(4174), + [anon_sym_sql] = ACTIONS(4174), + [sym_int_literal] = ACTIONS(4174), + [sym_float_literal] = ACTIONS(4174), + [sym_rune_literal] = ACTIONS(4174), + [sym_pseudo_compile_time_identifier] = ACTIONS(4174), + [anon_sym_shared] = ACTIONS(4174), + [anon_sym_map_LBRACK] = ACTIONS(4174), + [anon_sym_chan] = ACTIONS(4174), + [anon_sym_thread] = ACTIONS(4174), + [anon_sym_atomic] = ACTIONS(4174), + [anon_sym_assert] = ACTIONS(4174), + [anon_sym_defer] = ACTIONS(4174), + [anon_sym_goto] = ACTIONS(4174), + [anon_sym_break] = ACTIONS(4174), + [anon_sym_continue] = ACTIONS(4174), + [anon_sym_return] = ACTIONS(4174), + [anon_sym_DOLLARfor] = ACTIONS(4174), + [anon_sym_for] = ACTIONS(4174), + [anon_sym_POUND] = ACTIONS(4174), + [anon_sym_asm] = ACTIONS(4174), + [anon_sym_AT_LBRACK] = ACTIONS(4174), + [sym___double_quote] = ACTIONS(4174), + [sym___single_quote] = ACTIONS(4174), + [sym___c_double_quote] = ACTIONS(4174), + [sym___c_single_quote] = ACTIONS(4174), + [sym___r_double_quote] = ACTIONS(4174), + [sym___r_single_quote] = ACTIONS(4174), }, [1513] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4212), - [anon_sym_const] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym___global] = ACTIONS(4212), - [anon_sym_type] = ACTIONS(4212), - [anon_sym_fn] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4212), - [anon_sym_DASH] = ACTIONS(4212), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_struct] = ACTIONS(4212), - [anon_sym_union] = ACTIONS(4212), - [anon_sym_pub] = ACTIONS(4212), - [anon_sym_mut] = ACTIONS(4212), - [anon_sym_enum] = ACTIONS(4212), - [anon_sym_interface] = ACTIONS(4212), - [anon_sym_QMARK] = ACTIONS(4212), - [anon_sym_BANG] = ACTIONS(4212), - [anon_sym_go] = ACTIONS(4212), - [anon_sym_spawn] = ACTIONS(4212), - [anon_sym_json_DOTdecode] = ACTIONS(4212), - [anon_sym_LBRACK2] = ACTIONS(4212), - [anon_sym_TILDE] = ACTIONS(4212), - [anon_sym_CARET] = ACTIONS(4212), - [anon_sym_AMP] = ACTIONS(4212), - [anon_sym_LT_DASH] = ACTIONS(4212), - [sym_none] = ACTIONS(4212), - [sym_true] = ACTIONS(4212), - [sym_false] = ACTIONS(4212), - [sym_nil] = ACTIONS(4212), - [anon_sym_if] = ACTIONS(4212), - [anon_sym_DOLLARif] = ACTIONS(4212), - [anon_sym_match] = ACTIONS(4212), - [anon_sym_select] = ACTIONS(4212), - [anon_sym_lock] = ACTIONS(4212), - [anon_sym_rlock] = ACTIONS(4212), - [anon_sym_unsafe] = ACTIONS(4212), - [anon_sym_sql] = ACTIONS(4212), - [sym_int_literal] = ACTIONS(4212), - [sym_float_literal] = ACTIONS(4212), - [sym_rune_literal] = ACTIONS(4212), - [sym_pseudo_compile_time_identifier] = ACTIONS(4212), - [anon_sym_shared] = ACTIONS(4212), - [anon_sym_map_LBRACK] = ACTIONS(4212), - [anon_sym_chan] = ACTIONS(4212), - [anon_sym_thread] = ACTIONS(4212), - [anon_sym_atomic] = ACTIONS(4212), - [anon_sym_assert] = ACTIONS(4212), - [anon_sym_defer] = ACTIONS(4212), - [anon_sym_goto] = ACTIONS(4212), - [anon_sym_break] = ACTIONS(4212), - [anon_sym_continue] = ACTIONS(4212), - [anon_sym_return] = ACTIONS(4212), - [anon_sym_DOLLARfor] = ACTIONS(4212), - [anon_sym_for] = ACTIONS(4212), - [anon_sym_POUND] = ACTIONS(4212), - [anon_sym_asm] = ACTIONS(4212), - [anon_sym_AT_LBRACK] = ACTIONS(4212), - [sym___double_quote] = ACTIONS(4212), - [sym___single_quote] = ACTIONS(4212), - [sym___c_double_quote] = ACTIONS(4212), - [sym___c_single_quote] = ACTIONS(4212), - [sym___r_double_quote] = ACTIONS(4212), - [sym___r_single_quote] = ACTIONS(4212), + [sym_line_comment] = STATE(1513), + [sym_block_comment] = STATE(1513), + [sym_block] = STATE(1596), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4178), + [anon_sym_LPAREN] = ACTIONS(4178), + [anon_sym___global] = ACTIONS(4178), + [anon_sym_type] = ACTIONS(4178), + [anon_sym_fn] = ACTIONS(4178), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_struct] = ACTIONS(4178), + [anon_sym_union] = ACTIONS(4178), + [anon_sym_pub] = ACTIONS(4178), + [anon_sym_mut] = ACTIONS(4178), + [anon_sym_enum] = ACTIONS(4178), + [anon_sym_interface] = ACTIONS(4178), + [anon_sym_QMARK] = ACTIONS(4178), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_go] = ACTIONS(4178), + [anon_sym_spawn] = ACTIONS(4178), + [anon_sym_json_DOTdecode] = ACTIONS(4178), + [anon_sym_LBRACK2] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_CARET] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4178), + [anon_sym_LT_DASH] = ACTIONS(4178), + [sym_none] = ACTIONS(4178), + [sym_true] = ACTIONS(4178), + [sym_false] = ACTIONS(4178), + [sym_nil] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_DOLLARif] = ACTIONS(4178), + [anon_sym_match] = ACTIONS(4178), + [anon_sym_select] = ACTIONS(4178), + [anon_sym_lock] = ACTIONS(4178), + [anon_sym_rlock] = ACTIONS(4178), + [anon_sym_unsafe] = ACTIONS(4178), + [anon_sym_sql] = ACTIONS(4178), + [sym_int_literal] = ACTIONS(4178), + [sym_float_literal] = ACTIONS(4178), + [sym_rune_literal] = ACTIONS(4178), + [sym_pseudo_compile_time_identifier] = ACTIONS(4178), + [anon_sym_shared] = ACTIONS(4178), + [anon_sym_map_LBRACK] = ACTIONS(4178), + [anon_sym_chan] = ACTIONS(4178), + [anon_sym_thread] = ACTIONS(4178), + [anon_sym_atomic] = ACTIONS(4178), + [anon_sym_assert] = ACTIONS(4178), + [anon_sym_defer] = ACTIONS(4178), + [anon_sym_goto] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_DOLLARfor] = ACTIONS(4178), + [anon_sym_for] = ACTIONS(4178), + [anon_sym_POUND] = ACTIONS(4178), + [anon_sym_asm] = ACTIONS(4178), + [anon_sym_AT_LBRACK] = ACTIONS(4178), + [sym___double_quote] = ACTIONS(4178), + [sym___single_quote] = ACTIONS(4178), + [sym___c_double_quote] = ACTIONS(4178), + [sym___c_single_quote] = ACTIONS(4178), + [sym___r_double_quote] = ACTIONS(4178), + [sym___r_single_quote] = ACTIONS(4178), }, [1514] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_LBRACE] = ACTIONS(4216), - [anon_sym_const] = ACTIONS(4216), - [anon_sym_LPAREN] = ACTIONS(4216), - [anon_sym___global] = ACTIONS(4216), - [anon_sym_type] = ACTIONS(4216), - [anon_sym_fn] = ACTIONS(4216), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4216), - [anon_sym_struct] = ACTIONS(4216), - [anon_sym_union] = ACTIONS(4216), - [anon_sym_pub] = ACTIONS(4216), - [anon_sym_mut] = ACTIONS(4216), - [anon_sym_enum] = ACTIONS(4216), - [anon_sym_interface] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_go] = ACTIONS(4216), - [anon_sym_spawn] = ACTIONS(4216), - [anon_sym_json_DOTdecode] = ACTIONS(4216), - [anon_sym_LBRACK2] = ACTIONS(4216), - [anon_sym_TILDE] = ACTIONS(4216), - [anon_sym_CARET] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_DASH] = ACTIONS(4216), - [sym_none] = ACTIONS(4216), - [sym_true] = ACTIONS(4216), - [sym_false] = ACTIONS(4216), - [sym_nil] = ACTIONS(4216), - [anon_sym_if] = ACTIONS(4216), - [anon_sym_DOLLARif] = ACTIONS(4216), - [anon_sym_match] = ACTIONS(4216), - [anon_sym_select] = ACTIONS(4216), - [anon_sym_lock] = ACTIONS(4216), - [anon_sym_rlock] = ACTIONS(4216), - [anon_sym_unsafe] = ACTIONS(4216), - [anon_sym_sql] = ACTIONS(4216), - [sym_int_literal] = ACTIONS(4216), - [sym_float_literal] = ACTIONS(4216), - [sym_rune_literal] = ACTIONS(4216), - [sym_pseudo_compile_time_identifier] = ACTIONS(4216), - [anon_sym_shared] = ACTIONS(4216), - [anon_sym_map_LBRACK] = ACTIONS(4216), - [anon_sym_chan] = ACTIONS(4216), - [anon_sym_thread] = ACTIONS(4216), - [anon_sym_atomic] = ACTIONS(4216), - [anon_sym_assert] = ACTIONS(4216), - [anon_sym_defer] = ACTIONS(4216), - [anon_sym_goto] = ACTIONS(4216), - [anon_sym_break] = ACTIONS(4216), - [anon_sym_continue] = ACTIONS(4216), - [anon_sym_return] = ACTIONS(4216), - [anon_sym_DOLLARfor] = ACTIONS(4216), - [anon_sym_for] = ACTIONS(4216), - [anon_sym_POUND] = ACTIONS(4216), - [anon_sym_asm] = ACTIONS(4216), - [anon_sym_AT_LBRACK] = ACTIONS(4216), - [sym___double_quote] = ACTIONS(4216), - [sym___single_quote] = ACTIONS(4216), - [sym___c_double_quote] = ACTIONS(4216), - [sym___c_single_quote] = ACTIONS(4216), - [sym___r_double_quote] = ACTIONS(4216), - [sym___r_single_quote] = ACTIONS(4216), + [sym_line_comment] = STATE(1514), + [sym_block_comment] = STATE(1514), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_nil] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_DOLLARif] = 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), }, [1515] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4220), - [anon_sym_const] = ACTIONS(4220), - [anon_sym_LPAREN] = ACTIONS(4220), - [anon_sym___global] = ACTIONS(4220), - [anon_sym_type] = ACTIONS(4220), - [anon_sym_fn] = ACTIONS(4220), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [anon_sym_struct] = ACTIONS(4220), - [anon_sym_union] = ACTIONS(4220), - [anon_sym_pub] = ACTIONS(4220), - [anon_sym_mut] = ACTIONS(4220), - [anon_sym_enum] = ACTIONS(4220), - [anon_sym_interface] = ACTIONS(4220), - [anon_sym_QMARK] = ACTIONS(4220), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_go] = ACTIONS(4220), - [anon_sym_spawn] = ACTIONS(4220), - [anon_sym_json_DOTdecode] = ACTIONS(4220), - [anon_sym_LBRACK2] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_CARET] = ACTIONS(4220), - [anon_sym_AMP] = ACTIONS(4220), - [anon_sym_LT_DASH] = ACTIONS(4220), - [sym_none] = ACTIONS(4220), - [sym_true] = ACTIONS(4220), - [sym_false] = ACTIONS(4220), - [sym_nil] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_DOLLARif] = ACTIONS(4220), - [anon_sym_match] = ACTIONS(4220), - [anon_sym_select] = ACTIONS(4220), - [anon_sym_lock] = ACTIONS(4220), - [anon_sym_rlock] = ACTIONS(4220), - [anon_sym_unsafe] = ACTIONS(4220), - [anon_sym_sql] = ACTIONS(4220), - [sym_int_literal] = ACTIONS(4220), - [sym_float_literal] = ACTIONS(4220), - [sym_rune_literal] = ACTIONS(4220), - [sym_pseudo_compile_time_identifier] = ACTIONS(4220), - [anon_sym_shared] = ACTIONS(4220), - [anon_sym_map_LBRACK] = ACTIONS(4220), - [anon_sym_chan] = ACTIONS(4220), - [anon_sym_thread] = ACTIONS(4220), - [anon_sym_atomic] = ACTIONS(4220), - [anon_sym_assert] = ACTIONS(4220), - [anon_sym_defer] = ACTIONS(4220), - [anon_sym_goto] = ACTIONS(4220), - [anon_sym_break] = ACTIONS(4220), - [anon_sym_continue] = ACTIONS(4220), - [anon_sym_return] = ACTIONS(4220), - [anon_sym_DOLLARfor] = ACTIONS(4220), - [anon_sym_for] = ACTIONS(4220), - [anon_sym_POUND] = ACTIONS(4220), - [anon_sym_asm] = ACTIONS(4220), - [anon_sym_AT_LBRACK] = ACTIONS(4220), - [sym___double_quote] = ACTIONS(4220), - [sym___single_quote] = ACTIONS(4220), - [sym___c_double_quote] = ACTIONS(4220), - [sym___c_single_quote] = ACTIONS(4220), - [sym___r_double_quote] = ACTIONS(4220), - [sym___r_single_quote] = ACTIONS(4220), + [sym_line_comment] = STATE(1515), + [sym_block_comment] = STATE(1515), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym___global] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_PIPE] = ACTIONS(3183), + [anon_sym_fn] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), + [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_QMARK] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_go] = ACTIONS(3183), + [anon_sym_spawn] = ACTIONS(3183), + [anon_sym_json_DOTdecode] = ACTIONS(3183), + [anon_sym_LBRACK2] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_LT_DASH] = ACTIONS(3183), + [sym_none] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_nil] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_DOLLARif] = ACTIONS(3183), + [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), }, [1516] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_LBRACE] = ACTIONS(4224), - [anon_sym_const] = ACTIONS(4224), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym___global] = ACTIONS(4224), - [anon_sym_type] = ACTIONS(4224), - [anon_sym_fn] = ACTIONS(4224), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_struct] = ACTIONS(4224), - [anon_sym_union] = ACTIONS(4224), - [anon_sym_pub] = ACTIONS(4224), - [anon_sym_mut] = ACTIONS(4224), - [anon_sym_enum] = ACTIONS(4224), - [anon_sym_interface] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_go] = ACTIONS(4224), - [anon_sym_spawn] = ACTIONS(4224), - [anon_sym_json_DOTdecode] = ACTIONS(4224), - [anon_sym_LBRACK2] = ACTIONS(4224), - [anon_sym_TILDE] = ACTIONS(4224), - [anon_sym_CARET] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_DASH] = ACTIONS(4224), - [sym_none] = ACTIONS(4224), - [sym_true] = ACTIONS(4224), - [sym_false] = ACTIONS(4224), - [sym_nil] = ACTIONS(4224), - [anon_sym_if] = ACTIONS(4224), - [anon_sym_DOLLARif] = ACTIONS(4224), - [anon_sym_match] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_lock] = ACTIONS(4224), - [anon_sym_rlock] = ACTIONS(4224), - [anon_sym_unsafe] = ACTIONS(4224), - [anon_sym_sql] = ACTIONS(4224), - [sym_int_literal] = ACTIONS(4224), - [sym_float_literal] = ACTIONS(4224), - [sym_rune_literal] = ACTIONS(4224), - [sym_pseudo_compile_time_identifier] = ACTIONS(4224), - [anon_sym_shared] = ACTIONS(4224), - [anon_sym_map_LBRACK] = ACTIONS(4224), - [anon_sym_chan] = ACTIONS(4224), - [anon_sym_thread] = ACTIONS(4224), - [anon_sym_atomic] = ACTIONS(4224), - [anon_sym_assert] = ACTIONS(4224), - [anon_sym_defer] = ACTIONS(4224), - [anon_sym_goto] = ACTIONS(4224), - [anon_sym_break] = ACTIONS(4224), - [anon_sym_continue] = ACTIONS(4224), - [anon_sym_return] = ACTIONS(4224), - [anon_sym_DOLLARfor] = ACTIONS(4224), - [anon_sym_for] = ACTIONS(4224), - [anon_sym_POUND] = ACTIONS(4224), - [anon_sym_asm] = ACTIONS(4224), - [anon_sym_AT_LBRACK] = ACTIONS(4224), - [sym___double_quote] = ACTIONS(4224), - [sym___single_quote] = ACTIONS(4224), - [sym___c_double_quote] = ACTIONS(4224), - [sym___c_single_quote] = ACTIONS(4224), - [sym___r_double_quote] = ACTIONS(4224), - [sym___r_single_quote] = ACTIONS(4224), + [sym_line_comment] = STATE(1516), + [sym_block_comment] = STATE(1516), + [sym_block] = STATE(1588), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(4182), + [anon_sym___global] = ACTIONS(4182), + [anon_sym_type] = ACTIONS(4182), + [anon_sym_fn] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_struct] = ACTIONS(4182), + [anon_sym_union] = ACTIONS(4182), + [anon_sym_pub] = ACTIONS(4182), + [anon_sym_mut] = ACTIONS(4182), + [anon_sym_enum] = ACTIONS(4182), + [anon_sym_interface] = ACTIONS(4182), + [anon_sym_QMARK] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_go] = ACTIONS(4182), + [anon_sym_spawn] = ACTIONS(4182), + [anon_sym_json_DOTdecode] = ACTIONS(4182), + [anon_sym_LBRACK2] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_CARET] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4182), + [anon_sym_LT_DASH] = ACTIONS(4182), + [sym_none] = ACTIONS(4182), + [sym_true] = ACTIONS(4182), + [sym_false] = ACTIONS(4182), + [sym_nil] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_DOLLARif] = ACTIONS(4182), + [anon_sym_match] = ACTIONS(4182), + [anon_sym_select] = ACTIONS(4182), + [anon_sym_lock] = ACTIONS(4182), + [anon_sym_rlock] = ACTIONS(4182), + [anon_sym_unsafe] = ACTIONS(4182), + [anon_sym_sql] = ACTIONS(4182), + [sym_int_literal] = ACTIONS(4182), + [sym_float_literal] = ACTIONS(4182), + [sym_rune_literal] = ACTIONS(4182), + [sym_pseudo_compile_time_identifier] = ACTIONS(4182), + [anon_sym_shared] = ACTIONS(4182), + [anon_sym_map_LBRACK] = ACTIONS(4182), + [anon_sym_chan] = ACTIONS(4182), + [anon_sym_thread] = ACTIONS(4182), + [anon_sym_atomic] = ACTIONS(4182), + [anon_sym_assert] = ACTIONS(4182), + [anon_sym_defer] = ACTIONS(4182), + [anon_sym_goto] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_DOLLARfor] = ACTIONS(4182), + [anon_sym_for] = ACTIONS(4182), + [anon_sym_POUND] = ACTIONS(4182), + [anon_sym_asm] = ACTIONS(4182), + [anon_sym_AT_LBRACK] = ACTIONS(4182), + [sym___double_quote] = ACTIONS(4182), + [sym___single_quote] = ACTIONS(4182), + [sym___c_double_quote] = ACTIONS(4182), + [sym___c_single_quote] = ACTIONS(4182), + [sym___r_double_quote] = ACTIONS(4182), + [sym___r_single_quote] = ACTIONS(4182), }, [1517] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4228), - [anon_sym_const] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(4228), - [anon_sym___global] = ACTIONS(4228), - [anon_sym_type] = ACTIONS(4228), - [anon_sym_fn] = ACTIONS(4228), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4228), - [anon_sym_struct] = ACTIONS(4228), - [anon_sym_union] = ACTIONS(4228), - [anon_sym_pub] = ACTIONS(4228), - [anon_sym_mut] = ACTIONS(4228), - [anon_sym_enum] = ACTIONS(4228), - [anon_sym_interface] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4228), - [anon_sym_go] = ACTIONS(4228), - [anon_sym_spawn] = ACTIONS(4228), - [anon_sym_json_DOTdecode] = ACTIONS(4228), - [anon_sym_LBRACK2] = ACTIONS(4228), - [anon_sym_TILDE] = ACTIONS(4228), - [anon_sym_CARET] = ACTIONS(4228), - [anon_sym_AMP] = ACTIONS(4228), - [anon_sym_LT_DASH] = ACTIONS(4228), - [sym_none] = ACTIONS(4228), - [sym_true] = ACTIONS(4228), - [sym_false] = ACTIONS(4228), - [sym_nil] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_DOLLARif] = ACTIONS(4228), - [anon_sym_match] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [anon_sym_lock] = ACTIONS(4228), - [anon_sym_rlock] = ACTIONS(4228), - [anon_sym_unsafe] = ACTIONS(4228), - [anon_sym_sql] = ACTIONS(4228), - [sym_int_literal] = ACTIONS(4228), - [sym_float_literal] = ACTIONS(4228), - [sym_rune_literal] = ACTIONS(4228), - [sym_pseudo_compile_time_identifier] = ACTIONS(4228), - [anon_sym_shared] = ACTIONS(4228), - [anon_sym_map_LBRACK] = ACTIONS(4228), - [anon_sym_chan] = ACTIONS(4228), - [anon_sym_thread] = ACTIONS(4228), - [anon_sym_atomic] = ACTIONS(4228), - [anon_sym_assert] = ACTIONS(4228), - [anon_sym_defer] = ACTIONS(4228), - [anon_sym_goto] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_DOLLARfor] = ACTIONS(4228), - [anon_sym_for] = ACTIONS(4228), - [anon_sym_POUND] = ACTIONS(4228), - [anon_sym_asm] = ACTIONS(4228), - [anon_sym_AT_LBRACK] = ACTIONS(4228), - [sym___double_quote] = ACTIONS(4228), - [sym___single_quote] = ACTIONS(4228), - [sym___c_double_quote] = ACTIONS(4228), - [sym___c_single_quote] = ACTIONS(4228), - [sym___r_double_quote] = ACTIONS(4228), - [sym___r_single_quote] = ACTIONS(4228), + [sym_line_comment] = STATE(1517), + [sym_block_comment] = STATE(1517), + [sym_block] = STATE(1569), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4186), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym___global] = ACTIONS(4186), + [anon_sym_type] = ACTIONS(4186), + [anon_sym_fn] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4186), + [anon_sym_DASH] = ACTIONS(4186), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_struct] = ACTIONS(4186), + [anon_sym_union] = ACTIONS(4186), + [anon_sym_pub] = ACTIONS(4186), + [anon_sym_mut] = ACTIONS(4186), + [anon_sym_enum] = ACTIONS(4186), + [anon_sym_interface] = ACTIONS(4186), + [anon_sym_QMARK] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(4186), + [anon_sym_go] = ACTIONS(4186), + [anon_sym_spawn] = ACTIONS(4186), + [anon_sym_json_DOTdecode] = ACTIONS(4186), + [anon_sym_LBRACK2] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_CARET] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4186), + [anon_sym_LT_DASH] = ACTIONS(4186), + [sym_none] = ACTIONS(4186), + [sym_true] = ACTIONS(4186), + [sym_false] = ACTIONS(4186), + [sym_nil] = ACTIONS(4186), + [anon_sym_if] = ACTIONS(4186), + [anon_sym_DOLLARif] = ACTIONS(4186), + [anon_sym_match] = ACTIONS(4186), + [anon_sym_select] = ACTIONS(4186), + [anon_sym_lock] = ACTIONS(4186), + [anon_sym_rlock] = ACTIONS(4186), + [anon_sym_unsafe] = ACTIONS(4186), + [anon_sym_sql] = ACTIONS(4186), + [sym_int_literal] = ACTIONS(4186), + [sym_float_literal] = ACTIONS(4186), + [sym_rune_literal] = ACTIONS(4186), + [sym_pseudo_compile_time_identifier] = ACTIONS(4186), + [anon_sym_shared] = ACTIONS(4186), + [anon_sym_map_LBRACK] = ACTIONS(4186), + [anon_sym_chan] = ACTIONS(4186), + [anon_sym_thread] = ACTIONS(4186), + [anon_sym_atomic] = ACTIONS(4186), + [anon_sym_assert] = ACTIONS(4186), + [anon_sym_defer] = ACTIONS(4186), + [anon_sym_goto] = ACTIONS(4186), + [anon_sym_break] = ACTIONS(4186), + [anon_sym_continue] = ACTIONS(4186), + [anon_sym_return] = ACTIONS(4186), + [anon_sym_DOLLARfor] = ACTIONS(4186), + [anon_sym_for] = ACTIONS(4186), + [anon_sym_POUND] = ACTIONS(4186), + [anon_sym_asm] = ACTIONS(4186), + [anon_sym_AT_LBRACK] = ACTIONS(4186), + [sym___double_quote] = ACTIONS(4186), + [sym___single_quote] = ACTIONS(4186), + [sym___c_double_quote] = ACTIONS(4186), + [sym___c_single_quote] = ACTIONS(4186), + [sym___r_double_quote] = ACTIONS(4186), + [sym___r_single_quote] = ACTIONS(4186), }, [1518] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_LBRACE] = ACTIONS(4232), - [anon_sym_const] = ACTIONS(4232), - [anon_sym_LPAREN] = ACTIONS(4232), - [anon_sym___global] = ACTIONS(4232), - [anon_sym_type] = ACTIONS(4232), - [anon_sym_fn] = ACTIONS(4232), - [anon_sym_PLUS] = ACTIONS(4232), - [anon_sym_DASH] = ACTIONS(4232), - [anon_sym_STAR] = ACTIONS(4232), - [anon_sym_struct] = ACTIONS(4232), - [anon_sym_union] = ACTIONS(4232), - [anon_sym_pub] = ACTIONS(4232), - [anon_sym_mut] = ACTIONS(4232), - [anon_sym_enum] = ACTIONS(4232), - [anon_sym_interface] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(4232), - [anon_sym_BANG] = ACTIONS(4232), - [anon_sym_go] = ACTIONS(4232), - [anon_sym_spawn] = ACTIONS(4232), - [anon_sym_json_DOTdecode] = ACTIONS(4232), - [anon_sym_LBRACK2] = ACTIONS(4232), - [anon_sym_TILDE] = ACTIONS(4232), - [anon_sym_CARET] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4232), - [anon_sym_LT_DASH] = ACTIONS(4232), - [sym_none] = ACTIONS(4232), - [sym_true] = ACTIONS(4232), - [sym_false] = ACTIONS(4232), - [sym_nil] = ACTIONS(4232), - [anon_sym_if] = ACTIONS(4232), - [anon_sym_DOLLARif] = ACTIONS(4232), - [anon_sym_match] = ACTIONS(4232), - [anon_sym_select] = ACTIONS(4232), - [anon_sym_lock] = ACTIONS(4232), - [anon_sym_rlock] = ACTIONS(4232), - [anon_sym_unsafe] = ACTIONS(4232), - [anon_sym_sql] = ACTIONS(4232), - [sym_int_literal] = ACTIONS(4232), - [sym_float_literal] = ACTIONS(4232), - [sym_rune_literal] = ACTIONS(4232), - [sym_pseudo_compile_time_identifier] = ACTIONS(4232), - [anon_sym_shared] = ACTIONS(4232), - [anon_sym_map_LBRACK] = ACTIONS(4232), - [anon_sym_chan] = ACTIONS(4232), - [anon_sym_thread] = ACTIONS(4232), - [anon_sym_atomic] = ACTIONS(4232), - [anon_sym_assert] = ACTIONS(4232), - [anon_sym_defer] = ACTIONS(4232), - [anon_sym_goto] = ACTIONS(4232), - [anon_sym_break] = ACTIONS(4232), - [anon_sym_continue] = ACTIONS(4232), - [anon_sym_return] = ACTIONS(4232), - [anon_sym_DOLLARfor] = ACTIONS(4232), - [anon_sym_for] = ACTIONS(4232), - [anon_sym_POUND] = ACTIONS(4232), - [anon_sym_asm] = ACTIONS(4232), - [anon_sym_AT_LBRACK] = ACTIONS(4232), - [sym___double_quote] = ACTIONS(4232), - [sym___single_quote] = ACTIONS(4232), - [sym___c_double_quote] = ACTIONS(4232), - [sym___c_single_quote] = ACTIONS(4232), - [sym___r_double_quote] = ACTIONS(4232), - [sym___r_single_quote] = ACTIONS(4232), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4190), + [anon_sym_const] = ACTIONS(4190), + [anon_sym_LPAREN] = ACTIONS(4190), + [anon_sym___global] = ACTIONS(4190), + [anon_sym_type] = ACTIONS(4190), + [anon_sym_fn] = ACTIONS(4190), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_struct] = ACTIONS(4190), + [anon_sym_union] = ACTIONS(4190), + [anon_sym_pub] = ACTIONS(4190), + [anon_sym_mut] = ACTIONS(4190), + [anon_sym_enum] = ACTIONS(4190), + [anon_sym_interface] = ACTIONS(4190), + [anon_sym_QMARK] = ACTIONS(4190), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_go] = ACTIONS(4190), + [anon_sym_spawn] = ACTIONS(4190), + [anon_sym_json_DOTdecode] = ACTIONS(4190), + [anon_sym_LBRACK2] = ACTIONS(4190), + [anon_sym_TILDE] = ACTIONS(4190), + [anon_sym_CARET] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4190), + [anon_sym_LT_DASH] = ACTIONS(4190), + [sym_none] = ACTIONS(4190), + [sym_true] = ACTIONS(4190), + [sym_false] = ACTIONS(4190), + [sym_nil] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_DOLLARif] = ACTIONS(4190), + [anon_sym_match] = ACTIONS(4190), + [anon_sym_select] = ACTIONS(4190), + [anon_sym_lock] = ACTIONS(4190), + [anon_sym_rlock] = ACTIONS(4190), + [anon_sym_unsafe] = ACTIONS(4190), + [anon_sym_sql] = ACTIONS(4190), + [sym_int_literal] = ACTIONS(4190), + [sym_float_literal] = ACTIONS(4190), + [sym_rune_literal] = ACTIONS(4190), + [sym_pseudo_compile_time_identifier] = ACTIONS(4190), + [anon_sym_shared] = ACTIONS(4190), + [anon_sym_map_LBRACK] = ACTIONS(4190), + [anon_sym_chan] = ACTIONS(4190), + [anon_sym_thread] = ACTIONS(4190), + [anon_sym_atomic] = ACTIONS(4190), + [anon_sym_assert] = ACTIONS(4190), + [anon_sym_defer] = ACTIONS(4190), + [anon_sym_goto] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_DOLLARfor] = ACTIONS(4190), + [anon_sym_for] = ACTIONS(4190), + [anon_sym_POUND] = ACTIONS(4190), + [anon_sym_asm] = ACTIONS(4190), + [anon_sym_AT_LBRACK] = ACTIONS(4190), + [sym___double_quote] = ACTIONS(4190), + [sym___single_quote] = ACTIONS(4190), + [sym___c_double_quote] = ACTIONS(4190), + [sym___c_single_quote] = ACTIONS(4190), + [sym___r_double_quote] = ACTIONS(4190), + [sym___r_single_quote] = ACTIONS(4190), }, [1519] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4236), - [anon_sym_const] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4236), - [anon_sym___global] = ACTIONS(4236), - [anon_sym_type] = ACTIONS(4236), - [anon_sym_fn] = ACTIONS(4236), - [anon_sym_PLUS] = ACTIONS(4236), - [anon_sym_DASH] = ACTIONS(4236), - [anon_sym_STAR] = ACTIONS(4236), - [anon_sym_struct] = ACTIONS(4236), - [anon_sym_union] = ACTIONS(4236), - [anon_sym_pub] = ACTIONS(4236), - [anon_sym_mut] = ACTIONS(4236), - [anon_sym_enum] = ACTIONS(4236), - [anon_sym_interface] = ACTIONS(4236), - [anon_sym_QMARK] = ACTIONS(4236), - [anon_sym_BANG] = ACTIONS(4236), - [anon_sym_go] = ACTIONS(4236), - [anon_sym_spawn] = ACTIONS(4236), - [anon_sym_json_DOTdecode] = ACTIONS(4236), - [anon_sym_LBRACK2] = ACTIONS(4236), - [anon_sym_TILDE] = ACTIONS(4236), - [anon_sym_CARET] = ACTIONS(4236), - [anon_sym_AMP] = ACTIONS(4236), - [anon_sym_LT_DASH] = ACTIONS(4236), - [sym_none] = ACTIONS(4236), - [sym_true] = ACTIONS(4236), - [sym_false] = ACTIONS(4236), - [sym_nil] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_DOLLARif] = ACTIONS(4236), - [anon_sym_match] = ACTIONS(4236), - [anon_sym_select] = ACTIONS(4236), - [anon_sym_lock] = ACTIONS(4236), - [anon_sym_rlock] = ACTIONS(4236), - [anon_sym_unsafe] = ACTIONS(4236), - [anon_sym_sql] = ACTIONS(4236), - [sym_int_literal] = ACTIONS(4236), - [sym_float_literal] = ACTIONS(4236), - [sym_rune_literal] = ACTIONS(4236), - [sym_pseudo_compile_time_identifier] = ACTIONS(4236), - [anon_sym_shared] = ACTIONS(4236), - [anon_sym_map_LBRACK] = ACTIONS(4236), - [anon_sym_chan] = ACTIONS(4236), - [anon_sym_thread] = ACTIONS(4236), - [anon_sym_atomic] = ACTIONS(4236), - [anon_sym_assert] = ACTIONS(4236), - [anon_sym_defer] = ACTIONS(4236), - [anon_sym_goto] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_DOLLARfor] = ACTIONS(4236), - [anon_sym_for] = ACTIONS(4236), - [anon_sym_POUND] = ACTIONS(4236), - [anon_sym_asm] = ACTIONS(4236), - [anon_sym_AT_LBRACK] = ACTIONS(4236), - [sym___double_quote] = ACTIONS(4236), - [sym___single_quote] = ACTIONS(4236), - [sym___c_double_quote] = ACTIONS(4236), - [sym___c_single_quote] = ACTIONS(4236), - [sym___r_double_quote] = ACTIONS(4236), - [sym___r_single_quote] = ACTIONS(4236), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_LBRACE] = ACTIONS(4194), + [anon_sym_const] = ACTIONS(4194), + [anon_sym_LPAREN] = ACTIONS(4194), + [anon_sym___global] = ACTIONS(4194), + [anon_sym_type] = ACTIONS(4194), + [anon_sym_fn] = ACTIONS(4194), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_struct] = ACTIONS(4194), + [anon_sym_union] = ACTIONS(4194), + [anon_sym_pub] = ACTIONS(4194), + [anon_sym_mut] = ACTIONS(4194), + [anon_sym_enum] = ACTIONS(4194), + [anon_sym_interface] = ACTIONS(4194), + [anon_sym_QMARK] = ACTIONS(4194), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_go] = ACTIONS(4194), + [anon_sym_spawn] = ACTIONS(4194), + [anon_sym_json_DOTdecode] = ACTIONS(4194), + [anon_sym_LBRACK2] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_CARET] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4194), + [anon_sym_LT_DASH] = ACTIONS(4194), + [sym_none] = ACTIONS(4194), + [sym_true] = ACTIONS(4194), + [sym_false] = ACTIONS(4194), + [sym_nil] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_DOLLARif] = ACTIONS(4194), + [anon_sym_match] = ACTIONS(4194), + [anon_sym_select] = ACTIONS(4194), + [anon_sym_lock] = ACTIONS(4194), + [anon_sym_rlock] = ACTIONS(4194), + [anon_sym_unsafe] = ACTIONS(4194), + [anon_sym_sql] = ACTIONS(4194), + [sym_int_literal] = ACTIONS(4194), + [sym_float_literal] = ACTIONS(4194), + [sym_rune_literal] = ACTIONS(4194), + [sym_pseudo_compile_time_identifier] = ACTIONS(4194), + [anon_sym_shared] = ACTIONS(4194), + [anon_sym_map_LBRACK] = ACTIONS(4194), + [anon_sym_chan] = ACTIONS(4194), + [anon_sym_thread] = ACTIONS(4194), + [anon_sym_atomic] = ACTIONS(4194), + [anon_sym_assert] = ACTIONS(4194), + [anon_sym_defer] = ACTIONS(4194), + [anon_sym_goto] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_DOLLARfor] = ACTIONS(4194), + [anon_sym_for] = ACTIONS(4194), + [anon_sym_POUND] = ACTIONS(4194), + [anon_sym_asm] = ACTIONS(4194), + [anon_sym_AT_LBRACK] = ACTIONS(4194), + [sym___double_quote] = ACTIONS(4194), + [sym___single_quote] = ACTIONS(4194), + [sym___c_double_quote] = ACTIONS(4194), + [sym___c_single_quote] = ACTIONS(4194), + [sym___r_double_quote] = ACTIONS(4194), + [sym___r_single_quote] = ACTIONS(4194), }, [1520] = { - [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), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4240), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_const] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(4240), - [anon_sym___global] = ACTIONS(4240), - [anon_sym_type] = ACTIONS(4240), - [anon_sym_fn] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4240), - [anon_sym_DASH] = ACTIONS(4240), - [anon_sym_STAR] = ACTIONS(4240), - [anon_sym_struct] = ACTIONS(4240), - [anon_sym_union] = ACTIONS(4240), - [anon_sym_pub] = ACTIONS(4240), - [anon_sym_mut] = ACTIONS(4240), - [anon_sym_enum] = ACTIONS(4240), - [anon_sym_interface] = ACTIONS(4240), - [anon_sym_QMARK] = ACTIONS(4240), - [anon_sym_BANG] = ACTIONS(4240), - [anon_sym_go] = ACTIONS(4240), - [anon_sym_spawn] = ACTIONS(4240), - [anon_sym_json_DOTdecode] = ACTIONS(4240), - [anon_sym_LBRACK2] = ACTIONS(4240), - [anon_sym_TILDE] = ACTIONS(4240), - [anon_sym_CARET] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_LT_DASH] = ACTIONS(4240), - [sym_none] = ACTIONS(4240), - [sym_true] = ACTIONS(4240), - [sym_false] = ACTIONS(4240), - [sym_nil] = ACTIONS(4240), - [anon_sym_if] = ACTIONS(4240), - [anon_sym_DOLLARif] = ACTIONS(4240), - [anon_sym_match] = ACTIONS(4240), - [anon_sym_select] = ACTIONS(4240), - [anon_sym_lock] = ACTIONS(4240), - [anon_sym_rlock] = ACTIONS(4240), - [anon_sym_unsafe] = ACTIONS(4240), - [anon_sym_sql] = ACTIONS(4240), - [sym_int_literal] = ACTIONS(4240), - [sym_float_literal] = ACTIONS(4240), - [sym_rune_literal] = ACTIONS(4240), - [sym_pseudo_compile_time_identifier] = ACTIONS(4240), - [anon_sym_shared] = ACTIONS(4240), - [anon_sym_map_LBRACK] = ACTIONS(4240), - [anon_sym_chan] = ACTIONS(4240), - [anon_sym_thread] = ACTIONS(4240), - [anon_sym_atomic] = ACTIONS(4240), - [anon_sym_assert] = ACTIONS(4240), - [anon_sym_defer] = ACTIONS(4240), - [anon_sym_goto] = ACTIONS(4240), - [anon_sym_break] = ACTIONS(4240), - [anon_sym_continue] = ACTIONS(4240), - [anon_sym_return] = ACTIONS(4240), - [anon_sym_DOLLARfor] = ACTIONS(4240), - [anon_sym_for] = ACTIONS(4240), - [anon_sym_POUND] = ACTIONS(4240), - [anon_sym_asm] = ACTIONS(4240), - [anon_sym_AT_LBRACK] = ACTIONS(4240), - [sym___double_quote] = ACTIONS(4240), - [sym___single_quote] = ACTIONS(4240), - [sym___c_double_quote] = ACTIONS(4240), - [sym___c_single_quote] = ACTIONS(4240), - [sym___r_double_quote] = ACTIONS(4240), - [sym___r_single_quote] = ACTIONS(4240), + [sym_line_comment] = STATE(1520), + [sym_block_comment] = STATE(1520), + [ts_builtin_sym_end] = ACTIONS(4196), + [sym_identifier] = ACTIONS(4198), + [anon_sym_LF] = ACTIONS(4198), + [anon_sym_CR] = ACTIONS(4198), + [anon_sym_CR_LF] = ACTIONS(4198), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [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] = { - [ts_builtin_sym_end] = ACTIONS(4242), - [sym_identifier] = ACTIONS(4244), + [sym_line_comment] = STATE(1521), + [sym_block_comment] = STATE(1521), + [ts_builtin_sym_end] = ACTIONS(4200), + [sym_identifier] = ACTIONS(4202), + [anon_sym_LF] = ACTIONS(4202), + [anon_sym_CR] = ACTIONS(4202), + [anon_sym_CR_LF] = ACTIONS(4202), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_const] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym___global] = ACTIONS(4202), + [anon_sym_type] = ACTIONS(4202), + [anon_sym_fn] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_struct] = ACTIONS(4202), + [anon_sym_union] = ACTIONS(4202), + [anon_sym_pub] = ACTIONS(4202), + [anon_sym_mut] = ACTIONS(4202), + [anon_sym_enum] = ACTIONS(4202), + [anon_sym_interface] = ACTIONS(4202), + [anon_sym_QMARK] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_go] = ACTIONS(4202), + [anon_sym_spawn] = ACTIONS(4202), + [anon_sym_json_DOTdecode] = ACTIONS(4202), + [anon_sym_LBRACK2] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_CARET] = ACTIONS(4202), + [anon_sym_AMP] = ACTIONS(4202), + [anon_sym_LT_DASH] = ACTIONS(4202), + [sym_none] = ACTIONS(4202), + [sym_true] = ACTIONS(4202), + [sym_false] = ACTIONS(4202), + [sym_nil] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_DOLLARif] = ACTIONS(4202), + [anon_sym_match] = ACTIONS(4202), + [anon_sym_select] = ACTIONS(4202), + [anon_sym_lock] = ACTIONS(4202), + [anon_sym_rlock] = ACTIONS(4202), + [anon_sym_unsafe] = ACTIONS(4202), + [anon_sym_sql] = ACTIONS(4202), + [sym_int_literal] = ACTIONS(4202), + [sym_float_literal] = ACTIONS(4202), + [sym_rune_literal] = ACTIONS(4202), + [sym_pseudo_compile_time_identifier] = ACTIONS(4202), + [anon_sym_shared] = ACTIONS(4202), + [anon_sym_map_LBRACK] = ACTIONS(4202), + [anon_sym_chan] = ACTIONS(4202), + [anon_sym_thread] = ACTIONS(4202), + [anon_sym_atomic] = ACTIONS(4202), + [anon_sym_assert] = ACTIONS(4202), + [anon_sym_defer] = ACTIONS(4202), + [anon_sym_goto] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_DOLLARfor] = ACTIONS(4202), + [anon_sym_for] = ACTIONS(4202), + [anon_sym_POUND] = ACTIONS(4202), + [anon_sym_asm] = ACTIONS(4202), + [anon_sym_AT_LBRACK] = ACTIONS(4202), + [sym___double_quote] = ACTIONS(4202), + [sym___single_quote] = ACTIONS(4202), + [sym___c_double_quote] = ACTIONS(4202), + [sym___c_single_quote] = ACTIONS(4202), + [sym___r_double_quote] = ACTIONS(4202), + [sym___r_single_quote] = ACTIONS(4202), + }, + [1522] = { + [sym_line_comment] = STATE(1522), + [sym_block_comment] = STATE(1522), + [ts_builtin_sym_end] = ACTIONS(4204), + [sym_identifier] = ACTIONS(4206), + [anon_sym_LF] = ACTIONS(4206), + [anon_sym_CR] = ACTIONS(4206), + [anon_sym_CR_LF] = ACTIONS(4206), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4206), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_const] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym___global] = ACTIONS(4206), + [anon_sym_type] = ACTIONS(4206), + [anon_sym_fn] = ACTIONS(4206), + [anon_sym_PLUS] = ACTIONS(4206), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_STAR] = ACTIONS(4206), + [anon_sym_struct] = ACTIONS(4206), + [anon_sym_union] = ACTIONS(4206), + [anon_sym_pub] = ACTIONS(4206), + [anon_sym_mut] = ACTIONS(4206), + [anon_sym_enum] = ACTIONS(4206), + [anon_sym_interface] = ACTIONS(4206), + [anon_sym_QMARK] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4206), + [anon_sym_go] = ACTIONS(4206), + [anon_sym_spawn] = ACTIONS(4206), + [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(4206), + [sym_true] = ACTIONS(4206), + [sym_false] = ACTIONS(4206), + [sym_nil] = ACTIONS(4206), + [anon_sym_if] = ACTIONS(4206), + [anon_sym_DOLLARif] = ACTIONS(4206), + [anon_sym_match] = ACTIONS(4206), + [anon_sym_select] = ACTIONS(4206), + [anon_sym_lock] = ACTIONS(4206), + [anon_sym_rlock] = ACTIONS(4206), + [anon_sym_unsafe] = ACTIONS(4206), + [anon_sym_sql] = ACTIONS(4206), + [sym_int_literal] = ACTIONS(4206), + [sym_float_literal] = ACTIONS(4206), + [sym_rune_literal] = ACTIONS(4206), + [sym_pseudo_compile_time_identifier] = ACTIONS(4206), + [anon_sym_shared] = ACTIONS(4206), + [anon_sym_map_LBRACK] = ACTIONS(4206), + [anon_sym_chan] = ACTIONS(4206), + [anon_sym_thread] = ACTIONS(4206), + [anon_sym_atomic] = ACTIONS(4206), + [anon_sym_assert] = ACTIONS(4206), + [anon_sym_defer] = ACTIONS(4206), + [anon_sym_goto] = ACTIONS(4206), + [anon_sym_break] = ACTIONS(4206), + [anon_sym_continue] = ACTIONS(4206), + [anon_sym_return] = ACTIONS(4206), + [anon_sym_DOLLARfor] = ACTIONS(4206), + [anon_sym_for] = ACTIONS(4206), + [anon_sym_POUND] = ACTIONS(4206), + [anon_sym_asm] = ACTIONS(4206), + [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), + }, + [1523] = { + [sym_line_comment] = STATE(1523), + [sym_block_comment] = STATE(1523), + [ts_builtin_sym_end] = ACTIONS(4208), + [sym_identifier] = ACTIONS(4210), + [anon_sym_LF] = ACTIONS(4210), + [anon_sym_CR] = ACTIONS(4210), + [anon_sym_CR_LF] = ACTIONS(4210), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_const] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(4210), + [anon_sym___global] = ACTIONS(4210), + [anon_sym_type] = ACTIONS(4210), + [anon_sym_fn] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_struct] = ACTIONS(4210), + [anon_sym_union] = ACTIONS(4210), + [anon_sym_pub] = ACTIONS(4210), + [anon_sym_mut] = ACTIONS(4210), + [anon_sym_enum] = ACTIONS(4210), + [anon_sym_interface] = ACTIONS(4210), + [anon_sym_QMARK] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_go] = ACTIONS(4210), + [anon_sym_spawn] = ACTIONS(4210), + [anon_sym_json_DOTdecode] = ACTIONS(4210), + [anon_sym_LBRACK2] = ACTIONS(4210), + [anon_sym_TILDE] = ACTIONS(4210), + [anon_sym_CARET] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4210), + [anon_sym_LT_DASH] = ACTIONS(4210), + [sym_none] = ACTIONS(4210), + [sym_true] = ACTIONS(4210), + [sym_false] = ACTIONS(4210), + [sym_nil] = ACTIONS(4210), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_DOLLARif] = ACTIONS(4210), + [anon_sym_match] = ACTIONS(4210), + [anon_sym_select] = ACTIONS(4210), + [anon_sym_lock] = ACTIONS(4210), + [anon_sym_rlock] = ACTIONS(4210), + [anon_sym_unsafe] = ACTIONS(4210), + [anon_sym_sql] = ACTIONS(4210), + [sym_int_literal] = ACTIONS(4210), + [sym_float_literal] = ACTIONS(4210), + [sym_rune_literal] = ACTIONS(4210), + [sym_pseudo_compile_time_identifier] = ACTIONS(4210), + [anon_sym_shared] = ACTIONS(4210), + [anon_sym_map_LBRACK] = ACTIONS(4210), + [anon_sym_chan] = ACTIONS(4210), + [anon_sym_thread] = ACTIONS(4210), + [anon_sym_atomic] = ACTIONS(4210), + [anon_sym_assert] = ACTIONS(4210), + [anon_sym_defer] = ACTIONS(4210), + [anon_sym_goto] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_DOLLARfor] = ACTIONS(4210), + [anon_sym_for] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4210), + [anon_sym_asm] = ACTIONS(4210), + [anon_sym_AT_LBRACK] = ACTIONS(4210), + [sym___double_quote] = ACTIONS(4210), + [sym___single_quote] = ACTIONS(4210), + [sym___c_double_quote] = ACTIONS(4210), + [sym___c_single_quote] = ACTIONS(4210), + [sym___r_double_quote] = ACTIONS(4210), + [sym___r_single_quote] = ACTIONS(4210), + }, + [1524] = { + [sym_line_comment] = STATE(1524), + [sym_block_comment] = STATE(1524), + [ts_builtin_sym_end] = ACTIONS(4212), + [sym_identifier] = ACTIONS(4214), + [anon_sym_LF] = ACTIONS(4214), + [anon_sym_CR] = ACTIONS(4214), + [anon_sym_CR_LF] = ACTIONS(4214), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_const] = ACTIONS(4214), + [anon_sym_LPAREN] = ACTIONS(4214), + [anon_sym___global] = ACTIONS(4214), + [anon_sym_type] = ACTIONS(4214), + [anon_sym_fn] = ACTIONS(4214), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_struct] = ACTIONS(4214), + [anon_sym_union] = ACTIONS(4214), + [anon_sym_pub] = ACTIONS(4214), + [anon_sym_mut] = ACTIONS(4214), + [anon_sym_enum] = ACTIONS(4214), + [anon_sym_interface] = ACTIONS(4214), + [anon_sym_QMARK] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_go] = ACTIONS(4214), + [anon_sym_spawn] = ACTIONS(4214), + [anon_sym_json_DOTdecode] = ACTIONS(4214), + [anon_sym_LBRACK2] = ACTIONS(4214), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_CARET] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4214), + [anon_sym_LT_DASH] = ACTIONS(4214), + [sym_none] = ACTIONS(4214), + [sym_true] = ACTIONS(4214), + [sym_false] = ACTIONS(4214), + [sym_nil] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_DOLLARif] = ACTIONS(4214), + [anon_sym_match] = ACTIONS(4214), + [anon_sym_select] = ACTIONS(4214), + [anon_sym_lock] = ACTIONS(4214), + [anon_sym_rlock] = ACTIONS(4214), + [anon_sym_unsafe] = ACTIONS(4214), + [anon_sym_sql] = ACTIONS(4214), + [sym_int_literal] = ACTIONS(4214), + [sym_float_literal] = ACTIONS(4214), + [sym_rune_literal] = ACTIONS(4214), + [sym_pseudo_compile_time_identifier] = ACTIONS(4214), + [anon_sym_shared] = ACTIONS(4214), + [anon_sym_map_LBRACK] = ACTIONS(4214), + [anon_sym_chan] = ACTIONS(4214), + [anon_sym_thread] = ACTIONS(4214), + [anon_sym_atomic] = ACTIONS(4214), + [anon_sym_assert] = ACTIONS(4214), + [anon_sym_defer] = ACTIONS(4214), + [anon_sym_goto] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_DOLLARfor] = ACTIONS(4214), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_POUND] = ACTIONS(4214), + [anon_sym_asm] = ACTIONS(4214), + [anon_sym_AT_LBRACK] = ACTIONS(4214), + [sym___double_quote] = ACTIONS(4214), + [sym___single_quote] = ACTIONS(4214), + [sym___c_double_quote] = ACTIONS(4214), + [sym___c_single_quote] = ACTIONS(4214), + [sym___r_double_quote] = ACTIONS(4214), + [sym___r_single_quote] = ACTIONS(4214), + }, + [1525] = { + [sym_line_comment] = STATE(1525), + [sym_block_comment] = STATE(1525), + [ts_builtin_sym_end] = ACTIONS(4216), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LF] = ACTIONS(4218), + [anon_sym_CR] = ACTIONS(4218), + [anon_sym_CR_LF] = ACTIONS(4218), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4218), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_const] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym___global] = ACTIONS(4218), + [anon_sym_type] = ACTIONS(4218), + [anon_sym_fn] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4218), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4218), + [anon_sym_struct] = ACTIONS(4218), + [anon_sym_union] = ACTIONS(4218), + [anon_sym_pub] = ACTIONS(4218), + [anon_sym_mut] = ACTIONS(4218), + [anon_sym_enum] = ACTIONS(4218), + [anon_sym_interface] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4218), + [anon_sym_go] = ACTIONS(4218), + [anon_sym_spawn] = ACTIONS(4218), + [anon_sym_json_DOTdecode] = ACTIONS(4218), + [anon_sym_LBRACK2] = ACTIONS(4218), + [anon_sym_TILDE] = ACTIONS(4218), + [anon_sym_CARET] = ACTIONS(4218), + [anon_sym_AMP] = ACTIONS(4218), + [anon_sym_LT_DASH] = ACTIONS(4218), + [sym_none] = ACTIONS(4218), + [sym_true] = ACTIONS(4218), + [sym_false] = ACTIONS(4218), + [sym_nil] = ACTIONS(4218), + [anon_sym_if] = ACTIONS(4218), + [anon_sym_DOLLARif] = ACTIONS(4218), + [anon_sym_match] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_lock] = ACTIONS(4218), + [anon_sym_rlock] = ACTIONS(4218), + [anon_sym_unsafe] = ACTIONS(4218), + [anon_sym_sql] = ACTIONS(4218), + [sym_int_literal] = ACTIONS(4218), + [sym_float_literal] = ACTIONS(4218), + [sym_rune_literal] = ACTIONS(4218), + [sym_pseudo_compile_time_identifier] = ACTIONS(4218), + [anon_sym_shared] = ACTIONS(4218), + [anon_sym_map_LBRACK] = ACTIONS(4218), + [anon_sym_chan] = ACTIONS(4218), + [anon_sym_thread] = ACTIONS(4218), + [anon_sym_atomic] = ACTIONS(4218), + [anon_sym_assert] = ACTIONS(4218), + [anon_sym_defer] = ACTIONS(4218), + [anon_sym_goto] = ACTIONS(4218), + [anon_sym_break] = ACTIONS(4218), + [anon_sym_continue] = ACTIONS(4218), + [anon_sym_return] = ACTIONS(4218), + [anon_sym_DOLLARfor] = ACTIONS(4218), + [anon_sym_for] = ACTIONS(4218), + [anon_sym_POUND] = ACTIONS(4218), + [anon_sym_asm] = ACTIONS(4218), + [anon_sym_AT_LBRACK] = ACTIONS(4218), + [sym___double_quote] = ACTIONS(4218), + [sym___single_quote] = ACTIONS(4218), + [sym___c_double_quote] = ACTIONS(4218), + [sym___c_single_quote] = ACTIONS(4218), + [sym___r_double_quote] = ACTIONS(4218), + [sym___r_single_quote] = ACTIONS(4218), + }, + [1526] = { + [sym_line_comment] = STATE(1526), + [sym_block_comment] = STATE(1526), + [ts_builtin_sym_end] = ACTIONS(4220), + [sym_identifier] = ACTIONS(4222), + [anon_sym_LF] = ACTIONS(4222), + [anon_sym_CR] = ACTIONS(4222), + [anon_sym_CR_LF] = ACTIONS(4222), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_const] = ACTIONS(4222), + [anon_sym_LPAREN] = ACTIONS(4222), + [anon_sym___global] = ACTIONS(4222), + [anon_sym_type] = ACTIONS(4222), + [anon_sym_fn] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [anon_sym_struct] = ACTIONS(4222), + [anon_sym_union] = ACTIONS(4222), + [anon_sym_pub] = ACTIONS(4222), + [anon_sym_mut] = ACTIONS(4222), + [anon_sym_enum] = ACTIONS(4222), + [anon_sym_interface] = ACTIONS(4222), + [anon_sym_QMARK] = ACTIONS(4222), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_go] = ACTIONS(4222), + [anon_sym_spawn] = ACTIONS(4222), + [anon_sym_json_DOTdecode] = ACTIONS(4222), + [anon_sym_LBRACK2] = ACTIONS(4222), + [anon_sym_TILDE] = ACTIONS(4222), + [anon_sym_CARET] = ACTIONS(4222), + [anon_sym_AMP] = ACTIONS(4222), + [anon_sym_LT_DASH] = ACTIONS(4222), + [sym_none] = ACTIONS(4222), + [sym_true] = ACTIONS(4222), + [sym_false] = ACTIONS(4222), + [sym_nil] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_DOLLARif] = ACTIONS(4222), + [anon_sym_match] = ACTIONS(4222), + [anon_sym_select] = ACTIONS(4222), + [anon_sym_lock] = ACTIONS(4222), + [anon_sym_rlock] = ACTIONS(4222), + [anon_sym_unsafe] = ACTIONS(4222), + [anon_sym_sql] = ACTIONS(4222), + [sym_int_literal] = ACTIONS(4222), + [sym_float_literal] = ACTIONS(4222), + [sym_rune_literal] = ACTIONS(4222), + [sym_pseudo_compile_time_identifier] = ACTIONS(4222), + [anon_sym_shared] = ACTIONS(4222), + [anon_sym_map_LBRACK] = ACTIONS(4222), + [anon_sym_chan] = ACTIONS(4222), + [anon_sym_thread] = ACTIONS(4222), + [anon_sym_atomic] = ACTIONS(4222), + [anon_sym_assert] = ACTIONS(4222), + [anon_sym_defer] = ACTIONS(4222), + [anon_sym_goto] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_DOLLARfor] = ACTIONS(4222), + [anon_sym_for] = ACTIONS(4222), + [anon_sym_POUND] = ACTIONS(4222), + [anon_sym_asm] = ACTIONS(4222), + [anon_sym_AT_LBRACK] = ACTIONS(4222), + [sym___double_quote] = ACTIONS(4222), + [sym___single_quote] = ACTIONS(4222), + [sym___c_double_quote] = ACTIONS(4222), + [sym___c_single_quote] = ACTIONS(4222), + [sym___r_double_quote] = ACTIONS(4222), + [sym___r_single_quote] = ACTIONS(4222), + }, + [1527] = { + [sym_line_comment] = STATE(1527), + [sym_block_comment] = STATE(1527), + [ts_builtin_sym_end] = ACTIONS(4224), + [sym_identifier] = ACTIONS(4226), + [anon_sym_LF] = ACTIONS(4226), + [anon_sym_CR] = ACTIONS(4226), + [anon_sym_CR_LF] = ACTIONS(4226), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym___global] = ACTIONS(4226), + [anon_sym_type] = ACTIONS(4226), + [anon_sym_fn] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_pub] = ACTIONS(4226), + [anon_sym_mut] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_interface] = ACTIONS(4226), + [anon_sym_QMARK] = ACTIONS(4226), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_go] = ACTIONS(4226), + [anon_sym_spawn] = ACTIONS(4226), + [anon_sym_json_DOTdecode] = ACTIONS(4226), + [anon_sym_LBRACK2] = ACTIONS(4226), + [anon_sym_TILDE] = ACTIONS(4226), + [anon_sym_CARET] = ACTIONS(4226), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_LT_DASH] = ACTIONS(4226), + [sym_none] = ACTIONS(4226), + [sym_true] = ACTIONS(4226), + [sym_false] = ACTIONS(4226), + [sym_nil] = ACTIONS(4226), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_DOLLARif] = ACTIONS(4226), + [anon_sym_match] = ACTIONS(4226), + [anon_sym_select] = ACTIONS(4226), + [anon_sym_lock] = ACTIONS(4226), + [anon_sym_rlock] = ACTIONS(4226), + [anon_sym_unsafe] = ACTIONS(4226), + [anon_sym_sql] = ACTIONS(4226), + [sym_int_literal] = ACTIONS(4226), + [sym_float_literal] = ACTIONS(4226), + [sym_rune_literal] = ACTIONS(4226), + [sym_pseudo_compile_time_identifier] = ACTIONS(4226), + [anon_sym_shared] = ACTIONS(4226), + [anon_sym_map_LBRACK] = ACTIONS(4226), + [anon_sym_chan] = ACTIONS(4226), + [anon_sym_thread] = ACTIONS(4226), + [anon_sym_atomic] = ACTIONS(4226), + [anon_sym_assert] = ACTIONS(4226), + [anon_sym_defer] = ACTIONS(4226), + [anon_sym_goto] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_DOLLARfor] = ACTIONS(4226), + [anon_sym_for] = ACTIONS(4226), + [anon_sym_POUND] = ACTIONS(4226), + [anon_sym_asm] = ACTIONS(4226), + [anon_sym_AT_LBRACK] = ACTIONS(4226), + [sym___double_quote] = ACTIONS(4226), + [sym___single_quote] = ACTIONS(4226), + [sym___c_double_quote] = ACTIONS(4226), + [sym___c_single_quote] = ACTIONS(4226), + [sym___r_double_quote] = ACTIONS(4226), + [sym___r_single_quote] = ACTIONS(4226), + }, + [1528] = { + [sym_line_comment] = STATE(1528), + [sym_block_comment] = STATE(1528), + [ts_builtin_sym_end] = ACTIONS(4228), + [sym_identifier] = ACTIONS(4230), + [anon_sym_LF] = ACTIONS(4230), + [anon_sym_CR] = ACTIONS(4230), + [anon_sym_CR_LF] = ACTIONS(4230), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_const] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym___global] = ACTIONS(4230), + [anon_sym_type] = ACTIONS(4230), + [anon_sym_fn] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [anon_sym_struct] = ACTIONS(4230), + [anon_sym_union] = ACTIONS(4230), + [anon_sym_pub] = ACTIONS(4230), + [anon_sym_mut] = ACTIONS(4230), + [anon_sym_enum] = ACTIONS(4230), + [anon_sym_interface] = ACTIONS(4230), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_go] = ACTIONS(4230), + [anon_sym_spawn] = ACTIONS(4230), + [anon_sym_json_DOTdecode] = ACTIONS(4230), + [anon_sym_LBRACK2] = ACTIONS(4230), + [anon_sym_TILDE] = ACTIONS(4230), + [anon_sym_CARET] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4230), + [anon_sym_LT_DASH] = ACTIONS(4230), + [sym_none] = ACTIONS(4230), + [sym_true] = ACTIONS(4230), + [sym_false] = ACTIONS(4230), + [sym_nil] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_DOLLARif] = ACTIONS(4230), + [anon_sym_match] = ACTIONS(4230), + [anon_sym_select] = ACTIONS(4230), + [anon_sym_lock] = ACTIONS(4230), + [anon_sym_rlock] = ACTIONS(4230), + [anon_sym_unsafe] = ACTIONS(4230), + [anon_sym_sql] = ACTIONS(4230), + [sym_int_literal] = ACTIONS(4230), + [sym_float_literal] = ACTIONS(4230), + [sym_rune_literal] = ACTIONS(4230), + [sym_pseudo_compile_time_identifier] = ACTIONS(4230), + [anon_sym_shared] = ACTIONS(4230), + [anon_sym_map_LBRACK] = ACTIONS(4230), + [anon_sym_chan] = ACTIONS(4230), + [anon_sym_thread] = ACTIONS(4230), + [anon_sym_atomic] = ACTIONS(4230), + [anon_sym_assert] = ACTIONS(4230), + [anon_sym_defer] = ACTIONS(4230), + [anon_sym_goto] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_DOLLARfor] = ACTIONS(4230), + [anon_sym_for] = ACTIONS(4230), + [anon_sym_POUND] = ACTIONS(4230), + [anon_sym_asm] = ACTIONS(4230), + [anon_sym_AT_LBRACK] = ACTIONS(4230), + [sym___double_quote] = ACTIONS(4230), + [sym___single_quote] = ACTIONS(4230), + [sym___c_double_quote] = ACTIONS(4230), + [sym___c_single_quote] = ACTIONS(4230), + [sym___r_double_quote] = ACTIONS(4230), + [sym___r_single_quote] = ACTIONS(4230), + }, + [1529] = { + [sym_line_comment] = STATE(1529), + [sym_block_comment] = STATE(1529), + [ts_builtin_sym_end] = ACTIONS(4232), + [sym_identifier] = ACTIONS(4234), + [anon_sym_LF] = ACTIONS(4234), + [anon_sym_CR] = ACTIONS(4234), + [anon_sym_CR_LF] = ACTIONS(4234), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4234), + [anon_sym_const] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym___global] = ACTIONS(4234), + [anon_sym_type] = ACTIONS(4234), + [anon_sym_fn] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_struct] = ACTIONS(4234), + [anon_sym_union] = ACTIONS(4234), + [anon_sym_pub] = ACTIONS(4234), + [anon_sym_mut] = ACTIONS(4234), + [anon_sym_enum] = ACTIONS(4234), + [anon_sym_interface] = ACTIONS(4234), + [anon_sym_QMARK] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4234), + [anon_sym_go] = ACTIONS(4234), + [anon_sym_spawn] = ACTIONS(4234), + [anon_sym_json_DOTdecode] = ACTIONS(4234), + [anon_sym_LBRACK2] = ACTIONS(4234), + [anon_sym_TILDE] = ACTIONS(4234), + [anon_sym_CARET] = ACTIONS(4234), + [anon_sym_AMP] = ACTIONS(4234), + [anon_sym_LT_DASH] = ACTIONS(4234), + [sym_none] = ACTIONS(4234), + [sym_true] = ACTIONS(4234), + [sym_false] = ACTIONS(4234), + [sym_nil] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4234), + [anon_sym_DOLLARif] = ACTIONS(4234), + [anon_sym_match] = ACTIONS(4234), + [anon_sym_select] = ACTIONS(4234), + [anon_sym_lock] = ACTIONS(4234), + [anon_sym_rlock] = ACTIONS(4234), + [anon_sym_unsafe] = ACTIONS(4234), + [anon_sym_sql] = ACTIONS(4234), + [sym_int_literal] = ACTIONS(4234), + [sym_float_literal] = ACTIONS(4234), + [sym_rune_literal] = ACTIONS(4234), + [sym_pseudo_compile_time_identifier] = ACTIONS(4234), + [anon_sym_shared] = ACTIONS(4234), + [anon_sym_map_LBRACK] = ACTIONS(4234), + [anon_sym_chan] = ACTIONS(4234), + [anon_sym_thread] = ACTIONS(4234), + [anon_sym_atomic] = ACTIONS(4234), + [anon_sym_assert] = ACTIONS(4234), + [anon_sym_defer] = ACTIONS(4234), + [anon_sym_goto] = ACTIONS(4234), + [anon_sym_break] = ACTIONS(4234), + [anon_sym_continue] = ACTIONS(4234), + [anon_sym_return] = ACTIONS(4234), + [anon_sym_DOLLARfor] = ACTIONS(4234), + [anon_sym_for] = ACTIONS(4234), + [anon_sym_POUND] = ACTIONS(4234), + [anon_sym_asm] = ACTIONS(4234), + [anon_sym_AT_LBRACK] = ACTIONS(4234), + [sym___double_quote] = ACTIONS(4234), + [sym___single_quote] = ACTIONS(4234), + [sym___c_double_quote] = ACTIONS(4234), + [sym___c_single_quote] = ACTIONS(4234), + [sym___r_double_quote] = ACTIONS(4234), + [sym___r_single_quote] = ACTIONS(4234), + }, + [1530] = { + [sym_line_comment] = STATE(1530), + [sym_block_comment] = STATE(1530), + [ts_builtin_sym_end] = ACTIONS(4236), + [sym_identifier] = ACTIONS(4238), + [anon_sym_LF] = ACTIONS(4238), + [anon_sym_CR] = ACTIONS(4238), + [anon_sym_CR_LF] = ACTIONS(4238), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_LBRACE] = ACTIONS(4238), + [anon_sym_const] = ACTIONS(4238), + [anon_sym_LPAREN] = ACTIONS(4238), + [anon_sym___global] = ACTIONS(4238), + [anon_sym_type] = ACTIONS(4238), + [anon_sym_fn] = ACTIONS(4238), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [anon_sym_struct] = ACTIONS(4238), + [anon_sym_union] = ACTIONS(4238), + [anon_sym_pub] = ACTIONS(4238), + [anon_sym_mut] = ACTIONS(4238), + [anon_sym_enum] = ACTIONS(4238), + [anon_sym_interface] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [anon_sym_BANG] = ACTIONS(4238), + [anon_sym_go] = ACTIONS(4238), + [anon_sym_spawn] = ACTIONS(4238), + [anon_sym_json_DOTdecode] = ACTIONS(4238), + [anon_sym_LBRACK2] = ACTIONS(4238), + [anon_sym_TILDE] = ACTIONS(4238), + [anon_sym_CARET] = ACTIONS(4238), + [anon_sym_AMP] = ACTIONS(4238), + [anon_sym_LT_DASH] = ACTIONS(4238), + [sym_none] = ACTIONS(4238), + [sym_true] = ACTIONS(4238), + [sym_false] = ACTIONS(4238), + [sym_nil] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_DOLLARif] = ACTIONS(4238), + [anon_sym_match] = ACTIONS(4238), + [anon_sym_select] = ACTIONS(4238), + [anon_sym_lock] = ACTIONS(4238), + [anon_sym_rlock] = ACTIONS(4238), + [anon_sym_unsafe] = ACTIONS(4238), + [anon_sym_sql] = ACTIONS(4238), + [sym_int_literal] = ACTIONS(4238), + [sym_float_literal] = ACTIONS(4238), + [sym_rune_literal] = ACTIONS(4238), + [sym_pseudo_compile_time_identifier] = ACTIONS(4238), + [anon_sym_shared] = ACTIONS(4238), + [anon_sym_map_LBRACK] = ACTIONS(4238), + [anon_sym_chan] = ACTIONS(4238), + [anon_sym_thread] = ACTIONS(4238), + [anon_sym_atomic] = ACTIONS(4238), + [anon_sym_assert] = ACTIONS(4238), + [anon_sym_defer] = ACTIONS(4238), + [anon_sym_goto] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_DOLLARfor] = ACTIONS(4238), + [anon_sym_for] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4238), + [anon_sym_asm] = ACTIONS(4238), + [anon_sym_AT_LBRACK] = ACTIONS(4238), + [sym___double_quote] = ACTIONS(4238), + [sym___single_quote] = ACTIONS(4238), + [sym___c_double_quote] = ACTIONS(4238), + [sym___c_single_quote] = ACTIONS(4238), + [sym___r_double_quote] = ACTIONS(4238), + [sym___r_single_quote] = ACTIONS(4238), + }, + [1531] = { + [sym_line_comment] = STATE(1531), + [sym_block_comment] = STATE(1531), + [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), + [anon_sym_SLASH_STAR] = 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), + }, + [1532] = { + [sym_line_comment] = STATE(1532), + [sym_block_comment] = STATE(1532), + [ts_builtin_sym_end] = ACTIONS(4240), + [sym_identifier] = ACTIONS(4242), [anon_sym_LF] = ACTIONS(4244), [anon_sym_CR] = ACTIONS(4244), [anon_sym_CR_LF] = ACTIONS(4244), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_const] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym___global] = ACTIONS(4244), - [anon_sym_type] = ACTIONS(4244), - [anon_sym_fn] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4244), - [anon_sym_struct] = ACTIONS(4244), - [anon_sym_union] = ACTIONS(4244), - [anon_sym_pub] = ACTIONS(4244), - [anon_sym_mut] = ACTIONS(4244), - [anon_sym_enum] = ACTIONS(4244), - [anon_sym_interface] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_go] = ACTIONS(4244), - [anon_sym_spawn] = ACTIONS(4244), - [anon_sym_json_DOTdecode] = ACTIONS(4244), - [anon_sym_LBRACK2] = ACTIONS(4244), - [anon_sym_TILDE] = ACTIONS(4244), - [anon_sym_CARET] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_DASH] = ACTIONS(4244), - [sym_none] = ACTIONS(4244), - [sym_true] = ACTIONS(4244), - [sym_false] = ACTIONS(4244), - [sym_nil] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_DOLLARif] = ACTIONS(4244), - [anon_sym_match] = ACTIONS(4244), - [anon_sym_select] = ACTIONS(4244), - [anon_sym_lock] = ACTIONS(4244), - [anon_sym_rlock] = ACTIONS(4244), - [anon_sym_unsafe] = ACTIONS(4244), - [anon_sym_sql] = ACTIONS(4244), - [sym_int_literal] = ACTIONS(4244), - [sym_float_literal] = ACTIONS(4244), - [sym_rune_literal] = ACTIONS(4244), - [sym_pseudo_compile_time_identifier] = ACTIONS(4244), - [anon_sym_shared] = ACTIONS(4244), - [anon_sym_map_LBRACK] = ACTIONS(4244), - [anon_sym_chan] = ACTIONS(4244), - [anon_sym_thread] = ACTIONS(4244), - [anon_sym_atomic] = ACTIONS(4244), - [anon_sym_assert] = ACTIONS(4244), - [anon_sym_defer] = ACTIONS(4244), - [anon_sym_goto] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_DOLLARfor] = ACTIONS(4244), - [anon_sym_for] = ACTIONS(4244), - [anon_sym_POUND] = ACTIONS(4244), - [anon_sym_asm] = ACTIONS(4244), - [anon_sym_AT_LBRACK] = ACTIONS(4244), - [sym___double_quote] = ACTIONS(4244), - [sym___single_quote] = ACTIONS(4244), - [sym___c_double_quote] = ACTIONS(4244), - [sym___c_single_quote] = ACTIONS(4244), - [sym___r_double_quote] = ACTIONS(4244), - [sym___r_single_quote] = ACTIONS(4244), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4242), + [anon_sym_LBRACE] = ACTIONS(4242), + [anon_sym_const] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym___global] = ACTIONS(4242), + [anon_sym_type] = ACTIONS(4242), + [anon_sym_fn] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4242), + [anon_sym_STAR] = ACTIONS(4242), + [anon_sym_struct] = ACTIONS(4242), + [anon_sym_union] = ACTIONS(4242), + [anon_sym_pub] = ACTIONS(4242), + [anon_sym_mut] = ACTIONS(4242), + [anon_sym_enum] = ACTIONS(4242), + [anon_sym_interface] = ACTIONS(4242), + [anon_sym_QMARK] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_go] = ACTIONS(4242), + [anon_sym_spawn] = ACTIONS(4242), + [anon_sym_json_DOTdecode] = ACTIONS(4242), + [anon_sym_LBRACK2] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_CARET] = ACTIONS(4242), + [anon_sym_AMP] = ACTIONS(4242), + [anon_sym_LT_DASH] = ACTIONS(4242), + [sym_none] = ACTIONS(4242), + [sym_true] = ACTIONS(4242), + [sym_false] = ACTIONS(4242), + [sym_nil] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4242), + [anon_sym_DOLLARif] = ACTIONS(4242), + [anon_sym_match] = ACTIONS(4242), + [anon_sym_select] = ACTIONS(4242), + [anon_sym_lock] = ACTIONS(4242), + [anon_sym_rlock] = ACTIONS(4242), + [anon_sym_unsafe] = ACTIONS(4242), + [anon_sym_sql] = ACTIONS(4242), + [sym_int_literal] = ACTIONS(4242), + [sym_float_literal] = ACTIONS(4242), + [sym_rune_literal] = ACTIONS(4242), + [sym_pseudo_compile_time_identifier] = ACTIONS(4242), + [anon_sym_shared] = ACTIONS(4242), + [anon_sym_map_LBRACK] = ACTIONS(4242), + [anon_sym_chan] = ACTIONS(4242), + [anon_sym_thread] = ACTIONS(4242), + [anon_sym_atomic] = ACTIONS(4242), + [anon_sym_assert] = ACTIONS(4242), + [anon_sym_defer] = ACTIONS(4242), + [anon_sym_goto] = ACTIONS(4242), + [anon_sym_break] = ACTIONS(4242), + [anon_sym_continue] = ACTIONS(4242), + [anon_sym_return] = ACTIONS(4242), + [anon_sym_DOLLARfor] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(4242), + [anon_sym_POUND] = ACTIONS(4242), + [anon_sym_asm] = ACTIONS(4242), + [anon_sym_AT_LBRACK] = ACTIONS(4242), + [sym___double_quote] = ACTIONS(4242), + [sym___single_quote] = ACTIONS(4242), + [sym___c_double_quote] = ACTIONS(4242), + [sym___c_single_quote] = ACTIONS(4242), + [sym___r_double_quote] = ACTIONS(4242), + [sym___r_single_quote] = ACTIONS(4242), }, - [1522] = { + [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), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4248), [anon_sym_LBRACE] = ACTIONS(4248), [anon_sym_const] = ACTIONS(4248), @@ -184211,13 +186788,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4248), [sym___r_single_quote] = ACTIONS(4248), }, - [1523] = { + [1534] = { + [sym_line_comment] = STATE(1534), + [sym_block_comment] = STATE(1534), + [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), + [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), + }, + [1535] = { + [sym_line_comment] = STATE(1535), + [sym_block_comment] = STATE(1535), [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), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4252), [anon_sym_LBRACE] = ACTIONS(4252), [anon_sym_const] = ACTIONS(4252), @@ -184283,13 +186938,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4252), [sym___r_single_quote] = ACTIONS(4252), }, - [1524] = { + [1536] = { + [sym_line_comment] = STATE(1536), + [sym_block_comment] = STATE(1536), [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), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4256), [anon_sym_LBRACE] = ACTIONS(4256), [anon_sym_const] = ACTIONS(4256), @@ -184355,13 +187013,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4256), [sym___r_single_quote] = ACTIONS(4256), }, - [1525] = { + [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), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_LBRACE] = ACTIONS(4260), [anon_sym_const] = ACTIONS(4260), @@ -184427,85 +187088,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), }, - [1526] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(615), - }, - [1527] = { + [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), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4264), [anon_sym_LBRACE] = ACTIONS(4264), [anon_sym_const] = ACTIONS(4264), @@ -184571,13 +187163,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4264), [sym___r_single_quote] = ACTIONS(4264), }, - [1528] = { + [1539] = { + [sym_line_comment] = STATE(1539), + [sym_block_comment] = STATE(1539), [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), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4268), [anon_sym_LBRACE] = ACTIONS(4268), [anon_sym_const] = ACTIONS(4268), @@ -184643,13 +187238,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4268), [sym___r_single_quote] = ACTIONS(4268), }, - [1529] = { + [1540] = { + [sym_line_comment] = STATE(1540), + [sym_block_comment] = STATE(1540), [ts_builtin_sym_end] = ACTIONS(4270), [sym_identifier] = ACTIONS(4272), [anon_sym_LF] = ACTIONS(4272), [anon_sym_CR] = ACTIONS(4272), [anon_sym_CR_LF] = ACTIONS(4272), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4272), [anon_sym_LBRACE] = ACTIONS(4272), [anon_sym_const] = ACTIONS(4272), @@ -184715,13 +187313,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4272), [sym___r_single_quote] = ACTIONS(4272), }, - [1530] = { + [1541] = { + [sym_line_comment] = STATE(1541), + [sym_block_comment] = STATE(1541), [ts_builtin_sym_end] = ACTIONS(4274), [sym_identifier] = ACTIONS(4276), [anon_sym_LF] = ACTIONS(4276), [anon_sym_CR] = ACTIONS(4276), [anon_sym_CR_LF] = ACTIONS(4276), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4276), [anon_sym_LBRACE] = ACTIONS(4276), [anon_sym_const] = ACTIONS(4276), @@ -184787,39 +187388,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4276), [sym___r_single_quote] = ACTIONS(4276), }, - [1531] = { + [1542] = { + [sym_line_comment] = STATE(1542), + [sym_block_comment] = STATE(1542), + [sym_import_declaration] = STATE(1622), + [aux_sym_import_list_repeat1] = STATE(1600), [ts_builtin_sym_end] = ACTIONS(4278), [sym_identifier] = ACTIONS(4280), - [anon_sym_LF] = ACTIONS(4280), - [anon_sym_CR] = ACTIONS(4280), - [anon_sym_CR_LF] = ACTIONS(4280), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(4280), - [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_LBRACE] = ACTIONS(4278), [anon_sym_const] = ACTIONS(4280), - [anon_sym_LPAREN] = ACTIONS(4280), + [anon_sym_LPAREN] = ACTIONS(4278), [anon_sym___global] = ACTIONS(4280), [anon_sym_type] = ACTIONS(4280), [anon_sym_fn] = ACTIONS(4280), - [anon_sym_PLUS] = ACTIONS(4280), - [anon_sym_DASH] = ACTIONS(4280), - [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_STAR] = ACTIONS(4278), [anon_sym_struct] = ACTIONS(4280), [anon_sym_union] = ACTIONS(4280), [anon_sym_pub] = ACTIONS(4280), [anon_sym_mut] = ACTIONS(4280), [anon_sym_enum] = ACTIONS(4280), [anon_sym_interface] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4280), - [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4278), [anon_sym_go] = ACTIONS(4280), [anon_sym_spawn] = ACTIONS(4280), - [anon_sym_json_DOTdecode] = ACTIONS(4280), - [anon_sym_LBRACK2] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_AMP] = ACTIONS(4280), - [anon_sym_LT_DASH] = ACTIONS(4280), + [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(4280), [sym_true] = ACTIONS(4280), [sym_false] = ACTIONS(4280), @@ -184833,11 +187437,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4280), [anon_sym_sql] = ACTIONS(4280), [sym_int_literal] = ACTIONS(4280), - [sym_float_literal] = ACTIONS(4280), - [sym_rune_literal] = ACTIONS(4280), + [sym_float_literal] = ACTIONS(4278), + [sym_rune_literal] = ACTIONS(4278), [sym_pseudo_compile_time_identifier] = ACTIONS(4280), [anon_sym_shared] = ACTIONS(4280), - [anon_sym_map_LBRACK] = ACTIONS(4280), + [anon_sym_map_LBRACK] = ACTIONS(4278), [anon_sym_chan] = ACTIONS(4280), [anon_sym_thread] = ACTIONS(4280), [anon_sym_atomic] = ACTIONS(4280), @@ -184849,2759 +187453,2951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4280), [anon_sym_DOLLARfor] = ACTIONS(4280), [anon_sym_for] = ACTIONS(4280), - [anon_sym_POUND] = ACTIONS(4280), + [anon_sym_POUND] = ACTIONS(4278), [anon_sym_asm] = ACTIONS(4280), - [anon_sym_AT_LBRACK] = ACTIONS(4280), - [sym___double_quote] = ACTIONS(4280), - [sym___single_quote] = ACTIONS(4280), - [sym___c_double_quote] = ACTIONS(4280), - [sym___c_single_quote] = ACTIONS(4280), - [sym___r_double_quote] = ACTIONS(4280), - [sym___r_single_quote] = ACTIONS(4280), - }, - [1532] = { - [ts_builtin_sym_end] = ACTIONS(4282), - [sym_identifier] = ACTIONS(4284), - [anon_sym_LF] = ACTIONS(4284), - [anon_sym_CR] = ACTIONS(4284), - [anon_sym_CR_LF] = ACTIONS(4284), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4284), - [anon_sym_LBRACE] = ACTIONS(4284), - [anon_sym_const] = ACTIONS(4284), - [anon_sym_LPAREN] = ACTIONS(4284), - [anon_sym___global] = ACTIONS(4284), - [anon_sym_type] = ACTIONS(4284), - [anon_sym_fn] = ACTIONS(4284), - [anon_sym_PLUS] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [anon_sym_struct] = ACTIONS(4284), - [anon_sym_union] = ACTIONS(4284), - [anon_sym_pub] = ACTIONS(4284), - [anon_sym_mut] = ACTIONS(4284), - [anon_sym_enum] = ACTIONS(4284), - [anon_sym_interface] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_go] = ACTIONS(4284), - [anon_sym_spawn] = ACTIONS(4284), - [anon_sym_json_DOTdecode] = ACTIONS(4284), - [anon_sym_LBRACK2] = ACTIONS(4284), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_CARET] = ACTIONS(4284), - [anon_sym_AMP] = ACTIONS(4284), - [anon_sym_LT_DASH] = ACTIONS(4284), - [sym_none] = ACTIONS(4284), - [sym_true] = ACTIONS(4284), - [sym_false] = ACTIONS(4284), - [sym_nil] = ACTIONS(4284), - [anon_sym_if] = ACTIONS(4284), - [anon_sym_DOLLARif] = ACTIONS(4284), - [anon_sym_match] = ACTIONS(4284), - [anon_sym_select] = ACTIONS(4284), - [anon_sym_lock] = ACTIONS(4284), - [anon_sym_rlock] = ACTIONS(4284), - [anon_sym_unsafe] = ACTIONS(4284), - [anon_sym_sql] = ACTIONS(4284), - [sym_int_literal] = ACTIONS(4284), - [sym_float_literal] = ACTIONS(4284), - [sym_rune_literal] = ACTIONS(4284), - [sym_pseudo_compile_time_identifier] = ACTIONS(4284), - [anon_sym_shared] = ACTIONS(4284), - [anon_sym_map_LBRACK] = ACTIONS(4284), - [anon_sym_chan] = ACTIONS(4284), - [anon_sym_thread] = ACTIONS(4284), - [anon_sym_atomic] = ACTIONS(4284), - [anon_sym_assert] = ACTIONS(4284), - [anon_sym_defer] = ACTIONS(4284), - [anon_sym_goto] = ACTIONS(4284), - [anon_sym_break] = ACTIONS(4284), - [anon_sym_continue] = ACTIONS(4284), - [anon_sym_return] = ACTIONS(4284), - [anon_sym_DOLLARfor] = ACTIONS(4284), - [anon_sym_for] = ACTIONS(4284), - [anon_sym_POUND] = ACTIONS(4284), - [anon_sym_asm] = ACTIONS(4284), - [anon_sym_AT_LBRACK] = ACTIONS(4284), - [sym___double_quote] = ACTIONS(4284), - [sym___single_quote] = ACTIONS(4284), - [sym___c_double_quote] = ACTIONS(4284), - [sym___c_single_quote] = ACTIONS(4284), - [sym___r_double_quote] = ACTIONS(4284), - [sym___r_single_quote] = ACTIONS(4284), - }, - [1533] = { - [ts_builtin_sym_end] = ACTIONS(4286), - [sym_identifier] = ACTIONS(4288), - [anon_sym_LF] = ACTIONS(4288), - [anon_sym_CR] = ACTIONS(4288), - [anon_sym_CR_LF] = ACTIONS(4288), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4288), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_const] = ACTIONS(4288), - [anon_sym_LPAREN] = ACTIONS(4288), - [anon_sym___global] = ACTIONS(4288), - [anon_sym_type] = ACTIONS(4288), - [anon_sym_fn] = ACTIONS(4288), - [anon_sym_PLUS] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4288), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_struct] = ACTIONS(4288), - [anon_sym_union] = ACTIONS(4288), - [anon_sym_pub] = ACTIONS(4288), - [anon_sym_mut] = ACTIONS(4288), - [anon_sym_enum] = ACTIONS(4288), - [anon_sym_interface] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_go] = ACTIONS(4288), - [anon_sym_spawn] = ACTIONS(4288), - [anon_sym_json_DOTdecode] = ACTIONS(4288), - [anon_sym_LBRACK2] = ACTIONS(4288), - [anon_sym_TILDE] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_LT_DASH] = ACTIONS(4288), - [sym_none] = ACTIONS(4288), - [sym_true] = ACTIONS(4288), - [sym_false] = ACTIONS(4288), - [sym_nil] = ACTIONS(4288), - [anon_sym_if] = ACTIONS(4288), - [anon_sym_DOLLARif] = ACTIONS(4288), - [anon_sym_match] = ACTIONS(4288), - [anon_sym_select] = ACTIONS(4288), - [anon_sym_lock] = ACTIONS(4288), - [anon_sym_rlock] = ACTIONS(4288), - [anon_sym_unsafe] = ACTIONS(4288), - [anon_sym_sql] = ACTIONS(4288), - [sym_int_literal] = ACTIONS(4288), - [sym_float_literal] = ACTIONS(4288), - [sym_rune_literal] = ACTIONS(4288), - [sym_pseudo_compile_time_identifier] = ACTIONS(4288), - [anon_sym_shared] = ACTIONS(4288), - [anon_sym_map_LBRACK] = ACTIONS(4288), - [anon_sym_chan] = ACTIONS(4288), - [anon_sym_thread] = ACTIONS(4288), - [anon_sym_atomic] = ACTIONS(4288), - [anon_sym_assert] = ACTIONS(4288), - [anon_sym_defer] = ACTIONS(4288), - [anon_sym_goto] = ACTIONS(4288), - [anon_sym_break] = ACTIONS(4288), - [anon_sym_continue] = ACTIONS(4288), - [anon_sym_return] = ACTIONS(4288), - [anon_sym_DOLLARfor] = ACTIONS(4288), - [anon_sym_for] = ACTIONS(4288), - [anon_sym_POUND] = ACTIONS(4288), - [anon_sym_asm] = ACTIONS(4288), - [anon_sym_AT_LBRACK] = ACTIONS(4288), - [sym___double_quote] = ACTIONS(4288), - [sym___single_quote] = ACTIONS(4288), - [sym___c_double_quote] = ACTIONS(4288), - [sym___c_single_quote] = ACTIONS(4288), - [sym___r_double_quote] = ACTIONS(4288), - [sym___r_single_quote] = ACTIONS(4288), - }, - [1534] = { - [ts_builtin_sym_end] = ACTIONS(4290), - [sym_identifier] = ACTIONS(4292), - [anon_sym_LF] = ACTIONS(4292), - [anon_sym_CR] = ACTIONS(4292), - [anon_sym_CR_LF] = ACTIONS(4292), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4292), - [anon_sym_LBRACE] = ACTIONS(4292), - [anon_sym_const] = ACTIONS(4292), - [anon_sym_LPAREN] = ACTIONS(4292), - [anon_sym___global] = ACTIONS(4292), - [anon_sym_type] = ACTIONS(4292), - [anon_sym_fn] = ACTIONS(4292), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_STAR] = ACTIONS(4292), - [anon_sym_struct] = ACTIONS(4292), - [anon_sym_union] = ACTIONS(4292), - [anon_sym_pub] = ACTIONS(4292), - [anon_sym_mut] = ACTIONS(4292), - [anon_sym_enum] = ACTIONS(4292), - [anon_sym_interface] = ACTIONS(4292), - [anon_sym_QMARK] = ACTIONS(4292), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_go] = ACTIONS(4292), - [anon_sym_spawn] = ACTIONS(4292), - [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(4292), - [sym_true] = ACTIONS(4292), - [sym_false] = ACTIONS(4292), - [sym_nil] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_DOLLARif] = ACTIONS(4292), - [anon_sym_match] = ACTIONS(4292), - [anon_sym_select] = ACTIONS(4292), - [anon_sym_lock] = ACTIONS(4292), - [anon_sym_rlock] = ACTIONS(4292), - [anon_sym_unsafe] = ACTIONS(4292), - [anon_sym_sql] = ACTIONS(4292), - [sym_int_literal] = ACTIONS(4292), - [sym_float_literal] = ACTIONS(4292), - [sym_rune_literal] = ACTIONS(4292), - [sym_pseudo_compile_time_identifier] = ACTIONS(4292), - [anon_sym_shared] = ACTIONS(4292), - [anon_sym_map_LBRACK] = ACTIONS(4292), - [anon_sym_chan] = ACTIONS(4292), - [anon_sym_thread] = ACTIONS(4292), - [anon_sym_atomic] = ACTIONS(4292), - [anon_sym_assert] = ACTIONS(4292), - [anon_sym_defer] = ACTIONS(4292), - [anon_sym_goto] = ACTIONS(4292), - [anon_sym_break] = ACTIONS(4292), - [anon_sym_continue] = ACTIONS(4292), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_DOLLARfor] = ACTIONS(4292), - [anon_sym_for] = ACTIONS(4292), - [anon_sym_POUND] = ACTIONS(4292), - [anon_sym_asm] = ACTIONS(4292), - [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), - }, - [1535] = { - [ts_builtin_sym_end] = ACTIONS(4294), - [sym_identifier] = ACTIONS(4296), - [anon_sym_LF] = ACTIONS(4296), - [anon_sym_CR] = ACTIONS(4296), - [anon_sym_CR_LF] = ACTIONS(4296), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4296), - [anon_sym_LBRACE] = ACTIONS(4296), - [anon_sym_const] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym___global] = ACTIONS(4296), - [anon_sym_type] = ACTIONS(4296), - [anon_sym_fn] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4296), - [anon_sym_DASH] = ACTIONS(4296), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_struct] = ACTIONS(4296), - [anon_sym_union] = ACTIONS(4296), - [anon_sym_pub] = ACTIONS(4296), - [anon_sym_mut] = ACTIONS(4296), - [anon_sym_enum] = ACTIONS(4296), - [anon_sym_interface] = ACTIONS(4296), - [anon_sym_QMARK] = ACTIONS(4296), - [anon_sym_BANG] = ACTIONS(4296), - [anon_sym_go] = ACTIONS(4296), - [anon_sym_spawn] = ACTIONS(4296), - [anon_sym_json_DOTdecode] = ACTIONS(4296), - [anon_sym_LBRACK2] = ACTIONS(4296), - [anon_sym_TILDE] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_LT_DASH] = ACTIONS(4296), - [sym_none] = ACTIONS(4296), - [sym_true] = ACTIONS(4296), - [sym_false] = ACTIONS(4296), - [sym_nil] = ACTIONS(4296), - [anon_sym_if] = ACTIONS(4296), - [anon_sym_DOLLARif] = ACTIONS(4296), - [anon_sym_match] = ACTIONS(4296), - [anon_sym_select] = ACTIONS(4296), - [anon_sym_lock] = ACTIONS(4296), - [anon_sym_rlock] = ACTIONS(4296), - [anon_sym_unsafe] = ACTIONS(4296), - [anon_sym_sql] = ACTIONS(4296), - [sym_int_literal] = ACTIONS(4296), - [sym_float_literal] = ACTIONS(4296), - [sym_rune_literal] = ACTIONS(4296), - [sym_pseudo_compile_time_identifier] = ACTIONS(4296), - [anon_sym_shared] = ACTIONS(4296), - [anon_sym_map_LBRACK] = ACTIONS(4296), - [anon_sym_chan] = ACTIONS(4296), - [anon_sym_thread] = ACTIONS(4296), - [anon_sym_atomic] = ACTIONS(4296), - [anon_sym_assert] = ACTIONS(4296), - [anon_sym_defer] = ACTIONS(4296), - [anon_sym_goto] = ACTIONS(4296), - [anon_sym_break] = ACTIONS(4296), - [anon_sym_continue] = ACTIONS(4296), - [anon_sym_return] = ACTIONS(4296), - [anon_sym_DOLLARfor] = ACTIONS(4296), - [anon_sym_for] = ACTIONS(4296), - [anon_sym_POUND] = ACTIONS(4296), - [anon_sym_asm] = ACTIONS(4296), - [anon_sym_AT_LBRACK] = ACTIONS(4296), - [sym___double_quote] = ACTIONS(4296), - [sym___single_quote] = ACTIONS(4296), - [sym___c_double_quote] = ACTIONS(4296), - [sym___c_single_quote] = ACTIONS(4296), - [sym___r_double_quote] = ACTIONS(4296), - [sym___r_single_quote] = ACTIONS(4296), - }, - [1536] = { - [ts_builtin_sym_end] = ACTIONS(4298), - [sym_identifier] = ACTIONS(4300), - [anon_sym_LF] = ACTIONS(4300), - [anon_sym_CR] = ACTIONS(4300), - [anon_sym_CR_LF] = ACTIONS(4300), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4300), - [anon_sym_LBRACE] = ACTIONS(4300), - [anon_sym_const] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym___global] = ACTIONS(4300), - [anon_sym_type] = ACTIONS(4300), - [anon_sym_fn] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_struct] = ACTIONS(4300), - [anon_sym_union] = ACTIONS(4300), - [anon_sym_pub] = ACTIONS(4300), - [anon_sym_mut] = ACTIONS(4300), - [anon_sym_enum] = ACTIONS(4300), - [anon_sym_interface] = ACTIONS(4300), - [anon_sym_QMARK] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4300), - [anon_sym_go] = ACTIONS(4300), - [anon_sym_spawn] = ACTIONS(4300), - [anon_sym_json_DOTdecode] = ACTIONS(4300), - [anon_sym_LBRACK2] = ACTIONS(4300), - [anon_sym_TILDE] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_AMP] = ACTIONS(4300), - [anon_sym_LT_DASH] = ACTIONS(4300), - [sym_none] = ACTIONS(4300), - [sym_true] = ACTIONS(4300), - [sym_false] = ACTIONS(4300), - [sym_nil] = ACTIONS(4300), - [anon_sym_if] = ACTIONS(4300), - [anon_sym_DOLLARif] = ACTIONS(4300), - [anon_sym_match] = ACTIONS(4300), - [anon_sym_select] = ACTIONS(4300), - [anon_sym_lock] = ACTIONS(4300), - [anon_sym_rlock] = ACTIONS(4300), - [anon_sym_unsafe] = ACTIONS(4300), - [anon_sym_sql] = ACTIONS(4300), - [sym_int_literal] = ACTIONS(4300), - [sym_float_literal] = ACTIONS(4300), - [sym_rune_literal] = ACTIONS(4300), - [sym_pseudo_compile_time_identifier] = ACTIONS(4300), - [anon_sym_shared] = ACTIONS(4300), - [anon_sym_map_LBRACK] = ACTIONS(4300), - [anon_sym_chan] = ACTIONS(4300), - [anon_sym_thread] = ACTIONS(4300), - [anon_sym_atomic] = ACTIONS(4300), - [anon_sym_assert] = ACTIONS(4300), - [anon_sym_defer] = ACTIONS(4300), - [anon_sym_goto] = ACTIONS(4300), - [anon_sym_break] = ACTIONS(4300), - [anon_sym_continue] = ACTIONS(4300), - [anon_sym_return] = ACTIONS(4300), - [anon_sym_DOLLARfor] = ACTIONS(4300), - [anon_sym_for] = ACTIONS(4300), - [anon_sym_POUND] = ACTIONS(4300), - [anon_sym_asm] = ACTIONS(4300), - [anon_sym_AT_LBRACK] = ACTIONS(4300), - [sym___double_quote] = ACTIONS(4300), - [sym___single_quote] = ACTIONS(4300), - [sym___c_double_quote] = ACTIONS(4300), - [sym___c_single_quote] = ACTIONS(4300), - [sym___r_double_quote] = ACTIONS(4300), - [sym___r_single_quote] = ACTIONS(4300), - }, - [1537] = { - [ts_builtin_sym_end] = ACTIONS(4302), - [sym_identifier] = ACTIONS(4304), - [anon_sym_LF] = ACTIONS(4304), - [anon_sym_CR] = ACTIONS(4304), - [anon_sym_CR_LF] = ACTIONS(4304), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4304), - [anon_sym_LBRACE] = ACTIONS(4304), - [anon_sym_const] = ACTIONS(4304), - [anon_sym_LPAREN] = ACTIONS(4304), - [anon_sym___global] = ACTIONS(4304), - [anon_sym_type] = ACTIONS(4304), - [anon_sym_fn] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4304), - [anon_sym_struct] = ACTIONS(4304), - [anon_sym_union] = ACTIONS(4304), - [anon_sym_pub] = ACTIONS(4304), - [anon_sym_mut] = ACTIONS(4304), - [anon_sym_enum] = ACTIONS(4304), - [anon_sym_interface] = ACTIONS(4304), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_go] = ACTIONS(4304), - [anon_sym_spawn] = ACTIONS(4304), - [anon_sym_json_DOTdecode] = ACTIONS(4304), - [anon_sym_LBRACK2] = ACTIONS(4304), - [anon_sym_TILDE] = ACTIONS(4304), - [anon_sym_CARET] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_DASH] = ACTIONS(4304), - [sym_none] = ACTIONS(4304), - [sym_true] = ACTIONS(4304), - [sym_false] = ACTIONS(4304), - [sym_nil] = ACTIONS(4304), - [anon_sym_if] = ACTIONS(4304), - [anon_sym_DOLLARif] = ACTIONS(4304), - [anon_sym_match] = ACTIONS(4304), - [anon_sym_select] = ACTIONS(4304), - [anon_sym_lock] = ACTIONS(4304), - [anon_sym_rlock] = ACTIONS(4304), - [anon_sym_unsafe] = ACTIONS(4304), - [anon_sym_sql] = ACTIONS(4304), - [sym_int_literal] = ACTIONS(4304), - [sym_float_literal] = ACTIONS(4304), - [sym_rune_literal] = ACTIONS(4304), - [sym_pseudo_compile_time_identifier] = ACTIONS(4304), - [anon_sym_shared] = ACTIONS(4304), - [anon_sym_map_LBRACK] = ACTIONS(4304), - [anon_sym_chan] = ACTIONS(4304), - [anon_sym_thread] = ACTIONS(4304), - [anon_sym_atomic] = ACTIONS(4304), - [anon_sym_assert] = ACTIONS(4304), - [anon_sym_defer] = ACTIONS(4304), - [anon_sym_goto] = ACTIONS(4304), - [anon_sym_break] = ACTIONS(4304), - [anon_sym_continue] = ACTIONS(4304), - [anon_sym_return] = ACTIONS(4304), - [anon_sym_DOLLARfor] = ACTIONS(4304), - [anon_sym_for] = ACTIONS(4304), - [anon_sym_POUND] = ACTIONS(4304), - [anon_sym_asm] = ACTIONS(4304), - [anon_sym_AT_LBRACK] = ACTIONS(4304), - [sym___double_quote] = ACTIONS(4304), - [sym___single_quote] = ACTIONS(4304), - [sym___c_double_quote] = ACTIONS(4304), - [sym___c_single_quote] = ACTIONS(4304), - [sym___r_double_quote] = ACTIONS(4304), - [sym___r_single_quote] = ACTIONS(4304), - }, - [1538] = { - [ts_builtin_sym_end] = ACTIONS(4306), - [sym_identifier] = ACTIONS(4308), - [anon_sym_LF] = ACTIONS(4308), - [anon_sym_CR] = ACTIONS(4308), - [anon_sym_CR_LF] = ACTIONS(4308), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4308), - [anon_sym_LBRACE] = ACTIONS(4308), - [anon_sym_const] = ACTIONS(4308), - [anon_sym_LPAREN] = ACTIONS(4308), - [anon_sym___global] = ACTIONS(4308), - [anon_sym_type] = ACTIONS(4308), - [anon_sym_fn] = ACTIONS(4308), - [anon_sym_PLUS] = ACTIONS(4308), - [anon_sym_DASH] = ACTIONS(4308), - [anon_sym_STAR] = ACTIONS(4308), - [anon_sym_struct] = ACTIONS(4308), - [anon_sym_union] = ACTIONS(4308), - [anon_sym_pub] = ACTIONS(4308), - [anon_sym_mut] = ACTIONS(4308), - [anon_sym_enum] = ACTIONS(4308), - [anon_sym_interface] = ACTIONS(4308), - [anon_sym_QMARK] = ACTIONS(4308), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_go] = ACTIONS(4308), - [anon_sym_spawn] = ACTIONS(4308), - [anon_sym_json_DOTdecode] = ACTIONS(4308), - [anon_sym_LBRACK2] = ACTIONS(4308), - [anon_sym_TILDE] = ACTIONS(4308), - [anon_sym_CARET] = ACTIONS(4308), - [anon_sym_AMP] = ACTIONS(4308), - [anon_sym_LT_DASH] = ACTIONS(4308), - [sym_none] = ACTIONS(4308), - [sym_true] = ACTIONS(4308), - [sym_false] = ACTIONS(4308), - [sym_nil] = ACTIONS(4308), - [anon_sym_if] = ACTIONS(4308), - [anon_sym_DOLLARif] = ACTIONS(4308), - [anon_sym_match] = ACTIONS(4308), - [anon_sym_select] = ACTIONS(4308), - [anon_sym_lock] = ACTIONS(4308), - [anon_sym_rlock] = ACTIONS(4308), - [anon_sym_unsafe] = ACTIONS(4308), - [anon_sym_sql] = ACTIONS(4308), - [sym_int_literal] = ACTIONS(4308), - [sym_float_literal] = ACTIONS(4308), - [sym_rune_literal] = ACTIONS(4308), - [sym_pseudo_compile_time_identifier] = ACTIONS(4308), - [anon_sym_shared] = ACTIONS(4308), - [anon_sym_map_LBRACK] = ACTIONS(4308), - [anon_sym_chan] = ACTIONS(4308), - [anon_sym_thread] = ACTIONS(4308), - [anon_sym_atomic] = ACTIONS(4308), - [anon_sym_assert] = ACTIONS(4308), - [anon_sym_defer] = ACTIONS(4308), - [anon_sym_goto] = ACTIONS(4308), - [anon_sym_break] = ACTIONS(4308), - [anon_sym_continue] = ACTIONS(4308), - [anon_sym_return] = ACTIONS(4308), - [anon_sym_DOLLARfor] = ACTIONS(4308), - [anon_sym_for] = ACTIONS(4308), - [anon_sym_POUND] = ACTIONS(4308), - [anon_sym_asm] = ACTIONS(4308), - [anon_sym_AT_LBRACK] = ACTIONS(4308), - [sym___double_quote] = ACTIONS(4308), - [sym___single_quote] = ACTIONS(4308), - [sym___c_double_quote] = ACTIONS(4308), - [sym___c_single_quote] = ACTIONS(4308), - [sym___r_double_quote] = ACTIONS(4308), - [sym___r_single_quote] = ACTIONS(4308), - }, - [1539] = { - [ts_builtin_sym_end] = ACTIONS(4310), - [sym_identifier] = ACTIONS(4312), - [anon_sym_LF] = ACTIONS(4312), - [anon_sym_CR] = ACTIONS(4312), - [anon_sym_CR_LF] = ACTIONS(4312), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4312), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_const] = ACTIONS(4312), - [anon_sym_LPAREN] = ACTIONS(4312), - [anon_sym___global] = ACTIONS(4312), - [anon_sym_type] = ACTIONS(4312), - [anon_sym_fn] = ACTIONS(4312), - [anon_sym_PLUS] = ACTIONS(4312), - [anon_sym_DASH] = ACTIONS(4312), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_struct] = ACTIONS(4312), - [anon_sym_union] = ACTIONS(4312), - [anon_sym_pub] = ACTIONS(4312), - [anon_sym_mut] = ACTIONS(4312), - [anon_sym_enum] = ACTIONS(4312), - [anon_sym_interface] = ACTIONS(4312), - [anon_sym_QMARK] = ACTIONS(4312), - [anon_sym_BANG] = ACTIONS(4312), - [anon_sym_go] = ACTIONS(4312), - [anon_sym_spawn] = ACTIONS(4312), - [anon_sym_json_DOTdecode] = ACTIONS(4312), - [anon_sym_LBRACK2] = ACTIONS(4312), - [anon_sym_TILDE] = ACTIONS(4312), - [anon_sym_CARET] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym_LT_DASH] = ACTIONS(4312), - [sym_none] = ACTIONS(4312), - [sym_true] = ACTIONS(4312), - [sym_false] = ACTIONS(4312), - [sym_nil] = ACTIONS(4312), - [anon_sym_if] = ACTIONS(4312), - [anon_sym_DOLLARif] = ACTIONS(4312), - [anon_sym_match] = ACTIONS(4312), - [anon_sym_select] = ACTIONS(4312), - [anon_sym_lock] = ACTIONS(4312), - [anon_sym_rlock] = ACTIONS(4312), - [anon_sym_unsafe] = ACTIONS(4312), - [anon_sym_sql] = ACTIONS(4312), - [sym_int_literal] = ACTIONS(4312), - [sym_float_literal] = ACTIONS(4312), - [sym_rune_literal] = ACTIONS(4312), - [sym_pseudo_compile_time_identifier] = ACTIONS(4312), - [anon_sym_shared] = ACTIONS(4312), - [anon_sym_map_LBRACK] = ACTIONS(4312), - [anon_sym_chan] = ACTIONS(4312), - [anon_sym_thread] = ACTIONS(4312), - [anon_sym_atomic] = ACTIONS(4312), - [anon_sym_assert] = ACTIONS(4312), - [anon_sym_defer] = ACTIONS(4312), - [anon_sym_goto] = ACTIONS(4312), - [anon_sym_break] = ACTIONS(4312), - [anon_sym_continue] = ACTIONS(4312), - [anon_sym_return] = ACTIONS(4312), - [anon_sym_DOLLARfor] = ACTIONS(4312), - [anon_sym_for] = ACTIONS(4312), - [anon_sym_POUND] = ACTIONS(4312), - [anon_sym_asm] = ACTIONS(4312), - [anon_sym_AT_LBRACK] = ACTIONS(4312), - [sym___double_quote] = ACTIONS(4312), - [sym___single_quote] = ACTIONS(4312), - [sym___c_double_quote] = ACTIONS(4312), - [sym___c_single_quote] = ACTIONS(4312), - [sym___r_double_quote] = ACTIONS(4312), - [sym___r_single_quote] = ACTIONS(4312), - }, - [1540] = { - [ts_builtin_sym_end] = ACTIONS(4314), - [sym_identifier] = ACTIONS(4316), - [anon_sym_LF] = ACTIONS(4316), - [anon_sym_CR] = ACTIONS(4316), - [anon_sym_CR_LF] = ACTIONS(4316), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_const] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym___global] = ACTIONS(4316), - [anon_sym_type] = ACTIONS(4316), - [anon_sym_fn] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4316), - [anon_sym_struct] = ACTIONS(4316), - [anon_sym_union] = ACTIONS(4316), - [anon_sym_pub] = ACTIONS(4316), - [anon_sym_mut] = ACTIONS(4316), - [anon_sym_enum] = ACTIONS(4316), - [anon_sym_interface] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_go] = ACTIONS(4316), - [anon_sym_spawn] = ACTIONS(4316), - [anon_sym_json_DOTdecode] = ACTIONS(4316), - [anon_sym_LBRACK2] = ACTIONS(4316), - [anon_sym_TILDE] = ACTIONS(4316), - [anon_sym_CARET] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_DASH] = ACTIONS(4316), - [sym_none] = ACTIONS(4316), - [sym_true] = ACTIONS(4316), - [sym_false] = ACTIONS(4316), - [sym_nil] = ACTIONS(4316), - [anon_sym_if] = ACTIONS(4316), - [anon_sym_DOLLARif] = ACTIONS(4316), - [anon_sym_match] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_lock] = ACTIONS(4316), - [anon_sym_rlock] = ACTIONS(4316), - [anon_sym_unsafe] = ACTIONS(4316), - [anon_sym_sql] = ACTIONS(4316), - [sym_int_literal] = ACTIONS(4316), - [sym_float_literal] = ACTIONS(4316), - [sym_rune_literal] = ACTIONS(4316), - [sym_pseudo_compile_time_identifier] = ACTIONS(4316), - [anon_sym_shared] = ACTIONS(4316), - [anon_sym_map_LBRACK] = ACTIONS(4316), - [anon_sym_chan] = ACTIONS(4316), - [anon_sym_thread] = ACTIONS(4316), - [anon_sym_atomic] = ACTIONS(4316), - [anon_sym_assert] = ACTIONS(4316), - [anon_sym_defer] = ACTIONS(4316), - [anon_sym_goto] = ACTIONS(4316), - [anon_sym_break] = ACTIONS(4316), - [anon_sym_continue] = ACTIONS(4316), - [anon_sym_return] = ACTIONS(4316), - [anon_sym_DOLLARfor] = ACTIONS(4316), - [anon_sym_for] = ACTIONS(4316), - [anon_sym_POUND] = ACTIONS(4316), - [anon_sym_asm] = ACTIONS(4316), - [anon_sym_AT_LBRACK] = ACTIONS(4316), - [sym___double_quote] = ACTIONS(4316), - [sym___single_quote] = ACTIONS(4316), - [sym___c_double_quote] = ACTIONS(4316), - [sym___c_single_quote] = ACTIONS(4316), - [sym___r_double_quote] = ACTIONS(4316), - [sym___r_single_quote] = ACTIONS(4316), - }, - [1541] = { - [ts_builtin_sym_end] = ACTIONS(3143), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LF] = ACTIONS(3145), - [anon_sym_CR] = ACTIONS(3145), - [anon_sym_CR_LF] = ACTIONS(3145), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym___global] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [anon_sym_pub] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [sym_pseudo_compile_time_identifier] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_defer] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_DOLLARfor] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym_AT_LBRACK] = ACTIONS(3145), - [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), - }, - [1542] = { - [ts_builtin_sym_end] = ACTIONS(4318), - [sym_identifier] = ACTIONS(4320), - [anon_sym_LF] = ACTIONS(4320), - [anon_sym_CR] = ACTIONS(4320), - [anon_sym_CR_LF] = ACTIONS(4320), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_const] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(4320), - [anon_sym___global] = ACTIONS(4320), - [anon_sym_type] = ACTIONS(4320), - [anon_sym_fn] = ACTIONS(4320), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_STAR] = ACTIONS(4320), - [anon_sym_struct] = ACTIONS(4320), - [anon_sym_union] = ACTIONS(4320), - [anon_sym_pub] = ACTIONS(4320), - [anon_sym_mut] = ACTIONS(4320), - [anon_sym_enum] = ACTIONS(4320), - [anon_sym_interface] = ACTIONS(4320), - [anon_sym_QMARK] = ACTIONS(4320), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_go] = ACTIONS(4320), - [anon_sym_spawn] = ACTIONS(4320), - [anon_sym_json_DOTdecode] = ACTIONS(4320), - [anon_sym_LBRACK2] = ACTIONS(4320), - [anon_sym_TILDE] = ACTIONS(4320), - [anon_sym_CARET] = ACTIONS(4320), - [anon_sym_AMP] = ACTIONS(4320), - [anon_sym_LT_DASH] = ACTIONS(4320), - [sym_none] = ACTIONS(4320), - [sym_true] = ACTIONS(4320), - [sym_false] = ACTIONS(4320), - [sym_nil] = ACTIONS(4320), - [anon_sym_if] = ACTIONS(4320), - [anon_sym_DOLLARif] = ACTIONS(4320), - [anon_sym_match] = ACTIONS(4320), - [anon_sym_select] = ACTIONS(4320), - [anon_sym_lock] = ACTIONS(4320), - [anon_sym_rlock] = ACTIONS(4320), - [anon_sym_unsafe] = ACTIONS(4320), - [anon_sym_sql] = ACTIONS(4320), - [sym_int_literal] = ACTIONS(4320), - [sym_float_literal] = ACTIONS(4320), - [sym_rune_literal] = ACTIONS(4320), - [sym_pseudo_compile_time_identifier] = ACTIONS(4320), - [anon_sym_shared] = ACTIONS(4320), - [anon_sym_map_LBRACK] = ACTIONS(4320), - [anon_sym_chan] = ACTIONS(4320), - [anon_sym_thread] = ACTIONS(4320), - [anon_sym_atomic] = ACTIONS(4320), - [anon_sym_assert] = ACTIONS(4320), - [anon_sym_defer] = ACTIONS(4320), - [anon_sym_goto] = ACTIONS(4320), - [anon_sym_break] = ACTIONS(4320), - [anon_sym_continue] = ACTIONS(4320), - [anon_sym_return] = ACTIONS(4320), - [anon_sym_DOLLARfor] = ACTIONS(4320), - [anon_sym_for] = ACTIONS(4320), - [anon_sym_POUND] = ACTIONS(4320), - [anon_sym_asm] = ACTIONS(4320), - [anon_sym_AT_LBRACK] = ACTIONS(4320), - [sym___double_quote] = ACTIONS(4320), - [sym___single_quote] = ACTIONS(4320), - [sym___c_double_quote] = ACTIONS(4320), - [sym___c_single_quote] = ACTIONS(4320), - [sym___r_double_quote] = ACTIONS(4320), - [sym___r_single_quote] = ACTIONS(4320), + [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] = { - [ts_builtin_sym_end] = ACTIONS(4322), - [sym_identifier] = ACTIONS(4324), - [anon_sym_LF] = ACTIONS(4324), - [anon_sym_CR] = ACTIONS(4324), - [anon_sym_CR_LF] = ACTIONS(4324), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_const] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4324), - [anon_sym___global] = ACTIONS(4324), - [anon_sym_type] = ACTIONS(4324), - [anon_sym_fn] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4324), - [anon_sym_struct] = ACTIONS(4324), - [anon_sym_union] = ACTIONS(4324), - [anon_sym_pub] = ACTIONS(4324), - [anon_sym_mut] = ACTIONS(4324), - [anon_sym_enum] = ACTIONS(4324), - [anon_sym_interface] = ACTIONS(4324), - [anon_sym_QMARK] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_go] = ACTIONS(4324), - [anon_sym_spawn] = ACTIONS(4324), - [anon_sym_json_DOTdecode] = ACTIONS(4324), - [anon_sym_LBRACK2] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(4324), - [anon_sym_CARET] = ACTIONS(4324), - [anon_sym_AMP] = ACTIONS(4324), - [anon_sym_LT_DASH] = ACTIONS(4324), - [sym_none] = ACTIONS(4324), - [sym_true] = ACTIONS(4324), - [sym_false] = ACTIONS(4324), - [sym_nil] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_DOLLARif] = ACTIONS(4324), - [anon_sym_match] = ACTIONS(4324), - [anon_sym_select] = ACTIONS(4324), - [anon_sym_lock] = ACTIONS(4324), - [anon_sym_rlock] = ACTIONS(4324), - [anon_sym_unsafe] = ACTIONS(4324), - [anon_sym_sql] = ACTIONS(4324), - [sym_int_literal] = ACTIONS(4324), - [sym_float_literal] = ACTIONS(4324), - [sym_rune_literal] = ACTIONS(4324), - [sym_pseudo_compile_time_identifier] = ACTIONS(4324), - [anon_sym_shared] = ACTIONS(4324), - [anon_sym_map_LBRACK] = ACTIONS(4324), - [anon_sym_chan] = ACTIONS(4324), - [anon_sym_thread] = ACTIONS(4324), - [anon_sym_atomic] = ACTIONS(4324), - [anon_sym_assert] = ACTIONS(4324), - [anon_sym_defer] = ACTIONS(4324), - [anon_sym_goto] = ACTIONS(4324), - [anon_sym_break] = ACTIONS(4324), - [anon_sym_continue] = ACTIONS(4324), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_DOLLARfor] = ACTIONS(4324), - [anon_sym_for] = ACTIONS(4324), - [anon_sym_POUND] = ACTIONS(4324), - [anon_sym_asm] = ACTIONS(4324), - [anon_sym_AT_LBRACK] = ACTIONS(4324), - [sym___double_quote] = ACTIONS(4324), - [sym___single_quote] = ACTIONS(4324), - [sym___c_double_quote] = ACTIONS(4324), - [sym___c_single_quote] = ACTIONS(4324), - [sym___r_double_quote] = ACTIONS(4324), - [sym___r_single_quote] = ACTIONS(4324), + [sym_line_comment] = STATE(1543), + [sym_block_comment] = STATE(1543), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(611), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(603), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(619), + [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(599), }, [1544] = { - [ts_builtin_sym_end] = ACTIONS(4326), - [sym_identifier] = ACTIONS(4328), - [anon_sym_LF] = ACTIONS(4328), - [anon_sym_CR] = ACTIONS(4328), - [anon_sym_CR_LF] = ACTIONS(4328), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4328), - [anon_sym_LBRACE] = ACTIONS(4328), - [anon_sym_const] = ACTIONS(4328), - [anon_sym_LPAREN] = ACTIONS(4328), - [anon_sym___global] = ACTIONS(4328), - [anon_sym_type] = ACTIONS(4328), - [anon_sym_fn] = ACTIONS(4328), - [anon_sym_PLUS] = ACTIONS(4328), - [anon_sym_DASH] = ACTIONS(4328), - [anon_sym_STAR] = ACTIONS(4328), - [anon_sym_struct] = ACTIONS(4328), - [anon_sym_union] = ACTIONS(4328), - [anon_sym_pub] = ACTIONS(4328), - [anon_sym_mut] = ACTIONS(4328), - [anon_sym_enum] = ACTIONS(4328), - [anon_sym_interface] = ACTIONS(4328), - [anon_sym_QMARK] = ACTIONS(4328), - [anon_sym_BANG] = ACTIONS(4328), - [anon_sym_go] = ACTIONS(4328), - [anon_sym_spawn] = ACTIONS(4328), - [anon_sym_json_DOTdecode] = ACTIONS(4328), - [anon_sym_LBRACK2] = ACTIONS(4328), - [anon_sym_TILDE] = ACTIONS(4328), - [anon_sym_CARET] = ACTIONS(4328), - [anon_sym_AMP] = ACTIONS(4328), - [anon_sym_LT_DASH] = ACTIONS(4328), - [sym_none] = ACTIONS(4328), - [sym_true] = ACTIONS(4328), - [sym_false] = ACTIONS(4328), - [sym_nil] = ACTIONS(4328), - [anon_sym_if] = ACTIONS(4328), - [anon_sym_DOLLARif] = ACTIONS(4328), - [anon_sym_match] = ACTIONS(4328), - [anon_sym_select] = ACTIONS(4328), - [anon_sym_lock] = ACTIONS(4328), - [anon_sym_rlock] = ACTIONS(4328), - [anon_sym_unsafe] = ACTIONS(4328), - [anon_sym_sql] = ACTIONS(4328), - [sym_int_literal] = ACTIONS(4328), - [sym_float_literal] = ACTIONS(4328), - [sym_rune_literal] = ACTIONS(4328), - [sym_pseudo_compile_time_identifier] = ACTIONS(4328), - [anon_sym_shared] = ACTIONS(4328), - [anon_sym_map_LBRACK] = ACTIONS(4328), - [anon_sym_chan] = ACTIONS(4328), - [anon_sym_thread] = ACTIONS(4328), - [anon_sym_atomic] = ACTIONS(4328), - [anon_sym_assert] = ACTIONS(4328), - [anon_sym_defer] = ACTIONS(4328), - [anon_sym_goto] = ACTIONS(4328), - [anon_sym_break] = ACTIONS(4328), - [anon_sym_continue] = ACTIONS(4328), - [anon_sym_return] = ACTIONS(4328), - [anon_sym_DOLLARfor] = ACTIONS(4328), - [anon_sym_for] = ACTIONS(4328), - [anon_sym_POUND] = ACTIONS(4328), - [anon_sym_asm] = ACTIONS(4328), - [anon_sym_AT_LBRACK] = ACTIONS(4328), - [sym___double_quote] = ACTIONS(4328), - [sym___single_quote] = ACTIONS(4328), - [sym___c_double_quote] = ACTIONS(4328), - [sym___c_single_quote] = ACTIONS(4328), - [sym___r_double_quote] = ACTIONS(4328), - [sym___r_single_quote] = ACTIONS(4328), + [sym_line_comment] = STATE(1544), + [sym_block_comment] = STATE(1544), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [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_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(565), + [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(565), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(565), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(619), + [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(565), }, [1545] = { - [ts_builtin_sym_end] = ACTIONS(4330), - [sym_identifier] = ACTIONS(4332), - [anon_sym_LF] = ACTIONS(4332), - [anon_sym_CR] = ACTIONS(4332), - [anon_sym_CR_LF] = ACTIONS(4332), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4332), - [anon_sym_LBRACE] = ACTIONS(4332), - [anon_sym_const] = ACTIONS(4332), - [anon_sym_LPAREN] = ACTIONS(4332), - [anon_sym___global] = ACTIONS(4332), - [anon_sym_type] = ACTIONS(4332), - [anon_sym_fn] = ACTIONS(4332), - [anon_sym_PLUS] = ACTIONS(4332), - [anon_sym_DASH] = ACTIONS(4332), - [anon_sym_STAR] = ACTIONS(4332), - [anon_sym_struct] = ACTIONS(4332), - [anon_sym_union] = ACTIONS(4332), - [anon_sym_pub] = ACTIONS(4332), - [anon_sym_mut] = ACTIONS(4332), - [anon_sym_enum] = ACTIONS(4332), - [anon_sym_interface] = ACTIONS(4332), - [anon_sym_QMARK] = ACTIONS(4332), - [anon_sym_BANG] = ACTIONS(4332), - [anon_sym_go] = ACTIONS(4332), - [anon_sym_spawn] = ACTIONS(4332), - [anon_sym_json_DOTdecode] = ACTIONS(4332), - [anon_sym_LBRACK2] = ACTIONS(4332), - [anon_sym_TILDE] = ACTIONS(4332), - [anon_sym_CARET] = ACTIONS(4332), - [anon_sym_AMP] = ACTIONS(4332), - [anon_sym_LT_DASH] = ACTIONS(4332), - [sym_none] = ACTIONS(4332), - [sym_true] = ACTIONS(4332), - [sym_false] = ACTIONS(4332), - [sym_nil] = ACTIONS(4332), - [anon_sym_if] = ACTIONS(4332), - [anon_sym_DOLLARif] = ACTIONS(4332), - [anon_sym_match] = ACTIONS(4332), - [anon_sym_select] = ACTIONS(4332), - [anon_sym_lock] = ACTIONS(4332), - [anon_sym_rlock] = ACTIONS(4332), - [anon_sym_unsafe] = ACTIONS(4332), - [anon_sym_sql] = ACTIONS(4332), - [sym_int_literal] = ACTIONS(4332), - [sym_float_literal] = ACTIONS(4332), - [sym_rune_literal] = ACTIONS(4332), - [sym_pseudo_compile_time_identifier] = ACTIONS(4332), - [anon_sym_shared] = ACTIONS(4332), - [anon_sym_map_LBRACK] = ACTIONS(4332), - [anon_sym_chan] = ACTIONS(4332), - [anon_sym_thread] = ACTIONS(4332), - [anon_sym_atomic] = ACTIONS(4332), - [anon_sym_assert] = ACTIONS(4332), - [anon_sym_defer] = ACTIONS(4332), - [anon_sym_goto] = ACTIONS(4332), - [anon_sym_break] = ACTIONS(4332), - [anon_sym_continue] = ACTIONS(4332), - [anon_sym_return] = ACTIONS(4332), - [anon_sym_DOLLARfor] = ACTIONS(4332), - [anon_sym_for] = ACTIONS(4332), - [anon_sym_POUND] = ACTIONS(4332), - [anon_sym_asm] = ACTIONS(4332), - [anon_sym_AT_LBRACK] = ACTIONS(4332), - [sym___double_quote] = ACTIONS(4332), - [sym___single_quote] = ACTIONS(4332), - [sym___c_double_quote] = ACTIONS(4332), - [sym___c_single_quote] = ACTIONS(4332), - [sym___r_double_quote] = ACTIONS(4332), - [sym___r_single_quote] = ACTIONS(4332), + [sym_line_comment] = STATE(1545), + [sym_block_comment] = STATE(1545), + [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(497), + [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), }, [1546] = { - [ts_builtin_sym_end] = ACTIONS(4334), - [sym_identifier] = ACTIONS(4336), - [anon_sym_LF] = ACTIONS(4336), - [anon_sym_CR] = ACTIONS(4336), - [anon_sym_CR_LF] = ACTIONS(4336), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4336), - [anon_sym_LBRACE] = ACTIONS(4336), - [anon_sym_const] = ACTIONS(4336), - [anon_sym_LPAREN] = ACTIONS(4336), - [anon_sym___global] = ACTIONS(4336), - [anon_sym_type] = ACTIONS(4336), - [anon_sym_fn] = ACTIONS(4336), - [anon_sym_PLUS] = ACTIONS(4336), - [anon_sym_DASH] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4336), - [anon_sym_struct] = ACTIONS(4336), - [anon_sym_union] = ACTIONS(4336), - [anon_sym_pub] = ACTIONS(4336), - [anon_sym_mut] = ACTIONS(4336), - [anon_sym_enum] = ACTIONS(4336), - [anon_sym_interface] = ACTIONS(4336), - [anon_sym_QMARK] = ACTIONS(4336), - [anon_sym_BANG] = ACTIONS(4336), - [anon_sym_go] = ACTIONS(4336), - [anon_sym_spawn] = ACTIONS(4336), - [anon_sym_json_DOTdecode] = ACTIONS(4336), - [anon_sym_LBRACK2] = ACTIONS(4336), - [anon_sym_TILDE] = ACTIONS(4336), - [anon_sym_CARET] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym_LT_DASH] = ACTIONS(4336), - [sym_none] = ACTIONS(4336), - [sym_true] = ACTIONS(4336), - [sym_false] = ACTIONS(4336), - [sym_nil] = ACTIONS(4336), - [anon_sym_if] = ACTIONS(4336), - [anon_sym_DOLLARif] = ACTIONS(4336), - [anon_sym_match] = ACTIONS(4336), - [anon_sym_select] = ACTIONS(4336), - [anon_sym_lock] = ACTIONS(4336), - [anon_sym_rlock] = ACTIONS(4336), - [anon_sym_unsafe] = ACTIONS(4336), - [anon_sym_sql] = ACTIONS(4336), - [sym_int_literal] = ACTIONS(4336), - [sym_float_literal] = ACTIONS(4336), - [sym_rune_literal] = ACTIONS(4336), - [sym_pseudo_compile_time_identifier] = ACTIONS(4336), - [anon_sym_shared] = ACTIONS(4336), - [anon_sym_map_LBRACK] = ACTIONS(4336), - [anon_sym_chan] = ACTIONS(4336), - [anon_sym_thread] = ACTIONS(4336), - [anon_sym_atomic] = ACTIONS(4336), - [anon_sym_assert] = ACTIONS(4336), - [anon_sym_defer] = ACTIONS(4336), - [anon_sym_goto] = ACTIONS(4336), - [anon_sym_break] = ACTIONS(4336), - [anon_sym_continue] = ACTIONS(4336), - [anon_sym_return] = ACTIONS(4336), - [anon_sym_DOLLARfor] = ACTIONS(4336), - [anon_sym_for] = ACTIONS(4336), - [anon_sym_POUND] = ACTIONS(4336), - [anon_sym_asm] = ACTIONS(4336), - [anon_sym_AT_LBRACK] = ACTIONS(4336), - [sym___double_quote] = ACTIONS(4336), - [sym___single_quote] = ACTIONS(4336), - [sym___c_double_quote] = ACTIONS(4336), - [sym___c_single_quote] = ACTIONS(4336), - [sym___r_double_quote] = ACTIONS(4336), - [sym___r_single_quote] = ACTIONS(4336), + [sym_line_comment] = STATE(1546), + [sym_block_comment] = STATE(1546), + [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(497), + [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), }, [1547] = { - [ts_builtin_sym_end] = ACTIONS(4338), - [sym_identifier] = ACTIONS(4340), - [anon_sym_LF] = ACTIONS(4340), - [anon_sym_CR] = ACTIONS(4340), - [anon_sym_CR_LF] = ACTIONS(4340), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_LBRACE] = ACTIONS(4340), - [anon_sym_const] = ACTIONS(4340), - [anon_sym_LPAREN] = ACTIONS(4340), - [anon_sym___global] = ACTIONS(4340), - [anon_sym_type] = ACTIONS(4340), - [anon_sym_fn] = ACTIONS(4340), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4340), - [anon_sym_struct] = ACTIONS(4340), - [anon_sym_union] = ACTIONS(4340), - [anon_sym_pub] = ACTIONS(4340), - [anon_sym_mut] = ACTIONS(4340), - [anon_sym_enum] = ACTIONS(4340), - [anon_sym_interface] = ACTIONS(4340), - [anon_sym_QMARK] = ACTIONS(4340), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_go] = ACTIONS(4340), - [anon_sym_spawn] = ACTIONS(4340), - [anon_sym_json_DOTdecode] = ACTIONS(4340), - [anon_sym_LBRACK2] = ACTIONS(4340), - [anon_sym_TILDE] = ACTIONS(4340), - [anon_sym_CARET] = ACTIONS(4340), - [anon_sym_AMP] = ACTIONS(4340), - [anon_sym_LT_DASH] = ACTIONS(4340), - [sym_none] = ACTIONS(4340), - [sym_true] = ACTIONS(4340), - [sym_false] = ACTIONS(4340), - [sym_nil] = ACTIONS(4340), - [anon_sym_if] = ACTIONS(4340), - [anon_sym_DOLLARif] = ACTIONS(4340), - [anon_sym_match] = ACTIONS(4340), - [anon_sym_select] = ACTIONS(4340), - [anon_sym_lock] = ACTIONS(4340), - [anon_sym_rlock] = ACTIONS(4340), - [anon_sym_unsafe] = ACTIONS(4340), - [anon_sym_sql] = ACTIONS(4340), - [sym_int_literal] = ACTIONS(4340), - [sym_float_literal] = ACTIONS(4340), - [sym_rune_literal] = ACTIONS(4340), - [sym_pseudo_compile_time_identifier] = ACTIONS(4340), - [anon_sym_shared] = ACTIONS(4340), - [anon_sym_map_LBRACK] = ACTIONS(4340), - [anon_sym_chan] = ACTIONS(4340), - [anon_sym_thread] = ACTIONS(4340), - [anon_sym_atomic] = ACTIONS(4340), - [anon_sym_assert] = ACTIONS(4340), - [anon_sym_defer] = ACTIONS(4340), - [anon_sym_goto] = ACTIONS(4340), - [anon_sym_break] = ACTIONS(4340), - [anon_sym_continue] = ACTIONS(4340), - [anon_sym_return] = ACTIONS(4340), - [anon_sym_DOLLARfor] = ACTIONS(4340), - [anon_sym_for] = ACTIONS(4340), - [anon_sym_POUND] = ACTIONS(4340), - [anon_sym_asm] = ACTIONS(4340), - [anon_sym_AT_LBRACK] = ACTIONS(4340), - [sym___double_quote] = ACTIONS(4340), - [sym___single_quote] = ACTIONS(4340), - [sym___c_double_quote] = ACTIONS(4340), - [sym___c_single_quote] = ACTIONS(4340), - [sym___r_double_quote] = ACTIONS(4340), - [sym___r_single_quote] = ACTIONS(4340), + [sym_line_comment] = STATE(1547), + [sym_block_comment] = STATE(1547), + [ts_builtin_sym_end] = ACTIONS(4292), + [sym_identifier] = ACTIONS(4294), + [anon_sym_LF] = ACTIONS(4294), + [anon_sym_CR] = ACTIONS(4294), + [anon_sym_CR_LF] = ACTIONS(4294), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(4294), + [anon_sym_const] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(4294), + [anon_sym___global] = ACTIONS(4294), + [anon_sym_type] = ACTIONS(4294), + [anon_sym_fn] = ACTIONS(4294), + [anon_sym_PLUS] = ACTIONS(4294), + [anon_sym_DASH] = ACTIONS(4294), + [anon_sym_STAR] = ACTIONS(4294), + [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(4294), + [anon_sym_BANG] = ACTIONS(4294), + [anon_sym_go] = ACTIONS(4294), + [anon_sym_spawn] = ACTIONS(4294), + [anon_sym_json_DOTdecode] = ACTIONS(4294), + [anon_sym_LBRACK2] = ACTIONS(4294), + [anon_sym_TILDE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_LT_DASH] = ACTIONS(4294), + [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(4294), + [sym_rune_literal] = ACTIONS(4294), + [sym_pseudo_compile_time_identifier] = ACTIONS(4294), + [anon_sym_shared] = ACTIONS(4294), + [anon_sym_map_LBRACK] = ACTIONS(4294), + [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(4294), + [anon_sym_asm] = ACTIONS(4294), + [anon_sym_AT_LBRACK] = ACTIONS(4294), + [sym___double_quote] = ACTIONS(4294), + [sym___single_quote] = ACTIONS(4294), + [sym___c_double_quote] = ACTIONS(4294), + [sym___c_single_quote] = ACTIONS(4294), + [sym___r_double_quote] = ACTIONS(4294), + [sym___r_single_quote] = ACTIONS(4294), }, [1548] = { - [ts_builtin_sym_end] = ACTIONS(4342), - [sym_identifier] = ACTIONS(4344), - [anon_sym_LF] = ACTIONS(4344), - [anon_sym_CR] = ACTIONS(4344), - [anon_sym_CR_LF] = ACTIONS(4344), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4344), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_const] = ACTIONS(4344), - [anon_sym_LPAREN] = ACTIONS(4344), - [anon_sym___global] = ACTIONS(4344), - [anon_sym_type] = ACTIONS(4344), - [anon_sym_fn] = ACTIONS(4344), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_STAR] = ACTIONS(4344), - [anon_sym_struct] = ACTIONS(4344), - [anon_sym_union] = ACTIONS(4344), - [anon_sym_pub] = ACTIONS(4344), - [anon_sym_mut] = ACTIONS(4344), - [anon_sym_enum] = ACTIONS(4344), - [anon_sym_interface] = ACTIONS(4344), - [anon_sym_QMARK] = ACTIONS(4344), - [anon_sym_BANG] = ACTIONS(4344), - [anon_sym_go] = ACTIONS(4344), - [anon_sym_spawn] = ACTIONS(4344), - [anon_sym_json_DOTdecode] = ACTIONS(4344), - [anon_sym_LBRACK2] = ACTIONS(4344), - [anon_sym_TILDE] = ACTIONS(4344), - [anon_sym_CARET] = ACTIONS(4344), - [anon_sym_AMP] = ACTIONS(4344), - [anon_sym_LT_DASH] = ACTIONS(4344), - [sym_none] = ACTIONS(4344), - [sym_true] = ACTIONS(4344), - [sym_false] = ACTIONS(4344), - [sym_nil] = ACTIONS(4344), - [anon_sym_if] = ACTIONS(4344), - [anon_sym_DOLLARif] = ACTIONS(4344), - [anon_sym_match] = ACTIONS(4344), - [anon_sym_select] = ACTIONS(4344), - [anon_sym_lock] = ACTIONS(4344), - [anon_sym_rlock] = ACTIONS(4344), - [anon_sym_unsafe] = ACTIONS(4344), - [anon_sym_sql] = ACTIONS(4344), - [sym_int_literal] = ACTIONS(4344), - [sym_float_literal] = ACTIONS(4344), - [sym_rune_literal] = ACTIONS(4344), - [sym_pseudo_compile_time_identifier] = ACTIONS(4344), - [anon_sym_shared] = ACTIONS(4344), - [anon_sym_map_LBRACK] = ACTIONS(4344), - [anon_sym_chan] = ACTIONS(4344), - [anon_sym_thread] = ACTIONS(4344), - [anon_sym_atomic] = ACTIONS(4344), - [anon_sym_assert] = ACTIONS(4344), - [anon_sym_defer] = ACTIONS(4344), - [anon_sym_goto] = ACTIONS(4344), - [anon_sym_break] = ACTIONS(4344), - [anon_sym_continue] = ACTIONS(4344), - [anon_sym_return] = ACTIONS(4344), - [anon_sym_DOLLARfor] = ACTIONS(4344), - [anon_sym_for] = ACTIONS(4344), - [anon_sym_POUND] = ACTIONS(4344), - [anon_sym_asm] = ACTIONS(4344), - [anon_sym_AT_LBRACK] = ACTIONS(4344), - [sym___double_quote] = ACTIONS(4344), - [sym___single_quote] = ACTIONS(4344), - [sym___c_double_quote] = ACTIONS(4344), - [sym___c_single_quote] = ACTIONS(4344), - [sym___r_double_quote] = ACTIONS(4344), - [sym___r_single_quote] = ACTIONS(4344), + [sym_line_comment] = STATE(1548), + [sym_block_comment] = STATE(1548), + [ts_builtin_sym_end] = ACTIONS(4296), + [sym_identifier] = ACTIONS(4298), + [anon_sym_LF] = ACTIONS(4298), + [anon_sym_CR] = ACTIONS(4298), + [anon_sym_CR_LF] = ACTIONS(4298), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4298), + [anon_sym_const] = ACTIONS(4298), + [anon_sym_LPAREN] = ACTIONS(4298), + [anon_sym___global] = ACTIONS(4298), + [anon_sym_type] = ACTIONS(4298), + [anon_sym_fn] = ACTIONS(4298), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_STAR] = ACTIONS(4298), + [anon_sym_struct] = ACTIONS(4298), + [anon_sym_union] = ACTIONS(4298), + [anon_sym_pub] = ACTIONS(4298), + [anon_sym_mut] = ACTIONS(4298), + [anon_sym_enum] = ACTIONS(4298), + [anon_sym_interface] = ACTIONS(4298), + [anon_sym_QMARK] = ACTIONS(4298), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_go] = ACTIONS(4298), + [anon_sym_spawn] = ACTIONS(4298), + [anon_sym_json_DOTdecode] = ACTIONS(4298), + [anon_sym_LBRACK2] = ACTIONS(4298), + [anon_sym_TILDE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_LT_DASH] = ACTIONS(4298), + [sym_none] = ACTIONS(4298), + [sym_true] = ACTIONS(4298), + [sym_false] = ACTIONS(4298), + [sym_nil] = ACTIONS(4298), + [anon_sym_if] = ACTIONS(4298), + [anon_sym_DOLLARif] = ACTIONS(4298), + [anon_sym_match] = ACTIONS(4298), + [anon_sym_select] = ACTIONS(4298), + [anon_sym_lock] = ACTIONS(4298), + [anon_sym_rlock] = ACTIONS(4298), + [anon_sym_unsafe] = ACTIONS(4298), + [anon_sym_sql] = ACTIONS(4298), + [sym_int_literal] = ACTIONS(4298), + [sym_float_literal] = ACTIONS(4298), + [sym_rune_literal] = ACTIONS(4298), + [sym_pseudo_compile_time_identifier] = ACTIONS(4298), + [anon_sym_shared] = ACTIONS(4298), + [anon_sym_map_LBRACK] = ACTIONS(4298), + [anon_sym_chan] = ACTIONS(4298), + [anon_sym_thread] = ACTIONS(4298), + [anon_sym_atomic] = ACTIONS(4298), + [anon_sym_assert] = ACTIONS(4298), + [anon_sym_defer] = ACTIONS(4298), + [anon_sym_goto] = ACTIONS(4298), + [anon_sym_break] = ACTIONS(4298), + [anon_sym_continue] = ACTIONS(4298), + [anon_sym_return] = ACTIONS(4298), + [anon_sym_DOLLARfor] = ACTIONS(4298), + [anon_sym_for] = ACTIONS(4298), + [anon_sym_POUND] = ACTIONS(4298), + [anon_sym_asm] = ACTIONS(4298), + [anon_sym_AT_LBRACK] = ACTIONS(4298), + [sym___double_quote] = ACTIONS(4298), + [sym___single_quote] = ACTIONS(4298), + [sym___c_double_quote] = ACTIONS(4298), + [sym___c_single_quote] = ACTIONS(4298), + [sym___r_double_quote] = ACTIONS(4298), + [sym___r_single_quote] = ACTIONS(4298), }, [1549] = { - [ts_builtin_sym_end] = ACTIONS(4346), - [sym_identifier] = ACTIONS(4348), - [anon_sym_LF] = ACTIONS(4348), - [anon_sym_CR] = ACTIONS(4348), - [anon_sym_CR_LF] = ACTIONS(4348), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4348), - [anon_sym_LBRACE] = ACTIONS(4348), - [anon_sym_const] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym___global] = ACTIONS(4348), - [anon_sym_type] = ACTIONS(4348), - [anon_sym_fn] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4348), - [anon_sym_DASH] = ACTIONS(4348), - [anon_sym_STAR] = ACTIONS(4348), - [anon_sym_struct] = ACTIONS(4348), - [anon_sym_union] = ACTIONS(4348), - [anon_sym_pub] = ACTIONS(4348), - [anon_sym_mut] = ACTIONS(4348), - [anon_sym_enum] = ACTIONS(4348), - [anon_sym_interface] = ACTIONS(4348), - [anon_sym_QMARK] = ACTIONS(4348), - [anon_sym_BANG] = ACTIONS(4348), - [anon_sym_go] = ACTIONS(4348), - [anon_sym_spawn] = ACTIONS(4348), - [anon_sym_json_DOTdecode] = ACTIONS(4348), - [anon_sym_LBRACK2] = ACTIONS(4348), - [anon_sym_TILDE] = ACTIONS(4348), - [anon_sym_CARET] = ACTIONS(4348), - [anon_sym_AMP] = ACTIONS(4348), - [anon_sym_LT_DASH] = ACTIONS(4348), - [sym_none] = ACTIONS(4348), - [sym_true] = ACTIONS(4348), - [sym_false] = ACTIONS(4348), - [sym_nil] = ACTIONS(4348), - [anon_sym_if] = ACTIONS(4348), - [anon_sym_DOLLARif] = ACTIONS(4348), - [anon_sym_match] = ACTIONS(4348), - [anon_sym_select] = ACTIONS(4348), - [anon_sym_lock] = ACTIONS(4348), - [anon_sym_rlock] = ACTIONS(4348), - [anon_sym_unsafe] = ACTIONS(4348), - [anon_sym_sql] = ACTIONS(4348), - [sym_int_literal] = ACTIONS(4348), - [sym_float_literal] = ACTIONS(4348), - [sym_rune_literal] = ACTIONS(4348), - [sym_pseudo_compile_time_identifier] = ACTIONS(4348), - [anon_sym_shared] = ACTIONS(4348), - [anon_sym_map_LBRACK] = ACTIONS(4348), - [anon_sym_chan] = ACTIONS(4348), - [anon_sym_thread] = ACTIONS(4348), - [anon_sym_atomic] = ACTIONS(4348), - [anon_sym_assert] = ACTIONS(4348), - [anon_sym_defer] = ACTIONS(4348), - [anon_sym_goto] = ACTIONS(4348), - [anon_sym_break] = ACTIONS(4348), - [anon_sym_continue] = ACTIONS(4348), - [anon_sym_return] = ACTIONS(4348), - [anon_sym_DOLLARfor] = ACTIONS(4348), - [anon_sym_for] = ACTIONS(4348), - [anon_sym_POUND] = ACTIONS(4348), - [anon_sym_asm] = ACTIONS(4348), - [anon_sym_AT_LBRACK] = ACTIONS(4348), - [sym___double_quote] = ACTIONS(4348), - [sym___single_quote] = ACTIONS(4348), - [sym___c_double_quote] = ACTIONS(4348), - [sym___c_single_quote] = ACTIONS(4348), - [sym___r_double_quote] = ACTIONS(4348), - [sym___r_single_quote] = ACTIONS(4348), + [sym_line_comment] = STATE(1549), + [sym_block_comment] = STATE(1549), + [ts_builtin_sym_end] = ACTIONS(4300), + [sym_identifier] = ACTIONS(4302), + [anon_sym_LF] = ACTIONS(4302), + [anon_sym_CR] = ACTIONS(4302), + [anon_sym_CR_LF] = ACTIONS(4302), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4302), + [anon_sym_LBRACE] = ACTIONS(4302), + [anon_sym_const] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), + [anon_sym___global] = ACTIONS(4302), + [anon_sym_type] = ACTIONS(4302), + [anon_sym_fn] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4302), + [anon_sym_STAR] = ACTIONS(4302), + [anon_sym_struct] = ACTIONS(4302), + [anon_sym_union] = ACTIONS(4302), + [anon_sym_pub] = ACTIONS(4302), + [anon_sym_mut] = ACTIONS(4302), + [anon_sym_enum] = ACTIONS(4302), + [anon_sym_interface] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4302), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_go] = ACTIONS(4302), + [anon_sym_spawn] = ACTIONS(4302), + [anon_sym_json_DOTdecode] = ACTIONS(4302), + [anon_sym_LBRACK2] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_LT_DASH] = ACTIONS(4302), + [sym_none] = ACTIONS(4302), + [sym_true] = ACTIONS(4302), + [sym_false] = ACTIONS(4302), + [sym_nil] = ACTIONS(4302), + [anon_sym_if] = ACTIONS(4302), + [anon_sym_DOLLARif] = ACTIONS(4302), + [anon_sym_match] = ACTIONS(4302), + [anon_sym_select] = ACTIONS(4302), + [anon_sym_lock] = ACTIONS(4302), + [anon_sym_rlock] = ACTIONS(4302), + [anon_sym_unsafe] = ACTIONS(4302), + [anon_sym_sql] = ACTIONS(4302), + [sym_int_literal] = ACTIONS(4302), + [sym_float_literal] = ACTIONS(4302), + [sym_rune_literal] = ACTIONS(4302), + [sym_pseudo_compile_time_identifier] = ACTIONS(4302), + [anon_sym_shared] = ACTIONS(4302), + [anon_sym_map_LBRACK] = ACTIONS(4302), + [anon_sym_chan] = ACTIONS(4302), + [anon_sym_thread] = ACTIONS(4302), + [anon_sym_atomic] = ACTIONS(4302), + [anon_sym_assert] = ACTIONS(4302), + [anon_sym_defer] = ACTIONS(4302), + [anon_sym_goto] = ACTIONS(4302), + [anon_sym_break] = ACTIONS(4302), + [anon_sym_continue] = ACTIONS(4302), + [anon_sym_return] = ACTIONS(4302), + [anon_sym_DOLLARfor] = ACTIONS(4302), + [anon_sym_for] = ACTIONS(4302), + [anon_sym_POUND] = ACTIONS(4302), + [anon_sym_asm] = ACTIONS(4302), + [anon_sym_AT_LBRACK] = ACTIONS(4302), + [sym___double_quote] = ACTIONS(4302), + [sym___single_quote] = ACTIONS(4302), + [sym___c_double_quote] = ACTIONS(4302), + [sym___c_single_quote] = ACTIONS(4302), + [sym___r_double_quote] = ACTIONS(4302), + [sym___r_single_quote] = ACTIONS(4302), }, [1550] = { - [ts_builtin_sym_end] = ACTIONS(4350), - [sym_identifier] = ACTIONS(4352), - [anon_sym_LF] = ACTIONS(4352), - [anon_sym_CR] = ACTIONS(4352), - [anon_sym_CR_LF] = ACTIONS(4352), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4352), - [anon_sym_LBRACE] = ACTIONS(4352), - [anon_sym_const] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4352), - [anon_sym___global] = ACTIONS(4352), - [anon_sym_type] = ACTIONS(4352), - [anon_sym_fn] = ACTIONS(4352), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_struct] = ACTIONS(4352), - [anon_sym_union] = ACTIONS(4352), - [anon_sym_pub] = ACTIONS(4352), - [anon_sym_mut] = ACTIONS(4352), - [anon_sym_enum] = ACTIONS(4352), - [anon_sym_interface] = ACTIONS(4352), - [anon_sym_QMARK] = ACTIONS(4352), - [anon_sym_BANG] = ACTIONS(4352), - [anon_sym_go] = ACTIONS(4352), - [anon_sym_spawn] = ACTIONS(4352), - [anon_sym_json_DOTdecode] = ACTIONS(4352), - [anon_sym_LBRACK2] = ACTIONS(4352), - [anon_sym_TILDE] = ACTIONS(4352), - [anon_sym_CARET] = ACTIONS(4352), - [anon_sym_AMP] = ACTIONS(4352), - [anon_sym_LT_DASH] = ACTIONS(4352), - [sym_none] = ACTIONS(4352), - [sym_true] = ACTIONS(4352), - [sym_false] = ACTIONS(4352), - [sym_nil] = ACTIONS(4352), - [anon_sym_if] = ACTIONS(4352), - [anon_sym_DOLLARif] = ACTIONS(4352), - [anon_sym_match] = ACTIONS(4352), - [anon_sym_select] = ACTIONS(4352), - [anon_sym_lock] = ACTIONS(4352), - [anon_sym_rlock] = ACTIONS(4352), - [anon_sym_unsafe] = ACTIONS(4352), - [anon_sym_sql] = ACTIONS(4352), - [sym_int_literal] = ACTIONS(4352), - [sym_float_literal] = ACTIONS(4352), - [sym_rune_literal] = ACTIONS(4352), - [sym_pseudo_compile_time_identifier] = ACTIONS(4352), - [anon_sym_shared] = ACTIONS(4352), - [anon_sym_map_LBRACK] = ACTIONS(4352), - [anon_sym_chan] = ACTIONS(4352), - [anon_sym_thread] = ACTIONS(4352), - [anon_sym_atomic] = ACTIONS(4352), - [anon_sym_assert] = ACTIONS(4352), - [anon_sym_defer] = ACTIONS(4352), - [anon_sym_goto] = ACTIONS(4352), - [anon_sym_break] = ACTIONS(4352), - [anon_sym_continue] = ACTIONS(4352), - [anon_sym_return] = ACTIONS(4352), - [anon_sym_DOLLARfor] = ACTIONS(4352), - [anon_sym_for] = ACTIONS(4352), - [anon_sym_POUND] = ACTIONS(4352), - [anon_sym_asm] = ACTIONS(4352), - [anon_sym_AT_LBRACK] = ACTIONS(4352), - [sym___double_quote] = ACTIONS(4352), - [sym___single_quote] = ACTIONS(4352), - [sym___c_double_quote] = ACTIONS(4352), - [sym___c_single_quote] = ACTIONS(4352), - [sym___r_double_quote] = ACTIONS(4352), - [sym___r_single_quote] = ACTIONS(4352), + [sym_line_comment] = STATE(1550), + [sym_block_comment] = STATE(1550), + [ts_builtin_sym_end] = ACTIONS(4304), + [sym_identifier] = ACTIONS(4306), + [anon_sym_LF] = ACTIONS(4306), + [anon_sym_CR] = ACTIONS(4306), + [anon_sym_CR_LF] = ACTIONS(4306), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4306), + [anon_sym_LBRACE] = ACTIONS(4306), + [anon_sym_const] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym___global] = ACTIONS(4306), + [anon_sym_type] = ACTIONS(4306), + [anon_sym_fn] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4306), + [anon_sym_DASH] = ACTIONS(4306), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_struct] = ACTIONS(4306), + [anon_sym_union] = ACTIONS(4306), + [anon_sym_pub] = ACTIONS(4306), + [anon_sym_mut] = ACTIONS(4306), + [anon_sym_enum] = ACTIONS(4306), + [anon_sym_interface] = ACTIONS(4306), + [anon_sym_QMARK] = ACTIONS(4306), + [anon_sym_BANG] = ACTIONS(4306), + [anon_sym_go] = ACTIONS(4306), + [anon_sym_spawn] = ACTIONS(4306), + [anon_sym_json_DOTdecode] = ACTIONS(4306), + [anon_sym_LBRACK2] = ACTIONS(4306), + [anon_sym_TILDE] = ACTIONS(4306), + [anon_sym_CARET] = ACTIONS(4306), + [anon_sym_AMP] = ACTIONS(4306), + [anon_sym_LT_DASH] = ACTIONS(4306), + [sym_none] = ACTIONS(4306), + [sym_true] = ACTIONS(4306), + [sym_false] = ACTIONS(4306), + [sym_nil] = ACTIONS(4306), + [anon_sym_if] = ACTIONS(4306), + [anon_sym_DOLLARif] = ACTIONS(4306), + [anon_sym_match] = ACTIONS(4306), + [anon_sym_select] = ACTIONS(4306), + [anon_sym_lock] = ACTIONS(4306), + [anon_sym_rlock] = ACTIONS(4306), + [anon_sym_unsafe] = ACTIONS(4306), + [anon_sym_sql] = ACTIONS(4306), + [sym_int_literal] = ACTIONS(4306), + [sym_float_literal] = ACTIONS(4306), + [sym_rune_literal] = ACTIONS(4306), + [sym_pseudo_compile_time_identifier] = ACTIONS(4306), + [anon_sym_shared] = ACTIONS(4306), + [anon_sym_map_LBRACK] = ACTIONS(4306), + [anon_sym_chan] = ACTIONS(4306), + [anon_sym_thread] = ACTIONS(4306), + [anon_sym_atomic] = ACTIONS(4306), + [anon_sym_assert] = ACTIONS(4306), + [anon_sym_defer] = ACTIONS(4306), + [anon_sym_goto] = ACTIONS(4306), + [anon_sym_break] = ACTIONS(4306), + [anon_sym_continue] = ACTIONS(4306), + [anon_sym_return] = ACTIONS(4306), + [anon_sym_DOLLARfor] = ACTIONS(4306), + [anon_sym_for] = ACTIONS(4306), + [anon_sym_POUND] = ACTIONS(4306), + [anon_sym_asm] = ACTIONS(4306), + [anon_sym_AT_LBRACK] = ACTIONS(4306), + [sym___double_quote] = ACTIONS(4306), + [sym___single_quote] = ACTIONS(4306), + [sym___c_double_quote] = ACTIONS(4306), + [sym___c_single_quote] = ACTIONS(4306), + [sym___r_double_quote] = ACTIONS(4306), + [sym___r_single_quote] = ACTIONS(4306), }, [1551] = { - [ts_builtin_sym_end] = ACTIONS(4354), - [sym_identifier] = ACTIONS(4356), - [anon_sym_LF] = ACTIONS(4356), - [anon_sym_CR] = ACTIONS(4356), - [anon_sym_CR_LF] = ACTIONS(4356), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4356), - [anon_sym_LBRACE] = ACTIONS(4356), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_LPAREN] = ACTIONS(4356), - [anon_sym___global] = ACTIONS(4356), - [anon_sym_type] = ACTIONS(4356), - [anon_sym_fn] = ACTIONS(4356), - [anon_sym_PLUS] = ACTIONS(4356), - [anon_sym_DASH] = ACTIONS(4356), - [anon_sym_STAR] = ACTIONS(4356), - [anon_sym_struct] = ACTIONS(4356), - [anon_sym_union] = ACTIONS(4356), - [anon_sym_pub] = ACTIONS(4356), - [anon_sym_mut] = ACTIONS(4356), - [anon_sym_enum] = ACTIONS(4356), - [anon_sym_interface] = ACTIONS(4356), - [anon_sym_QMARK] = ACTIONS(4356), - [anon_sym_BANG] = ACTIONS(4356), - [anon_sym_go] = ACTIONS(4356), - [anon_sym_spawn] = ACTIONS(4356), - [anon_sym_json_DOTdecode] = ACTIONS(4356), - [anon_sym_LBRACK2] = ACTIONS(4356), - [anon_sym_TILDE] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4356), - [anon_sym_AMP] = ACTIONS(4356), - [anon_sym_LT_DASH] = ACTIONS(4356), - [sym_none] = ACTIONS(4356), - [sym_true] = ACTIONS(4356), - [sym_false] = ACTIONS(4356), - [sym_nil] = ACTIONS(4356), - [anon_sym_if] = ACTIONS(4356), - [anon_sym_DOLLARif] = ACTIONS(4356), - [anon_sym_match] = ACTIONS(4356), - [anon_sym_select] = ACTIONS(4356), - [anon_sym_lock] = ACTIONS(4356), - [anon_sym_rlock] = ACTIONS(4356), - [anon_sym_unsafe] = ACTIONS(4356), - [anon_sym_sql] = ACTIONS(4356), - [sym_int_literal] = ACTIONS(4356), - [sym_float_literal] = ACTIONS(4356), - [sym_rune_literal] = ACTIONS(4356), - [sym_pseudo_compile_time_identifier] = ACTIONS(4356), - [anon_sym_shared] = ACTIONS(4356), - [anon_sym_map_LBRACK] = ACTIONS(4356), - [anon_sym_chan] = ACTIONS(4356), - [anon_sym_thread] = ACTIONS(4356), - [anon_sym_atomic] = ACTIONS(4356), - [anon_sym_assert] = ACTIONS(4356), - [anon_sym_defer] = ACTIONS(4356), - [anon_sym_goto] = ACTIONS(4356), - [anon_sym_break] = ACTIONS(4356), - [anon_sym_continue] = ACTIONS(4356), - [anon_sym_return] = ACTIONS(4356), - [anon_sym_DOLLARfor] = ACTIONS(4356), - [anon_sym_for] = ACTIONS(4356), - [anon_sym_POUND] = ACTIONS(4356), - [anon_sym_asm] = ACTIONS(4356), - [anon_sym_AT_LBRACK] = ACTIONS(4356), - [sym___double_quote] = ACTIONS(4356), - [sym___single_quote] = ACTIONS(4356), - [sym___c_double_quote] = ACTIONS(4356), - [sym___c_single_quote] = ACTIONS(4356), - [sym___r_double_quote] = ACTIONS(4356), - [sym___r_single_quote] = ACTIONS(4356), + [sym_line_comment] = STATE(1551), + [sym_block_comment] = STATE(1551), + [ts_builtin_sym_end] = ACTIONS(4308), + [sym_identifier] = ACTIONS(4310), + [anon_sym_LF] = ACTIONS(4310), + [anon_sym_CR] = ACTIONS(4310), + [anon_sym_CR_LF] = ACTIONS(4310), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4310), + [anon_sym_LBRACE] = ACTIONS(4310), + [anon_sym_const] = ACTIONS(4310), + [anon_sym_LPAREN] = ACTIONS(4310), + [anon_sym___global] = ACTIONS(4310), + [anon_sym_type] = ACTIONS(4310), + [anon_sym_fn] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4310), + [anon_sym_DASH] = ACTIONS(4310), + [anon_sym_STAR] = ACTIONS(4310), + [anon_sym_struct] = ACTIONS(4310), + [anon_sym_union] = ACTIONS(4310), + [anon_sym_pub] = ACTIONS(4310), + [anon_sym_mut] = ACTIONS(4310), + [anon_sym_enum] = ACTIONS(4310), + [anon_sym_interface] = ACTIONS(4310), + [anon_sym_QMARK] = ACTIONS(4310), + [anon_sym_BANG] = ACTIONS(4310), + [anon_sym_go] = ACTIONS(4310), + [anon_sym_spawn] = ACTIONS(4310), + [anon_sym_json_DOTdecode] = ACTIONS(4310), + [anon_sym_LBRACK2] = ACTIONS(4310), + [anon_sym_TILDE] = ACTIONS(4310), + [anon_sym_CARET] = ACTIONS(4310), + [anon_sym_AMP] = ACTIONS(4310), + [anon_sym_LT_DASH] = ACTIONS(4310), + [sym_none] = ACTIONS(4310), + [sym_true] = ACTIONS(4310), + [sym_false] = ACTIONS(4310), + [sym_nil] = ACTIONS(4310), + [anon_sym_if] = ACTIONS(4310), + [anon_sym_DOLLARif] = ACTIONS(4310), + [anon_sym_match] = ACTIONS(4310), + [anon_sym_select] = ACTIONS(4310), + [anon_sym_lock] = ACTIONS(4310), + [anon_sym_rlock] = ACTIONS(4310), + [anon_sym_unsafe] = ACTIONS(4310), + [anon_sym_sql] = ACTIONS(4310), + [sym_int_literal] = ACTIONS(4310), + [sym_float_literal] = ACTIONS(4310), + [sym_rune_literal] = ACTIONS(4310), + [sym_pseudo_compile_time_identifier] = ACTIONS(4310), + [anon_sym_shared] = ACTIONS(4310), + [anon_sym_map_LBRACK] = ACTIONS(4310), + [anon_sym_chan] = ACTIONS(4310), + [anon_sym_thread] = ACTIONS(4310), + [anon_sym_atomic] = ACTIONS(4310), + [anon_sym_assert] = ACTIONS(4310), + [anon_sym_defer] = ACTIONS(4310), + [anon_sym_goto] = ACTIONS(4310), + [anon_sym_break] = ACTIONS(4310), + [anon_sym_continue] = ACTIONS(4310), + [anon_sym_return] = ACTIONS(4310), + [anon_sym_DOLLARfor] = ACTIONS(4310), + [anon_sym_for] = ACTIONS(4310), + [anon_sym_POUND] = ACTIONS(4310), + [anon_sym_asm] = ACTIONS(4310), + [anon_sym_AT_LBRACK] = ACTIONS(4310), + [sym___double_quote] = ACTIONS(4310), + [sym___single_quote] = ACTIONS(4310), + [sym___c_double_quote] = ACTIONS(4310), + [sym___c_single_quote] = ACTIONS(4310), + [sym___r_double_quote] = ACTIONS(4310), + [sym___r_single_quote] = ACTIONS(4310), }, [1552] = { - [ts_builtin_sym_end] = ACTIONS(4358), - [sym_identifier] = ACTIONS(4360), - [anon_sym_LF] = ACTIONS(4360), - [anon_sym_CR] = ACTIONS(4360), - [anon_sym_CR_LF] = ACTIONS(4360), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4360), - [anon_sym_LBRACE] = ACTIONS(4360), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_LPAREN] = ACTIONS(4360), - [anon_sym___global] = ACTIONS(4360), - [anon_sym_type] = ACTIONS(4360), - [anon_sym_fn] = ACTIONS(4360), - [anon_sym_PLUS] = ACTIONS(4360), - [anon_sym_DASH] = ACTIONS(4360), - [anon_sym_STAR] = ACTIONS(4360), - [anon_sym_struct] = ACTIONS(4360), - [anon_sym_union] = ACTIONS(4360), - [anon_sym_pub] = ACTIONS(4360), - [anon_sym_mut] = ACTIONS(4360), - [anon_sym_enum] = ACTIONS(4360), - [anon_sym_interface] = ACTIONS(4360), - [anon_sym_QMARK] = ACTIONS(4360), - [anon_sym_BANG] = ACTIONS(4360), - [anon_sym_go] = ACTIONS(4360), - [anon_sym_spawn] = ACTIONS(4360), - [anon_sym_json_DOTdecode] = ACTIONS(4360), - [anon_sym_LBRACK2] = ACTIONS(4360), - [anon_sym_TILDE] = ACTIONS(4360), - [anon_sym_CARET] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_LT_DASH] = ACTIONS(4360), - [sym_none] = ACTIONS(4360), - [sym_true] = ACTIONS(4360), - [sym_false] = ACTIONS(4360), - [sym_nil] = ACTIONS(4360), - [anon_sym_if] = ACTIONS(4360), - [anon_sym_DOLLARif] = ACTIONS(4360), - [anon_sym_match] = ACTIONS(4360), - [anon_sym_select] = ACTIONS(4360), - [anon_sym_lock] = ACTIONS(4360), - [anon_sym_rlock] = ACTIONS(4360), - [anon_sym_unsafe] = ACTIONS(4360), - [anon_sym_sql] = ACTIONS(4360), - [sym_int_literal] = ACTIONS(4360), - [sym_float_literal] = ACTIONS(4360), - [sym_rune_literal] = ACTIONS(4360), - [sym_pseudo_compile_time_identifier] = ACTIONS(4360), - [anon_sym_shared] = ACTIONS(4360), - [anon_sym_map_LBRACK] = ACTIONS(4360), - [anon_sym_chan] = ACTIONS(4360), - [anon_sym_thread] = ACTIONS(4360), - [anon_sym_atomic] = ACTIONS(4360), - [anon_sym_assert] = ACTIONS(4360), - [anon_sym_defer] = ACTIONS(4360), - [anon_sym_goto] = ACTIONS(4360), - [anon_sym_break] = ACTIONS(4360), - [anon_sym_continue] = ACTIONS(4360), - [anon_sym_return] = ACTIONS(4360), - [anon_sym_DOLLARfor] = ACTIONS(4360), - [anon_sym_for] = ACTIONS(4360), - [anon_sym_POUND] = ACTIONS(4360), - [anon_sym_asm] = ACTIONS(4360), - [anon_sym_AT_LBRACK] = ACTIONS(4360), - [sym___double_quote] = ACTIONS(4360), - [sym___single_quote] = ACTIONS(4360), - [sym___c_double_quote] = ACTIONS(4360), - [sym___c_single_quote] = ACTIONS(4360), - [sym___r_double_quote] = ACTIONS(4360), - [sym___r_single_quote] = ACTIONS(4360), + [sym_line_comment] = STATE(1552), + [sym_block_comment] = STATE(1552), + [ts_builtin_sym_end] = ACTIONS(4312), + [sym_identifier] = ACTIONS(4314), + [anon_sym_LF] = ACTIONS(4314), + [anon_sym_CR] = ACTIONS(4314), + [anon_sym_CR_LF] = ACTIONS(4314), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4314), + [anon_sym_LBRACE] = ACTIONS(4314), + [anon_sym_const] = ACTIONS(4314), + [anon_sym_LPAREN] = ACTIONS(4314), + [anon_sym___global] = ACTIONS(4314), + [anon_sym_type] = ACTIONS(4314), + [anon_sym_fn] = ACTIONS(4314), + [anon_sym_PLUS] = ACTIONS(4314), + [anon_sym_DASH] = ACTIONS(4314), + [anon_sym_STAR] = ACTIONS(4314), + [anon_sym_struct] = ACTIONS(4314), + [anon_sym_union] = ACTIONS(4314), + [anon_sym_pub] = ACTIONS(4314), + [anon_sym_mut] = ACTIONS(4314), + [anon_sym_enum] = ACTIONS(4314), + [anon_sym_interface] = ACTIONS(4314), + [anon_sym_QMARK] = ACTIONS(4314), + [anon_sym_BANG] = ACTIONS(4314), + [anon_sym_go] = ACTIONS(4314), + [anon_sym_spawn] = ACTIONS(4314), + [anon_sym_json_DOTdecode] = ACTIONS(4314), + [anon_sym_LBRACK2] = ACTIONS(4314), + [anon_sym_TILDE] = ACTIONS(4314), + [anon_sym_CARET] = ACTIONS(4314), + [anon_sym_AMP] = ACTIONS(4314), + [anon_sym_LT_DASH] = ACTIONS(4314), + [sym_none] = ACTIONS(4314), + [sym_true] = ACTIONS(4314), + [sym_false] = ACTIONS(4314), + [sym_nil] = ACTIONS(4314), + [anon_sym_if] = ACTIONS(4314), + [anon_sym_DOLLARif] = ACTIONS(4314), + [anon_sym_match] = ACTIONS(4314), + [anon_sym_select] = ACTIONS(4314), + [anon_sym_lock] = ACTIONS(4314), + [anon_sym_rlock] = ACTIONS(4314), + [anon_sym_unsafe] = ACTIONS(4314), + [anon_sym_sql] = ACTIONS(4314), + [sym_int_literal] = ACTIONS(4314), + [sym_float_literal] = ACTIONS(4314), + [sym_rune_literal] = ACTIONS(4314), + [sym_pseudo_compile_time_identifier] = ACTIONS(4314), + [anon_sym_shared] = ACTIONS(4314), + [anon_sym_map_LBRACK] = ACTIONS(4314), + [anon_sym_chan] = ACTIONS(4314), + [anon_sym_thread] = ACTIONS(4314), + [anon_sym_atomic] = ACTIONS(4314), + [anon_sym_assert] = ACTIONS(4314), + [anon_sym_defer] = ACTIONS(4314), + [anon_sym_goto] = ACTIONS(4314), + [anon_sym_break] = ACTIONS(4314), + [anon_sym_continue] = ACTIONS(4314), + [anon_sym_return] = ACTIONS(4314), + [anon_sym_DOLLARfor] = ACTIONS(4314), + [anon_sym_for] = ACTIONS(4314), + [anon_sym_POUND] = ACTIONS(4314), + [anon_sym_asm] = ACTIONS(4314), + [anon_sym_AT_LBRACK] = ACTIONS(4314), + [sym___double_quote] = ACTIONS(4314), + [sym___single_quote] = ACTIONS(4314), + [sym___c_double_quote] = ACTIONS(4314), + [sym___c_single_quote] = ACTIONS(4314), + [sym___r_double_quote] = ACTIONS(4314), + [sym___r_single_quote] = ACTIONS(4314), }, [1553] = { - [ts_builtin_sym_end] = ACTIONS(4362), - [sym_identifier] = ACTIONS(4364), - [anon_sym_LF] = ACTIONS(4364), - [anon_sym_CR] = ACTIONS(4364), - [anon_sym_CR_LF] = ACTIONS(4364), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4364), - [anon_sym_LBRACE] = ACTIONS(4364), - [anon_sym_const] = ACTIONS(4364), - [anon_sym_LPAREN] = ACTIONS(4364), - [anon_sym___global] = ACTIONS(4364), - [anon_sym_type] = ACTIONS(4364), - [anon_sym_fn] = ACTIONS(4364), - [anon_sym_PLUS] = ACTIONS(4364), - [anon_sym_DASH] = ACTIONS(4364), - [anon_sym_STAR] = ACTIONS(4364), - [anon_sym_struct] = ACTIONS(4364), - [anon_sym_union] = ACTIONS(4364), - [anon_sym_pub] = ACTIONS(4364), - [anon_sym_mut] = ACTIONS(4364), - [anon_sym_enum] = ACTIONS(4364), - [anon_sym_interface] = ACTIONS(4364), - [anon_sym_QMARK] = ACTIONS(4364), - [anon_sym_BANG] = ACTIONS(4364), - [anon_sym_go] = ACTIONS(4364), - [anon_sym_spawn] = ACTIONS(4364), - [anon_sym_json_DOTdecode] = ACTIONS(4364), - [anon_sym_LBRACK2] = ACTIONS(4364), - [anon_sym_TILDE] = ACTIONS(4364), - [anon_sym_CARET] = ACTIONS(4364), - [anon_sym_AMP] = ACTIONS(4364), - [anon_sym_LT_DASH] = ACTIONS(4364), - [sym_none] = ACTIONS(4364), - [sym_true] = ACTIONS(4364), - [sym_false] = ACTIONS(4364), - [sym_nil] = ACTIONS(4364), - [anon_sym_if] = ACTIONS(4364), - [anon_sym_DOLLARif] = ACTIONS(4364), - [anon_sym_match] = ACTIONS(4364), - [anon_sym_select] = ACTIONS(4364), - [anon_sym_lock] = ACTIONS(4364), - [anon_sym_rlock] = ACTIONS(4364), - [anon_sym_unsafe] = ACTIONS(4364), - [anon_sym_sql] = ACTIONS(4364), - [sym_int_literal] = ACTIONS(4364), - [sym_float_literal] = ACTIONS(4364), - [sym_rune_literal] = ACTIONS(4364), - [sym_pseudo_compile_time_identifier] = ACTIONS(4364), - [anon_sym_shared] = ACTIONS(4364), - [anon_sym_map_LBRACK] = ACTIONS(4364), - [anon_sym_chan] = ACTIONS(4364), - [anon_sym_thread] = ACTIONS(4364), - [anon_sym_atomic] = ACTIONS(4364), - [anon_sym_assert] = ACTIONS(4364), - [anon_sym_defer] = ACTIONS(4364), - [anon_sym_goto] = ACTIONS(4364), - [anon_sym_break] = ACTIONS(4364), - [anon_sym_continue] = ACTIONS(4364), - [anon_sym_return] = ACTIONS(4364), - [anon_sym_DOLLARfor] = ACTIONS(4364), - [anon_sym_for] = ACTIONS(4364), - [anon_sym_POUND] = ACTIONS(4364), - [anon_sym_asm] = ACTIONS(4364), - [anon_sym_AT_LBRACK] = ACTIONS(4364), - [sym___double_quote] = ACTIONS(4364), - [sym___single_quote] = ACTIONS(4364), - [sym___c_double_quote] = ACTIONS(4364), - [sym___c_single_quote] = ACTIONS(4364), - [sym___r_double_quote] = ACTIONS(4364), - [sym___r_single_quote] = ACTIONS(4364), + [sym_line_comment] = STATE(1553), + [sym_block_comment] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(4316), + [sym_identifier] = ACTIONS(4318), + [anon_sym_LF] = ACTIONS(4318), + [anon_sym_CR] = ACTIONS(4318), + [anon_sym_CR_LF] = ACTIONS(4318), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4318), + [anon_sym_LBRACE] = ACTIONS(4318), + [anon_sym_const] = ACTIONS(4318), + [anon_sym_LPAREN] = ACTIONS(4318), + [anon_sym___global] = ACTIONS(4318), + [anon_sym_type] = ACTIONS(4318), + [anon_sym_fn] = ACTIONS(4318), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4318), + [anon_sym_struct] = ACTIONS(4318), + [anon_sym_union] = ACTIONS(4318), + [anon_sym_pub] = ACTIONS(4318), + [anon_sym_mut] = ACTIONS(4318), + [anon_sym_enum] = ACTIONS(4318), + [anon_sym_interface] = ACTIONS(4318), + [anon_sym_QMARK] = ACTIONS(4318), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_go] = ACTIONS(4318), + [anon_sym_spawn] = ACTIONS(4318), + [anon_sym_json_DOTdecode] = ACTIONS(4318), + [anon_sym_LBRACK2] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(4318), + [anon_sym_CARET] = ACTIONS(4318), + [anon_sym_AMP] = ACTIONS(4318), + [anon_sym_LT_DASH] = ACTIONS(4318), + [sym_none] = ACTIONS(4318), + [sym_true] = ACTIONS(4318), + [sym_false] = ACTIONS(4318), + [sym_nil] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_DOLLARif] = ACTIONS(4318), + [anon_sym_match] = ACTIONS(4318), + [anon_sym_select] = ACTIONS(4318), + [anon_sym_lock] = ACTIONS(4318), + [anon_sym_rlock] = ACTIONS(4318), + [anon_sym_unsafe] = ACTIONS(4318), + [anon_sym_sql] = ACTIONS(4318), + [sym_int_literal] = ACTIONS(4318), + [sym_float_literal] = ACTIONS(4318), + [sym_rune_literal] = ACTIONS(4318), + [sym_pseudo_compile_time_identifier] = ACTIONS(4318), + [anon_sym_shared] = ACTIONS(4318), + [anon_sym_map_LBRACK] = ACTIONS(4318), + [anon_sym_chan] = ACTIONS(4318), + [anon_sym_thread] = ACTIONS(4318), + [anon_sym_atomic] = ACTIONS(4318), + [anon_sym_assert] = ACTIONS(4318), + [anon_sym_defer] = ACTIONS(4318), + [anon_sym_goto] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_DOLLARfor] = ACTIONS(4318), + [anon_sym_for] = ACTIONS(4318), + [anon_sym_POUND] = ACTIONS(4318), + [anon_sym_asm] = ACTIONS(4318), + [anon_sym_AT_LBRACK] = ACTIONS(4318), + [sym___double_quote] = ACTIONS(4318), + [sym___single_quote] = ACTIONS(4318), + [sym___c_double_quote] = ACTIONS(4318), + [sym___c_single_quote] = ACTIONS(4318), + [sym___r_double_quote] = ACTIONS(4318), + [sym___r_single_quote] = ACTIONS(4318), }, [1554] = { - [ts_builtin_sym_end] = ACTIONS(4366), - [sym_identifier] = ACTIONS(4368), - [anon_sym_LF] = ACTIONS(4368), - [anon_sym_CR] = ACTIONS(4368), - [anon_sym_CR_LF] = ACTIONS(4368), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4368), - [anon_sym_LBRACE] = ACTIONS(4368), - [anon_sym_const] = ACTIONS(4368), - [anon_sym_LPAREN] = ACTIONS(4368), - [anon_sym___global] = ACTIONS(4368), - [anon_sym_type] = ACTIONS(4368), - [anon_sym_fn] = ACTIONS(4368), - [anon_sym_PLUS] = ACTIONS(4368), - [anon_sym_DASH] = ACTIONS(4368), - [anon_sym_STAR] = ACTIONS(4368), - [anon_sym_struct] = ACTIONS(4368), - [anon_sym_union] = ACTIONS(4368), - [anon_sym_pub] = ACTIONS(4368), - [anon_sym_mut] = ACTIONS(4368), - [anon_sym_enum] = ACTIONS(4368), - [anon_sym_interface] = ACTIONS(4368), - [anon_sym_QMARK] = ACTIONS(4368), - [anon_sym_BANG] = ACTIONS(4368), - [anon_sym_go] = ACTIONS(4368), - [anon_sym_spawn] = ACTIONS(4368), - [anon_sym_json_DOTdecode] = ACTIONS(4368), - [anon_sym_LBRACK2] = ACTIONS(4368), - [anon_sym_TILDE] = ACTIONS(4368), - [anon_sym_CARET] = ACTIONS(4368), - [anon_sym_AMP] = ACTIONS(4368), - [anon_sym_LT_DASH] = ACTIONS(4368), - [sym_none] = ACTIONS(4368), - [sym_true] = ACTIONS(4368), - [sym_false] = ACTIONS(4368), - [sym_nil] = ACTIONS(4368), - [anon_sym_if] = ACTIONS(4368), - [anon_sym_DOLLARif] = ACTIONS(4368), - [anon_sym_match] = ACTIONS(4368), - [anon_sym_select] = ACTIONS(4368), - [anon_sym_lock] = ACTIONS(4368), - [anon_sym_rlock] = ACTIONS(4368), - [anon_sym_unsafe] = ACTIONS(4368), - [anon_sym_sql] = ACTIONS(4368), - [sym_int_literal] = ACTIONS(4368), - [sym_float_literal] = ACTIONS(4368), - [sym_rune_literal] = ACTIONS(4368), - [sym_pseudo_compile_time_identifier] = ACTIONS(4368), - [anon_sym_shared] = ACTIONS(4368), - [anon_sym_map_LBRACK] = ACTIONS(4368), - [anon_sym_chan] = ACTIONS(4368), - [anon_sym_thread] = ACTIONS(4368), - [anon_sym_atomic] = ACTIONS(4368), - [anon_sym_assert] = ACTIONS(4368), - [anon_sym_defer] = ACTIONS(4368), - [anon_sym_goto] = ACTIONS(4368), - [anon_sym_break] = ACTIONS(4368), - [anon_sym_continue] = ACTIONS(4368), - [anon_sym_return] = ACTIONS(4368), - [anon_sym_DOLLARfor] = ACTIONS(4368), - [anon_sym_for] = ACTIONS(4368), - [anon_sym_POUND] = ACTIONS(4368), - [anon_sym_asm] = ACTIONS(4368), - [anon_sym_AT_LBRACK] = ACTIONS(4368), - [sym___double_quote] = ACTIONS(4368), - [sym___single_quote] = ACTIONS(4368), - [sym___c_double_quote] = ACTIONS(4368), - [sym___c_single_quote] = ACTIONS(4368), - [sym___r_double_quote] = ACTIONS(4368), - [sym___r_single_quote] = ACTIONS(4368), + [sym_line_comment] = STATE(1554), + [sym_block_comment] = STATE(1554), + [ts_builtin_sym_end] = ACTIONS(4320), + [sym_identifier] = ACTIONS(4322), + [anon_sym_LF] = ACTIONS(4322), + [anon_sym_CR] = ACTIONS(4322), + [anon_sym_CR_LF] = ACTIONS(4322), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4322), + [anon_sym_const] = ACTIONS(4322), + [anon_sym_LPAREN] = ACTIONS(4322), + [anon_sym___global] = ACTIONS(4322), + [anon_sym_type] = ACTIONS(4322), + [anon_sym_fn] = ACTIONS(4322), + [anon_sym_PLUS] = ACTIONS(4322), + [anon_sym_DASH] = ACTIONS(4322), + [anon_sym_STAR] = ACTIONS(4322), + [anon_sym_struct] = ACTIONS(4322), + [anon_sym_union] = ACTIONS(4322), + [anon_sym_pub] = ACTIONS(4322), + [anon_sym_mut] = ACTIONS(4322), + [anon_sym_enum] = ACTIONS(4322), + [anon_sym_interface] = ACTIONS(4322), + [anon_sym_QMARK] = ACTIONS(4322), + [anon_sym_BANG] = ACTIONS(4322), + [anon_sym_go] = ACTIONS(4322), + [anon_sym_spawn] = ACTIONS(4322), + [anon_sym_json_DOTdecode] = ACTIONS(4322), + [anon_sym_LBRACK2] = ACTIONS(4322), + [anon_sym_TILDE] = ACTIONS(4322), + [anon_sym_CARET] = ACTIONS(4322), + [anon_sym_AMP] = ACTIONS(4322), + [anon_sym_LT_DASH] = ACTIONS(4322), + [sym_none] = ACTIONS(4322), + [sym_true] = ACTIONS(4322), + [sym_false] = ACTIONS(4322), + [sym_nil] = ACTIONS(4322), + [anon_sym_if] = ACTIONS(4322), + [anon_sym_DOLLARif] = ACTIONS(4322), + [anon_sym_match] = ACTIONS(4322), + [anon_sym_select] = ACTIONS(4322), + [anon_sym_lock] = ACTIONS(4322), + [anon_sym_rlock] = ACTIONS(4322), + [anon_sym_unsafe] = ACTIONS(4322), + [anon_sym_sql] = ACTIONS(4322), + [sym_int_literal] = ACTIONS(4322), + [sym_float_literal] = ACTIONS(4322), + [sym_rune_literal] = ACTIONS(4322), + [sym_pseudo_compile_time_identifier] = ACTIONS(4322), + [anon_sym_shared] = ACTIONS(4322), + [anon_sym_map_LBRACK] = ACTIONS(4322), + [anon_sym_chan] = ACTIONS(4322), + [anon_sym_thread] = ACTIONS(4322), + [anon_sym_atomic] = ACTIONS(4322), + [anon_sym_assert] = ACTIONS(4322), + [anon_sym_defer] = ACTIONS(4322), + [anon_sym_goto] = ACTIONS(4322), + [anon_sym_break] = ACTIONS(4322), + [anon_sym_continue] = ACTIONS(4322), + [anon_sym_return] = ACTIONS(4322), + [anon_sym_DOLLARfor] = ACTIONS(4322), + [anon_sym_for] = ACTIONS(4322), + [anon_sym_POUND] = ACTIONS(4322), + [anon_sym_asm] = ACTIONS(4322), + [anon_sym_AT_LBRACK] = ACTIONS(4322), + [sym___double_quote] = ACTIONS(4322), + [sym___single_quote] = ACTIONS(4322), + [sym___c_double_quote] = ACTIONS(4322), + [sym___c_single_quote] = ACTIONS(4322), + [sym___r_double_quote] = ACTIONS(4322), + [sym___r_single_quote] = ACTIONS(4322), }, [1555] = { - [ts_builtin_sym_end] = ACTIONS(4370), - [sym_identifier] = ACTIONS(4372), - [anon_sym_LF] = ACTIONS(4372), - [anon_sym_CR] = ACTIONS(4372), - [anon_sym_CR_LF] = ACTIONS(4372), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4372), - [anon_sym_LBRACE] = ACTIONS(4372), - [anon_sym_const] = ACTIONS(4372), - [anon_sym_LPAREN] = ACTIONS(4372), - [anon_sym___global] = ACTIONS(4372), - [anon_sym_type] = ACTIONS(4372), - [anon_sym_fn] = ACTIONS(4372), - [anon_sym_PLUS] = ACTIONS(4372), - [anon_sym_DASH] = ACTIONS(4372), - [anon_sym_STAR] = ACTIONS(4372), - [anon_sym_struct] = ACTIONS(4372), - [anon_sym_union] = ACTIONS(4372), - [anon_sym_pub] = ACTIONS(4372), - [anon_sym_mut] = ACTIONS(4372), - [anon_sym_enum] = ACTIONS(4372), - [anon_sym_interface] = ACTIONS(4372), - [anon_sym_QMARK] = ACTIONS(4372), - [anon_sym_BANG] = ACTIONS(4372), - [anon_sym_go] = ACTIONS(4372), - [anon_sym_spawn] = ACTIONS(4372), - [anon_sym_json_DOTdecode] = ACTIONS(4372), - [anon_sym_LBRACK2] = ACTIONS(4372), - [anon_sym_TILDE] = ACTIONS(4372), - [anon_sym_CARET] = ACTIONS(4372), - [anon_sym_AMP] = ACTIONS(4372), - [anon_sym_LT_DASH] = ACTIONS(4372), - [sym_none] = ACTIONS(4372), - [sym_true] = ACTIONS(4372), - [sym_false] = ACTIONS(4372), - [sym_nil] = ACTIONS(4372), - [anon_sym_if] = ACTIONS(4372), - [anon_sym_DOLLARif] = ACTIONS(4372), - [anon_sym_match] = ACTIONS(4372), - [anon_sym_select] = ACTIONS(4372), - [anon_sym_lock] = ACTIONS(4372), - [anon_sym_rlock] = ACTIONS(4372), - [anon_sym_unsafe] = ACTIONS(4372), - [anon_sym_sql] = ACTIONS(4372), - [sym_int_literal] = ACTIONS(4372), - [sym_float_literal] = ACTIONS(4372), - [sym_rune_literal] = ACTIONS(4372), - [sym_pseudo_compile_time_identifier] = ACTIONS(4372), - [anon_sym_shared] = ACTIONS(4372), - [anon_sym_map_LBRACK] = ACTIONS(4372), - [anon_sym_chan] = ACTIONS(4372), - [anon_sym_thread] = ACTIONS(4372), - [anon_sym_atomic] = ACTIONS(4372), - [anon_sym_assert] = ACTIONS(4372), - [anon_sym_defer] = ACTIONS(4372), - [anon_sym_goto] = ACTIONS(4372), - [anon_sym_break] = ACTIONS(4372), - [anon_sym_continue] = ACTIONS(4372), - [anon_sym_return] = ACTIONS(4372), - [anon_sym_DOLLARfor] = ACTIONS(4372), - [anon_sym_for] = ACTIONS(4372), - [anon_sym_POUND] = ACTIONS(4372), - [anon_sym_asm] = ACTIONS(4372), - [anon_sym_AT_LBRACK] = ACTIONS(4372), - [sym___double_quote] = ACTIONS(4372), - [sym___single_quote] = ACTIONS(4372), - [sym___c_double_quote] = ACTIONS(4372), - [sym___c_single_quote] = ACTIONS(4372), - [sym___r_double_quote] = ACTIONS(4372), - [sym___r_single_quote] = ACTIONS(4372), + [sym_line_comment] = STATE(1555), + [sym_block_comment] = STATE(1555), + [ts_builtin_sym_end] = ACTIONS(3227), + [sym_identifier] = ACTIONS(3229), + [anon_sym_LF] = ACTIONS(3229), + [anon_sym_CR] = ACTIONS(3229), + [anon_sym_CR_LF] = ACTIONS(3229), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym___global] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), + [anon_sym_fn] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_struct] = ACTIONS(3229), + [anon_sym_union] = ACTIONS(3229), + [anon_sym_pub] = ACTIONS(3229), + [anon_sym_mut] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), + [anon_sym_QMARK] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_go] = ACTIONS(3229), + [anon_sym_spawn] = ACTIONS(3229), + [anon_sym_json_DOTdecode] = ACTIONS(3229), + [anon_sym_LBRACK2] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_LT_DASH] = ACTIONS(3229), + [sym_none] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_nil] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_DOLLARif] = ACTIONS(3229), + [anon_sym_match] = ACTIONS(3229), + [anon_sym_select] = ACTIONS(3229), + [anon_sym_lock] = ACTIONS(3229), + [anon_sym_rlock] = ACTIONS(3229), + [anon_sym_unsafe] = ACTIONS(3229), + [anon_sym_sql] = ACTIONS(3229), + [sym_int_literal] = ACTIONS(3229), + [sym_float_literal] = ACTIONS(3229), + [sym_rune_literal] = ACTIONS(3229), + [sym_pseudo_compile_time_identifier] = ACTIONS(3229), + [anon_sym_shared] = ACTIONS(3229), + [anon_sym_map_LBRACK] = ACTIONS(3229), + [anon_sym_chan] = ACTIONS(3229), + [anon_sym_thread] = ACTIONS(3229), + [anon_sym_atomic] = ACTIONS(3229), + [anon_sym_assert] = ACTIONS(3229), + [anon_sym_defer] = ACTIONS(3229), + [anon_sym_goto] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_DOLLARfor] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_POUND] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(3229), + [anon_sym_AT_LBRACK] = ACTIONS(3229), + [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), }, [1556] = { - [ts_builtin_sym_end] = ACTIONS(4374), - [sym_identifier] = ACTIONS(4376), - [anon_sym_LF] = ACTIONS(4376), - [anon_sym_CR] = ACTIONS(4376), - [anon_sym_CR_LF] = ACTIONS(4376), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4376), - [anon_sym_LBRACE] = ACTIONS(4376), - [anon_sym_const] = ACTIONS(4376), - [anon_sym_LPAREN] = ACTIONS(4376), - [anon_sym___global] = ACTIONS(4376), - [anon_sym_type] = ACTIONS(4376), - [anon_sym_fn] = ACTIONS(4376), - [anon_sym_PLUS] = ACTIONS(4376), - [anon_sym_DASH] = ACTIONS(4376), - [anon_sym_STAR] = ACTIONS(4376), - [anon_sym_struct] = ACTIONS(4376), - [anon_sym_union] = ACTIONS(4376), - [anon_sym_pub] = ACTIONS(4376), - [anon_sym_mut] = ACTIONS(4376), - [anon_sym_enum] = ACTIONS(4376), - [anon_sym_interface] = ACTIONS(4376), - [anon_sym_QMARK] = ACTIONS(4376), - [anon_sym_BANG] = ACTIONS(4376), - [anon_sym_go] = ACTIONS(4376), - [anon_sym_spawn] = ACTIONS(4376), - [anon_sym_json_DOTdecode] = ACTIONS(4376), - [anon_sym_LBRACK2] = ACTIONS(4376), - [anon_sym_TILDE] = ACTIONS(4376), - [anon_sym_CARET] = ACTIONS(4376), - [anon_sym_AMP] = ACTIONS(4376), - [anon_sym_LT_DASH] = ACTIONS(4376), - [sym_none] = ACTIONS(4376), - [sym_true] = ACTIONS(4376), - [sym_false] = ACTIONS(4376), - [sym_nil] = ACTIONS(4376), - [anon_sym_if] = ACTIONS(4376), - [anon_sym_DOLLARif] = ACTIONS(4376), - [anon_sym_match] = ACTIONS(4376), - [anon_sym_select] = ACTIONS(4376), - [anon_sym_lock] = ACTIONS(4376), - [anon_sym_rlock] = ACTIONS(4376), - [anon_sym_unsafe] = ACTIONS(4376), - [anon_sym_sql] = ACTIONS(4376), - [sym_int_literal] = ACTIONS(4376), - [sym_float_literal] = ACTIONS(4376), - [sym_rune_literal] = ACTIONS(4376), - [sym_pseudo_compile_time_identifier] = ACTIONS(4376), - [anon_sym_shared] = ACTIONS(4376), - [anon_sym_map_LBRACK] = ACTIONS(4376), - [anon_sym_chan] = ACTIONS(4376), - [anon_sym_thread] = ACTIONS(4376), - [anon_sym_atomic] = ACTIONS(4376), - [anon_sym_assert] = ACTIONS(4376), - [anon_sym_defer] = ACTIONS(4376), - [anon_sym_goto] = ACTIONS(4376), - [anon_sym_break] = ACTIONS(4376), - [anon_sym_continue] = ACTIONS(4376), - [anon_sym_return] = ACTIONS(4376), - [anon_sym_DOLLARfor] = ACTIONS(4376), - [anon_sym_for] = ACTIONS(4376), - [anon_sym_POUND] = ACTIONS(4376), - [anon_sym_asm] = ACTIONS(4376), - [anon_sym_AT_LBRACK] = ACTIONS(4376), - [sym___double_quote] = ACTIONS(4376), - [sym___single_quote] = ACTIONS(4376), - [sym___c_double_quote] = ACTIONS(4376), - [sym___c_single_quote] = ACTIONS(4376), - [sym___r_double_quote] = ACTIONS(4376), - [sym___r_single_quote] = ACTIONS(4376), + [sym_line_comment] = STATE(1556), + [sym_block_comment] = STATE(1556), + [ts_builtin_sym_end] = ACTIONS(4324), + [sym_identifier] = ACTIONS(4326), + [anon_sym_LF] = ACTIONS(4326), + [anon_sym_CR] = ACTIONS(4326), + [anon_sym_CR_LF] = ACTIONS(4326), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(4326), + [anon_sym_const] = ACTIONS(4326), + [anon_sym_LPAREN] = ACTIONS(4326), + [anon_sym___global] = ACTIONS(4326), + [anon_sym_type] = ACTIONS(4326), + [anon_sym_fn] = ACTIONS(4326), + [anon_sym_PLUS] = ACTIONS(4326), + [anon_sym_DASH] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4326), + [anon_sym_struct] = ACTIONS(4326), + [anon_sym_union] = ACTIONS(4326), + [anon_sym_pub] = ACTIONS(4326), + [anon_sym_mut] = ACTIONS(4326), + [anon_sym_enum] = ACTIONS(4326), + [anon_sym_interface] = ACTIONS(4326), + [anon_sym_QMARK] = ACTIONS(4326), + [anon_sym_BANG] = ACTIONS(4326), + [anon_sym_go] = ACTIONS(4326), + [anon_sym_spawn] = ACTIONS(4326), + [anon_sym_json_DOTdecode] = ACTIONS(4326), + [anon_sym_LBRACK2] = ACTIONS(4326), + [anon_sym_TILDE] = ACTIONS(4326), + [anon_sym_CARET] = ACTIONS(4326), + [anon_sym_AMP] = ACTIONS(4326), + [anon_sym_LT_DASH] = ACTIONS(4326), + [sym_none] = ACTIONS(4326), + [sym_true] = ACTIONS(4326), + [sym_false] = ACTIONS(4326), + [sym_nil] = ACTIONS(4326), + [anon_sym_if] = ACTIONS(4326), + [anon_sym_DOLLARif] = ACTIONS(4326), + [anon_sym_match] = ACTIONS(4326), + [anon_sym_select] = ACTIONS(4326), + [anon_sym_lock] = ACTIONS(4326), + [anon_sym_rlock] = ACTIONS(4326), + [anon_sym_unsafe] = ACTIONS(4326), + [anon_sym_sql] = ACTIONS(4326), + [sym_int_literal] = ACTIONS(4326), + [sym_float_literal] = ACTIONS(4326), + [sym_rune_literal] = ACTIONS(4326), + [sym_pseudo_compile_time_identifier] = ACTIONS(4326), + [anon_sym_shared] = ACTIONS(4326), + [anon_sym_map_LBRACK] = ACTIONS(4326), + [anon_sym_chan] = ACTIONS(4326), + [anon_sym_thread] = ACTIONS(4326), + [anon_sym_atomic] = ACTIONS(4326), + [anon_sym_assert] = ACTIONS(4326), + [anon_sym_defer] = ACTIONS(4326), + [anon_sym_goto] = ACTIONS(4326), + [anon_sym_break] = ACTIONS(4326), + [anon_sym_continue] = ACTIONS(4326), + [anon_sym_return] = ACTIONS(4326), + [anon_sym_DOLLARfor] = ACTIONS(4326), + [anon_sym_for] = ACTIONS(4326), + [anon_sym_POUND] = ACTIONS(4326), + [anon_sym_asm] = ACTIONS(4326), + [anon_sym_AT_LBRACK] = ACTIONS(4326), + [sym___double_quote] = ACTIONS(4326), + [sym___single_quote] = ACTIONS(4326), + [sym___c_double_quote] = ACTIONS(4326), + [sym___c_single_quote] = ACTIONS(4326), + [sym___r_double_quote] = ACTIONS(4326), + [sym___r_single_quote] = ACTIONS(4326), }, [1557] = { - [ts_builtin_sym_end] = ACTIONS(4378), - [sym_identifier] = ACTIONS(4380), - [anon_sym_LF] = ACTIONS(4380), - [anon_sym_CR] = ACTIONS(4380), - [anon_sym_CR_LF] = ACTIONS(4380), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4380), - [anon_sym_LBRACE] = ACTIONS(4380), - [anon_sym_const] = ACTIONS(4380), - [anon_sym_LPAREN] = ACTIONS(4380), - [anon_sym___global] = ACTIONS(4380), - [anon_sym_type] = ACTIONS(4380), - [anon_sym_fn] = ACTIONS(4380), - [anon_sym_PLUS] = ACTIONS(4380), - [anon_sym_DASH] = ACTIONS(4380), - [anon_sym_STAR] = ACTIONS(4380), - [anon_sym_struct] = ACTIONS(4380), - [anon_sym_union] = ACTIONS(4380), - [anon_sym_pub] = ACTIONS(4380), - [anon_sym_mut] = ACTIONS(4380), - [anon_sym_enum] = ACTIONS(4380), - [anon_sym_interface] = ACTIONS(4380), - [anon_sym_QMARK] = ACTIONS(4380), - [anon_sym_BANG] = ACTIONS(4380), - [anon_sym_go] = ACTIONS(4380), - [anon_sym_spawn] = ACTIONS(4380), - [anon_sym_json_DOTdecode] = ACTIONS(4380), - [anon_sym_LBRACK2] = ACTIONS(4380), - [anon_sym_TILDE] = ACTIONS(4380), - [anon_sym_CARET] = ACTIONS(4380), - [anon_sym_AMP] = ACTIONS(4380), - [anon_sym_LT_DASH] = ACTIONS(4380), - [sym_none] = ACTIONS(4380), - [sym_true] = ACTIONS(4380), - [sym_false] = ACTIONS(4380), - [sym_nil] = ACTIONS(4380), - [anon_sym_if] = ACTIONS(4380), - [anon_sym_DOLLARif] = ACTIONS(4380), - [anon_sym_match] = ACTIONS(4380), - [anon_sym_select] = ACTIONS(4380), - [anon_sym_lock] = ACTIONS(4380), - [anon_sym_rlock] = ACTIONS(4380), - [anon_sym_unsafe] = ACTIONS(4380), - [anon_sym_sql] = ACTIONS(4380), - [sym_int_literal] = ACTIONS(4380), - [sym_float_literal] = ACTIONS(4380), - [sym_rune_literal] = ACTIONS(4380), - [sym_pseudo_compile_time_identifier] = ACTIONS(4380), - [anon_sym_shared] = ACTIONS(4380), - [anon_sym_map_LBRACK] = ACTIONS(4380), - [anon_sym_chan] = ACTIONS(4380), - [anon_sym_thread] = ACTIONS(4380), - [anon_sym_atomic] = ACTIONS(4380), - [anon_sym_assert] = ACTIONS(4380), - [anon_sym_defer] = ACTIONS(4380), - [anon_sym_goto] = ACTIONS(4380), - [anon_sym_break] = ACTIONS(4380), - [anon_sym_continue] = ACTIONS(4380), - [anon_sym_return] = ACTIONS(4380), - [anon_sym_DOLLARfor] = ACTIONS(4380), - [anon_sym_for] = ACTIONS(4380), - [anon_sym_POUND] = ACTIONS(4380), - [anon_sym_asm] = ACTIONS(4380), - [anon_sym_AT_LBRACK] = ACTIONS(4380), - [sym___double_quote] = ACTIONS(4380), - [sym___single_quote] = ACTIONS(4380), - [sym___c_double_quote] = ACTIONS(4380), - [sym___c_single_quote] = ACTIONS(4380), - [sym___r_double_quote] = ACTIONS(4380), - [sym___r_single_quote] = ACTIONS(4380), + [sym_line_comment] = STATE(1557), + [sym_block_comment] = STATE(1557), + [ts_builtin_sym_end] = ACTIONS(4328), + [sym_identifier] = ACTIONS(4330), + [anon_sym_LF] = ACTIONS(4330), + [anon_sym_CR] = ACTIONS(4330), + [anon_sym_CR_LF] = ACTIONS(4330), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_const] = ACTIONS(4330), + [anon_sym_LPAREN] = ACTIONS(4330), + [anon_sym___global] = ACTIONS(4330), + [anon_sym_type] = ACTIONS(4330), + [anon_sym_fn] = ACTIONS(4330), + [anon_sym_PLUS] = ACTIONS(4330), + [anon_sym_DASH] = ACTIONS(4330), + [anon_sym_STAR] = ACTIONS(4330), + [anon_sym_struct] = ACTIONS(4330), + [anon_sym_union] = ACTIONS(4330), + [anon_sym_pub] = ACTIONS(4330), + [anon_sym_mut] = ACTIONS(4330), + [anon_sym_enum] = ACTIONS(4330), + [anon_sym_interface] = ACTIONS(4330), + [anon_sym_QMARK] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(4330), + [anon_sym_go] = ACTIONS(4330), + [anon_sym_spawn] = ACTIONS(4330), + [anon_sym_json_DOTdecode] = ACTIONS(4330), + [anon_sym_LBRACK2] = ACTIONS(4330), + [anon_sym_TILDE] = ACTIONS(4330), + [anon_sym_CARET] = ACTIONS(4330), + [anon_sym_AMP] = ACTIONS(4330), + [anon_sym_LT_DASH] = ACTIONS(4330), + [sym_none] = ACTIONS(4330), + [sym_true] = ACTIONS(4330), + [sym_false] = ACTIONS(4330), + [sym_nil] = ACTIONS(4330), + [anon_sym_if] = ACTIONS(4330), + [anon_sym_DOLLARif] = ACTIONS(4330), + [anon_sym_match] = ACTIONS(4330), + [anon_sym_select] = ACTIONS(4330), + [anon_sym_lock] = ACTIONS(4330), + [anon_sym_rlock] = ACTIONS(4330), + [anon_sym_unsafe] = ACTIONS(4330), + [anon_sym_sql] = ACTIONS(4330), + [sym_int_literal] = ACTIONS(4330), + [sym_float_literal] = ACTIONS(4330), + [sym_rune_literal] = ACTIONS(4330), + [sym_pseudo_compile_time_identifier] = ACTIONS(4330), + [anon_sym_shared] = ACTIONS(4330), + [anon_sym_map_LBRACK] = ACTIONS(4330), + [anon_sym_chan] = ACTIONS(4330), + [anon_sym_thread] = ACTIONS(4330), + [anon_sym_atomic] = ACTIONS(4330), + [anon_sym_assert] = ACTIONS(4330), + [anon_sym_defer] = ACTIONS(4330), + [anon_sym_goto] = ACTIONS(4330), + [anon_sym_break] = ACTIONS(4330), + [anon_sym_continue] = ACTIONS(4330), + [anon_sym_return] = ACTIONS(4330), + [anon_sym_DOLLARfor] = ACTIONS(4330), + [anon_sym_for] = ACTIONS(4330), + [anon_sym_POUND] = ACTIONS(4330), + [anon_sym_asm] = ACTIONS(4330), + [anon_sym_AT_LBRACK] = ACTIONS(4330), + [sym___double_quote] = ACTIONS(4330), + [sym___single_quote] = ACTIONS(4330), + [sym___c_double_quote] = ACTIONS(4330), + [sym___c_single_quote] = ACTIONS(4330), + [sym___r_double_quote] = ACTIONS(4330), + [sym___r_single_quote] = ACTIONS(4330), }, [1558] = { - [ts_builtin_sym_end] = ACTIONS(4382), - [sym_identifier] = ACTIONS(4384), - [anon_sym_LF] = ACTIONS(4384), - [anon_sym_CR] = ACTIONS(4384), - [anon_sym_CR_LF] = ACTIONS(4384), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_const] = ACTIONS(4384), - [anon_sym_LPAREN] = ACTIONS(4384), - [anon_sym___global] = ACTIONS(4384), - [anon_sym_type] = ACTIONS(4384), - [anon_sym_fn] = ACTIONS(4384), - [anon_sym_PLUS] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4384), - [anon_sym_STAR] = ACTIONS(4384), - [anon_sym_struct] = ACTIONS(4384), - [anon_sym_union] = ACTIONS(4384), - [anon_sym_pub] = ACTIONS(4384), - [anon_sym_mut] = ACTIONS(4384), - [anon_sym_enum] = ACTIONS(4384), - [anon_sym_interface] = ACTIONS(4384), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_go] = ACTIONS(4384), - [anon_sym_spawn] = ACTIONS(4384), - [anon_sym_json_DOTdecode] = ACTIONS(4384), - [anon_sym_LBRACK2] = ACTIONS(4384), - [anon_sym_TILDE] = ACTIONS(4384), - [anon_sym_CARET] = ACTIONS(4384), - [anon_sym_AMP] = ACTIONS(4384), - [anon_sym_LT_DASH] = ACTIONS(4384), - [sym_none] = ACTIONS(4384), - [sym_true] = ACTIONS(4384), - [sym_false] = ACTIONS(4384), - [sym_nil] = ACTIONS(4384), - [anon_sym_if] = ACTIONS(4384), - [anon_sym_DOLLARif] = ACTIONS(4384), - [anon_sym_match] = ACTIONS(4384), - [anon_sym_select] = ACTIONS(4384), - [anon_sym_lock] = ACTIONS(4384), - [anon_sym_rlock] = ACTIONS(4384), - [anon_sym_unsafe] = ACTIONS(4384), - [anon_sym_sql] = ACTIONS(4384), - [sym_int_literal] = ACTIONS(4384), - [sym_float_literal] = ACTIONS(4384), - [sym_rune_literal] = ACTIONS(4384), - [sym_pseudo_compile_time_identifier] = ACTIONS(4384), - [anon_sym_shared] = ACTIONS(4384), - [anon_sym_map_LBRACK] = ACTIONS(4384), - [anon_sym_chan] = ACTIONS(4384), - [anon_sym_thread] = ACTIONS(4384), - [anon_sym_atomic] = ACTIONS(4384), - [anon_sym_assert] = ACTIONS(4384), - [anon_sym_defer] = ACTIONS(4384), - [anon_sym_goto] = ACTIONS(4384), - [anon_sym_break] = ACTIONS(4384), - [anon_sym_continue] = ACTIONS(4384), - [anon_sym_return] = ACTIONS(4384), - [anon_sym_DOLLARfor] = ACTIONS(4384), - [anon_sym_for] = ACTIONS(4384), - [anon_sym_POUND] = ACTIONS(4384), - [anon_sym_asm] = ACTIONS(4384), - [anon_sym_AT_LBRACK] = ACTIONS(4384), - [sym___double_quote] = ACTIONS(4384), - [sym___single_quote] = ACTIONS(4384), - [sym___c_double_quote] = ACTIONS(4384), - [sym___c_single_quote] = ACTIONS(4384), - [sym___r_double_quote] = ACTIONS(4384), - [sym___r_single_quote] = ACTIONS(4384), + [sym_line_comment] = STATE(1558), + [sym_block_comment] = STATE(1558), + [ts_builtin_sym_end] = ACTIONS(4332), + [sym_identifier] = ACTIONS(4334), + [anon_sym_LF] = ACTIONS(4334), + [anon_sym_CR] = ACTIONS(4334), + [anon_sym_CR_LF] = ACTIONS(4334), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4334), + [anon_sym_LBRACE] = ACTIONS(4334), + [anon_sym_const] = ACTIONS(4334), + [anon_sym_LPAREN] = ACTIONS(4334), + [anon_sym___global] = ACTIONS(4334), + [anon_sym_type] = ACTIONS(4334), + [anon_sym_fn] = ACTIONS(4334), + [anon_sym_PLUS] = ACTIONS(4334), + [anon_sym_DASH] = ACTIONS(4334), + [anon_sym_STAR] = ACTIONS(4334), + [anon_sym_struct] = ACTIONS(4334), + [anon_sym_union] = ACTIONS(4334), + [anon_sym_pub] = ACTIONS(4334), + [anon_sym_mut] = ACTIONS(4334), + [anon_sym_enum] = ACTIONS(4334), + [anon_sym_interface] = ACTIONS(4334), + [anon_sym_QMARK] = ACTIONS(4334), + [anon_sym_BANG] = ACTIONS(4334), + [anon_sym_go] = ACTIONS(4334), + [anon_sym_spawn] = ACTIONS(4334), + [anon_sym_json_DOTdecode] = ACTIONS(4334), + [anon_sym_LBRACK2] = ACTIONS(4334), + [anon_sym_TILDE] = ACTIONS(4334), + [anon_sym_CARET] = ACTIONS(4334), + [anon_sym_AMP] = ACTIONS(4334), + [anon_sym_LT_DASH] = ACTIONS(4334), + [sym_none] = ACTIONS(4334), + [sym_true] = ACTIONS(4334), + [sym_false] = ACTIONS(4334), + [sym_nil] = ACTIONS(4334), + [anon_sym_if] = ACTIONS(4334), + [anon_sym_DOLLARif] = ACTIONS(4334), + [anon_sym_match] = ACTIONS(4334), + [anon_sym_select] = ACTIONS(4334), + [anon_sym_lock] = ACTIONS(4334), + [anon_sym_rlock] = ACTIONS(4334), + [anon_sym_unsafe] = ACTIONS(4334), + [anon_sym_sql] = ACTIONS(4334), + [sym_int_literal] = ACTIONS(4334), + [sym_float_literal] = ACTIONS(4334), + [sym_rune_literal] = ACTIONS(4334), + [sym_pseudo_compile_time_identifier] = ACTIONS(4334), + [anon_sym_shared] = ACTIONS(4334), + [anon_sym_map_LBRACK] = ACTIONS(4334), + [anon_sym_chan] = ACTIONS(4334), + [anon_sym_thread] = ACTIONS(4334), + [anon_sym_atomic] = ACTIONS(4334), + [anon_sym_assert] = ACTIONS(4334), + [anon_sym_defer] = ACTIONS(4334), + [anon_sym_goto] = ACTIONS(4334), + [anon_sym_break] = ACTIONS(4334), + [anon_sym_continue] = ACTIONS(4334), + [anon_sym_return] = ACTIONS(4334), + [anon_sym_DOLLARfor] = ACTIONS(4334), + [anon_sym_for] = ACTIONS(4334), + [anon_sym_POUND] = ACTIONS(4334), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym_AT_LBRACK] = ACTIONS(4334), + [sym___double_quote] = ACTIONS(4334), + [sym___single_quote] = ACTIONS(4334), + [sym___c_double_quote] = ACTIONS(4334), + [sym___c_single_quote] = ACTIONS(4334), + [sym___r_double_quote] = ACTIONS(4334), + [sym___r_single_quote] = ACTIONS(4334), }, [1559] = { - [ts_builtin_sym_end] = ACTIONS(4386), - [sym_identifier] = ACTIONS(4388), - [anon_sym_LF] = ACTIONS(4388), - [anon_sym_CR] = ACTIONS(4388), - [anon_sym_CR_LF] = ACTIONS(4388), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4388), - [anon_sym_LBRACE] = ACTIONS(4388), - [anon_sym_const] = ACTIONS(4388), - [anon_sym_LPAREN] = ACTIONS(4388), - [anon_sym___global] = ACTIONS(4388), - [anon_sym_type] = ACTIONS(4388), - [anon_sym_fn] = ACTIONS(4388), - [anon_sym_PLUS] = ACTIONS(4388), - [anon_sym_DASH] = ACTIONS(4388), - [anon_sym_STAR] = ACTIONS(4388), - [anon_sym_struct] = ACTIONS(4388), - [anon_sym_union] = ACTIONS(4388), - [anon_sym_pub] = ACTIONS(4388), - [anon_sym_mut] = ACTIONS(4388), - [anon_sym_enum] = ACTIONS(4388), - [anon_sym_interface] = ACTIONS(4388), - [anon_sym_QMARK] = ACTIONS(4388), - [anon_sym_BANG] = ACTIONS(4388), - [anon_sym_go] = ACTIONS(4388), - [anon_sym_spawn] = ACTIONS(4388), - [anon_sym_json_DOTdecode] = ACTIONS(4388), - [anon_sym_LBRACK2] = ACTIONS(4388), - [anon_sym_TILDE] = ACTIONS(4388), - [anon_sym_CARET] = ACTIONS(4388), - [anon_sym_AMP] = ACTIONS(4388), - [anon_sym_LT_DASH] = ACTIONS(4388), - [sym_none] = ACTIONS(4388), - [sym_true] = ACTIONS(4388), - [sym_false] = ACTIONS(4388), - [sym_nil] = ACTIONS(4388), - [anon_sym_if] = ACTIONS(4388), - [anon_sym_DOLLARif] = ACTIONS(4388), - [anon_sym_match] = ACTIONS(4388), - [anon_sym_select] = ACTIONS(4388), - [anon_sym_lock] = ACTIONS(4388), - [anon_sym_rlock] = ACTIONS(4388), - [anon_sym_unsafe] = ACTIONS(4388), - [anon_sym_sql] = ACTIONS(4388), - [sym_int_literal] = ACTIONS(4388), - [sym_float_literal] = ACTIONS(4388), - [sym_rune_literal] = ACTIONS(4388), - [sym_pseudo_compile_time_identifier] = ACTIONS(4388), - [anon_sym_shared] = ACTIONS(4388), - [anon_sym_map_LBRACK] = ACTIONS(4388), - [anon_sym_chan] = ACTIONS(4388), - [anon_sym_thread] = ACTIONS(4388), - [anon_sym_atomic] = ACTIONS(4388), - [anon_sym_assert] = ACTIONS(4388), - [anon_sym_defer] = ACTIONS(4388), - [anon_sym_goto] = ACTIONS(4388), - [anon_sym_break] = ACTIONS(4388), - [anon_sym_continue] = ACTIONS(4388), - [anon_sym_return] = ACTIONS(4388), - [anon_sym_DOLLARfor] = ACTIONS(4388), - [anon_sym_for] = ACTIONS(4388), - [anon_sym_POUND] = ACTIONS(4388), - [anon_sym_asm] = ACTIONS(4388), - [anon_sym_AT_LBRACK] = ACTIONS(4388), - [sym___double_quote] = ACTIONS(4388), - [sym___single_quote] = ACTIONS(4388), - [sym___c_double_quote] = ACTIONS(4388), - [sym___c_single_quote] = ACTIONS(4388), - [sym___r_double_quote] = ACTIONS(4388), - [sym___r_single_quote] = ACTIONS(4388), + [sym_line_comment] = STATE(1559), + [sym_block_comment] = STATE(1559), + [ts_builtin_sym_end] = ACTIONS(4336), + [sym_identifier] = ACTIONS(4338), + [anon_sym_LF] = ACTIONS(4338), + [anon_sym_CR] = ACTIONS(4338), + [anon_sym_CR_LF] = ACTIONS(4338), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4338), + [anon_sym_LBRACE] = ACTIONS(4338), + [anon_sym_const] = ACTIONS(4338), + [anon_sym_LPAREN] = ACTIONS(4338), + [anon_sym___global] = ACTIONS(4338), + [anon_sym_type] = ACTIONS(4338), + [anon_sym_fn] = ACTIONS(4338), + [anon_sym_PLUS] = ACTIONS(4338), + [anon_sym_DASH] = ACTIONS(4338), + [anon_sym_STAR] = ACTIONS(4338), + [anon_sym_struct] = ACTIONS(4338), + [anon_sym_union] = ACTIONS(4338), + [anon_sym_pub] = ACTIONS(4338), + [anon_sym_mut] = ACTIONS(4338), + [anon_sym_enum] = ACTIONS(4338), + [anon_sym_interface] = ACTIONS(4338), + [anon_sym_QMARK] = ACTIONS(4338), + [anon_sym_BANG] = ACTIONS(4338), + [anon_sym_go] = ACTIONS(4338), + [anon_sym_spawn] = ACTIONS(4338), + [anon_sym_json_DOTdecode] = ACTIONS(4338), + [anon_sym_LBRACK2] = ACTIONS(4338), + [anon_sym_TILDE] = ACTIONS(4338), + [anon_sym_CARET] = ACTIONS(4338), + [anon_sym_AMP] = ACTIONS(4338), + [anon_sym_LT_DASH] = ACTIONS(4338), + [sym_none] = ACTIONS(4338), + [sym_true] = ACTIONS(4338), + [sym_false] = ACTIONS(4338), + [sym_nil] = ACTIONS(4338), + [anon_sym_if] = ACTIONS(4338), + [anon_sym_DOLLARif] = ACTIONS(4338), + [anon_sym_match] = ACTIONS(4338), + [anon_sym_select] = ACTIONS(4338), + [anon_sym_lock] = ACTIONS(4338), + [anon_sym_rlock] = ACTIONS(4338), + [anon_sym_unsafe] = ACTIONS(4338), + [anon_sym_sql] = ACTIONS(4338), + [sym_int_literal] = ACTIONS(4338), + [sym_float_literal] = ACTIONS(4338), + [sym_rune_literal] = ACTIONS(4338), + [sym_pseudo_compile_time_identifier] = ACTIONS(4338), + [anon_sym_shared] = ACTIONS(4338), + [anon_sym_map_LBRACK] = ACTIONS(4338), + [anon_sym_chan] = ACTIONS(4338), + [anon_sym_thread] = ACTIONS(4338), + [anon_sym_atomic] = ACTIONS(4338), + [anon_sym_assert] = ACTIONS(4338), + [anon_sym_defer] = ACTIONS(4338), + [anon_sym_goto] = ACTIONS(4338), + [anon_sym_break] = ACTIONS(4338), + [anon_sym_continue] = ACTIONS(4338), + [anon_sym_return] = ACTIONS(4338), + [anon_sym_DOLLARfor] = ACTIONS(4338), + [anon_sym_for] = ACTIONS(4338), + [anon_sym_POUND] = ACTIONS(4338), + [anon_sym_asm] = ACTIONS(4338), + [anon_sym_AT_LBRACK] = ACTIONS(4338), + [sym___double_quote] = ACTIONS(4338), + [sym___single_quote] = ACTIONS(4338), + [sym___c_double_quote] = ACTIONS(4338), + [sym___c_single_quote] = ACTIONS(4338), + [sym___r_double_quote] = ACTIONS(4338), + [sym___r_single_quote] = ACTIONS(4338), }, [1560] = { - [ts_builtin_sym_end] = ACTIONS(4390), - [sym_identifier] = ACTIONS(4392), - [anon_sym_LF] = ACTIONS(4392), - [anon_sym_CR] = ACTIONS(4392), - [anon_sym_CR_LF] = ACTIONS(4392), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4392), - [anon_sym_LBRACE] = ACTIONS(4392), - [anon_sym_const] = ACTIONS(4392), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym___global] = ACTIONS(4392), - [anon_sym_type] = ACTIONS(4392), - [anon_sym_fn] = ACTIONS(4392), - [anon_sym_PLUS] = ACTIONS(4392), - [anon_sym_DASH] = ACTIONS(4392), - [anon_sym_STAR] = ACTIONS(4392), - [anon_sym_struct] = ACTIONS(4392), - [anon_sym_union] = ACTIONS(4392), - [anon_sym_pub] = ACTIONS(4392), - [anon_sym_mut] = ACTIONS(4392), - [anon_sym_enum] = ACTIONS(4392), - [anon_sym_interface] = ACTIONS(4392), - [anon_sym_QMARK] = ACTIONS(4392), - [anon_sym_BANG] = ACTIONS(4392), - [anon_sym_go] = ACTIONS(4392), - [anon_sym_spawn] = ACTIONS(4392), - [anon_sym_json_DOTdecode] = ACTIONS(4392), - [anon_sym_LBRACK2] = ACTIONS(4392), - [anon_sym_TILDE] = ACTIONS(4392), - [anon_sym_CARET] = ACTIONS(4392), - [anon_sym_AMP] = ACTIONS(4392), - [anon_sym_LT_DASH] = ACTIONS(4392), - [sym_none] = ACTIONS(4392), - [sym_true] = ACTIONS(4392), - [sym_false] = ACTIONS(4392), - [sym_nil] = ACTIONS(4392), - [anon_sym_if] = ACTIONS(4392), - [anon_sym_DOLLARif] = ACTIONS(4392), - [anon_sym_match] = ACTIONS(4392), - [anon_sym_select] = ACTIONS(4392), - [anon_sym_lock] = ACTIONS(4392), - [anon_sym_rlock] = ACTIONS(4392), - [anon_sym_unsafe] = ACTIONS(4392), - [anon_sym_sql] = ACTIONS(4392), - [sym_int_literal] = ACTIONS(4392), - [sym_float_literal] = ACTIONS(4392), - [sym_rune_literal] = ACTIONS(4392), - [sym_pseudo_compile_time_identifier] = ACTIONS(4392), - [anon_sym_shared] = ACTIONS(4392), - [anon_sym_map_LBRACK] = ACTIONS(4392), - [anon_sym_chan] = ACTIONS(4392), - [anon_sym_thread] = ACTIONS(4392), - [anon_sym_atomic] = ACTIONS(4392), - [anon_sym_assert] = ACTIONS(4392), - [anon_sym_defer] = ACTIONS(4392), - [anon_sym_goto] = ACTIONS(4392), - [anon_sym_break] = ACTIONS(4392), - [anon_sym_continue] = ACTIONS(4392), - [anon_sym_return] = ACTIONS(4392), - [anon_sym_DOLLARfor] = ACTIONS(4392), - [anon_sym_for] = ACTIONS(4392), - [anon_sym_POUND] = ACTIONS(4392), - [anon_sym_asm] = ACTIONS(4392), - [anon_sym_AT_LBRACK] = ACTIONS(4392), - [sym___double_quote] = ACTIONS(4392), - [sym___single_quote] = ACTIONS(4392), - [sym___c_double_quote] = ACTIONS(4392), - [sym___c_single_quote] = ACTIONS(4392), - [sym___r_double_quote] = ACTIONS(4392), - [sym___r_single_quote] = ACTIONS(4392), + [sym_line_comment] = STATE(1560), + [sym_block_comment] = STATE(1560), + [ts_builtin_sym_end] = ACTIONS(4340), + [sym_identifier] = ACTIONS(4342), + [anon_sym_LF] = ACTIONS(4342), + [anon_sym_CR] = ACTIONS(4342), + [anon_sym_CR_LF] = ACTIONS(4342), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_LBRACE] = ACTIONS(4342), + [anon_sym_const] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4342), + [anon_sym___global] = ACTIONS(4342), + [anon_sym_type] = ACTIONS(4342), + [anon_sym_fn] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4342), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4342), + [anon_sym_struct] = ACTIONS(4342), + [anon_sym_union] = ACTIONS(4342), + [anon_sym_pub] = ACTIONS(4342), + [anon_sym_mut] = ACTIONS(4342), + [anon_sym_enum] = ACTIONS(4342), + [anon_sym_interface] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4342), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_go] = ACTIONS(4342), + [anon_sym_spawn] = ACTIONS(4342), + [anon_sym_json_DOTdecode] = ACTIONS(4342), + [anon_sym_LBRACK2] = ACTIONS(4342), + [anon_sym_TILDE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [anon_sym_LT_DASH] = ACTIONS(4342), + [sym_none] = ACTIONS(4342), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [sym_nil] = ACTIONS(4342), + [anon_sym_if] = ACTIONS(4342), + [anon_sym_DOLLARif] = ACTIONS(4342), + [anon_sym_match] = ACTIONS(4342), + [anon_sym_select] = ACTIONS(4342), + [anon_sym_lock] = ACTIONS(4342), + [anon_sym_rlock] = ACTIONS(4342), + [anon_sym_unsafe] = ACTIONS(4342), + [anon_sym_sql] = ACTIONS(4342), + [sym_int_literal] = ACTIONS(4342), + [sym_float_literal] = ACTIONS(4342), + [sym_rune_literal] = ACTIONS(4342), + [sym_pseudo_compile_time_identifier] = ACTIONS(4342), + [anon_sym_shared] = ACTIONS(4342), + [anon_sym_map_LBRACK] = ACTIONS(4342), + [anon_sym_chan] = ACTIONS(4342), + [anon_sym_thread] = ACTIONS(4342), + [anon_sym_atomic] = ACTIONS(4342), + [anon_sym_assert] = ACTIONS(4342), + [anon_sym_defer] = ACTIONS(4342), + [anon_sym_goto] = ACTIONS(4342), + [anon_sym_break] = ACTIONS(4342), + [anon_sym_continue] = ACTIONS(4342), + [anon_sym_return] = ACTIONS(4342), + [anon_sym_DOLLARfor] = ACTIONS(4342), + [anon_sym_for] = ACTIONS(4342), + [anon_sym_POUND] = ACTIONS(4342), + [anon_sym_asm] = ACTIONS(4342), + [anon_sym_AT_LBRACK] = ACTIONS(4342), + [sym___double_quote] = ACTIONS(4342), + [sym___single_quote] = ACTIONS(4342), + [sym___c_double_quote] = ACTIONS(4342), + [sym___c_single_quote] = ACTIONS(4342), + [sym___r_double_quote] = ACTIONS(4342), + [sym___r_single_quote] = ACTIONS(4342), }, [1561] = { - [ts_builtin_sym_end] = ACTIONS(4394), - [sym_identifier] = ACTIONS(4396), - [anon_sym_LF] = ACTIONS(4396), - [anon_sym_CR] = ACTIONS(4396), - [anon_sym_CR_LF] = ACTIONS(4396), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4396), - [anon_sym_LBRACE] = ACTIONS(4396), - [anon_sym_const] = ACTIONS(4396), - [anon_sym_LPAREN] = ACTIONS(4396), - [anon_sym___global] = ACTIONS(4396), - [anon_sym_type] = ACTIONS(4396), - [anon_sym_fn] = ACTIONS(4396), - [anon_sym_PLUS] = ACTIONS(4396), - [anon_sym_DASH] = ACTIONS(4396), - [anon_sym_STAR] = ACTIONS(4396), - [anon_sym_struct] = ACTIONS(4396), - [anon_sym_union] = ACTIONS(4396), - [anon_sym_pub] = ACTIONS(4396), - [anon_sym_mut] = ACTIONS(4396), - [anon_sym_enum] = ACTIONS(4396), - [anon_sym_interface] = ACTIONS(4396), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_BANG] = ACTIONS(4396), - [anon_sym_go] = ACTIONS(4396), - [anon_sym_spawn] = ACTIONS(4396), - [anon_sym_json_DOTdecode] = ACTIONS(4396), - [anon_sym_LBRACK2] = ACTIONS(4396), - [anon_sym_TILDE] = ACTIONS(4396), - [anon_sym_CARET] = ACTIONS(4396), - [anon_sym_AMP] = ACTIONS(4396), - [anon_sym_LT_DASH] = ACTIONS(4396), - [sym_none] = ACTIONS(4396), - [sym_true] = ACTIONS(4396), - [sym_false] = ACTIONS(4396), - [sym_nil] = ACTIONS(4396), - [anon_sym_if] = ACTIONS(4396), - [anon_sym_DOLLARif] = ACTIONS(4396), - [anon_sym_match] = ACTIONS(4396), - [anon_sym_select] = ACTIONS(4396), - [anon_sym_lock] = ACTIONS(4396), - [anon_sym_rlock] = ACTIONS(4396), - [anon_sym_unsafe] = ACTIONS(4396), - [anon_sym_sql] = ACTIONS(4396), - [sym_int_literal] = ACTIONS(4396), - [sym_float_literal] = ACTIONS(4396), - [sym_rune_literal] = ACTIONS(4396), - [sym_pseudo_compile_time_identifier] = ACTIONS(4396), - [anon_sym_shared] = ACTIONS(4396), - [anon_sym_map_LBRACK] = ACTIONS(4396), - [anon_sym_chan] = ACTIONS(4396), - [anon_sym_thread] = ACTIONS(4396), - [anon_sym_atomic] = ACTIONS(4396), - [anon_sym_assert] = ACTIONS(4396), - [anon_sym_defer] = ACTIONS(4396), - [anon_sym_goto] = ACTIONS(4396), - [anon_sym_break] = ACTIONS(4396), - [anon_sym_continue] = ACTIONS(4396), - [anon_sym_return] = ACTIONS(4396), - [anon_sym_DOLLARfor] = ACTIONS(4396), - [anon_sym_for] = ACTIONS(4396), - [anon_sym_POUND] = ACTIONS(4396), - [anon_sym_asm] = ACTIONS(4396), - [anon_sym_AT_LBRACK] = ACTIONS(4396), - [sym___double_quote] = ACTIONS(4396), - [sym___single_quote] = ACTIONS(4396), - [sym___c_double_quote] = ACTIONS(4396), - [sym___c_single_quote] = ACTIONS(4396), - [sym___r_double_quote] = ACTIONS(4396), - [sym___r_single_quote] = ACTIONS(4396), + [sym_line_comment] = STATE(1561), + [sym_block_comment] = STATE(1561), + [ts_builtin_sym_end] = ACTIONS(4344), + [sym_identifier] = ACTIONS(4346), + [anon_sym_LF] = ACTIONS(4346), + [anon_sym_CR] = ACTIONS(4346), + [anon_sym_CR_LF] = ACTIONS(4346), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_LBRACE] = ACTIONS(4346), + [anon_sym_const] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(4346), + [anon_sym___global] = ACTIONS(4346), + [anon_sym_type] = ACTIONS(4346), + [anon_sym_fn] = ACTIONS(4346), + [anon_sym_PLUS] = ACTIONS(4346), + [anon_sym_DASH] = ACTIONS(4346), + [anon_sym_STAR] = ACTIONS(4346), + [anon_sym_struct] = ACTIONS(4346), + [anon_sym_union] = ACTIONS(4346), + [anon_sym_pub] = ACTIONS(4346), + [anon_sym_mut] = ACTIONS(4346), + [anon_sym_enum] = ACTIONS(4346), + [anon_sym_interface] = ACTIONS(4346), + [anon_sym_QMARK] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4346), + [anon_sym_go] = ACTIONS(4346), + [anon_sym_spawn] = ACTIONS(4346), + [anon_sym_json_DOTdecode] = ACTIONS(4346), + [anon_sym_LBRACK2] = ACTIONS(4346), + [anon_sym_TILDE] = ACTIONS(4346), + [anon_sym_CARET] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym_LT_DASH] = ACTIONS(4346), + [sym_none] = ACTIONS(4346), + [sym_true] = ACTIONS(4346), + [sym_false] = ACTIONS(4346), + [sym_nil] = ACTIONS(4346), + [anon_sym_if] = ACTIONS(4346), + [anon_sym_DOLLARif] = ACTIONS(4346), + [anon_sym_match] = ACTIONS(4346), + [anon_sym_select] = ACTIONS(4346), + [anon_sym_lock] = ACTIONS(4346), + [anon_sym_rlock] = ACTIONS(4346), + [anon_sym_unsafe] = ACTIONS(4346), + [anon_sym_sql] = ACTIONS(4346), + [sym_int_literal] = ACTIONS(4346), + [sym_float_literal] = ACTIONS(4346), + [sym_rune_literal] = ACTIONS(4346), + [sym_pseudo_compile_time_identifier] = ACTIONS(4346), + [anon_sym_shared] = ACTIONS(4346), + [anon_sym_map_LBRACK] = ACTIONS(4346), + [anon_sym_chan] = ACTIONS(4346), + [anon_sym_thread] = ACTIONS(4346), + [anon_sym_atomic] = ACTIONS(4346), + [anon_sym_assert] = ACTIONS(4346), + [anon_sym_defer] = ACTIONS(4346), + [anon_sym_goto] = ACTIONS(4346), + [anon_sym_break] = ACTIONS(4346), + [anon_sym_continue] = ACTIONS(4346), + [anon_sym_return] = ACTIONS(4346), + [anon_sym_DOLLARfor] = ACTIONS(4346), + [anon_sym_for] = ACTIONS(4346), + [anon_sym_POUND] = ACTIONS(4346), + [anon_sym_asm] = ACTIONS(4346), + [anon_sym_AT_LBRACK] = ACTIONS(4346), + [sym___double_quote] = ACTIONS(4346), + [sym___single_quote] = ACTIONS(4346), + [sym___c_double_quote] = ACTIONS(4346), + [sym___c_single_quote] = ACTIONS(4346), + [sym___r_double_quote] = ACTIONS(4346), + [sym___r_single_quote] = ACTIONS(4346), }, [1562] = { - [ts_builtin_sym_end] = ACTIONS(4398), - [sym_identifier] = ACTIONS(4400), - [anon_sym_LF] = ACTIONS(4400), - [anon_sym_CR] = ACTIONS(4400), - [anon_sym_CR_LF] = ACTIONS(4400), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_LBRACE] = ACTIONS(4400), - [anon_sym_const] = ACTIONS(4400), - [anon_sym_LPAREN] = ACTIONS(4400), - [anon_sym___global] = ACTIONS(4400), - [anon_sym_type] = ACTIONS(4400), - [anon_sym_fn] = ACTIONS(4400), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_STAR] = ACTIONS(4400), - [anon_sym_struct] = ACTIONS(4400), - [anon_sym_union] = ACTIONS(4400), - [anon_sym_pub] = ACTIONS(4400), - [anon_sym_mut] = ACTIONS(4400), - [anon_sym_enum] = ACTIONS(4400), - [anon_sym_interface] = ACTIONS(4400), - [anon_sym_QMARK] = ACTIONS(4400), - [anon_sym_BANG] = ACTIONS(4400), - [anon_sym_go] = ACTIONS(4400), - [anon_sym_spawn] = ACTIONS(4400), - [anon_sym_json_DOTdecode] = ACTIONS(4400), - [anon_sym_LBRACK2] = ACTIONS(4400), - [anon_sym_TILDE] = ACTIONS(4400), - [anon_sym_CARET] = ACTIONS(4400), - [anon_sym_AMP] = ACTIONS(4400), - [anon_sym_LT_DASH] = ACTIONS(4400), - [sym_none] = ACTIONS(4400), - [sym_true] = ACTIONS(4400), - [sym_false] = ACTIONS(4400), - [sym_nil] = ACTIONS(4400), - [anon_sym_if] = ACTIONS(4400), - [anon_sym_DOLLARif] = ACTIONS(4400), - [anon_sym_match] = ACTIONS(4400), - [anon_sym_select] = ACTIONS(4400), - [anon_sym_lock] = ACTIONS(4400), - [anon_sym_rlock] = ACTIONS(4400), - [anon_sym_unsafe] = ACTIONS(4400), - [anon_sym_sql] = ACTIONS(4400), - [sym_int_literal] = ACTIONS(4400), - [sym_float_literal] = ACTIONS(4400), - [sym_rune_literal] = ACTIONS(4400), - [sym_pseudo_compile_time_identifier] = ACTIONS(4400), - [anon_sym_shared] = ACTIONS(4400), - [anon_sym_map_LBRACK] = ACTIONS(4400), - [anon_sym_chan] = ACTIONS(4400), - [anon_sym_thread] = ACTIONS(4400), - [anon_sym_atomic] = ACTIONS(4400), - [anon_sym_assert] = ACTIONS(4400), - [anon_sym_defer] = ACTIONS(4400), - [anon_sym_goto] = ACTIONS(4400), - [anon_sym_break] = ACTIONS(4400), - [anon_sym_continue] = ACTIONS(4400), - [anon_sym_return] = ACTIONS(4400), - [anon_sym_DOLLARfor] = ACTIONS(4400), - [anon_sym_for] = ACTIONS(4400), - [anon_sym_POUND] = ACTIONS(4400), - [anon_sym_asm] = ACTIONS(4400), - [anon_sym_AT_LBRACK] = ACTIONS(4400), - [sym___double_quote] = ACTIONS(4400), - [sym___single_quote] = ACTIONS(4400), - [sym___c_double_quote] = ACTIONS(4400), - [sym___c_single_quote] = ACTIONS(4400), - [sym___r_double_quote] = ACTIONS(4400), - [sym___r_single_quote] = ACTIONS(4400), + [sym_line_comment] = STATE(1562), + [sym_block_comment] = STATE(1562), + [ts_builtin_sym_end] = ACTIONS(4348), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LF] = ACTIONS(4350), + [anon_sym_CR] = ACTIONS(4350), + [anon_sym_CR_LF] = ACTIONS(4350), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4350), + [anon_sym_LBRACE] = ACTIONS(4350), + [anon_sym_const] = ACTIONS(4350), + [anon_sym_LPAREN] = ACTIONS(4350), + [anon_sym___global] = ACTIONS(4350), + [anon_sym_type] = ACTIONS(4350), + [anon_sym_fn] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_STAR] = ACTIONS(4350), + [anon_sym_struct] = ACTIONS(4350), + [anon_sym_union] = ACTIONS(4350), + [anon_sym_pub] = ACTIONS(4350), + [anon_sym_mut] = ACTIONS(4350), + [anon_sym_enum] = ACTIONS(4350), + [anon_sym_interface] = ACTIONS(4350), + [anon_sym_QMARK] = ACTIONS(4350), + [anon_sym_BANG] = ACTIONS(4350), + [anon_sym_go] = ACTIONS(4350), + [anon_sym_spawn] = ACTIONS(4350), + [anon_sym_json_DOTdecode] = ACTIONS(4350), + [anon_sym_LBRACK2] = ACTIONS(4350), + [anon_sym_TILDE] = ACTIONS(4350), + [anon_sym_CARET] = ACTIONS(4350), + [anon_sym_AMP] = ACTIONS(4350), + [anon_sym_LT_DASH] = ACTIONS(4350), + [sym_none] = ACTIONS(4350), + [sym_true] = ACTIONS(4350), + [sym_false] = ACTIONS(4350), + [sym_nil] = ACTIONS(4350), + [anon_sym_if] = ACTIONS(4350), + [anon_sym_DOLLARif] = ACTIONS(4350), + [anon_sym_match] = ACTIONS(4350), + [anon_sym_select] = ACTIONS(4350), + [anon_sym_lock] = ACTIONS(4350), + [anon_sym_rlock] = ACTIONS(4350), + [anon_sym_unsafe] = ACTIONS(4350), + [anon_sym_sql] = ACTIONS(4350), + [sym_int_literal] = ACTIONS(4350), + [sym_float_literal] = ACTIONS(4350), + [sym_rune_literal] = ACTIONS(4350), + [sym_pseudo_compile_time_identifier] = ACTIONS(4350), + [anon_sym_shared] = ACTIONS(4350), + [anon_sym_map_LBRACK] = ACTIONS(4350), + [anon_sym_chan] = ACTIONS(4350), + [anon_sym_thread] = ACTIONS(4350), + [anon_sym_atomic] = ACTIONS(4350), + [anon_sym_assert] = ACTIONS(4350), + [anon_sym_defer] = ACTIONS(4350), + [anon_sym_goto] = ACTIONS(4350), + [anon_sym_break] = ACTIONS(4350), + [anon_sym_continue] = ACTIONS(4350), + [anon_sym_return] = ACTIONS(4350), + [anon_sym_DOLLARfor] = ACTIONS(4350), + [anon_sym_for] = ACTIONS(4350), + [anon_sym_POUND] = ACTIONS(4350), + [anon_sym_asm] = ACTIONS(4350), + [anon_sym_AT_LBRACK] = ACTIONS(4350), + [sym___double_quote] = ACTIONS(4350), + [sym___single_quote] = ACTIONS(4350), + [sym___c_double_quote] = ACTIONS(4350), + [sym___c_single_quote] = ACTIONS(4350), + [sym___r_double_quote] = ACTIONS(4350), + [sym___r_single_quote] = ACTIONS(4350), }, [1563] = { - [ts_builtin_sym_end] = ACTIONS(4402), - [sym_identifier] = ACTIONS(4404), - [anon_sym_LF] = ACTIONS(4404), - [anon_sym_CR] = ACTIONS(4404), - [anon_sym_CR_LF] = ACTIONS(4404), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4404), - [anon_sym_LBRACE] = ACTIONS(4404), - [anon_sym_const] = ACTIONS(4404), - [anon_sym_LPAREN] = ACTIONS(4404), - [anon_sym___global] = ACTIONS(4404), - [anon_sym_type] = ACTIONS(4404), - [anon_sym_fn] = ACTIONS(4404), - [anon_sym_PLUS] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_struct] = ACTIONS(4404), - [anon_sym_union] = ACTIONS(4404), - [anon_sym_pub] = ACTIONS(4404), - [anon_sym_mut] = ACTIONS(4404), - [anon_sym_enum] = ACTIONS(4404), - [anon_sym_interface] = ACTIONS(4404), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_BANG] = ACTIONS(4404), - [anon_sym_go] = ACTIONS(4404), - [anon_sym_spawn] = ACTIONS(4404), - [anon_sym_json_DOTdecode] = ACTIONS(4404), - [anon_sym_LBRACK2] = ACTIONS(4404), - [anon_sym_TILDE] = ACTIONS(4404), - [anon_sym_CARET] = ACTIONS(4404), - [anon_sym_AMP] = ACTIONS(4404), - [anon_sym_LT_DASH] = ACTIONS(4404), - [sym_none] = ACTIONS(4404), - [sym_true] = ACTIONS(4404), - [sym_false] = ACTIONS(4404), - [sym_nil] = ACTIONS(4404), - [anon_sym_if] = ACTIONS(4404), - [anon_sym_DOLLARif] = ACTIONS(4404), - [anon_sym_match] = ACTIONS(4404), - [anon_sym_select] = ACTIONS(4404), - [anon_sym_lock] = ACTIONS(4404), - [anon_sym_rlock] = ACTIONS(4404), - [anon_sym_unsafe] = ACTIONS(4404), - [anon_sym_sql] = ACTIONS(4404), - [sym_int_literal] = ACTIONS(4404), - [sym_float_literal] = ACTIONS(4404), - [sym_rune_literal] = ACTIONS(4404), - [sym_pseudo_compile_time_identifier] = ACTIONS(4404), - [anon_sym_shared] = ACTIONS(4404), - [anon_sym_map_LBRACK] = ACTIONS(4404), - [anon_sym_chan] = ACTIONS(4404), - [anon_sym_thread] = ACTIONS(4404), - [anon_sym_atomic] = ACTIONS(4404), - [anon_sym_assert] = ACTIONS(4404), - [anon_sym_defer] = ACTIONS(4404), - [anon_sym_goto] = ACTIONS(4404), - [anon_sym_break] = ACTIONS(4404), - [anon_sym_continue] = ACTIONS(4404), - [anon_sym_return] = ACTIONS(4404), - [anon_sym_DOLLARfor] = ACTIONS(4404), - [anon_sym_for] = ACTIONS(4404), - [anon_sym_POUND] = ACTIONS(4404), - [anon_sym_asm] = ACTIONS(4404), - [anon_sym_AT_LBRACK] = ACTIONS(4404), - [sym___double_quote] = ACTIONS(4404), - [sym___single_quote] = ACTIONS(4404), - [sym___c_double_quote] = ACTIONS(4404), - [sym___c_single_quote] = ACTIONS(4404), - [sym___r_double_quote] = ACTIONS(4404), - [sym___r_single_quote] = ACTIONS(4404), + [sym_line_comment] = STATE(1563), + [sym_block_comment] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(4352), + [sym_identifier] = ACTIONS(4354), + [anon_sym_LF] = ACTIONS(4354), + [anon_sym_CR] = ACTIONS(4354), + [anon_sym_CR_LF] = ACTIONS(4354), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4354), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_const] = ACTIONS(4354), + [anon_sym_LPAREN] = ACTIONS(4354), + [anon_sym___global] = ACTIONS(4354), + [anon_sym_type] = ACTIONS(4354), + [anon_sym_fn] = ACTIONS(4354), + [anon_sym_PLUS] = ACTIONS(4354), + [anon_sym_DASH] = ACTIONS(4354), + [anon_sym_STAR] = ACTIONS(4354), + [anon_sym_struct] = ACTIONS(4354), + [anon_sym_union] = ACTIONS(4354), + [anon_sym_pub] = ACTIONS(4354), + [anon_sym_mut] = ACTIONS(4354), + [anon_sym_enum] = ACTIONS(4354), + [anon_sym_interface] = ACTIONS(4354), + [anon_sym_QMARK] = ACTIONS(4354), + [anon_sym_BANG] = ACTIONS(4354), + [anon_sym_go] = ACTIONS(4354), + [anon_sym_spawn] = ACTIONS(4354), + [anon_sym_json_DOTdecode] = ACTIONS(4354), + [anon_sym_LBRACK2] = ACTIONS(4354), + [anon_sym_TILDE] = ACTIONS(4354), + [anon_sym_CARET] = ACTIONS(4354), + [anon_sym_AMP] = ACTIONS(4354), + [anon_sym_LT_DASH] = ACTIONS(4354), + [sym_none] = ACTIONS(4354), + [sym_true] = ACTIONS(4354), + [sym_false] = ACTIONS(4354), + [sym_nil] = ACTIONS(4354), + [anon_sym_if] = ACTIONS(4354), + [anon_sym_DOLLARif] = ACTIONS(4354), + [anon_sym_match] = ACTIONS(4354), + [anon_sym_select] = ACTIONS(4354), + [anon_sym_lock] = ACTIONS(4354), + [anon_sym_rlock] = ACTIONS(4354), + [anon_sym_unsafe] = ACTIONS(4354), + [anon_sym_sql] = ACTIONS(4354), + [sym_int_literal] = ACTIONS(4354), + [sym_float_literal] = ACTIONS(4354), + [sym_rune_literal] = ACTIONS(4354), + [sym_pseudo_compile_time_identifier] = ACTIONS(4354), + [anon_sym_shared] = ACTIONS(4354), + [anon_sym_map_LBRACK] = ACTIONS(4354), + [anon_sym_chan] = ACTIONS(4354), + [anon_sym_thread] = ACTIONS(4354), + [anon_sym_atomic] = ACTIONS(4354), + [anon_sym_assert] = ACTIONS(4354), + [anon_sym_defer] = ACTIONS(4354), + [anon_sym_goto] = ACTIONS(4354), + [anon_sym_break] = ACTIONS(4354), + [anon_sym_continue] = ACTIONS(4354), + [anon_sym_return] = ACTIONS(4354), + [anon_sym_DOLLARfor] = ACTIONS(4354), + [anon_sym_for] = ACTIONS(4354), + [anon_sym_POUND] = ACTIONS(4354), + [anon_sym_asm] = ACTIONS(4354), + [anon_sym_AT_LBRACK] = ACTIONS(4354), + [sym___double_quote] = ACTIONS(4354), + [sym___single_quote] = ACTIONS(4354), + [sym___c_double_quote] = ACTIONS(4354), + [sym___c_single_quote] = ACTIONS(4354), + [sym___r_double_quote] = ACTIONS(4354), + [sym___r_single_quote] = ACTIONS(4354), }, [1564] = { - [ts_builtin_sym_end] = ACTIONS(4406), - [sym_identifier] = ACTIONS(4408), - [anon_sym_LF] = ACTIONS(4408), - [anon_sym_CR] = ACTIONS(4408), - [anon_sym_CR_LF] = ACTIONS(4408), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4408), - [anon_sym_LBRACE] = ACTIONS(4408), - [anon_sym_const] = ACTIONS(4408), - [anon_sym_LPAREN] = ACTIONS(4408), - [anon_sym___global] = ACTIONS(4408), - [anon_sym_type] = ACTIONS(4408), - [anon_sym_fn] = ACTIONS(4408), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4408), - [anon_sym_struct] = ACTIONS(4408), - [anon_sym_union] = ACTIONS(4408), - [anon_sym_pub] = ACTIONS(4408), - [anon_sym_mut] = ACTIONS(4408), - [anon_sym_enum] = ACTIONS(4408), - [anon_sym_interface] = ACTIONS(4408), - [anon_sym_QMARK] = ACTIONS(4408), - [anon_sym_BANG] = ACTIONS(4408), - [anon_sym_go] = ACTIONS(4408), - [anon_sym_spawn] = ACTIONS(4408), - [anon_sym_json_DOTdecode] = ACTIONS(4408), - [anon_sym_LBRACK2] = ACTIONS(4408), - [anon_sym_TILDE] = ACTIONS(4408), - [anon_sym_CARET] = ACTIONS(4408), - [anon_sym_AMP] = ACTIONS(4408), - [anon_sym_LT_DASH] = ACTIONS(4408), - [sym_none] = ACTIONS(4408), - [sym_true] = ACTIONS(4408), - [sym_false] = ACTIONS(4408), - [sym_nil] = ACTIONS(4408), - [anon_sym_if] = ACTIONS(4408), - [anon_sym_DOLLARif] = ACTIONS(4408), - [anon_sym_match] = ACTIONS(4408), - [anon_sym_select] = ACTIONS(4408), - [anon_sym_lock] = ACTIONS(4408), - [anon_sym_rlock] = ACTIONS(4408), - [anon_sym_unsafe] = ACTIONS(4408), - [anon_sym_sql] = ACTIONS(4408), - [sym_int_literal] = ACTIONS(4408), - [sym_float_literal] = ACTIONS(4408), - [sym_rune_literal] = ACTIONS(4408), - [sym_pseudo_compile_time_identifier] = ACTIONS(4408), - [anon_sym_shared] = ACTIONS(4408), - [anon_sym_map_LBRACK] = ACTIONS(4408), - [anon_sym_chan] = ACTIONS(4408), - [anon_sym_thread] = ACTIONS(4408), - [anon_sym_atomic] = ACTIONS(4408), - [anon_sym_assert] = ACTIONS(4408), - [anon_sym_defer] = ACTIONS(4408), - [anon_sym_goto] = ACTIONS(4408), - [anon_sym_break] = ACTIONS(4408), - [anon_sym_continue] = ACTIONS(4408), - [anon_sym_return] = ACTIONS(4408), - [anon_sym_DOLLARfor] = ACTIONS(4408), - [anon_sym_for] = ACTIONS(4408), - [anon_sym_POUND] = ACTIONS(4408), - [anon_sym_asm] = ACTIONS(4408), - [anon_sym_AT_LBRACK] = ACTIONS(4408), - [sym___double_quote] = ACTIONS(4408), - [sym___single_quote] = ACTIONS(4408), - [sym___c_double_quote] = ACTIONS(4408), - [sym___c_single_quote] = ACTIONS(4408), - [sym___r_double_quote] = ACTIONS(4408), - [sym___r_single_quote] = ACTIONS(4408), + [sym_line_comment] = STATE(1564), + [sym_block_comment] = STATE(1564), + [ts_builtin_sym_end] = ACTIONS(4356), + [sym_identifier] = ACTIONS(4358), + [anon_sym_LF] = ACTIONS(4358), + [anon_sym_CR] = ACTIONS(4358), + [anon_sym_CR_LF] = ACTIONS(4358), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4358), + [anon_sym_LBRACE] = ACTIONS(4358), + [anon_sym_const] = ACTIONS(4358), + [anon_sym_LPAREN] = ACTIONS(4358), + [anon_sym___global] = ACTIONS(4358), + [anon_sym_type] = ACTIONS(4358), + [anon_sym_fn] = ACTIONS(4358), + [anon_sym_PLUS] = ACTIONS(4358), + [anon_sym_DASH] = ACTIONS(4358), + [anon_sym_STAR] = ACTIONS(4358), + [anon_sym_struct] = ACTIONS(4358), + [anon_sym_union] = ACTIONS(4358), + [anon_sym_pub] = ACTIONS(4358), + [anon_sym_mut] = ACTIONS(4358), + [anon_sym_enum] = ACTIONS(4358), + [anon_sym_interface] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(4358), + [anon_sym_BANG] = ACTIONS(4358), + [anon_sym_go] = ACTIONS(4358), + [anon_sym_spawn] = ACTIONS(4358), + [anon_sym_json_DOTdecode] = ACTIONS(4358), + [anon_sym_LBRACK2] = ACTIONS(4358), + [anon_sym_TILDE] = ACTIONS(4358), + [anon_sym_CARET] = ACTIONS(4358), + [anon_sym_AMP] = ACTIONS(4358), + [anon_sym_LT_DASH] = ACTIONS(4358), + [sym_none] = ACTIONS(4358), + [sym_true] = ACTIONS(4358), + [sym_false] = ACTIONS(4358), + [sym_nil] = ACTIONS(4358), + [anon_sym_if] = ACTIONS(4358), + [anon_sym_DOLLARif] = ACTIONS(4358), + [anon_sym_match] = ACTIONS(4358), + [anon_sym_select] = ACTIONS(4358), + [anon_sym_lock] = ACTIONS(4358), + [anon_sym_rlock] = ACTIONS(4358), + [anon_sym_unsafe] = ACTIONS(4358), + [anon_sym_sql] = ACTIONS(4358), + [sym_int_literal] = ACTIONS(4358), + [sym_float_literal] = ACTIONS(4358), + [sym_rune_literal] = ACTIONS(4358), + [sym_pseudo_compile_time_identifier] = ACTIONS(4358), + [anon_sym_shared] = ACTIONS(4358), + [anon_sym_map_LBRACK] = ACTIONS(4358), + [anon_sym_chan] = ACTIONS(4358), + [anon_sym_thread] = ACTIONS(4358), + [anon_sym_atomic] = ACTIONS(4358), + [anon_sym_assert] = ACTIONS(4358), + [anon_sym_defer] = ACTIONS(4358), + [anon_sym_goto] = ACTIONS(4358), + [anon_sym_break] = ACTIONS(4358), + [anon_sym_continue] = ACTIONS(4358), + [anon_sym_return] = ACTIONS(4358), + [anon_sym_DOLLARfor] = ACTIONS(4358), + [anon_sym_for] = ACTIONS(4358), + [anon_sym_POUND] = ACTIONS(4358), + [anon_sym_asm] = ACTIONS(4358), + [anon_sym_AT_LBRACK] = ACTIONS(4358), + [sym___double_quote] = ACTIONS(4358), + [sym___single_quote] = ACTIONS(4358), + [sym___c_double_quote] = ACTIONS(4358), + [sym___c_single_quote] = ACTIONS(4358), + [sym___r_double_quote] = ACTIONS(4358), + [sym___r_single_quote] = ACTIONS(4358), }, [1565] = { - [ts_builtin_sym_end] = ACTIONS(4410), - [sym_identifier] = ACTIONS(4412), - [anon_sym_LF] = ACTIONS(4412), - [anon_sym_CR] = ACTIONS(4412), - [anon_sym_CR_LF] = ACTIONS(4412), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4412), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_const] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym___global] = ACTIONS(4412), - [anon_sym_type] = ACTIONS(4412), - [anon_sym_fn] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4412), - [anon_sym_DASH] = ACTIONS(4412), - [anon_sym_STAR] = ACTIONS(4412), - [anon_sym_struct] = ACTIONS(4412), - [anon_sym_union] = ACTIONS(4412), - [anon_sym_pub] = ACTIONS(4412), - [anon_sym_mut] = ACTIONS(4412), - [anon_sym_enum] = ACTIONS(4412), - [anon_sym_interface] = ACTIONS(4412), - [anon_sym_QMARK] = ACTIONS(4412), - [anon_sym_BANG] = ACTIONS(4412), - [anon_sym_go] = ACTIONS(4412), - [anon_sym_spawn] = ACTIONS(4412), - [anon_sym_json_DOTdecode] = ACTIONS(4412), - [anon_sym_LBRACK2] = ACTIONS(4412), - [anon_sym_TILDE] = ACTIONS(4412), - [anon_sym_CARET] = ACTIONS(4412), - [anon_sym_AMP] = ACTIONS(4412), - [anon_sym_LT_DASH] = ACTIONS(4412), - [sym_none] = ACTIONS(4412), - [sym_true] = ACTIONS(4412), - [sym_false] = ACTIONS(4412), - [sym_nil] = ACTIONS(4412), - [anon_sym_if] = ACTIONS(4412), - [anon_sym_DOLLARif] = ACTIONS(4412), - [anon_sym_match] = ACTIONS(4412), - [anon_sym_select] = ACTIONS(4412), - [anon_sym_lock] = ACTIONS(4412), - [anon_sym_rlock] = ACTIONS(4412), - [anon_sym_unsafe] = ACTIONS(4412), - [anon_sym_sql] = ACTIONS(4412), - [sym_int_literal] = ACTIONS(4412), - [sym_float_literal] = ACTIONS(4412), - [sym_rune_literal] = ACTIONS(4412), - [sym_pseudo_compile_time_identifier] = ACTIONS(4412), - [anon_sym_shared] = ACTIONS(4412), - [anon_sym_map_LBRACK] = ACTIONS(4412), - [anon_sym_chan] = ACTIONS(4412), - [anon_sym_thread] = ACTIONS(4412), - [anon_sym_atomic] = ACTIONS(4412), - [anon_sym_assert] = ACTIONS(4412), - [anon_sym_defer] = ACTIONS(4412), - [anon_sym_goto] = ACTIONS(4412), - [anon_sym_break] = ACTIONS(4412), - [anon_sym_continue] = ACTIONS(4412), - [anon_sym_return] = ACTIONS(4412), - [anon_sym_DOLLARfor] = ACTIONS(4412), - [anon_sym_for] = ACTIONS(4412), - [anon_sym_POUND] = ACTIONS(4412), - [anon_sym_asm] = ACTIONS(4412), - [anon_sym_AT_LBRACK] = ACTIONS(4412), - [sym___double_quote] = ACTIONS(4412), - [sym___single_quote] = ACTIONS(4412), - [sym___c_double_quote] = ACTIONS(4412), - [sym___c_single_quote] = ACTIONS(4412), - [sym___r_double_quote] = ACTIONS(4412), - [sym___r_single_quote] = ACTIONS(4412), + [sym_line_comment] = STATE(1565), + [sym_block_comment] = STATE(1565), + [ts_builtin_sym_end] = ACTIONS(4360), + [sym_identifier] = ACTIONS(4362), + [anon_sym_LF] = ACTIONS(4362), + [anon_sym_CR] = ACTIONS(4362), + [anon_sym_CR_LF] = ACTIONS(4362), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_LBRACE] = ACTIONS(4362), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4362), + [anon_sym___global] = ACTIONS(4362), + [anon_sym_type] = ACTIONS(4362), + [anon_sym_fn] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4362), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_struct] = ACTIONS(4362), + [anon_sym_union] = ACTIONS(4362), + [anon_sym_pub] = ACTIONS(4362), + [anon_sym_mut] = ACTIONS(4362), + [anon_sym_enum] = ACTIONS(4362), + [anon_sym_interface] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4362), + [anon_sym_go] = ACTIONS(4362), + [anon_sym_spawn] = ACTIONS(4362), + [anon_sym_json_DOTdecode] = ACTIONS(4362), + [anon_sym_LBRACK2] = ACTIONS(4362), + [anon_sym_TILDE] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [anon_sym_LT_DASH] = ACTIONS(4362), + [sym_none] = ACTIONS(4362), + [sym_true] = ACTIONS(4362), + [sym_false] = ACTIONS(4362), + [sym_nil] = ACTIONS(4362), + [anon_sym_if] = ACTIONS(4362), + [anon_sym_DOLLARif] = ACTIONS(4362), + [anon_sym_match] = ACTIONS(4362), + [anon_sym_select] = ACTIONS(4362), + [anon_sym_lock] = ACTIONS(4362), + [anon_sym_rlock] = ACTIONS(4362), + [anon_sym_unsafe] = ACTIONS(4362), + [anon_sym_sql] = ACTIONS(4362), + [sym_int_literal] = ACTIONS(4362), + [sym_float_literal] = ACTIONS(4362), + [sym_rune_literal] = ACTIONS(4362), + [sym_pseudo_compile_time_identifier] = ACTIONS(4362), + [anon_sym_shared] = ACTIONS(4362), + [anon_sym_map_LBRACK] = ACTIONS(4362), + [anon_sym_chan] = ACTIONS(4362), + [anon_sym_thread] = ACTIONS(4362), + [anon_sym_atomic] = ACTIONS(4362), + [anon_sym_assert] = ACTIONS(4362), + [anon_sym_defer] = ACTIONS(4362), + [anon_sym_goto] = ACTIONS(4362), + [anon_sym_break] = ACTIONS(4362), + [anon_sym_continue] = ACTIONS(4362), + [anon_sym_return] = ACTIONS(4362), + [anon_sym_DOLLARfor] = ACTIONS(4362), + [anon_sym_for] = ACTIONS(4362), + [anon_sym_POUND] = ACTIONS(4362), + [anon_sym_asm] = ACTIONS(4362), + [anon_sym_AT_LBRACK] = ACTIONS(4362), + [sym___double_quote] = ACTIONS(4362), + [sym___single_quote] = ACTIONS(4362), + [sym___c_double_quote] = ACTIONS(4362), + [sym___c_single_quote] = ACTIONS(4362), + [sym___r_double_quote] = ACTIONS(4362), + [sym___r_single_quote] = ACTIONS(4362), }, [1566] = { - [ts_builtin_sym_end] = ACTIONS(4414), - [sym_identifier] = ACTIONS(4416), - [anon_sym_LF] = ACTIONS(4416), - [anon_sym_CR] = ACTIONS(4416), - [anon_sym_CR_LF] = ACTIONS(4416), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4416), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_const] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym___global] = ACTIONS(4416), - [anon_sym_type] = ACTIONS(4416), - [anon_sym_fn] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4416), - [anon_sym_DASH] = ACTIONS(4416), - [anon_sym_STAR] = ACTIONS(4416), - [anon_sym_struct] = ACTIONS(4416), - [anon_sym_union] = ACTIONS(4416), - [anon_sym_pub] = ACTIONS(4416), - [anon_sym_mut] = ACTIONS(4416), - [anon_sym_enum] = ACTIONS(4416), - [anon_sym_interface] = ACTIONS(4416), - [anon_sym_QMARK] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4416), - [anon_sym_go] = ACTIONS(4416), - [anon_sym_spawn] = ACTIONS(4416), - [anon_sym_json_DOTdecode] = ACTIONS(4416), - [anon_sym_LBRACK2] = ACTIONS(4416), - [anon_sym_TILDE] = ACTIONS(4416), - [anon_sym_CARET] = ACTIONS(4416), - [anon_sym_AMP] = ACTIONS(4416), - [anon_sym_LT_DASH] = ACTIONS(4416), - [sym_none] = ACTIONS(4416), - [sym_true] = ACTIONS(4416), - [sym_false] = ACTIONS(4416), - [sym_nil] = ACTIONS(4416), - [anon_sym_if] = ACTIONS(4416), - [anon_sym_DOLLARif] = ACTIONS(4416), - [anon_sym_match] = ACTIONS(4416), - [anon_sym_select] = ACTIONS(4416), - [anon_sym_lock] = ACTIONS(4416), - [anon_sym_rlock] = ACTIONS(4416), - [anon_sym_unsafe] = ACTIONS(4416), - [anon_sym_sql] = ACTIONS(4416), - [sym_int_literal] = ACTIONS(4416), - [sym_float_literal] = ACTIONS(4416), - [sym_rune_literal] = ACTIONS(4416), - [sym_pseudo_compile_time_identifier] = ACTIONS(4416), - [anon_sym_shared] = ACTIONS(4416), - [anon_sym_map_LBRACK] = ACTIONS(4416), - [anon_sym_chan] = ACTIONS(4416), - [anon_sym_thread] = ACTIONS(4416), - [anon_sym_atomic] = ACTIONS(4416), - [anon_sym_assert] = ACTIONS(4416), - [anon_sym_defer] = ACTIONS(4416), - [anon_sym_goto] = ACTIONS(4416), - [anon_sym_break] = ACTIONS(4416), - [anon_sym_continue] = ACTIONS(4416), - [anon_sym_return] = ACTIONS(4416), - [anon_sym_DOLLARfor] = ACTIONS(4416), - [anon_sym_for] = ACTIONS(4416), - [anon_sym_POUND] = ACTIONS(4416), - [anon_sym_asm] = ACTIONS(4416), - [anon_sym_AT_LBRACK] = ACTIONS(4416), - [sym___double_quote] = ACTIONS(4416), - [sym___single_quote] = ACTIONS(4416), - [sym___c_double_quote] = ACTIONS(4416), - [sym___c_single_quote] = ACTIONS(4416), - [sym___r_double_quote] = ACTIONS(4416), - [sym___r_single_quote] = ACTIONS(4416), + [sym_line_comment] = STATE(1566), + [sym_block_comment] = STATE(1566), + [ts_builtin_sym_end] = ACTIONS(4364), + [sym_identifier] = ACTIONS(4366), + [anon_sym_LF] = ACTIONS(4366), + [anon_sym_CR] = ACTIONS(4366), + [anon_sym_CR_LF] = ACTIONS(4366), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4366), + [anon_sym_LBRACE] = ACTIONS(4366), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_LPAREN] = ACTIONS(4366), + [anon_sym___global] = ACTIONS(4366), + [anon_sym_type] = ACTIONS(4366), + [anon_sym_fn] = ACTIONS(4366), + [anon_sym_PLUS] = ACTIONS(4366), + [anon_sym_DASH] = ACTIONS(4366), + [anon_sym_STAR] = ACTIONS(4366), + [anon_sym_struct] = ACTIONS(4366), + [anon_sym_union] = ACTIONS(4366), + [anon_sym_pub] = ACTIONS(4366), + [anon_sym_mut] = ACTIONS(4366), + [anon_sym_enum] = ACTIONS(4366), + [anon_sym_interface] = ACTIONS(4366), + [anon_sym_QMARK] = ACTIONS(4366), + [anon_sym_BANG] = ACTIONS(4366), + [anon_sym_go] = ACTIONS(4366), + [anon_sym_spawn] = ACTIONS(4366), + [anon_sym_json_DOTdecode] = ACTIONS(4366), + [anon_sym_LBRACK2] = ACTIONS(4366), + [anon_sym_TILDE] = ACTIONS(4366), + [anon_sym_CARET] = ACTIONS(4366), + [anon_sym_AMP] = ACTIONS(4366), + [anon_sym_LT_DASH] = ACTIONS(4366), + [sym_none] = ACTIONS(4366), + [sym_true] = ACTIONS(4366), + [sym_false] = ACTIONS(4366), + [sym_nil] = ACTIONS(4366), + [anon_sym_if] = ACTIONS(4366), + [anon_sym_DOLLARif] = ACTIONS(4366), + [anon_sym_match] = ACTIONS(4366), + [anon_sym_select] = ACTIONS(4366), + [anon_sym_lock] = ACTIONS(4366), + [anon_sym_rlock] = ACTIONS(4366), + [anon_sym_unsafe] = ACTIONS(4366), + [anon_sym_sql] = ACTIONS(4366), + [sym_int_literal] = ACTIONS(4366), + [sym_float_literal] = ACTIONS(4366), + [sym_rune_literal] = ACTIONS(4366), + [sym_pseudo_compile_time_identifier] = ACTIONS(4366), + [anon_sym_shared] = ACTIONS(4366), + [anon_sym_map_LBRACK] = ACTIONS(4366), + [anon_sym_chan] = ACTIONS(4366), + [anon_sym_thread] = ACTIONS(4366), + [anon_sym_atomic] = ACTIONS(4366), + [anon_sym_assert] = ACTIONS(4366), + [anon_sym_defer] = ACTIONS(4366), + [anon_sym_goto] = ACTIONS(4366), + [anon_sym_break] = ACTIONS(4366), + [anon_sym_continue] = ACTIONS(4366), + [anon_sym_return] = ACTIONS(4366), + [anon_sym_DOLLARfor] = ACTIONS(4366), + [anon_sym_for] = ACTIONS(4366), + [anon_sym_POUND] = ACTIONS(4366), + [anon_sym_asm] = ACTIONS(4366), + [anon_sym_AT_LBRACK] = ACTIONS(4366), + [sym___double_quote] = ACTIONS(4366), + [sym___single_quote] = ACTIONS(4366), + [sym___c_double_quote] = ACTIONS(4366), + [sym___c_single_quote] = ACTIONS(4366), + [sym___r_double_quote] = ACTIONS(4366), + [sym___r_single_quote] = ACTIONS(4366), }, [1567] = { - [ts_builtin_sym_end] = ACTIONS(4418), - [sym_identifier] = ACTIONS(4420), - [anon_sym_LF] = ACTIONS(4420), - [anon_sym_CR] = ACTIONS(4420), - [anon_sym_CR_LF] = ACTIONS(4420), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_LBRACE] = ACTIONS(4420), - [anon_sym_const] = ACTIONS(4420), - [anon_sym_LPAREN] = ACTIONS(4420), - [anon_sym___global] = ACTIONS(4420), - [anon_sym_type] = ACTIONS(4420), - [anon_sym_fn] = ACTIONS(4420), - [anon_sym_PLUS] = ACTIONS(4420), - [anon_sym_DASH] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4420), - [anon_sym_struct] = ACTIONS(4420), - [anon_sym_union] = ACTIONS(4420), - [anon_sym_pub] = ACTIONS(4420), - [anon_sym_mut] = ACTIONS(4420), - [anon_sym_enum] = ACTIONS(4420), - [anon_sym_interface] = ACTIONS(4420), - [anon_sym_QMARK] = ACTIONS(4420), - [anon_sym_BANG] = ACTIONS(4420), - [anon_sym_go] = ACTIONS(4420), - [anon_sym_spawn] = ACTIONS(4420), - [anon_sym_json_DOTdecode] = ACTIONS(4420), - [anon_sym_LBRACK2] = ACTIONS(4420), - [anon_sym_TILDE] = ACTIONS(4420), - [anon_sym_CARET] = ACTIONS(4420), - [anon_sym_AMP] = ACTIONS(4420), - [anon_sym_LT_DASH] = ACTIONS(4420), - [sym_none] = ACTIONS(4420), - [sym_true] = ACTIONS(4420), - [sym_false] = ACTIONS(4420), - [sym_nil] = ACTIONS(4420), - [anon_sym_if] = ACTIONS(4420), - [anon_sym_DOLLARif] = ACTIONS(4420), - [anon_sym_match] = ACTIONS(4420), - [anon_sym_select] = ACTIONS(4420), - [anon_sym_lock] = ACTIONS(4420), - [anon_sym_rlock] = ACTIONS(4420), - [anon_sym_unsafe] = ACTIONS(4420), - [anon_sym_sql] = ACTIONS(4420), - [sym_int_literal] = ACTIONS(4420), - [sym_float_literal] = ACTIONS(4420), - [sym_rune_literal] = ACTIONS(4420), - [sym_pseudo_compile_time_identifier] = ACTIONS(4420), - [anon_sym_shared] = ACTIONS(4420), - [anon_sym_map_LBRACK] = ACTIONS(4420), - [anon_sym_chan] = ACTIONS(4420), - [anon_sym_thread] = ACTIONS(4420), - [anon_sym_atomic] = ACTIONS(4420), - [anon_sym_assert] = ACTIONS(4420), - [anon_sym_defer] = ACTIONS(4420), - [anon_sym_goto] = ACTIONS(4420), - [anon_sym_break] = ACTIONS(4420), - [anon_sym_continue] = ACTIONS(4420), - [anon_sym_return] = ACTIONS(4420), - [anon_sym_DOLLARfor] = ACTIONS(4420), - [anon_sym_for] = ACTIONS(4420), - [anon_sym_POUND] = ACTIONS(4420), - [anon_sym_asm] = ACTIONS(4420), - [anon_sym_AT_LBRACK] = ACTIONS(4420), - [sym___double_quote] = ACTIONS(4420), - [sym___single_quote] = ACTIONS(4420), - [sym___c_double_quote] = ACTIONS(4420), - [sym___c_single_quote] = ACTIONS(4420), - [sym___r_double_quote] = ACTIONS(4420), - [sym___r_single_quote] = ACTIONS(4420), + [sym_line_comment] = STATE(1567), + [sym_block_comment] = STATE(1567), + [ts_builtin_sym_end] = ACTIONS(4368), + [sym_identifier] = ACTIONS(4370), + [anon_sym_LF] = ACTIONS(4370), + [anon_sym_CR] = ACTIONS(4370), + [anon_sym_CR_LF] = ACTIONS(4370), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4370), + [anon_sym_LBRACE] = ACTIONS(4370), + [anon_sym_const] = ACTIONS(4370), + [anon_sym_LPAREN] = ACTIONS(4370), + [anon_sym___global] = ACTIONS(4370), + [anon_sym_type] = ACTIONS(4370), + [anon_sym_fn] = ACTIONS(4370), + [anon_sym_PLUS] = ACTIONS(4370), + [anon_sym_DASH] = ACTIONS(4370), + [anon_sym_STAR] = ACTIONS(4370), + [anon_sym_struct] = ACTIONS(4370), + [anon_sym_union] = ACTIONS(4370), + [anon_sym_pub] = ACTIONS(4370), + [anon_sym_mut] = ACTIONS(4370), + [anon_sym_enum] = ACTIONS(4370), + [anon_sym_interface] = ACTIONS(4370), + [anon_sym_QMARK] = ACTIONS(4370), + [anon_sym_BANG] = ACTIONS(4370), + [anon_sym_go] = ACTIONS(4370), + [anon_sym_spawn] = ACTIONS(4370), + [anon_sym_json_DOTdecode] = ACTIONS(4370), + [anon_sym_LBRACK2] = ACTIONS(4370), + [anon_sym_TILDE] = ACTIONS(4370), + [anon_sym_CARET] = ACTIONS(4370), + [anon_sym_AMP] = ACTIONS(4370), + [anon_sym_LT_DASH] = ACTIONS(4370), + [sym_none] = ACTIONS(4370), + [sym_true] = ACTIONS(4370), + [sym_false] = ACTIONS(4370), + [sym_nil] = ACTIONS(4370), + [anon_sym_if] = ACTIONS(4370), + [anon_sym_DOLLARif] = ACTIONS(4370), + [anon_sym_match] = ACTIONS(4370), + [anon_sym_select] = ACTIONS(4370), + [anon_sym_lock] = ACTIONS(4370), + [anon_sym_rlock] = ACTIONS(4370), + [anon_sym_unsafe] = ACTIONS(4370), + [anon_sym_sql] = ACTIONS(4370), + [sym_int_literal] = ACTIONS(4370), + [sym_float_literal] = ACTIONS(4370), + [sym_rune_literal] = ACTIONS(4370), + [sym_pseudo_compile_time_identifier] = ACTIONS(4370), + [anon_sym_shared] = ACTIONS(4370), + [anon_sym_map_LBRACK] = ACTIONS(4370), + [anon_sym_chan] = ACTIONS(4370), + [anon_sym_thread] = ACTIONS(4370), + [anon_sym_atomic] = ACTIONS(4370), + [anon_sym_assert] = ACTIONS(4370), + [anon_sym_defer] = ACTIONS(4370), + [anon_sym_goto] = ACTIONS(4370), + [anon_sym_break] = ACTIONS(4370), + [anon_sym_continue] = ACTIONS(4370), + [anon_sym_return] = ACTIONS(4370), + [anon_sym_DOLLARfor] = ACTIONS(4370), + [anon_sym_for] = ACTIONS(4370), + [anon_sym_POUND] = ACTIONS(4370), + [anon_sym_asm] = ACTIONS(4370), + [anon_sym_AT_LBRACK] = ACTIONS(4370), + [sym___double_quote] = ACTIONS(4370), + [sym___single_quote] = ACTIONS(4370), + [sym___c_double_quote] = ACTIONS(4370), + [sym___c_single_quote] = ACTIONS(4370), + [sym___r_double_quote] = ACTIONS(4370), + [sym___r_single_quote] = ACTIONS(4370), }, [1568] = { - [ts_builtin_sym_end] = ACTIONS(4422), - [sym_identifier] = ACTIONS(4424), - [anon_sym_LF] = ACTIONS(4424), - [anon_sym_CR] = ACTIONS(4424), - [anon_sym_CR_LF] = ACTIONS(4424), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4424), - [anon_sym_LBRACE] = ACTIONS(4424), - [anon_sym_const] = ACTIONS(4424), - [anon_sym_LPAREN] = ACTIONS(4424), - [anon_sym___global] = ACTIONS(4424), - [anon_sym_type] = ACTIONS(4424), - [anon_sym_fn] = ACTIONS(4424), - [anon_sym_PLUS] = ACTIONS(4424), - [anon_sym_DASH] = ACTIONS(4424), - [anon_sym_STAR] = ACTIONS(4424), - [anon_sym_struct] = ACTIONS(4424), - [anon_sym_union] = ACTIONS(4424), - [anon_sym_pub] = ACTIONS(4424), - [anon_sym_mut] = ACTIONS(4424), - [anon_sym_enum] = ACTIONS(4424), - [anon_sym_interface] = ACTIONS(4424), - [anon_sym_QMARK] = ACTIONS(4424), - [anon_sym_BANG] = ACTIONS(4424), - [anon_sym_go] = ACTIONS(4424), - [anon_sym_spawn] = ACTIONS(4424), - [anon_sym_json_DOTdecode] = ACTIONS(4424), - [anon_sym_LBRACK2] = ACTIONS(4424), - [anon_sym_TILDE] = ACTIONS(4424), - [anon_sym_CARET] = ACTIONS(4424), - [anon_sym_AMP] = ACTIONS(4424), - [anon_sym_LT_DASH] = ACTIONS(4424), - [sym_none] = ACTIONS(4424), - [sym_true] = ACTIONS(4424), - [sym_false] = ACTIONS(4424), - [sym_nil] = ACTIONS(4424), - [anon_sym_if] = ACTIONS(4424), - [anon_sym_DOLLARif] = ACTIONS(4424), - [anon_sym_match] = ACTIONS(4424), - [anon_sym_select] = ACTIONS(4424), - [anon_sym_lock] = ACTIONS(4424), - [anon_sym_rlock] = ACTIONS(4424), - [anon_sym_unsafe] = ACTIONS(4424), - [anon_sym_sql] = ACTIONS(4424), - [sym_int_literal] = ACTIONS(4424), - [sym_float_literal] = ACTIONS(4424), - [sym_rune_literal] = ACTIONS(4424), - [sym_pseudo_compile_time_identifier] = ACTIONS(4424), - [anon_sym_shared] = ACTIONS(4424), - [anon_sym_map_LBRACK] = ACTIONS(4424), - [anon_sym_chan] = ACTIONS(4424), - [anon_sym_thread] = ACTIONS(4424), - [anon_sym_atomic] = ACTIONS(4424), - [anon_sym_assert] = ACTIONS(4424), - [anon_sym_defer] = ACTIONS(4424), - [anon_sym_goto] = ACTIONS(4424), - [anon_sym_break] = ACTIONS(4424), - [anon_sym_continue] = ACTIONS(4424), - [anon_sym_return] = ACTIONS(4424), - [anon_sym_DOLLARfor] = ACTIONS(4424), - [anon_sym_for] = ACTIONS(4424), - [anon_sym_POUND] = ACTIONS(4424), - [anon_sym_asm] = ACTIONS(4424), - [anon_sym_AT_LBRACK] = ACTIONS(4424), - [sym___double_quote] = ACTIONS(4424), - [sym___single_quote] = ACTIONS(4424), - [sym___c_double_quote] = ACTIONS(4424), - [sym___c_single_quote] = ACTIONS(4424), - [sym___r_double_quote] = ACTIONS(4424), - [sym___r_single_quote] = ACTIONS(4424), + [sym_line_comment] = STATE(1568), + [sym_block_comment] = STATE(1568), + [ts_builtin_sym_end] = ACTIONS(4372), + [sym_identifier] = ACTIONS(4374), + [anon_sym_LF] = ACTIONS(4374), + [anon_sym_CR] = ACTIONS(4374), + [anon_sym_CR_LF] = ACTIONS(4374), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4374), + [anon_sym_LBRACE] = ACTIONS(4374), + [anon_sym_const] = ACTIONS(4374), + [anon_sym_LPAREN] = ACTIONS(4374), + [anon_sym___global] = ACTIONS(4374), + [anon_sym_type] = ACTIONS(4374), + [anon_sym_fn] = ACTIONS(4374), + [anon_sym_PLUS] = ACTIONS(4374), + [anon_sym_DASH] = ACTIONS(4374), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_struct] = ACTIONS(4374), + [anon_sym_union] = ACTIONS(4374), + [anon_sym_pub] = ACTIONS(4374), + [anon_sym_mut] = ACTIONS(4374), + [anon_sym_enum] = ACTIONS(4374), + [anon_sym_interface] = ACTIONS(4374), + [anon_sym_QMARK] = ACTIONS(4374), + [anon_sym_BANG] = ACTIONS(4374), + [anon_sym_go] = ACTIONS(4374), + [anon_sym_spawn] = ACTIONS(4374), + [anon_sym_json_DOTdecode] = ACTIONS(4374), + [anon_sym_LBRACK2] = ACTIONS(4374), + [anon_sym_TILDE] = ACTIONS(4374), + [anon_sym_CARET] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym_LT_DASH] = ACTIONS(4374), + [sym_none] = ACTIONS(4374), + [sym_true] = ACTIONS(4374), + [sym_false] = ACTIONS(4374), + [sym_nil] = ACTIONS(4374), + [anon_sym_if] = ACTIONS(4374), + [anon_sym_DOLLARif] = ACTIONS(4374), + [anon_sym_match] = ACTIONS(4374), + [anon_sym_select] = ACTIONS(4374), + [anon_sym_lock] = ACTIONS(4374), + [anon_sym_rlock] = ACTIONS(4374), + [anon_sym_unsafe] = ACTIONS(4374), + [anon_sym_sql] = ACTIONS(4374), + [sym_int_literal] = ACTIONS(4374), + [sym_float_literal] = ACTIONS(4374), + [sym_rune_literal] = ACTIONS(4374), + [sym_pseudo_compile_time_identifier] = ACTIONS(4374), + [anon_sym_shared] = ACTIONS(4374), + [anon_sym_map_LBRACK] = ACTIONS(4374), + [anon_sym_chan] = ACTIONS(4374), + [anon_sym_thread] = ACTIONS(4374), + [anon_sym_atomic] = ACTIONS(4374), + [anon_sym_assert] = ACTIONS(4374), + [anon_sym_defer] = ACTIONS(4374), + [anon_sym_goto] = ACTIONS(4374), + [anon_sym_break] = ACTIONS(4374), + [anon_sym_continue] = ACTIONS(4374), + [anon_sym_return] = ACTIONS(4374), + [anon_sym_DOLLARfor] = ACTIONS(4374), + [anon_sym_for] = ACTIONS(4374), + [anon_sym_POUND] = ACTIONS(4374), + [anon_sym_asm] = ACTIONS(4374), + [anon_sym_AT_LBRACK] = ACTIONS(4374), + [sym___double_quote] = ACTIONS(4374), + [sym___single_quote] = ACTIONS(4374), + [sym___c_double_quote] = ACTIONS(4374), + [sym___c_single_quote] = ACTIONS(4374), + [sym___r_double_quote] = ACTIONS(4374), + [sym___r_single_quote] = ACTIONS(4374), }, [1569] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_COLON] = ACTIONS(559), - [anon_sym_PLUS_PLUS] = ACTIONS(559), - [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(4426), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_GT_GT_GT] = ACTIONS(559), - [anon_sym_AMP_CARET] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_or] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(559), - [anon_sym_POUND_LBRACK] = ACTIONS(559), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(559), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(559), + [sym_line_comment] = STATE(1569), + [sym_block_comment] = STATE(1569), + [ts_builtin_sym_end] = ACTIONS(4376), + [sym_identifier] = ACTIONS(4378), + [anon_sym_LF] = ACTIONS(4378), + [anon_sym_CR] = ACTIONS(4378), + [anon_sym_CR_LF] = ACTIONS(4378), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4378), + [anon_sym_LBRACE] = ACTIONS(4378), + [anon_sym_const] = ACTIONS(4378), + [anon_sym_LPAREN] = ACTIONS(4378), + [anon_sym___global] = ACTIONS(4378), + [anon_sym_type] = ACTIONS(4378), + [anon_sym_fn] = ACTIONS(4378), + [anon_sym_PLUS] = ACTIONS(4378), + [anon_sym_DASH] = ACTIONS(4378), + [anon_sym_STAR] = ACTIONS(4378), + [anon_sym_struct] = ACTIONS(4378), + [anon_sym_union] = ACTIONS(4378), + [anon_sym_pub] = ACTIONS(4378), + [anon_sym_mut] = ACTIONS(4378), + [anon_sym_enum] = ACTIONS(4378), + [anon_sym_interface] = ACTIONS(4378), + [anon_sym_QMARK] = ACTIONS(4378), + [anon_sym_BANG] = ACTIONS(4378), + [anon_sym_go] = ACTIONS(4378), + [anon_sym_spawn] = ACTIONS(4378), + [anon_sym_json_DOTdecode] = ACTIONS(4378), + [anon_sym_LBRACK2] = ACTIONS(4378), + [anon_sym_TILDE] = ACTIONS(4378), + [anon_sym_CARET] = ACTIONS(4378), + [anon_sym_AMP] = ACTIONS(4378), + [anon_sym_LT_DASH] = ACTIONS(4378), + [sym_none] = ACTIONS(4378), + [sym_true] = ACTIONS(4378), + [sym_false] = ACTIONS(4378), + [sym_nil] = ACTIONS(4378), + [anon_sym_if] = ACTIONS(4378), + [anon_sym_DOLLARif] = ACTIONS(4378), + [anon_sym_match] = ACTIONS(4378), + [anon_sym_select] = ACTIONS(4378), + [anon_sym_lock] = ACTIONS(4378), + [anon_sym_rlock] = ACTIONS(4378), + [anon_sym_unsafe] = ACTIONS(4378), + [anon_sym_sql] = ACTIONS(4378), + [sym_int_literal] = ACTIONS(4378), + [sym_float_literal] = ACTIONS(4378), + [sym_rune_literal] = ACTIONS(4378), + [sym_pseudo_compile_time_identifier] = ACTIONS(4378), + [anon_sym_shared] = ACTIONS(4378), + [anon_sym_map_LBRACK] = ACTIONS(4378), + [anon_sym_chan] = ACTIONS(4378), + [anon_sym_thread] = ACTIONS(4378), + [anon_sym_atomic] = ACTIONS(4378), + [anon_sym_assert] = ACTIONS(4378), + [anon_sym_defer] = ACTIONS(4378), + [anon_sym_goto] = ACTIONS(4378), + [anon_sym_break] = ACTIONS(4378), + [anon_sym_continue] = ACTIONS(4378), + [anon_sym_return] = ACTIONS(4378), + [anon_sym_DOLLARfor] = ACTIONS(4378), + [anon_sym_for] = ACTIONS(4378), + [anon_sym_POUND] = ACTIONS(4378), + [anon_sym_asm] = ACTIONS(4378), + [anon_sym_AT_LBRACK] = ACTIONS(4378), + [sym___double_quote] = ACTIONS(4378), + [sym___single_quote] = ACTIONS(4378), + [sym___c_double_quote] = ACTIONS(4378), + [sym___c_single_quote] = ACTIONS(4378), + [sym___r_double_quote] = ACTIONS(4378), + [sym___r_single_quote] = ACTIONS(4378), }, [1570] = { + [sym_line_comment] = STATE(1570), + [sym_block_comment] = STATE(1570), + [ts_builtin_sym_end] = ACTIONS(4380), + [sym_identifier] = ACTIONS(4382), + [anon_sym_LF] = ACTIONS(4382), + [anon_sym_CR] = ACTIONS(4382), + [anon_sym_CR_LF] = ACTIONS(4382), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(4382), + [anon_sym_const] = ACTIONS(4382), + [anon_sym_LPAREN] = ACTIONS(4382), + [anon_sym___global] = ACTIONS(4382), + [anon_sym_type] = ACTIONS(4382), + [anon_sym_fn] = ACTIONS(4382), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_struct] = ACTIONS(4382), + [anon_sym_union] = ACTIONS(4382), + [anon_sym_pub] = ACTIONS(4382), + [anon_sym_mut] = ACTIONS(4382), + [anon_sym_enum] = ACTIONS(4382), + [anon_sym_interface] = ACTIONS(4382), + [anon_sym_QMARK] = ACTIONS(4382), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_go] = ACTIONS(4382), + [anon_sym_spawn] = ACTIONS(4382), + [anon_sym_json_DOTdecode] = ACTIONS(4382), + [anon_sym_LBRACK2] = ACTIONS(4382), + [anon_sym_TILDE] = ACTIONS(4382), + [anon_sym_CARET] = ACTIONS(4382), + [anon_sym_AMP] = ACTIONS(4382), + [anon_sym_LT_DASH] = ACTIONS(4382), + [sym_none] = ACTIONS(4382), + [sym_true] = ACTIONS(4382), + [sym_false] = ACTIONS(4382), + [sym_nil] = ACTIONS(4382), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_DOLLARif] = ACTIONS(4382), + [anon_sym_match] = ACTIONS(4382), + [anon_sym_select] = ACTIONS(4382), + [anon_sym_lock] = ACTIONS(4382), + [anon_sym_rlock] = ACTIONS(4382), + [anon_sym_unsafe] = ACTIONS(4382), + [anon_sym_sql] = ACTIONS(4382), + [sym_int_literal] = ACTIONS(4382), + [sym_float_literal] = ACTIONS(4382), + [sym_rune_literal] = ACTIONS(4382), + [sym_pseudo_compile_time_identifier] = ACTIONS(4382), + [anon_sym_shared] = ACTIONS(4382), + [anon_sym_map_LBRACK] = ACTIONS(4382), + [anon_sym_chan] = ACTIONS(4382), + [anon_sym_thread] = ACTIONS(4382), + [anon_sym_atomic] = ACTIONS(4382), + [anon_sym_assert] = ACTIONS(4382), + [anon_sym_defer] = ACTIONS(4382), + [anon_sym_goto] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_DOLLARfor] = ACTIONS(4382), + [anon_sym_for] = ACTIONS(4382), + [anon_sym_POUND] = ACTIONS(4382), + [anon_sym_asm] = ACTIONS(4382), + [anon_sym_AT_LBRACK] = ACTIONS(4382), + [sym___double_quote] = ACTIONS(4382), + [sym___single_quote] = ACTIONS(4382), + [sym___c_double_quote] = ACTIONS(4382), + [sym___c_single_quote] = ACTIONS(4382), + [sym___r_double_quote] = ACTIONS(4382), + [sym___r_single_quote] = ACTIONS(4382), + }, + [1571] = { + [sym_line_comment] = STATE(1571), + [sym_block_comment] = STATE(1571), + [ts_builtin_sym_end] = ACTIONS(4384), + [sym_identifier] = ACTIONS(4386), + [anon_sym_LF] = ACTIONS(4386), + [anon_sym_CR] = ACTIONS(4386), + [anon_sym_CR_LF] = ACTIONS(4386), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(4386), + [anon_sym_const] = ACTIONS(4386), + [anon_sym_LPAREN] = ACTIONS(4386), + [anon_sym___global] = ACTIONS(4386), + [anon_sym_type] = ACTIONS(4386), + [anon_sym_fn] = ACTIONS(4386), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [anon_sym_struct] = ACTIONS(4386), + [anon_sym_union] = ACTIONS(4386), + [anon_sym_pub] = ACTIONS(4386), + [anon_sym_mut] = ACTIONS(4386), + [anon_sym_enum] = ACTIONS(4386), + [anon_sym_interface] = ACTIONS(4386), + [anon_sym_QMARK] = ACTIONS(4386), + [anon_sym_BANG] = ACTIONS(4386), + [anon_sym_go] = ACTIONS(4386), + [anon_sym_spawn] = ACTIONS(4386), + [anon_sym_json_DOTdecode] = ACTIONS(4386), + [anon_sym_LBRACK2] = ACTIONS(4386), + [anon_sym_TILDE] = ACTIONS(4386), + [anon_sym_CARET] = ACTIONS(4386), + [anon_sym_AMP] = ACTIONS(4386), + [anon_sym_LT_DASH] = ACTIONS(4386), + [sym_none] = ACTIONS(4386), + [sym_true] = ACTIONS(4386), + [sym_false] = ACTIONS(4386), + [sym_nil] = ACTIONS(4386), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_DOLLARif] = ACTIONS(4386), + [anon_sym_match] = ACTIONS(4386), + [anon_sym_select] = ACTIONS(4386), + [anon_sym_lock] = ACTIONS(4386), + [anon_sym_rlock] = ACTIONS(4386), + [anon_sym_unsafe] = ACTIONS(4386), + [anon_sym_sql] = ACTIONS(4386), + [sym_int_literal] = ACTIONS(4386), + [sym_float_literal] = ACTIONS(4386), + [sym_rune_literal] = ACTIONS(4386), + [sym_pseudo_compile_time_identifier] = ACTIONS(4386), + [anon_sym_shared] = ACTIONS(4386), + [anon_sym_map_LBRACK] = ACTIONS(4386), + [anon_sym_chan] = ACTIONS(4386), + [anon_sym_thread] = ACTIONS(4386), + [anon_sym_atomic] = ACTIONS(4386), + [anon_sym_assert] = ACTIONS(4386), + [anon_sym_defer] = ACTIONS(4386), + [anon_sym_goto] = ACTIONS(4386), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_DOLLARfor] = ACTIONS(4386), + [anon_sym_for] = ACTIONS(4386), + [anon_sym_POUND] = ACTIONS(4386), + [anon_sym_asm] = ACTIONS(4386), + [anon_sym_AT_LBRACK] = ACTIONS(4386), + [sym___double_quote] = ACTIONS(4386), + [sym___single_quote] = ACTIONS(4386), + [sym___c_double_quote] = ACTIONS(4386), + [sym___c_single_quote] = ACTIONS(4386), + [sym___r_double_quote] = ACTIONS(4386), + [sym___r_single_quote] = ACTIONS(4386), + }, + [1572] = { + [sym_line_comment] = STATE(1572), + [sym_block_comment] = STATE(1572), + [ts_builtin_sym_end] = ACTIONS(4388), + [sym_identifier] = ACTIONS(4390), + [anon_sym_LF] = ACTIONS(4390), + [anon_sym_CR] = ACTIONS(4390), + [anon_sym_CR_LF] = ACTIONS(4390), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_const] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4390), + [anon_sym___global] = ACTIONS(4390), + [anon_sym_type] = ACTIONS(4390), + [anon_sym_fn] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_struct] = ACTIONS(4390), + [anon_sym_union] = ACTIONS(4390), + [anon_sym_pub] = ACTIONS(4390), + [anon_sym_mut] = ACTIONS(4390), + [anon_sym_enum] = ACTIONS(4390), + [anon_sym_interface] = ACTIONS(4390), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_go] = ACTIONS(4390), + [anon_sym_spawn] = ACTIONS(4390), + [anon_sym_json_DOTdecode] = ACTIONS(4390), + [anon_sym_LBRACK2] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4390), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_AMP] = ACTIONS(4390), + [anon_sym_LT_DASH] = ACTIONS(4390), + [sym_none] = ACTIONS(4390), + [sym_true] = ACTIONS(4390), + [sym_false] = ACTIONS(4390), + [sym_nil] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_DOLLARif] = ACTIONS(4390), + [anon_sym_match] = ACTIONS(4390), + [anon_sym_select] = ACTIONS(4390), + [anon_sym_lock] = ACTIONS(4390), + [anon_sym_rlock] = ACTIONS(4390), + [anon_sym_unsafe] = ACTIONS(4390), + [anon_sym_sql] = ACTIONS(4390), + [sym_int_literal] = ACTIONS(4390), + [sym_float_literal] = ACTIONS(4390), + [sym_rune_literal] = ACTIONS(4390), + [sym_pseudo_compile_time_identifier] = ACTIONS(4390), + [anon_sym_shared] = ACTIONS(4390), + [anon_sym_map_LBRACK] = ACTIONS(4390), + [anon_sym_chan] = ACTIONS(4390), + [anon_sym_thread] = ACTIONS(4390), + [anon_sym_atomic] = ACTIONS(4390), + [anon_sym_assert] = ACTIONS(4390), + [anon_sym_defer] = ACTIONS(4390), + [anon_sym_goto] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_DOLLARfor] = ACTIONS(4390), + [anon_sym_for] = ACTIONS(4390), + [anon_sym_POUND] = ACTIONS(4390), + [anon_sym_asm] = ACTIONS(4390), + [anon_sym_AT_LBRACK] = ACTIONS(4390), + [sym___double_quote] = ACTIONS(4390), + [sym___single_quote] = ACTIONS(4390), + [sym___c_double_quote] = ACTIONS(4390), + [sym___c_single_quote] = ACTIONS(4390), + [sym___r_double_quote] = ACTIONS(4390), + [sym___r_single_quote] = ACTIONS(4390), + }, + [1573] = { + [sym_line_comment] = STATE(1573), + [sym_block_comment] = STATE(1573), + [ts_builtin_sym_end] = ACTIONS(4392), + [sym_identifier] = ACTIONS(4394), + [anon_sym_LF] = ACTIONS(4394), + [anon_sym_CR] = ACTIONS(4394), + [anon_sym_CR_LF] = ACTIONS(4394), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4394), + [anon_sym_const] = ACTIONS(4394), + [anon_sym_LPAREN] = ACTIONS(4394), + [anon_sym___global] = ACTIONS(4394), + [anon_sym_type] = ACTIONS(4394), + [anon_sym_fn] = ACTIONS(4394), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_union] = ACTIONS(4394), + [anon_sym_pub] = ACTIONS(4394), + [anon_sym_mut] = ACTIONS(4394), + [anon_sym_enum] = ACTIONS(4394), + [anon_sym_interface] = ACTIONS(4394), + [anon_sym_QMARK] = ACTIONS(4394), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_go] = ACTIONS(4394), + [anon_sym_spawn] = ACTIONS(4394), + [anon_sym_json_DOTdecode] = ACTIONS(4394), + [anon_sym_LBRACK2] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4394), + [anon_sym_CARET] = ACTIONS(4394), + [anon_sym_AMP] = ACTIONS(4394), + [anon_sym_LT_DASH] = ACTIONS(4394), + [sym_none] = ACTIONS(4394), + [sym_true] = ACTIONS(4394), + [sym_false] = ACTIONS(4394), + [sym_nil] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_DOLLARif] = ACTIONS(4394), + [anon_sym_match] = ACTIONS(4394), + [anon_sym_select] = ACTIONS(4394), + [anon_sym_lock] = ACTIONS(4394), + [anon_sym_rlock] = ACTIONS(4394), + [anon_sym_unsafe] = ACTIONS(4394), + [anon_sym_sql] = ACTIONS(4394), + [sym_int_literal] = ACTIONS(4394), + [sym_float_literal] = ACTIONS(4394), + [sym_rune_literal] = ACTIONS(4394), + [sym_pseudo_compile_time_identifier] = ACTIONS(4394), + [anon_sym_shared] = ACTIONS(4394), + [anon_sym_map_LBRACK] = ACTIONS(4394), + [anon_sym_chan] = ACTIONS(4394), + [anon_sym_thread] = ACTIONS(4394), + [anon_sym_atomic] = ACTIONS(4394), + [anon_sym_assert] = ACTIONS(4394), + [anon_sym_defer] = ACTIONS(4394), + [anon_sym_goto] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_DOLLARfor] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_POUND] = ACTIONS(4394), + [anon_sym_asm] = ACTIONS(4394), + [anon_sym_AT_LBRACK] = ACTIONS(4394), + [sym___double_quote] = ACTIONS(4394), + [sym___single_quote] = ACTIONS(4394), + [sym___c_double_quote] = ACTIONS(4394), + [sym___c_single_quote] = ACTIONS(4394), + [sym___r_double_quote] = ACTIONS(4394), + [sym___r_single_quote] = ACTIONS(4394), + }, + [1574] = { + [sym_line_comment] = STATE(1574), + [sym_block_comment] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(4396), + [sym_identifier] = ACTIONS(4398), + [anon_sym_LF] = ACTIONS(4398), + [anon_sym_CR] = ACTIONS(4398), + [anon_sym_CR_LF] = ACTIONS(4398), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4398), + [anon_sym_const] = ACTIONS(4398), + [anon_sym_LPAREN] = ACTIONS(4398), + [anon_sym___global] = ACTIONS(4398), + [anon_sym_type] = ACTIONS(4398), + [anon_sym_fn] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_STAR] = ACTIONS(4398), + [anon_sym_struct] = ACTIONS(4398), + [anon_sym_union] = ACTIONS(4398), + [anon_sym_pub] = ACTIONS(4398), + [anon_sym_mut] = ACTIONS(4398), + [anon_sym_enum] = ACTIONS(4398), + [anon_sym_interface] = ACTIONS(4398), + [anon_sym_QMARK] = ACTIONS(4398), + [anon_sym_BANG] = ACTIONS(4398), + [anon_sym_go] = ACTIONS(4398), + [anon_sym_spawn] = ACTIONS(4398), + [anon_sym_json_DOTdecode] = ACTIONS(4398), + [anon_sym_LBRACK2] = ACTIONS(4398), + [anon_sym_TILDE] = ACTIONS(4398), + [anon_sym_CARET] = ACTIONS(4398), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_LT_DASH] = ACTIONS(4398), + [sym_none] = ACTIONS(4398), + [sym_true] = ACTIONS(4398), + [sym_false] = ACTIONS(4398), + [sym_nil] = ACTIONS(4398), + [anon_sym_if] = ACTIONS(4398), + [anon_sym_DOLLARif] = ACTIONS(4398), + [anon_sym_match] = ACTIONS(4398), + [anon_sym_select] = ACTIONS(4398), + [anon_sym_lock] = ACTIONS(4398), + [anon_sym_rlock] = ACTIONS(4398), + [anon_sym_unsafe] = ACTIONS(4398), + [anon_sym_sql] = ACTIONS(4398), + [sym_int_literal] = ACTIONS(4398), + [sym_float_literal] = ACTIONS(4398), + [sym_rune_literal] = ACTIONS(4398), + [sym_pseudo_compile_time_identifier] = ACTIONS(4398), + [anon_sym_shared] = ACTIONS(4398), + [anon_sym_map_LBRACK] = ACTIONS(4398), + [anon_sym_chan] = ACTIONS(4398), + [anon_sym_thread] = ACTIONS(4398), + [anon_sym_atomic] = ACTIONS(4398), + [anon_sym_assert] = ACTIONS(4398), + [anon_sym_defer] = ACTIONS(4398), + [anon_sym_goto] = ACTIONS(4398), + [anon_sym_break] = ACTIONS(4398), + [anon_sym_continue] = ACTIONS(4398), + [anon_sym_return] = ACTIONS(4398), + [anon_sym_DOLLARfor] = ACTIONS(4398), + [anon_sym_for] = ACTIONS(4398), + [anon_sym_POUND] = ACTIONS(4398), + [anon_sym_asm] = ACTIONS(4398), + [anon_sym_AT_LBRACK] = ACTIONS(4398), + [sym___double_quote] = ACTIONS(4398), + [sym___single_quote] = ACTIONS(4398), + [sym___c_double_quote] = ACTIONS(4398), + [sym___c_single_quote] = ACTIONS(4398), + [sym___r_double_quote] = ACTIONS(4398), + [sym___r_single_quote] = ACTIONS(4398), + }, + [1575] = { + [sym_line_comment] = STATE(1575), + [sym_block_comment] = STATE(1575), + [ts_builtin_sym_end] = ACTIONS(4400), + [sym_identifier] = ACTIONS(4402), + [anon_sym_LF] = ACTIONS(4402), + [anon_sym_CR] = ACTIONS(4402), + [anon_sym_CR_LF] = ACTIONS(4402), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(4402), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_LPAREN] = ACTIONS(4402), + [anon_sym___global] = ACTIONS(4402), + [anon_sym_type] = ACTIONS(4402), + [anon_sym_fn] = ACTIONS(4402), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4402), + [anon_sym_struct] = ACTIONS(4402), + [anon_sym_union] = ACTIONS(4402), + [anon_sym_pub] = ACTIONS(4402), + [anon_sym_mut] = ACTIONS(4402), + [anon_sym_enum] = ACTIONS(4402), + [anon_sym_interface] = ACTIONS(4402), + [anon_sym_QMARK] = ACTIONS(4402), + [anon_sym_BANG] = ACTIONS(4402), + [anon_sym_go] = ACTIONS(4402), + [anon_sym_spawn] = ACTIONS(4402), + [anon_sym_json_DOTdecode] = ACTIONS(4402), + [anon_sym_LBRACK2] = ACTIONS(4402), + [anon_sym_TILDE] = ACTIONS(4402), + [anon_sym_CARET] = ACTIONS(4402), + [anon_sym_AMP] = ACTIONS(4402), + [anon_sym_LT_DASH] = ACTIONS(4402), + [sym_none] = ACTIONS(4402), + [sym_true] = ACTIONS(4402), + [sym_false] = ACTIONS(4402), + [sym_nil] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_DOLLARif] = ACTIONS(4402), + [anon_sym_match] = ACTIONS(4402), + [anon_sym_select] = ACTIONS(4402), + [anon_sym_lock] = ACTIONS(4402), + [anon_sym_rlock] = ACTIONS(4402), + [anon_sym_unsafe] = ACTIONS(4402), + [anon_sym_sql] = ACTIONS(4402), + [sym_int_literal] = ACTIONS(4402), + [sym_float_literal] = ACTIONS(4402), + [sym_rune_literal] = ACTIONS(4402), + [sym_pseudo_compile_time_identifier] = ACTIONS(4402), + [anon_sym_shared] = ACTIONS(4402), + [anon_sym_map_LBRACK] = ACTIONS(4402), + [anon_sym_chan] = ACTIONS(4402), + [anon_sym_thread] = ACTIONS(4402), + [anon_sym_atomic] = ACTIONS(4402), + [anon_sym_assert] = ACTIONS(4402), + [anon_sym_defer] = ACTIONS(4402), + [anon_sym_goto] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_DOLLARfor] = ACTIONS(4402), + [anon_sym_for] = ACTIONS(4402), + [anon_sym_POUND] = ACTIONS(4402), + [anon_sym_asm] = ACTIONS(4402), + [anon_sym_AT_LBRACK] = ACTIONS(4402), + [sym___double_quote] = ACTIONS(4402), + [sym___single_quote] = ACTIONS(4402), + [sym___c_double_quote] = ACTIONS(4402), + [sym___c_single_quote] = ACTIONS(4402), + [sym___r_double_quote] = ACTIONS(4402), + [sym___r_single_quote] = ACTIONS(4402), + }, + [1576] = { + [sym_line_comment] = STATE(1576), + [sym_block_comment] = STATE(1576), + [ts_builtin_sym_end] = ACTIONS(4404), + [sym_identifier] = ACTIONS(4406), + [anon_sym_LF] = ACTIONS(4406), + [anon_sym_CR] = ACTIONS(4406), + [anon_sym_CR_LF] = ACTIONS(4406), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4406), + [anon_sym_LBRACE] = ACTIONS(4406), + [anon_sym_const] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4406), + [anon_sym___global] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_fn] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_STAR] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_union] = ACTIONS(4406), + [anon_sym_pub] = ACTIONS(4406), + [anon_sym_mut] = ACTIONS(4406), + [anon_sym_enum] = ACTIONS(4406), + [anon_sym_interface] = ACTIONS(4406), + [anon_sym_QMARK] = ACTIONS(4406), + [anon_sym_BANG] = ACTIONS(4406), + [anon_sym_go] = ACTIONS(4406), + [anon_sym_spawn] = ACTIONS(4406), + [anon_sym_json_DOTdecode] = ACTIONS(4406), + [anon_sym_LBRACK2] = ACTIONS(4406), + [anon_sym_TILDE] = ACTIONS(4406), + [anon_sym_CARET] = ACTIONS(4406), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_LT_DASH] = ACTIONS(4406), + [sym_none] = ACTIONS(4406), + [sym_true] = ACTIONS(4406), + [sym_false] = ACTIONS(4406), + [sym_nil] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_DOLLARif] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_select] = ACTIONS(4406), + [anon_sym_lock] = ACTIONS(4406), + [anon_sym_rlock] = ACTIONS(4406), + [anon_sym_unsafe] = ACTIONS(4406), + [anon_sym_sql] = ACTIONS(4406), + [sym_int_literal] = ACTIONS(4406), + [sym_float_literal] = ACTIONS(4406), + [sym_rune_literal] = ACTIONS(4406), + [sym_pseudo_compile_time_identifier] = ACTIONS(4406), + [anon_sym_shared] = ACTIONS(4406), + [anon_sym_map_LBRACK] = ACTIONS(4406), + [anon_sym_chan] = ACTIONS(4406), + [anon_sym_thread] = ACTIONS(4406), + [anon_sym_atomic] = ACTIONS(4406), + [anon_sym_assert] = ACTIONS(4406), + [anon_sym_defer] = ACTIONS(4406), + [anon_sym_goto] = ACTIONS(4406), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_DOLLARfor] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_POUND] = ACTIONS(4406), + [anon_sym_asm] = ACTIONS(4406), + [anon_sym_AT_LBRACK] = ACTIONS(4406), + [sym___double_quote] = ACTIONS(4406), + [sym___single_quote] = ACTIONS(4406), + [sym___c_double_quote] = ACTIONS(4406), + [sym___c_single_quote] = ACTIONS(4406), + [sym___r_double_quote] = ACTIONS(4406), + [sym___r_single_quote] = ACTIONS(4406), + }, + [1577] = { + [sym_line_comment] = STATE(1577), + [sym_block_comment] = STATE(1577), + [ts_builtin_sym_end] = ACTIONS(4408), + [sym_identifier] = ACTIONS(4410), + [anon_sym_LF] = ACTIONS(4410), + [anon_sym_CR] = ACTIONS(4410), + [anon_sym_CR_LF] = ACTIONS(4410), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_LBRACE] = ACTIONS(4410), + [anon_sym_const] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4410), + [anon_sym___global] = ACTIONS(4410), + [anon_sym_type] = ACTIONS(4410), + [anon_sym_fn] = ACTIONS(4410), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4410), + [anon_sym_struct] = ACTIONS(4410), + [anon_sym_union] = ACTIONS(4410), + [anon_sym_pub] = ACTIONS(4410), + [anon_sym_mut] = ACTIONS(4410), + [anon_sym_enum] = ACTIONS(4410), + [anon_sym_interface] = ACTIONS(4410), + [anon_sym_QMARK] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4410), + [anon_sym_go] = ACTIONS(4410), + [anon_sym_spawn] = ACTIONS(4410), + [anon_sym_json_DOTdecode] = ACTIONS(4410), + [anon_sym_LBRACK2] = ACTIONS(4410), + [anon_sym_TILDE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4410), + [anon_sym_AMP] = ACTIONS(4410), + [anon_sym_LT_DASH] = ACTIONS(4410), + [sym_none] = ACTIONS(4410), + [sym_true] = ACTIONS(4410), + [sym_false] = ACTIONS(4410), + [sym_nil] = ACTIONS(4410), + [anon_sym_if] = ACTIONS(4410), + [anon_sym_DOLLARif] = ACTIONS(4410), + [anon_sym_match] = ACTIONS(4410), + [anon_sym_select] = ACTIONS(4410), + [anon_sym_lock] = ACTIONS(4410), + [anon_sym_rlock] = ACTIONS(4410), + [anon_sym_unsafe] = ACTIONS(4410), + [anon_sym_sql] = ACTIONS(4410), + [sym_int_literal] = ACTIONS(4410), + [sym_float_literal] = ACTIONS(4410), + [sym_rune_literal] = ACTIONS(4410), + [sym_pseudo_compile_time_identifier] = ACTIONS(4410), + [anon_sym_shared] = ACTIONS(4410), + [anon_sym_map_LBRACK] = ACTIONS(4410), + [anon_sym_chan] = ACTIONS(4410), + [anon_sym_thread] = ACTIONS(4410), + [anon_sym_atomic] = ACTIONS(4410), + [anon_sym_assert] = ACTIONS(4410), + [anon_sym_defer] = ACTIONS(4410), + [anon_sym_goto] = ACTIONS(4410), + [anon_sym_break] = ACTIONS(4410), + [anon_sym_continue] = ACTIONS(4410), + [anon_sym_return] = ACTIONS(4410), + [anon_sym_DOLLARfor] = ACTIONS(4410), + [anon_sym_for] = ACTIONS(4410), + [anon_sym_POUND] = ACTIONS(4410), + [anon_sym_asm] = ACTIONS(4410), + [anon_sym_AT_LBRACK] = ACTIONS(4410), + [sym___double_quote] = ACTIONS(4410), + [sym___single_quote] = ACTIONS(4410), + [sym___c_double_quote] = ACTIONS(4410), + [sym___c_single_quote] = ACTIONS(4410), + [sym___r_double_quote] = ACTIONS(4410), + [sym___r_single_quote] = ACTIONS(4410), + }, + [1578] = { + [sym_line_comment] = STATE(1578), + [sym_block_comment] = STATE(1578), + [ts_builtin_sym_end] = ACTIONS(4412), + [sym_identifier] = ACTIONS(4414), + [anon_sym_LF] = ACTIONS(4414), + [anon_sym_CR] = ACTIONS(4414), + [anon_sym_CR_LF] = ACTIONS(4414), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4414), + [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_const] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym___global] = ACTIONS(4414), + [anon_sym_type] = ACTIONS(4414), + [anon_sym_fn] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4414), + [anon_sym_STAR] = ACTIONS(4414), + [anon_sym_struct] = ACTIONS(4414), + [anon_sym_union] = ACTIONS(4414), + [anon_sym_pub] = ACTIONS(4414), + [anon_sym_mut] = ACTIONS(4414), + [anon_sym_enum] = ACTIONS(4414), + [anon_sym_interface] = ACTIONS(4414), + [anon_sym_QMARK] = ACTIONS(4414), + [anon_sym_BANG] = ACTIONS(4414), + [anon_sym_go] = ACTIONS(4414), + [anon_sym_spawn] = ACTIONS(4414), + [anon_sym_json_DOTdecode] = ACTIONS(4414), + [anon_sym_LBRACK2] = ACTIONS(4414), + [anon_sym_TILDE] = ACTIONS(4414), + [anon_sym_CARET] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(4414), + [anon_sym_LT_DASH] = ACTIONS(4414), + [sym_none] = ACTIONS(4414), + [sym_true] = ACTIONS(4414), + [sym_false] = ACTIONS(4414), + [sym_nil] = ACTIONS(4414), + [anon_sym_if] = ACTIONS(4414), + [anon_sym_DOLLARif] = ACTIONS(4414), + [anon_sym_match] = ACTIONS(4414), + [anon_sym_select] = ACTIONS(4414), + [anon_sym_lock] = ACTIONS(4414), + [anon_sym_rlock] = ACTIONS(4414), + [anon_sym_unsafe] = ACTIONS(4414), + [anon_sym_sql] = ACTIONS(4414), + [sym_int_literal] = ACTIONS(4414), + [sym_float_literal] = ACTIONS(4414), + [sym_rune_literal] = ACTIONS(4414), + [sym_pseudo_compile_time_identifier] = ACTIONS(4414), + [anon_sym_shared] = ACTIONS(4414), + [anon_sym_map_LBRACK] = ACTIONS(4414), + [anon_sym_chan] = ACTIONS(4414), + [anon_sym_thread] = ACTIONS(4414), + [anon_sym_atomic] = ACTIONS(4414), + [anon_sym_assert] = ACTIONS(4414), + [anon_sym_defer] = ACTIONS(4414), + [anon_sym_goto] = ACTIONS(4414), + [anon_sym_break] = ACTIONS(4414), + [anon_sym_continue] = ACTIONS(4414), + [anon_sym_return] = ACTIONS(4414), + [anon_sym_DOLLARfor] = ACTIONS(4414), + [anon_sym_for] = ACTIONS(4414), + [anon_sym_POUND] = ACTIONS(4414), + [anon_sym_asm] = ACTIONS(4414), + [anon_sym_AT_LBRACK] = ACTIONS(4414), + [sym___double_quote] = ACTIONS(4414), + [sym___single_quote] = ACTIONS(4414), + [sym___c_double_quote] = ACTIONS(4414), + [sym___c_single_quote] = ACTIONS(4414), + [sym___r_double_quote] = ACTIONS(4414), + [sym___r_single_quote] = ACTIONS(4414), + }, + [1579] = { + [sym_line_comment] = STATE(1579), + [sym_block_comment] = STATE(1579), + [ts_builtin_sym_end] = ACTIONS(4416), + [sym_identifier] = ACTIONS(4418), + [anon_sym_LF] = ACTIONS(4418), + [anon_sym_CR] = ACTIONS(4418), + [anon_sym_CR_LF] = ACTIONS(4418), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_const] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym___global] = ACTIONS(4418), + [anon_sym_type] = ACTIONS(4418), + [anon_sym_fn] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4418), + [anon_sym_struct] = ACTIONS(4418), + [anon_sym_union] = ACTIONS(4418), + [anon_sym_pub] = ACTIONS(4418), + [anon_sym_mut] = ACTIONS(4418), + [anon_sym_enum] = ACTIONS(4418), + [anon_sym_interface] = ACTIONS(4418), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4418), + [anon_sym_go] = ACTIONS(4418), + [anon_sym_spawn] = ACTIONS(4418), + [anon_sym_json_DOTdecode] = ACTIONS(4418), + [anon_sym_LBRACK2] = ACTIONS(4418), + [anon_sym_TILDE] = ACTIONS(4418), + [anon_sym_CARET] = ACTIONS(4418), + [anon_sym_AMP] = ACTIONS(4418), + [anon_sym_LT_DASH] = ACTIONS(4418), + [sym_none] = ACTIONS(4418), + [sym_true] = ACTIONS(4418), + [sym_false] = ACTIONS(4418), + [sym_nil] = ACTIONS(4418), + [anon_sym_if] = ACTIONS(4418), + [anon_sym_DOLLARif] = ACTIONS(4418), + [anon_sym_match] = ACTIONS(4418), + [anon_sym_select] = ACTIONS(4418), + [anon_sym_lock] = ACTIONS(4418), + [anon_sym_rlock] = ACTIONS(4418), + [anon_sym_unsafe] = ACTIONS(4418), + [anon_sym_sql] = ACTIONS(4418), + [sym_int_literal] = ACTIONS(4418), + [sym_float_literal] = ACTIONS(4418), + [sym_rune_literal] = ACTIONS(4418), + [sym_pseudo_compile_time_identifier] = ACTIONS(4418), + [anon_sym_shared] = ACTIONS(4418), + [anon_sym_map_LBRACK] = ACTIONS(4418), + [anon_sym_chan] = ACTIONS(4418), + [anon_sym_thread] = ACTIONS(4418), + [anon_sym_atomic] = ACTIONS(4418), + [anon_sym_assert] = ACTIONS(4418), + [anon_sym_defer] = ACTIONS(4418), + [anon_sym_goto] = ACTIONS(4418), + [anon_sym_break] = ACTIONS(4418), + [anon_sym_continue] = ACTIONS(4418), + [anon_sym_return] = ACTIONS(4418), + [anon_sym_DOLLARfor] = ACTIONS(4418), + [anon_sym_for] = ACTIONS(4418), + [anon_sym_POUND] = ACTIONS(4418), + [anon_sym_asm] = ACTIONS(4418), + [anon_sym_AT_LBRACK] = ACTIONS(4418), + [sym___double_quote] = ACTIONS(4418), + [sym___single_quote] = ACTIONS(4418), + [sym___c_double_quote] = ACTIONS(4418), + [sym___c_single_quote] = ACTIONS(4418), + [sym___r_double_quote] = ACTIONS(4418), + [sym___r_single_quote] = ACTIONS(4418), + }, + [1580] = { + [sym_line_comment] = STATE(1580), + [sym_block_comment] = STATE(1580), + [ts_builtin_sym_end] = ACTIONS(4420), + [sym_identifier] = ACTIONS(4422), + [anon_sym_LF] = ACTIONS(4422), + [anon_sym_CR] = ACTIONS(4422), + [anon_sym_CR_LF] = ACTIONS(4422), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4422), + [anon_sym_const] = ACTIONS(4422), + [anon_sym_LPAREN] = ACTIONS(4422), + [anon_sym___global] = ACTIONS(4422), + [anon_sym_type] = ACTIONS(4422), + [anon_sym_fn] = ACTIONS(4422), + [anon_sym_PLUS] = ACTIONS(4422), + [anon_sym_DASH] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4422), + [anon_sym_struct] = ACTIONS(4422), + [anon_sym_union] = ACTIONS(4422), + [anon_sym_pub] = ACTIONS(4422), + [anon_sym_mut] = ACTIONS(4422), + [anon_sym_enum] = ACTIONS(4422), + [anon_sym_interface] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [anon_sym_BANG] = ACTIONS(4422), + [anon_sym_go] = ACTIONS(4422), + [anon_sym_spawn] = ACTIONS(4422), + [anon_sym_json_DOTdecode] = ACTIONS(4422), + [anon_sym_LBRACK2] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_CARET] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4422), + [anon_sym_LT_DASH] = ACTIONS(4422), + [sym_none] = ACTIONS(4422), + [sym_true] = ACTIONS(4422), + [sym_false] = ACTIONS(4422), + [sym_nil] = ACTIONS(4422), + [anon_sym_if] = ACTIONS(4422), + [anon_sym_DOLLARif] = ACTIONS(4422), + [anon_sym_match] = ACTIONS(4422), + [anon_sym_select] = ACTIONS(4422), + [anon_sym_lock] = ACTIONS(4422), + [anon_sym_rlock] = ACTIONS(4422), + [anon_sym_unsafe] = ACTIONS(4422), + [anon_sym_sql] = ACTIONS(4422), + [sym_int_literal] = ACTIONS(4422), + [sym_float_literal] = ACTIONS(4422), + [sym_rune_literal] = ACTIONS(4422), + [sym_pseudo_compile_time_identifier] = ACTIONS(4422), + [anon_sym_shared] = ACTIONS(4422), + [anon_sym_map_LBRACK] = ACTIONS(4422), + [anon_sym_chan] = ACTIONS(4422), + [anon_sym_thread] = ACTIONS(4422), + [anon_sym_atomic] = ACTIONS(4422), + [anon_sym_assert] = ACTIONS(4422), + [anon_sym_defer] = ACTIONS(4422), + [anon_sym_goto] = ACTIONS(4422), + [anon_sym_break] = ACTIONS(4422), + [anon_sym_continue] = ACTIONS(4422), + [anon_sym_return] = ACTIONS(4422), + [anon_sym_DOLLARfor] = ACTIONS(4422), + [anon_sym_for] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4422), + [anon_sym_asm] = ACTIONS(4422), + [anon_sym_AT_LBRACK] = ACTIONS(4422), + [sym___double_quote] = ACTIONS(4422), + [sym___single_quote] = ACTIONS(4422), + [sym___c_double_quote] = ACTIONS(4422), + [sym___c_single_quote] = ACTIONS(4422), + [sym___r_double_quote] = ACTIONS(4422), + [sym___r_single_quote] = ACTIONS(4422), + }, + [1581] = { + [sym_line_comment] = STATE(1581), + [sym_block_comment] = STATE(1581), + [ts_builtin_sym_end] = ACTIONS(4424), + [sym_identifier] = ACTIONS(4426), + [anon_sym_LF] = ACTIONS(4426), + [anon_sym_CR] = ACTIONS(4426), + [anon_sym_CR_LF] = ACTIONS(4426), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_const] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym___global] = ACTIONS(4426), + [anon_sym_type] = ACTIONS(4426), + [anon_sym_fn] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_struct] = ACTIONS(4426), + [anon_sym_union] = ACTIONS(4426), + [anon_sym_pub] = ACTIONS(4426), + [anon_sym_mut] = ACTIONS(4426), + [anon_sym_enum] = ACTIONS(4426), + [anon_sym_interface] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_BANG] = ACTIONS(4426), + [anon_sym_go] = ACTIONS(4426), + [anon_sym_spawn] = ACTIONS(4426), + [anon_sym_json_DOTdecode] = ACTIONS(4426), + [anon_sym_LBRACK2] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4426), + [anon_sym_LT_DASH] = ACTIONS(4426), + [sym_none] = ACTIONS(4426), + [sym_true] = ACTIONS(4426), + [sym_false] = ACTIONS(4426), + [sym_nil] = ACTIONS(4426), + [anon_sym_if] = ACTIONS(4426), + [anon_sym_DOLLARif] = ACTIONS(4426), + [anon_sym_match] = ACTIONS(4426), + [anon_sym_select] = ACTIONS(4426), + [anon_sym_lock] = ACTIONS(4426), + [anon_sym_rlock] = ACTIONS(4426), + [anon_sym_unsafe] = ACTIONS(4426), + [anon_sym_sql] = ACTIONS(4426), + [sym_int_literal] = ACTIONS(4426), + [sym_float_literal] = ACTIONS(4426), + [sym_rune_literal] = ACTIONS(4426), + [sym_pseudo_compile_time_identifier] = ACTIONS(4426), + [anon_sym_shared] = ACTIONS(4426), + [anon_sym_map_LBRACK] = ACTIONS(4426), + [anon_sym_chan] = ACTIONS(4426), + [anon_sym_thread] = ACTIONS(4426), + [anon_sym_atomic] = ACTIONS(4426), + [anon_sym_assert] = ACTIONS(4426), + [anon_sym_defer] = ACTIONS(4426), + [anon_sym_goto] = ACTIONS(4426), + [anon_sym_break] = ACTIONS(4426), + [anon_sym_continue] = ACTIONS(4426), + [anon_sym_return] = ACTIONS(4426), + [anon_sym_DOLLARfor] = ACTIONS(4426), + [anon_sym_for] = ACTIONS(4426), + [anon_sym_POUND] = ACTIONS(4426), + [anon_sym_asm] = ACTIONS(4426), + [anon_sym_AT_LBRACK] = ACTIONS(4426), + [sym___double_quote] = ACTIONS(4426), + [sym___single_quote] = ACTIONS(4426), + [sym___c_double_quote] = ACTIONS(4426), + [sym___c_single_quote] = ACTIONS(4426), + [sym___r_double_quote] = ACTIONS(4426), + [sym___r_single_quote] = ACTIONS(4426), + }, + [1582] = { + [sym_line_comment] = STATE(1582), + [sym_block_comment] = STATE(1582), [ts_builtin_sym_end] = ACTIONS(4428), [sym_identifier] = ACTIONS(4430), [anon_sym_LF] = ACTIONS(4430), [anon_sym_CR] = ACTIONS(4430), [anon_sym_CR_LF] = ACTIONS(4430), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4430), [anon_sym_LBRACE] = ACTIONS(4430), [anon_sym_const] = ACTIONS(4430), @@ -187667,13 +190463,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4430), [sym___r_single_quote] = ACTIONS(4430), }, - [1571] = { + [1583] = { + [sym_line_comment] = STATE(1583), + [sym_block_comment] = STATE(1583), [ts_builtin_sym_end] = ACTIONS(4432), [sym_identifier] = ACTIONS(4434), [anon_sym_LF] = ACTIONS(4434), [anon_sym_CR] = ACTIONS(4434), [anon_sym_CR_LF] = ACTIONS(4434), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4434), [anon_sym_LBRACE] = ACTIONS(4434), [anon_sym_const] = ACTIONS(4434), @@ -187739,13 +190538,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4434), [sym___r_single_quote] = ACTIONS(4434), }, - [1572] = { + [1584] = { + [sym_line_comment] = STATE(1584), + [sym_block_comment] = STATE(1584), [ts_builtin_sym_end] = ACTIONS(4436), [sym_identifier] = ACTIONS(4438), [anon_sym_LF] = ACTIONS(4438), [anon_sym_CR] = ACTIONS(4438), [anon_sym_CR_LF] = ACTIONS(4438), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4438), [anon_sym_LBRACE] = ACTIONS(4438), [anon_sym_const] = ACTIONS(4438), @@ -187811,13 +190613,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4438), [sym___r_single_quote] = ACTIONS(4438), }, - [1573] = { + [1585] = { + [sym_line_comment] = STATE(1585), + [sym_block_comment] = STATE(1585), [ts_builtin_sym_end] = ACTIONS(4440), [sym_identifier] = ACTIONS(4442), [anon_sym_LF] = ACTIONS(4442), [anon_sym_CR] = ACTIONS(4442), [anon_sym_CR_LF] = ACTIONS(4442), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4442), [anon_sym_LBRACE] = ACTIONS(4442), [anon_sym_const] = ACTIONS(4442), @@ -187883,85 +190688,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4442), [sym___r_single_quote] = ACTIONS(4442), }, - [1574] = { - [ts_builtin_sym_end] = ACTIONS(2683), - [sym_identifier] = ACTIONS(2685), - [anon_sym_LF] = ACTIONS(2685), - [anon_sym_CR] = ACTIONS(2685), - [anon_sym_CR_LF] = ACTIONS(2685), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym___global] = ACTIONS(2685), - [anon_sym_type] = ACTIONS(2685), - [anon_sym_fn] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_pub] = ACTIONS(2685), - [anon_sym_mut] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_interface] = ACTIONS(2685), - [anon_sym_QMARK] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_go] = ACTIONS(2685), - [anon_sym_spawn] = ACTIONS(2685), - [anon_sym_json_DOTdecode] = ACTIONS(2685), - [anon_sym_LBRACK2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_LT_DASH] = ACTIONS(2685), - [sym_none] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_nil] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_DOLLARif] = ACTIONS(2685), - [anon_sym_match] = ACTIONS(2685), - [anon_sym_select] = ACTIONS(2685), - [anon_sym_lock] = ACTIONS(2685), - [anon_sym_rlock] = ACTIONS(2685), - [anon_sym_unsafe] = ACTIONS(2685), - [anon_sym_sql] = ACTIONS(2685), - [sym_int_literal] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2685), - [sym_rune_literal] = ACTIONS(2685), - [sym_pseudo_compile_time_identifier] = ACTIONS(2685), - [anon_sym_shared] = ACTIONS(2685), - [anon_sym_map_LBRACK] = ACTIONS(2685), - [anon_sym_chan] = ACTIONS(2685), - [anon_sym_thread] = ACTIONS(2685), - [anon_sym_atomic] = ACTIONS(2685), - [anon_sym_assert] = ACTIONS(2685), - [anon_sym_defer] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_DOLLARfor] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_POUND] = ACTIONS(2685), - [anon_sym_asm] = ACTIONS(2685), - [anon_sym_AT_LBRACK] = ACTIONS(2685), - [sym___double_quote] = ACTIONS(2685), - [sym___single_quote] = ACTIONS(2685), - [sym___c_double_quote] = ACTIONS(2685), - [sym___c_single_quote] = ACTIONS(2685), - [sym___r_double_quote] = ACTIONS(2685), - [sym___r_single_quote] = ACTIONS(2685), - }, - [1575] = { + [1586] = { + [sym_line_comment] = STATE(1586), + [sym_block_comment] = STATE(1586), [ts_builtin_sym_end] = ACTIONS(4444), [sym_identifier] = ACTIONS(4446), [anon_sym_LF] = ACTIONS(4446), [anon_sym_CR] = ACTIONS(4446), [anon_sym_CR_LF] = ACTIONS(4446), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4446), [anon_sym_LBRACE] = ACTIONS(4446), [anon_sym_const] = ACTIONS(4446), @@ -188027,13 +190763,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4446), [sym___r_single_quote] = ACTIONS(4446), }, - [1576] = { + [1587] = { + [sym_line_comment] = STATE(1587), + [sym_block_comment] = STATE(1587), [ts_builtin_sym_end] = ACTIONS(4448), [sym_identifier] = ACTIONS(4450), [anon_sym_LF] = ACTIONS(4450), [anon_sym_CR] = ACTIONS(4450), [anon_sym_CR_LF] = ACTIONS(4450), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4450), [anon_sym_LBRACE] = ACTIONS(4450), [anon_sym_const] = ACTIONS(4450), @@ -188099,13 +190838,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4450), [sym___r_single_quote] = ACTIONS(4450), }, - [1577] = { + [1588] = { + [sym_line_comment] = STATE(1588), + [sym_block_comment] = STATE(1588), [ts_builtin_sym_end] = ACTIONS(4452), [sym_identifier] = ACTIONS(4454), [anon_sym_LF] = ACTIONS(4454), [anon_sym_CR] = ACTIONS(4454), [anon_sym_CR_LF] = ACTIONS(4454), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4454), [anon_sym_LBRACE] = ACTIONS(4454), [anon_sym_const] = ACTIONS(4454), @@ -188171,13 +190913,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4454), [sym___r_single_quote] = ACTIONS(4454), }, - [1578] = { + [1589] = { + [sym_line_comment] = STATE(1589), + [sym_block_comment] = STATE(1589), [ts_builtin_sym_end] = ACTIONS(4456), [sym_identifier] = ACTIONS(4458), [anon_sym_LF] = ACTIONS(4458), [anon_sym_CR] = ACTIONS(4458), [anon_sym_CR_LF] = ACTIONS(4458), - [sym_comment] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4458), [anon_sym_LBRACE] = ACTIONS(4458), [anon_sym_const] = ACTIONS(4458), @@ -188243,13 +190988,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4458), [sym___r_single_quote] = ACTIONS(4458), }, - [1579] = { + [1590] = { + [sym_line_comment] = STATE(1590), + [sym_block_comment] = STATE(1590), [ts_builtin_sym_end] = ACTIONS(4460), [sym_identifier] = ACTIONS(4462), - [anon_sym_LF] = ACTIONS(4464), - [anon_sym_CR] = ACTIONS(4464), - [anon_sym_CR_LF] = ACTIONS(4464), - [sym_comment] = ACTIONS(495), + [anon_sym_LF] = ACTIONS(4462), + [anon_sym_CR] = ACTIONS(4462), + [anon_sym_CR_LF] = ACTIONS(4462), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4462), [anon_sym_LBRACE] = ACTIONS(4462), [anon_sym_const] = ACTIONS(4462), @@ -188315,718 +191063,673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4462), [sym___r_single_quote] = ACTIONS(4462), }, - [1580] = { - [ts_builtin_sym_end] = ACTIONS(4466), - [sym_identifier] = ACTIONS(4468), - [anon_sym_LF] = ACTIONS(4468), - [anon_sym_CR] = ACTIONS(4468), - [anon_sym_CR_LF] = ACTIONS(4468), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(4468), - [anon_sym_const] = ACTIONS(4468), - [anon_sym_LPAREN] = ACTIONS(4468), - [anon_sym___global] = ACTIONS(4468), - [anon_sym_type] = ACTIONS(4468), - [anon_sym_fn] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4468), - [anon_sym_struct] = ACTIONS(4468), - [anon_sym_union] = ACTIONS(4468), - [anon_sym_pub] = ACTIONS(4468), - [anon_sym_mut] = ACTIONS(4468), - [anon_sym_enum] = ACTIONS(4468), - [anon_sym_interface] = ACTIONS(4468), - [anon_sym_QMARK] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_go] = ACTIONS(4468), - [anon_sym_spawn] = ACTIONS(4468), - [anon_sym_json_DOTdecode] = ACTIONS(4468), - [anon_sym_LBRACK2] = ACTIONS(4468), - [anon_sym_TILDE] = ACTIONS(4468), - [anon_sym_CARET] = ACTIONS(4468), - [anon_sym_AMP] = ACTIONS(4468), - [anon_sym_LT_DASH] = ACTIONS(4468), - [sym_none] = ACTIONS(4468), - [sym_true] = ACTIONS(4468), - [sym_false] = ACTIONS(4468), - [sym_nil] = ACTIONS(4468), - [anon_sym_if] = ACTIONS(4468), - [anon_sym_DOLLARif] = ACTIONS(4468), - [anon_sym_match] = ACTIONS(4468), - [anon_sym_select] = ACTIONS(4468), - [anon_sym_lock] = ACTIONS(4468), - [anon_sym_rlock] = ACTIONS(4468), - [anon_sym_unsafe] = ACTIONS(4468), - [anon_sym_sql] = ACTIONS(4468), - [sym_int_literal] = ACTIONS(4468), - [sym_float_literal] = ACTIONS(4468), - [sym_rune_literal] = ACTIONS(4468), - [sym_pseudo_compile_time_identifier] = ACTIONS(4468), - [anon_sym_shared] = ACTIONS(4468), - [anon_sym_map_LBRACK] = ACTIONS(4468), - [anon_sym_chan] = ACTIONS(4468), - [anon_sym_thread] = ACTIONS(4468), - [anon_sym_atomic] = ACTIONS(4468), - [anon_sym_assert] = ACTIONS(4468), - [anon_sym_defer] = ACTIONS(4468), - [anon_sym_goto] = ACTIONS(4468), - [anon_sym_break] = ACTIONS(4468), - [anon_sym_continue] = ACTIONS(4468), - [anon_sym_return] = ACTIONS(4468), - [anon_sym_DOLLARfor] = ACTIONS(4468), - [anon_sym_for] = ACTIONS(4468), - [anon_sym_POUND] = ACTIONS(4468), - [anon_sym_asm] = ACTIONS(4468), - [anon_sym_AT_LBRACK] = ACTIONS(4468), - [sym___double_quote] = ACTIONS(4468), - [sym___single_quote] = ACTIONS(4468), - [sym___c_double_quote] = ACTIONS(4468), - [sym___c_single_quote] = ACTIONS(4468), - [sym___r_double_quote] = ACTIONS(4468), - [sym___r_single_quote] = ACTIONS(4468), - }, - [1581] = { - [ts_builtin_sym_end] = ACTIONS(4470), - [sym_identifier] = ACTIONS(4472), - [anon_sym_LF] = ACTIONS(4472), - [anon_sym_CR] = ACTIONS(4472), - [anon_sym_CR_LF] = ACTIONS(4472), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4472), - [anon_sym_LBRACE] = ACTIONS(4472), - [anon_sym_const] = ACTIONS(4472), - [anon_sym_LPAREN] = ACTIONS(4472), - [anon_sym___global] = ACTIONS(4472), - [anon_sym_type] = ACTIONS(4472), - [anon_sym_fn] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4472), - [anon_sym_DASH] = ACTIONS(4472), - [anon_sym_STAR] = ACTIONS(4472), - [anon_sym_struct] = ACTIONS(4472), - [anon_sym_union] = ACTIONS(4472), - [anon_sym_pub] = ACTIONS(4472), - [anon_sym_mut] = ACTIONS(4472), - [anon_sym_enum] = ACTIONS(4472), - [anon_sym_interface] = ACTIONS(4472), - [anon_sym_QMARK] = ACTIONS(4472), - [anon_sym_BANG] = ACTIONS(4472), - [anon_sym_go] = ACTIONS(4472), - [anon_sym_spawn] = ACTIONS(4472), - [anon_sym_json_DOTdecode] = ACTIONS(4472), - [anon_sym_LBRACK2] = ACTIONS(4472), - [anon_sym_TILDE] = ACTIONS(4472), - [anon_sym_CARET] = ACTIONS(4472), - [anon_sym_AMP] = ACTIONS(4472), - [anon_sym_LT_DASH] = ACTIONS(4472), - [sym_none] = ACTIONS(4472), - [sym_true] = ACTIONS(4472), - [sym_false] = ACTIONS(4472), - [sym_nil] = ACTIONS(4472), - [anon_sym_if] = ACTIONS(4472), - [anon_sym_DOLLARif] = ACTIONS(4472), - [anon_sym_match] = ACTIONS(4472), - [anon_sym_select] = ACTIONS(4472), - [anon_sym_lock] = ACTIONS(4472), - [anon_sym_rlock] = ACTIONS(4472), - [anon_sym_unsafe] = ACTIONS(4472), - [anon_sym_sql] = ACTIONS(4472), - [sym_int_literal] = ACTIONS(4472), - [sym_float_literal] = ACTIONS(4472), - [sym_rune_literal] = ACTIONS(4472), - [sym_pseudo_compile_time_identifier] = ACTIONS(4472), - [anon_sym_shared] = ACTIONS(4472), - [anon_sym_map_LBRACK] = ACTIONS(4472), - [anon_sym_chan] = ACTIONS(4472), - [anon_sym_thread] = ACTIONS(4472), - [anon_sym_atomic] = ACTIONS(4472), - [anon_sym_assert] = ACTIONS(4472), - [anon_sym_defer] = ACTIONS(4472), - [anon_sym_goto] = ACTIONS(4472), - [anon_sym_break] = ACTIONS(4472), - [anon_sym_continue] = ACTIONS(4472), - [anon_sym_return] = ACTIONS(4472), - [anon_sym_DOLLARfor] = ACTIONS(4472), - [anon_sym_for] = ACTIONS(4472), - [anon_sym_POUND] = ACTIONS(4472), - [anon_sym_asm] = ACTIONS(4472), - [anon_sym_AT_LBRACK] = ACTIONS(4472), - [sym___double_quote] = ACTIONS(4472), - [sym___single_quote] = ACTIONS(4472), - [sym___c_double_quote] = ACTIONS(4472), - [sym___c_single_quote] = ACTIONS(4472), - [sym___r_double_quote] = ACTIONS(4472), - [sym___r_single_quote] = ACTIONS(4472), + [1591] = { + [sym_line_comment] = STATE(1591), + [sym_block_comment] = STATE(1591), + [ts_builtin_sym_end] = ACTIONS(4464), + [sym_identifier] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_CR] = ACTIONS(4466), + [anon_sym_CR_LF] = ACTIONS(4466), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_const] = ACTIONS(4466), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym___global] = ACTIONS(4466), + [anon_sym_type] = ACTIONS(4466), + [anon_sym_fn] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4466), + [anon_sym_DASH] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_struct] = ACTIONS(4466), + [anon_sym_union] = ACTIONS(4466), + [anon_sym_pub] = ACTIONS(4466), + [anon_sym_mut] = ACTIONS(4466), + [anon_sym_enum] = ACTIONS(4466), + [anon_sym_interface] = ACTIONS(4466), + [anon_sym_QMARK] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4466), + [anon_sym_go] = ACTIONS(4466), + [anon_sym_spawn] = ACTIONS(4466), + [anon_sym_json_DOTdecode] = ACTIONS(4466), + [anon_sym_LBRACK2] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + [anon_sym_LT_DASH] = ACTIONS(4466), + [sym_none] = ACTIONS(4466), + [sym_true] = ACTIONS(4466), + [sym_false] = ACTIONS(4466), + [sym_nil] = ACTIONS(4466), + [anon_sym_if] = ACTIONS(4466), + [anon_sym_DOLLARif] = ACTIONS(4466), + [anon_sym_match] = ACTIONS(4466), + [anon_sym_select] = ACTIONS(4466), + [anon_sym_lock] = ACTIONS(4466), + [anon_sym_rlock] = ACTIONS(4466), + [anon_sym_unsafe] = ACTIONS(4466), + [anon_sym_sql] = ACTIONS(4466), + [sym_int_literal] = ACTIONS(4466), + [sym_float_literal] = ACTIONS(4466), + [sym_rune_literal] = ACTIONS(4466), + [sym_pseudo_compile_time_identifier] = ACTIONS(4466), + [anon_sym_shared] = ACTIONS(4466), + [anon_sym_map_LBRACK] = ACTIONS(4466), + [anon_sym_chan] = ACTIONS(4466), + [anon_sym_thread] = ACTIONS(4466), + [anon_sym_atomic] = ACTIONS(4466), + [anon_sym_assert] = ACTIONS(4466), + [anon_sym_defer] = ACTIONS(4466), + [anon_sym_goto] = ACTIONS(4466), + [anon_sym_break] = ACTIONS(4466), + [anon_sym_continue] = ACTIONS(4466), + [anon_sym_return] = ACTIONS(4466), + [anon_sym_DOLLARfor] = ACTIONS(4466), + [anon_sym_for] = ACTIONS(4466), + [anon_sym_POUND] = ACTIONS(4466), + [anon_sym_asm] = ACTIONS(4466), + [anon_sym_AT_LBRACK] = ACTIONS(4466), + [sym___double_quote] = ACTIONS(4466), + [sym___single_quote] = ACTIONS(4466), + [sym___c_double_quote] = ACTIONS(4466), + [sym___c_single_quote] = ACTIONS(4466), + [sym___r_double_quote] = ACTIONS(4466), + [sym___r_single_quote] = ACTIONS(4466), }, - [1582] = { - [ts_builtin_sym_end] = ACTIONS(4474), - [sym_identifier] = ACTIONS(4476), - [anon_sym_LF] = ACTIONS(4476), - [anon_sym_CR] = ACTIONS(4476), - [anon_sym_CR_LF] = ACTIONS(4476), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4476), - [anon_sym_LBRACE] = ACTIONS(4476), - [anon_sym_const] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4476), - [anon_sym___global] = ACTIONS(4476), - [anon_sym_type] = ACTIONS(4476), - [anon_sym_fn] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4476), - [anon_sym_struct] = ACTIONS(4476), - [anon_sym_union] = ACTIONS(4476), - [anon_sym_pub] = ACTIONS(4476), - [anon_sym_mut] = ACTIONS(4476), - [anon_sym_enum] = ACTIONS(4476), - [anon_sym_interface] = ACTIONS(4476), - [anon_sym_QMARK] = ACTIONS(4476), - [anon_sym_BANG] = ACTIONS(4476), - [anon_sym_go] = ACTIONS(4476), - [anon_sym_spawn] = ACTIONS(4476), - [anon_sym_json_DOTdecode] = ACTIONS(4476), - [anon_sym_LBRACK2] = ACTIONS(4476), - [anon_sym_TILDE] = ACTIONS(4476), - [anon_sym_CARET] = ACTIONS(4476), - [anon_sym_AMP] = ACTIONS(4476), - [anon_sym_LT_DASH] = ACTIONS(4476), - [sym_none] = ACTIONS(4476), - [sym_true] = ACTIONS(4476), - [sym_false] = ACTIONS(4476), - [sym_nil] = ACTIONS(4476), - [anon_sym_if] = ACTIONS(4476), - [anon_sym_DOLLARif] = ACTIONS(4476), - [anon_sym_match] = ACTIONS(4476), - [anon_sym_select] = ACTIONS(4476), - [anon_sym_lock] = ACTIONS(4476), - [anon_sym_rlock] = ACTIONS(4476), - [anon_sym_unsafe] = ACTIONS(4476), - [anon_sym_sql] = ACTIONS(4476), - [sym_int_literal] = ACTIONS(4476), - [sym_float_literal] = ACTIONS(4476), - [sym_rune_literal] = ACTIONS(4476), - [sym_pseudo_compile_time_identifier] = ACTIONS(4476), - [anon_sym_shared] = ACTIONS(4476), - [anon_sym_map_LBRACK] = ACTIONS(4476), - [anon_sym_chan] = ACTIONS(4476), - [anon_sym_thread] = ACTIONS(4476), - [anon_sym_atomic] = ACTIONS(4476), - [anon_sym_assert] = ACTIONS(4476), - [anon_sym_defer] = ACTIONS(4476), - [anon_sym_goto] = ACTIONS(4476), - [anon_sym_break] = ACTIONS(4476), - [anon_sym_continue] = ACTIONS(4476), - [anon_sym_return] = ACTIONS(4476), - [anon_sym_DOLLARfor] = ACTIONS(4476), - [anon_sym_for] = ACTIONS(4476), - [anon_sym_POUND] = ACTIONS(4476), - [anon_sym_asm] = ACTIONS(4476), - [anon_sym_AT_LBRACK] = ACTIONS(4476), - [sym___double_quote] = ACTIONS(4476), - [sym___single_quote] = ACTIONS(4476), - [sym___c_double_quote] = ACTIONS(4476), - [sym___c_single_quote] = ACTIONS(4476), - [sym___r_double_quote] = ACTIONS(4476), - [sym___r_single_quote] = ACTIONS(4476), + [1592] = { + [sym_line_comment] = STATE(1592), + [sym_block_comment] = STATE(1592), + [ts_builtin_sym_end] = ACTIONS(4468), + [sym_identifier] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_CR] = ACTIONS(4470), + [anon_sym_CR_LF] = ACTIONS(4470), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4470), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_const] = ACTIONS(4470), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym___global] = ACTIONS(4470), + [anon_sym_type] = ACTIONS(4470), + [anon_sym_fn] = ACTIONS(4470), + [anon_sym_PLUS] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4470), + [anon_sym_struct] = ACTIONS(4470), + [anon_sym_union] = ACTIONS(4470), + [anon_sym_pub] = ACTIONS(4470), + [anon_sym_mut] = ACTIONS(4470), + [anon_sym_enum] = ACTIONS(4470), + [anon_sym_interface] = ACTIONS(4470), + [anon_sym_QMARK] = ACTIONS(4470), + [anon_sym_BANG] = ACTIONS(4470), + [anon_sym_go] = ACTIONS(4470), + [anon_sym_spawn] = ACTIONS(4470), + [anon_sym_json_DOTdecode] = ACTIONS(4470), + [anon_sym_LBRACK2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_CARET] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + [anon_sym_LT_DASH] = ACTIONS(4470), + [sym_none] = ACTIONS(4470), + [sym_true] = ACTIONS(4470), + [sym_false] = ACTIONS(4470), + [sym_nil] = ACTIONS(4470), + [anon_sym_if] = ACTIONS(4470), + [anon_sym_DOLLARif] = ACTIONS(4470), + [anon_sym_match] = ACTIONS(4470), + [anon_sym_select] = ACTIONS(4470), + [anon_sym_lock] = ACTIONS(4470), + [anon_sym_rlock] = ACTIONS(4470), + [anon_sym_unsafe] = ACTIONS(4470), + [anon_sym_sql] = ACTIONS(4470), + [sym_int_literal] = ACTIONS(4470), + [sym_float_literal] = ACTIONS(4470), + [sym_rune_literal] = ACTIONS(4470), + [sym_pseudo_compile_time_identifier] = ACTIONS(4470), + [anon_sym_shared] = ACTIONS(4470), + [anon_sym_map_LBRACK] = ACTIONS(4470), + [anon_sym_chan] = ACTIONS(4470), + [anon_sym_thread] = ACTIONS(4470), + [anon_sym_atomic] = ACTIONS(4470), + [anon_sym_assert] = ACTIONS(4470), + [anon_sym_defer] = ACTIONS(4470), + [anon_sym_goto] = ACTIONS(4470), + [anon_sym_break] = ACTIONS(4470), + [anon_sym_continue] = ACTIONS(4470), + [anon_sym_return] = ACTIONS(4470), + [anon_sym_DOLLARfor] = ACTIONS(4470), + [anon_sym_for] = ACTIONS(4470), + [anon_sym_POUND] = ACTIONS(4470), + [anon_sym_asm] = ACTIONS(4470), + [anon_sym_AT_LBRACK] = ACTIONS(4470), + [sym___double_quote] = ACTIONS(4470), + [sym___single_quote] = ACTIONS(4470), + [sym___c_double_quote] = ACTIONS(4470), + [sym___c_single_quote] = ACTIONS(4470), + [sym___r_double_quote] = ACTIONS(4470), + [sym___r_single_quote] = ACTIONS(4470), }, - [1583] = { - [ts_builtin_sym_end] = ACTIONS(4478), - [sym_identifier] = ACTIONS(4480), - [anon_sym_LF] = ACTIONS(4480), - [anon_sym_CR] = ACTIONS(4480), - [anon_sym_CR_LF] = ACTIONS(4480), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4480), - [anon_sym_LBRACE] = ACTIONS(4480), - [anon_sym_const] = ACTIONS(4480), - [anon_sym_LPAREN] = ACTIONS(4480), - [anon_sym___global] = ACTIONS(4480), - [anon_sym_type] = ACTIONS(4480), - [anon_sym_fn] = ACTIONS(4480), - [anon_sym_PLUS] = ACTIONS(4480), - [anon_sym_DASH] = ACTIONS(4480), - [anon_sym_STAR] = ACTIONS(4480), - [anon_sym_struct] = ACTIONS(4480), - [anon_sym_union] = ACTIONS(4480), - [anon_sym_pub] = ACTIONS(4480), - [anon_sym_mut] = ACTIONS(4480), - [anon_sym_enum] = ACTIONS(4480), - [anon_sym_interface] = ACTIONS(4480), - [anon_sym_QMARK] = ACTIONS(4480), - [anon_sym_BANG] = ACTIONS(4480), - [anon_sym_go] = ACTIONS(4480), - [anon_sym_spawn] = ACTIONS(4480), - [anon_sym_json_DOTdecode] = ACTIONS(4480), - [anon_sym_LBRACK2] = ACTIONS(4480), - [anon_sym_TILDE] = ACTIONS(4480), - [anon_sym_CARET] = ACTIONS(4480), - [anon_sym_AMP] = ACTIONS(4480), - [anon_sym_LT_DASH] = ACTIONS(4480), - [sym_none] = ACTIONS(4480), - [sym_true] = ACTIONS(4480), - [sym_false] = ACTIONS(4480), - [sym_nil] = ACTIONS(4480), - [anon_sym_if] = ACTIONS(4480), - [anon_sym_DOLLARif] = ACTIONS(4480), - [anon_sym_match] = ACTIONS(4480), - [anon_sym_select] = ACTIONS(4480), - [anon_sym_lock] = ACTIONS(4480), - [anon_sym_rlock] = ACTIONS(4480), - [anon_sym_unsafe] = ACTIONS(4480), - [anon_sym_sql] = ACTIONS(4480), - [sym_int_literal] = ACTIONS(4480), - [sym_float_literal] = ACTIONS(4480), - [sym_rune_literal] = ACTIONS(4480), - [sym_pseudo_compile_time_identifier] = ACTIONS(4480), - [anon_sym_shared] = ACTIONS(4480), - [anon_sym_map_LBRACK] = ACTIONS(4480), - [anon_sym_chan] = ACTIONS(4480), - [anon_sym_thread] = ACTIONS(4480), - [anon_sym_atomic] = ACTIONS(4480), - [anon_sym_assert] = ACTIONS(4480), - [anon_sym_defer] = ACTIONS(4480), - [anon_sym_goto] = ACTIONS(4480), - [anon_sym_break] = ACTIONS(4480), - [anon_sym_continue] = ACTIONS(4480), - [anon_sym_return] = ACTIONS(4480), - [anon_sym_DOLLARfor] = ACTIONS(4480), - [anon_sym_for] = ACTIONS(4480), - [anon_sym_POUND] = ACTIONS(4480), - [anon_sym_asm] = ACTIONS(4480), - [anon_sym_AT_LBRACK] = ACTIONS(4480), - [sym___double_quote] = ACTIONS(4480), - [sym___single_quote] = ACTIONS(4480), - [sym___c_double_quote] = ACTIONS(4480), - [sym___c_single_quote] = ACTIONS(4480), - [sym___r_double_quote] = ACTIONS(4480), - [sym___r_single_quote] = ACTIONS(4480), + [1593] = { + [sym_line_comment] = STATE(1593), + [sym_block_comment] = STATE(1593), + [ts_builtin_sym_end] = ACTIONS(4472), + [sym_identifier] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_CR] = ACTIONS(4474), + [anon_sym_CR_LF] = ACTIONS(4474), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym___global] = ACTIONS(4474), + [anon_sym_type] = ACTIONS(4474), + [anon_sym_fn] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_struct] = ACTIONS(4474), + [anon_sym_union] = ACTIONS(4474), + [anon_sym_pub] = ACTIONS(4474), + [anon_sym_mut] = ACTIONS(4474), + [anon_sym_enum] = ACTIONS(4474), + [anon_sym_interface] = ACTIONS(4474), + [anon_sym_QMARK] = ACTIONS(4474), + [anon_sym_BANG] = ACTIONS(4474), + [anon_sym_go] = ACTIONS(4474), + [anon_sym_spawn] = ACTIONS(4474), + [anon_sym_json_DOTdecode] = ACTIONS(4474), + [anon_sym_LBRACK2] = ACTIONS(4474), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_CARET] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_LT_DASH] = ACTIONS(4474), + [sym_none] = ACTIONS(4474), + [sym_true] = ACTIONS(4474), + [sym_false] = ACTIONS(4474), + [sym_nil] = ACTIONS(4474), + [anon_sym_if] = ACTIONS(4474), + [anon_sym_DOLLARif] = ACTIONS(4474), + [anon_sym_match] = ACTIONS(4474), + [anon_sym_select] = ACTIONS(4474), + [anon_sym_lock] = ACTIONS(4474), + [anon_sym_rlock] = ACTIONS(4474), + [anon_sym_unsafe] = ACTIONS(4474), + [anon_sym_sql] = ACTIONS(4474), + [sym_int_literal] = ACTIONS(4474), + [sym_float_literal] = ACTIONS(4474), + [sym_rune_literal] = ACTIONS(4474), + [sym_pseudo_compile_time_identifier] = ACTIONS(4474), + [anon_sym_shared] = ACTIONS(4474), + [anon_sym_map_LBRACK] = ACTIONS(4474), + [anon_sym_chan] = ACTIONS(4474), + [anon_sym_thread] = ACTIONS(4474), + [anon_sym_atomic] = ACTIONS(4474), + [anon_sym_assert] = ACTIONS(4474), + [anon_sym_defer] = ACTIONS(4474), + [anon_sym_goto] = ACTIONS(4474), + [anon_sym_break] = ACTIONS(4474), + [anon_sym_continue] = ACTIONS(4474), + [anon_sym_return] = ACTIONS(4474), + [anon_sym_DOLLARfor] = ACTIONS(4474), + [anon_sym_for] = ACTIONS(4474), + [anon_sym_POUND] = ACTIONS(4474), + [anon_sym_asm] = ACTIONS(4474), + [anon_sym_AT_LBRACK] = ACTIONS(4474), + [sym___double_quote] = ACTIONS(4474), + [sym___single_quote] = ACTIONS(4474), + [sym___c_double_quote] = ACTIONS(4474), + [sym___c_single_quote] = ACTIONS(4474), + [sym___r_double_quote] = ACTIONS(4474), + [sym___r_single_quote] = ACTIONS(4474), }, - [1584] = { - [ts_builtin_sym_end] = ACTIONS(4482), - [sym_identifier] = ACTIONS(4484), - [anon_sym_LF] = ACTIONS(4484), - [anon_sym_CR] = ACTIONS(4484), - [anon_sym_CR_LF] = ACTIONS(4484), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4484), - [anon_sym_LBRACE] = ACTIONS(4484), - [anon_sym_const] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym___global] = ACTIONS(4484), - [anon_sym_type] = ACTIONS(4484), - [anon_sym_fn] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4484), - [anon_sym_DASH] = ACTIONS(4484), - [anon_sym_STAR] = ACTIONS(4484), - [anon_sym_struct] = ACTIONS(4484), - [anon_sym_union] = ACTIONS(4484), - [anon_sym_pub] = ACTIONS(4484), - [anon_sym_mut] = ACTIONS(4484), - [anon_sym_enum] = ACTIONS(4484), - [anon_sym_interface] = ACTIONS(4484), - [anon_sym_QMARK] = ACTIONS(4484), - [anon_sym_BANG] = ACTIONS(4484), - [anon_sym_go] = ACTIONS(4484), - [anon_sym_spawn] = ACTIONS(4484), - [anon_sym_json_DOTdecode] = ACTIONS(4484), - [anon_sym_LBRACK2] = ACTIONS(4484), - [anon_sym_TILDE] = ACTIONS(4484), - [anon_sym_CARET] = ACTIONS(4484), - [anon_sym_AMP] = ACTIONS(4484), - [anon_sym_LT_DASH] = ACTIONS(4484), - [sym_none] = ACTIONS(4484), - [sym_true] = ACTIONS(4484), - [sym_false] = ACTIONS(4484), - [sym_nil] = ACTIONS(4484), - [anon_sym_if] = ACTIONS(4484), - [anon_sym_DOLLARif] = ACTIONS(4484), - [anon_sym_match] = ACTIONS(4484), - [anon_sym_select] = ACTIONS(4484), - [anon_sym_lock] = ACTIONS(4484), - [anon_sym_rlock] = ACTIONS(4484), - [anon_sym_unsafe] = ACTIONS(4484), - [anon_sym_sql] = ACTIONS(4484), - [sym_int_literal] = ACTIONS(4484), - [sym_float_literal] = ACTIONS(4484), - [sym_rune_literal] = ACTIONS(4484), - [sym_pseudo_compile_time_identifier] = ACTIONS(4484), - [anon_sym_shared] = ACTIONS(4484), - [anon_sym_map_LBRACK] = ACTIONS(4484), - [anon_sym_chan] = ACTIONS(4484), - [anon_sym_thread] = ACTIONS(4484), - [anon_sym_atomic] = ACTIONS(4484), - [anon_sym_assert] = ACTIONS(4484), - [anon_sym_defer] = ACTIONS(4484), - [anon_sym_goto] = ACTIONS(4484), - [anon_sym_break] = ACTIONS(4484), - [anon_sym_continue] = ACTIONS(4484), - [anon_sym_return] = ACTIONS(4484), - [anon_sym_DOLLARfor] = ACTIONS(4484), - [anon_sym_for] = ACTIONS(4484), - [anon_sym_POUND] = ACTIONS(4484), - [anon_sym_asm] = ACTIONS(4484), - [anon_sym_AT_LBRACK] = ACTIONS(4484), - [sym___double_quote] = ACTIONS(4484), - [sym___single_quote] = ACTIONS(4484), - [sym___c_double_quote] = ACTIONS(4484), - [sym___c_single_quote] = ACTIONS(4484), - [sym___r_double_quote] = ACTIONS(4484), - [sym___r_single_quote] = ACTIONS(4484), + [1594] = { + [sym_line_comment] = STATE(1594), + [sym_block_comment] = STATE(1594), + [ts_builtin_sym_end] = ACTIONS(4476), + [sym_identifier] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_CR] = ACTIONS(4478), + [anon_sym_CR_LF] = ACTIONS(4478), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_LPAREN] = ACTIONS(4478), + [anon_sym___global] = ACTIONS(4478), + [anon_sym_type] = ACTIONS(4478), + [anon_sym_fn] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4478), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_STAR] = ACTIONS(4478), + [anon_sym_struct] = ACTIONS(4478), + [anon_sym_union] = ACTIONS(4478), + [anon_sym_pub] = ACTIONS(4478), + [anon_sym_mut] = ACTIONS(4478), + [anon_sym_enum] = ACTIONS(4478), + [anon_sym_interface] = ACTIONS(4478), + [anon_sym_QMARK] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4478), + [anon_sym_go] = ACTIONS(4478), + [anon_sym_spawn] = ACTIONS(4478), + [anon_sym_json_DOTdecode] = ACTIONS(4478), + [anon_sym_LBRACK2] = ACTIONS(4478), + [anon_sym_TILDE] = ACTIONS(4478), + [anon_sym_CARET] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + [anon_sym_LT_DASH] = ACTIONS(4478), + [sym_none] = ACTIONS(4478), + [sym_true] = ACTIONS(4478), + [sym_false] = ACTIONS(4478), + [sym_nil] = ACTIONS(4478), + [anon_sym_if] = ACTIONS(4478), + [anon_sym_DOLLARif] = ACTIONS(4478), + [anon_sym_match] = ACTIONS(4478), + [anon_sym_select] = ACTIONS(4478), + [anon_sym_lock] = ACTIONS(4478), + [anon_sym_rlock] = ACTIONS(4478), + [anon_sym_unsafe] = ACTIONS(4478), + [anon_sym_sql] = ACTIONS(4478), + [sym_int_literal] = ACTIONS(4478), + [sym_float_literal] = ACTIONS(4478), + [sym_rune_literal] = ACTIONS(4478), + [sym_pseudo_compile_time_identifier] = ACTIONS(4478), + [anon_sym_shared] = ACTIONS(4478), + [anon_sym_map_LBRACK] = ACTIONS(4478), + [anon_sym_chan] = ACTIONS(4478), + [anon_sym_thread] = ACTIONS(4478), + [anon_sym_atomic] = ACTIONS(4478), + [anon_sym_assert] = ACTIONS(4478), + [anon_sym_defer] = ACTIONS(4478), + [anon_sym_goto] = ACTIONS(4478), + [anon_sym_break] = ACTIONS(4478), + [anon_sym_continue] = ACTIONS(4478), + [anon_sym_return] = ACTIONS(4478), + [anon_sym_DOLLARfor] = ACTIONS(4478), + [anon_sym_for] = ACTIONS(4478), + [anon_sym_POUND] = ACTIONS(4478), + [anon_sym_asm] = ACTIONS(4478), + [anon_sym_AT_LBRACK] = ACTIONS(4478), + [sym___double_quote] = ACTIONS(4478), + [sym___single_quote] = ACTIONS(4478), + [sym___c_double_quote] = ACTIONS(4478), + [sym___c_single_quote] = ACTIONS(4478), + [sym___r_double_quote] = ACTIONS(4478), + [sym___r_single_quote] = ACTIONS(4478), }, - [1585] = { - [ts_builtin_sym_end] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1709), - [anon_sym_LF] = ACTIONS(1709), - [anon_sym_CR] = ACTIONS(1709), - [anon_sym_CR_LF] = ACTIONS(1709), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym___global] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_fn] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_union] = ACTIONS(1709), - [anon_sym_pub] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_enum] = ACTIONS(1709), - [anon_sym_interface] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1709), - [anon_sym_json_DOTdecode] = ACTIONS(1709), - [anon_sym_LBRACK2] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_LT_DASH] = ACTIONS(1709), - [sym_none] = ACTIONS(1709), - [sym_true] = ACTIONS(1709), - [sym_false] = ACTIONS(1709), - [sym_nil] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_DOLLARif] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_select] = ACTIONS(1709), - [anon_sym_lock] = ACTIONS(1709), - [anon_sym_rlock] = ACTIONS(1709), - [anon_sym_unsafe] = ACTIONS(1709), - [anon_sym_sql] = ACTIONS(1709), - [sym_int_literal] = ACTIONS(1709), - [sym_float_literal] = ACTIONS(1709), - [sym_rune_literal] = ACTIONS(1709), - [sym_pseudo_compile_time_identifier] = ACTIONS(1709), - [anon_sym_shared] = ACTIONS(1709), - [anon_sym_map_LBRACK] = ACTIONS(1709), - [anon_sym_chan] = ACTIONS(1709), - [anon_sym_thread] = ACTIONS(1709), - [anon_sym_atomic] = ACTIONS(1709), - [anon_sym_assert] = ACTIONS(1709), - [anon_sym_defer] = ACTIONS(1709), - [anon_sym_goto] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_DOLLARfor] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_POUND] = ACTIONS(1709), - [anon_sym_asm] = ACTIONS(1709), - [anon_sym_AT_LBRACK] = ACTIONS(1709), - [sym___double_quote] = ACTIONS(1709), - [sym___single_quote] = ACTIONS(1709), - [sym___c_double_quote] = ACTIONS(1709), - [sym___c_single_quote] = ACTIONS(1709), - [sym___r_double_quote] = ACTIONS(1709), - [sym___r_single_quote] = ACTIONS(1709), + [1595] = { + [sym_line_comment] = STATE(1595), + [sym_block_comment] = STATE(1595), + [ts_builtin_sym_end] = ACTIONS(4480), + [sym_identifier] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_CR] = ACTIONS(4482), + [anon_sym_CR_LF] = ACTIONS(4482), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4482), + [anon_sym_LBRACE] = ACTIONS(4482), + [anon_sym_const] = ACTIONS(4482), + [anon_sym_LPAREN] = ACTIONS(4482), + [anon_sym___global] = ACTIONS(4482), + [anon_sym_type] = ACTIONS(4482), + [anon_sym_fn] = ACTIONS(4482), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [anon_sym_struct] = ACTIONS(4482), + [anon_sym_union] = ACTIONS(4482), + [anon_sym_pub] = ACTIONS(4482), + [anon_sym_mut] = ACTIONS(4482), + [anon_sym_enum] = ACTIONS(4482), + [anon_sym_interface] = ACTIONS(4482), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_BANG] = ACTIONS(4482), + [anon_sym_go] = ACTIONS(4482), + [anon_sym_spawn] = ACTIONS(4482), + [anon_sym_json_DOTdecode] = ACTIONS(4482), + [anon_sym_LBRACK2] = ACTIONS(4482), + [anon_sym_TILDE] = ACTIONS(4482), + [anon_sym_CARET] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + [anon_sym_LT_DASH] = ACTIONS(4482), + [sym_none] = ACTIONS(4482), + [sym_true] = ACTIONS(4482), + [sym_false] = ACTIONS(4482), + [sym_nil] = ACTIONS(4482), + [anon_sym_if] = ACTIONS(4482), + [anon_sym_DOLLARif] = ACTIONS(4482), + [anon_sym_match] = ACTIONS(4482), + [anon_sym_select] = ACTIONS(4482), + [anon_sym_lock] = ACTIONS(4482), + [anon_sym_rlock] = ACTIONS(4482), + [anon_sym_unsafe] = ACTIONS(4482), + [anon_sym_sql] = ACTIONS(4482), + [sym_int_literal] = ACTIONS(4482), + [sym_float_literal] = ACTIONS(4482), + [sym_rune_literal] = ACTIONS(4482), + [sym_pseudo_compile_time_identifier] = ACTIONS(4482), + [anon_sym_shared] = ACTIONS(4482), + [anon_sym_map_LBRACK] = ACTIONS(4482), + [anon_sym_chan] = ACTIONS(4482), + [anon_sym_thread] = ACTIONS(4482), + [anon_sym_atomic] = ACTIONS(4482), + [anon_sym_assert] = ACTIONS(4482), + [anon_sym_defer] = ACTIONS(4482), + [anon_sym_goto] = ACTIONS(4482), + [anon_sym_break] = ACTIONS(4482), + [anon_sym_continue] = ACTIONS(4482), + [anon_sym_return] = ACTIONS(4482), + [anon_sym_DOLLARfor] = ACTIONS(4482), + [anon_sym_for] = ACTIONS(4482), + [anon_sym_POUND] = ACTIONS(4482), + [anon_sym_asm] = ACTIONS(4482), + [anon_sym_AT_LBRACK] = ACTIONS(4482), + [sym___double_quote] = ACTIONS(4482), + [sym___single_quote] = ACTIONS(4482), + [sym___c_double_quote] = ACTIONS(4482), + [sym___c_single_quote] = ACTIONS(4482), + [sym___r_double_quote] = ACTIONS(4482), + [sym___r_single_quote] = ACTIONS(4482), }, - [1586] = { - [ts_builtin_sym_end] = ACTIONS(4486), - [sym_identifier] = ACTIONS(4488), - [anon_sym_LF] = ACTIONS(4488), - [anon_sym_CR] = ACTIONS(4488), - [anon_sym_CR_LF] = ACTIONS(4488), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4488), - [anon_sym_LBRACE] = ACTIONS(4488), - [anon_sym_const] = ACTIONS(4488), - [anon_sym_LPAREN] = ACTIONS(4488), - [anon_sym___global] = ACTIONS(4488), - [anon_sym_type] = ACTIONS(4488), - [anon_sym_fn] = ACTIONS(4488), - [anon_sym_PLUS] = ACTIONS(4488), - [anon_sym_DASH] = ACTIONS(4488), - [anon_sym_STAR] = ACTIONS(4488), - [anon_sym_struct] = ACTIONS(4488), - [anon_sym_union] = ACTIONS(4488), - [anon_sym_pub] = ACTIONS(4488), - [anon_sym_mut] = ACTIONS(4488), - [anon_sym_enum] = ACTIONS(4488), - [anon_sym_interface] = ACTIONS(4488), - [anon_sym_QMARK] = ACTIONS(4488), - [anon_sym_BANG] = ACTIONS(4488), - [anon_sym_go] = ACTIONS(4488), - [anon_sym_spawn] = ACTIONS(4488), - [anon_sym_json_DOTdecode] = ACTIONS(4488), - [anon_sym_LBRACK2] = ACTIONS(4488), - [anon_sym_TILDE] = ACTIONS(4488), - [anon_sym_CARET] = ACTIONS(4488), - [anon_sym_AMP] = ACTIONS(4488), - [anon_sym_LT_DASH] = ACTIONS(4488), - [sym_none] = ACTIONS(4488), - [sym_true] = ACTIONS(4488), - [sym_false] = ACTIONS(4488), - [sym_nil] = ACTIONS(4488), - [anon_sym_if] = ACTIONS(4488), - [anon_sym_DOLLARif] = ACTIONS(4488), - [anon_sym_match] = ACTIONS(4488), - [anon_sym_select] = ACTIONS(4488), - [anon_sym_lock] = ACTIONS(4488), - [anon_sym_rlock] = ACTIONS(4488), - [anon_sym_unsafe] = ACTIONS(4488), - [anon_sym_sql] = ACTIONS(4488), - [sym_int_literal] = ACTIONS(4488), - [sym_float_literal] = ACTIONS(4488), - [sym_rune_literal] = ACTIONS(4488), - [sym_pseudo_compile_time_identifier] = ACTIONS(4488), - [anon_sym_shared] = ACTIONS(4488), - [anon_sym_map_LBRACK] = ACTIONS(4488), - [anon_sym_chan] = ACTIONS(4488), - [anon_sym_thread] = ACTIONS(4488), - [anon_sym_atomic] = ACTIONS(4488), - [anon_sym_assert] = ACTIONS(4488), - [anon_sym_defer] = ACTIONS(4488), - [anon_sym_goto] = ACTIONS(4488), - [anon_sym_break] = ACTIONS(4488), - [anon_sym_continue] = ACTIONS(4488), - [anon_sym_return] = ACTIONS(4488), - [anon_sym_DOLLARfor] = ACTIONS(4488), - [anon_sym_for] = ACTIONS(4488), - [anon_sym_POUND] = ACTIONS(4488), - [anon_sym_asm] = ACTIONS(4488), - [anon_sym_AT_LBRACK] = ACTIONS(4488), - [sym___double_quote] = ACTIONS(4488), - [sym___single_quote] = ACTIONS(4488), - [sym___c_double_quote] = ACTIONS(4488), - [sym___c_single_quote] = ACTIONS(4488), - [sym___r_double_quote] = ACTIONS(4488), - [sym___r_single_quote] = ACTIONS(4488), + [1596] = { + [sym_line_comment] = STATE(1596), + [sym_block_comment] = STATE(1596), + [ts_builtin_sym_end] = ACTIONS(4484), + [sym_identifier] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_CR] = ACTIONS(4486), + [anon_sym_CR_LF] = ACTIONS(4486), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4486), + [anon_sym_LBRACE] = ACTIONS(4486), + [anon_sym_const] = ACTIONS(4486), + [anon_sym_LPAREN] = ACTIONS(4486), + [anon_sym___global] = ACTIONS(4486), + [anon_sym_type] = ACTIONS(4486), + [anon_sym_fn] = ACTIONS(4486), + [anon_sym_PLUS] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_STAR] = ACTIONS(4486), + [anon_sym_struct] = ACTIONS(4486), + [anon_sym_union] = ACTIONS(4486), + [anon_sym_pub] = ACTIONS(4486), + [anon_sym_mut] = ACTIONS(4486), + [anon_sym_enum] = ACTIONS(4486), + [anon_sym_interface] = ACTIONS(4486), + [anon_sym_QMARK] = ACTIONS(4486), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_go] = ACTIONS(4486), + [anon_sym_spawn] = ACTIONS(4486), + [anon_sym_json_DOTdecode] = ACTIONS(4486), + [anon_sym_LBRACK2] = ACTIONS(4486), + [anon_sym_TILDE] = ACTIONS(4486), + [anon_sym_CARET] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + [anon_sym_LT_DASH] = ACTIONS(4486), + [sym_none] = ACTIONS(4486), + [sym_true] = ACTIONS(4486), + [sym_false] = ACTIONS(4486), + [sym_nil] = ACTIONS(4486), + [anon_sym_if] = ACTIONS(4486), + [anon_sym_DOLLARif] = ACTIONS(4486), + [anon_sym_match] = ACTIONS(4486), + [anon_sym_select] = ACTIONS(4486), + [anon_sym_lock] = ACTIONS(4486), + [anon_sym_rlock] = ACTIONS(4486), + [anon_sym_unsafe] = ACTIONS(4486), + [anon_sym_sql] = ACTIONS(4486), + [sym_int_literal] = ACTIONS(4486), + [sym_float_literal] = ACTIONS(4486), + [sym_rune_literal] = ACTIONS(4486), + [sym_pseudo_compile_time_identifier] = ACTIONS(4486), + [anon_sym_shared] = ACTIONS(4486), + [anon_sym_map_LBRACK] = ACTIONS(4486), + [anon_sym_chan] = ACTIONS(4486), + [anon_sym_thread] = ACTIONS(4486), + [anon_sym_atomic] = ACTIONS(4486), + [anon_sym_assert] = ACTIONS(4486), + [anon_sym_defer] = ACTIONS(4486), + [anon_sym_goto] = ACTIONS(4486), + [anon_sym_break] = ACTIONS(4486), + [anon_sym_continue] = ACTIONS(4486), + [anon_sym_return] = ACTIONS(4486), + [anon_sym_DOLLARfor] = ACTIONS(4486), + [anon_sym_for] = ACTIONS(4486), + [anon_sym_POUND] = ACTIONS(4486), + [anon_sym_asm] = ACTIONS(4486), + [anon_sym_AT_LBRACK] = ACTIONS(4486), + [sym___double_quote] = ACTIONS(4486), + [sym___single_quote] = ACTIONS(4486), + [sym___c_double_quote] = ACTIONS(4486), + [sym___c_single_quote] = ACTIONS(4486), + [sym___r_double_quote] = ACTIONS(4486), + [sym___r_single_quote] = ACTIONS(4486), }, - [1587] = { - [ts_builtin_sym_end] = ACTIONS(4490), - [sym_identifier] = ACTIONS(4492), - [anon_sym_LF] = ACTIONS(4492), - [anon_sym_CR] = ACTIONS(4492), - [anon_sym_CR_LF] = ACTIONS(4492), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4492), - [anon_sym_LBRACE] = ACTIONS(4492), - [anon_sym_const] = ACTIONS(4492), - [anon_sym_LPAREN] = ACTIONS(4492), - [anon_sym___global] = ACTIONS(4492), - [anon_sym_type] = ACTIONS(4492), - [anon_sym_fn] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4492), - [anon_sym_DASH] = ACTIONS(4492), - [anon_sym_STAR] = ACTIONS(4492), - [anon_sym_struct] = ACTIONS(4492), - [anon_sym_union] = ACTIONS(4492), - [anon_sym_pub] = ACTIONS(4492), - [anon_sym_mut] = ACTIONS(4492), - [anon_sym_enum] = ACTIONS(4492), - [anon_sym_interface] = ACTIONS(4492), - [anon_sym_QMARK] = ACTIONS(4492), - [anon_sym_BANG] = ACTIONS(4492), - [anon_sym_go] = ACTIONS(4492), - [anon_sym_spawn] = ACTIONS(4492), - [anon_sym_json_DOTdecode] = ACTIONS(4492), - [anon_sym_LBRACK2] = ACTIONS(4492), - [anon_sym_TILDE] = ACTIONS(4492), - [anon_sym_CARET] = ACTIONS(4492), - [anon_sym_AMP] = ACTIONS(4492), - [anon_sym_LT_DASH] = ACTIONS(4492), - [sym_none] = ACTIONS(4492), - [sym_true] = ACTIONS(4492), - [sym_false] = ACTIONS(4492), - [sym_nil] = ACTIONS(4492), - [anon_sym_if] = ACTIONS(4492), - [anon_sym_DOLLARif] = ACTIONS(4492), - [anon_sym_match] = ACTIONS(4492), - [anon_sym_select] = ACTIONS(4492), - [anon_sym_lock] = ACTIONS(4492), - [anon_sym_rlock] = ACTIONS(4492), - [anon_sym_unsafe] = ACTIONS(4492), - [anon_sym_sql] = ACTIONS(4492), - [sym_int_literal] = ACTIONS(4492), - [sym_float_literal] = ACTIONS(4492), - [sym_rune_literal] = ACTIONS(4492), - [sym_pseudo_compile_time_identifier] = ACTIONS(4492), - [anon_sym_shared] = ACTIONS(4492), - [anon_sym_map_LBRACK] = ACTIONS(4492), - [anon_sym_chan] = ACTIONS(4492), - [anon_sym_thread] = ACTIONS(4492), - [anon_sym_atomic] = ACTIONS(4492), - [anon_sym_assert] = ACTIONS(4492), - [anon_sym_defer] = ACTIONS(4492), - [anon_sym_goto] = ACTIONS(4492), - [anon_sym_break] = ACTIONS(4492), - [anon_sym_continue] = ACTIONS(4492), - [anon_sym_return] = ACTIONS(4492), - [anon_sym_DOLLARfor] = ACTIONS(4492), - [anon_sym_for] = ACTIONS(4492), - [anon_sym_POUND] = ACTIONS(4492), - [anon_sym_asm] = ACTIONS(4492), - [anon_sym_AT_LBRACK] = ACTIONS(4492), - [sym___double_quote] = ACTIONS(4492), - [sym___single_quote] = ACTIONS(4492), - [sym___c_double_quote] = ACTIONS(4492), - [sym___c_single_quote] = ACTIONS(4492), - [sym___r_double_quote] = ACTIONS(4492), - [sym___r_single_quote] = ACTIONS(4492), + [1597] = { + [sym_line_comment] = STATE(1597), + [sym_block_comment] = STATE(1597), + [ts_builtin_sym_end] = ACTIONS(4488), + [sym_identifier] = ACTIONS(4490), + [anon_sym_LF] = ACTIONS(4490), + [anon_sym_CR] = ACTIONS(4490), + [anon_sym_CR_LF] = ACTIONS(4490), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_const] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym___global] = ACTIONS(4490), + [anon_sym_type] = ACTIONS(4490), + [anon_sym_fn] = ACTIONS(4490), + [anon_sym_PLUS] = ACTIONS(4490), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_struct] = ACTIONS(4490), + [anon_sym_union] = ACTIONS(4490), + [anon_sym_pub] = ACTIONS(4490), + [anon_sym_mut] = ACTIONS(4490), + [anon_sym_enum] = ACTIONS(4490), + [anon_sym_interface] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_go] = ACTIONS(4490), + [anon_sym_spawn] = ACTIONS(4490), + [anon_sym_json_DOTdecode] = ACTIONS(4490), + [anon_sym_LBRACK2] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4490), + [anon_sym_AMP] = ACTIONS(4490), + [anon_sym_LT_DASH] = ACTIONS(4490), + [sym_none] = ACTIONS(4490), + [sym_true] = ACTIONS(4490), + [sym_false] = ACTIONS(4490), + [sym_nil] = ACTIONS(4490), + [anon_sym_if] = ACTIONS(4490), + [anon_sym_DOLLARif] = ACTIONS(4490), + [anon_sym_match] = ACTIONS(4490), + [anon_sym_select] = ACTIONS(4490), + [anon_sym_lock] = ACTIONS(4490), + [anon_sym_rlock] = ACTIONS(4490), + [anon_sym_unsafe] = ACTIONS(4490), + [anon_sym_sql] = ACTIONS(4490), + [sym_int_literal] = ACTIONS(4490), + [sym_float_literal] = ACTIONS(4490), + [sym_rune_literal] = ACTIONS(4490), + [sym_pseudo_compile_time_identifier] = ACTIONS(4490), + [anon_sym_shared] = ACTIONS(4490), + [anon_sym_map_LBRACK] = ACTIONS(4490), + [anon_sym_chan] = ACTIONS(4490), + [anon_sym_thread] = ACTIONS(4490), + [anon_sym_atomic] = ACTIONS(4490), + [anon_sym_assert] = ACTIONS(4490), + [anon_sym_defer] = ACTIONS(4490), + [anon_sym_goto] = ACTIONS(4490), + [anon_sym_break] = ACTIONS(4490), + [anon_sym_continue] = ACTIONS(4490), + [anon_sym_return] = ACTIONS(4490), + [anon_sym_DOLLARfor] = ACTIONS(4490), + [anon_sym_for] = ACTIONS(4490), + [anon_sym_POUND] = ACTIONS(4490), + [anon_sym_asm] = ACTIONS(4490), + [anon_sym_AT_LBRACK] = ACTIONS(4490), + [sym___double_quote] = ACTIONS(4490), + [sym___single_quote] = ACTIONS(4490), + [sym___c_double_quote] = ACTIONS(4490), + [sym___c_single_quote] = ACTIONS(4490), + [sym___r_double_quote] = ACTIONS(4490), + [sym___r_single_quote] = ACTIONS(4490), }, - [1588] = { - [ts_builtin_sym_end] = ACTIONS(4494), - [sym_identifier] = ACTIONS(4496), - [anon_sym_LF] = ACTIONS(4496), - [anon_sym_CR] = ACTIONS(4496), - [anon_sym_CR_LF] = ACTIONS(4496), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4496), - [anon_sym_LBRACE] = ACTIONS(4496), - [anon_sym_const] = ACTIONS(4496), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym___global] = ACTIONS(4496), - [anon_sym_type] = ACTIONS(4496), - [anon_sym_fn] = ACTIONS(4496), - [anon_sym_PLUS] = ACTIONS(4496), - [anon_sym_DASH] = ACTIONS(4496), - [anon_sym_STAR] = ACTIONS(4496), - [anon_sym_struct] = ACTIONS(4496), - [anon_sym_union] = ACTIONS(4496), - [anon_sym_pub] = ACTIONS(4496), - [anon_sym_mut] = ACTIONS(4496), - [anon_sym_enum] = ACTIONS(4496), - [anon_sym_interface] = ACTIONS(4496), - [anon_sym_QMARK] = ACTIONS(4496), - [anon_sym_BANG] = ACTIONS(4496), - [anon_sym_go] = ACTIONS(4496), - [anon_sym_spawn] = ACTIONS(4496), - [anon_sym_json_DOTdecode] = ACTIONS(4496), - [anon_sym_LBRACK2] = ACTIONS(4496), - [anon_sym_TILDE] = ACTIONS(4496), - [anon_sym_CARET] = ACTIONS(4496), - [anon_sym_AMP] = ACTIONS(4496), - [anon_sym_LT_DASH] = ACTIONS(4496), - [sym_none] = ACTIONS(4496), - [sym_true] = ACTIONS(4496), - [sym_false] = ACTIONS(4496), - [sym_nil] = ACTIONS(4496), - [anon_sym_if] = ACTIONS(4496), - [anon_sym_DOLLARif] = ACTIONS(4496), - [anon_sym_match] = ACTIONS(4496), - [anon_sym_select] = ACTIONS(4496), - [anon_sym_lock] = ACTIONS(4496), - [anon_sym_rlock] = ACTIONS(4496), - [anon_sym_unsafe] = ACTIONS(4496), - [anon_sym_sql] = ACTIONS(4496), - [sym_int_literal] = ACTIONS(4496), - [sym_float_literal] = ACTIONS(4496), - [sym_rune_literal] = ACTIONS(4496), - [sym_pseudo_compile_time_identifier] = ACTIONS(4496), - [anon_sym_shared] = ACTIONS(4496), - [anon_sym_map_LBRACK] = ACTIONS(4496), - [anon_sym_chan] = ACTIONS(4496), - [anon_sym_thread] = ACTIONS(4496), - [anon_sym_atomic] = ACTIONS(4496), - [anon_sym_assert] = ACTIONS(4496), - [anon_sym_defer] = ACTIONS(4496), - [anon_sym_goto] = ACTIONS(4496), - [anon_sym_break] = ACTIONS(4496), - [anon_sym_continue] = ACTIONS(4496), - [anon_sym_return] = ACTIONS(4496), - [anon_sym_DOLLARfor] = ACTIONS(4496), - [anon_sym_for] = ACTIONS(4496), - [anon_sym_POUND] = ACTIONS(4496), - [anon_sym_asm] = ACTIONS(4496), - [anon_sym_AT_LBRACK] = ACTIONS(4496), - [sym___double_quote] = ACTIONS(4496), - [sym___single_quote] = ACTIONS(4496), - [sym___c_double_quote] = ACTIONS(4496), - [sym___c_single_quote] = ACTIONS(4496), - [sym___r_double_quote] = ACTIONS(4496), - [sym___r_single_quote] = ACTIONS(4496), + [1598] = { + [sym_line_comment] = STATE(1598), + [sym_block_comment] = STATE(1598), + [ts_builtin_sym_end] = ACTIONS(4492), + [sym_identifier] = ACTIONS(4494), + [anon_sym_LF] = ACTIONS(4494), + [anon_sym_CR] = ACTIONS(4494), + [anon_sym_CR_LF] = ACTIONS(4494), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4494), + [anon_sym_const] = ACTIONS(4494), + [anon_sym_LPAREN] = ACTIONS(4494), + [anon_sym___global] = ACTIONS(4494), + [anon_sym_type] = ACTIONS(4494), + [anon_sym_fn] = ACTIONS(4494), + [anon_sym_PLUS] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4494), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_struct] = ACTIONS(4494), + [anon_sym_union] = ACTIONS(4494), + [anon_sym_pub] = ACTIONS(4494), + [anon_sym_mut] = ACTIONS(4494), + [anon_sym_enum] = ACTIONS(4494), + [anon_sym_interface] = ACTIONS(4494), + [anon_sym_QMARK] = ACTIONS(4494), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_go] = ACTIONS(4494), + [anon_sym_spawn] = ACTIONS(4494), + [anon_sym_json_DOTdecode] = ACTIONS(4494), + [anon_sym_LBRACK2] = ACTIONS(4494), + [anon_sym_TILDE] = ACTIONS(4494), + [anon_sym_CARET] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(4494), + [anon_sym_LT_DASH] = ACTIONS(4494), + [sym_none] = ACTIONS(4494), + [sym_true] = ACTIONS(4494), + [sym_false] = ACTIONS(4494), + [sym_nil] = ACTIONS(4494), + [anon_sym_if] = ACTIONS(4494), + [anon_sym_DOLLARif] = ACTIONS(4494), + [anon_sym_match] = ACTIONS(4494), + [anon_sym_select] = ACTIONS(4494), + [anon_sym_lock] = ACTIONS(4494), + [anon_sym_rlock] = ACTIONS(4494), + [anon_sym_unsafe] = ACTIONS(4494), + [anon_sym_sql] = ACTIONS(4494), + [sym_int_literal] = ACTIONS(4494), + [sym_float_literal] = ACTIONS(4494), + [sym_rune_literal] = ACTIONS(4494), + [sym_pseudo_compile_time_identifier] = ACTIONS(4494), + [anon_sym_shared] = ACTIONS(4494), + [anon_sym_map_LBRACK] = ACTIONS(4494), + [anon_sym_chan] = ACTIONS(4494), + [anon_sym_thread] = ACTIONS(4494), + [anon_sym_atomic] = ACTIONS(4494), + [anon_sym_assert] = ACTIONS(4494), + [anon_sym_defer] = ACTIONS(4494), + [anon_sym_goto] = ACTIONS(4494), + [anon_sym_break] = ACTIONS(4494), + [anon_sym_continue] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4494), + [anon_sym_DOLLARfor] = ACTIONS(4494), + [anon_sym_for] = ACTIONS(4494), + [anon_sym_POUND] = ACTIONS(4494), + [anon_sym_asm] = ACTIONS(4494), + [anon_sym_AT_LBRACK] = ACTIONS(4494), + [sym___double_quote] = ACTIONS(4494), + [sym___single_quote] = ACTIONS(4494), + [sym___c_double_quote] = ACTIONS(4494), + [sym___c_single_quote] = ACTIONS(4494), + [sym___r_double_quote] = ACTIONS(4494), + [sym___r_single_quote] = ACTIONS(4494), }, - [1589] = { - [sym_import_declaration] = STATE(1589), - [aux_sym_import_list_repeat1] = STATE(1589), - [ts_builtin_sym_end] = ACTIONS(4498), - [sym_identifier] = ACTIONS(4500), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4502), - [anon_sym_DOT] = ACTIONS(4500), + [1599] = { + [sym_line_comment] = STATE(1599), + [sym_block_comment] = STATE(1599), + [ts_builtin_sym_end] = ACTIONS(4496), + [sym_identifier] = ACTIONS(4498), + [anon_sym_LF] = ACTIONS(4498), + [anon_sym_CR] = ACTIONS(4498), + [anon_sym_CR_LF] = ACTIONS(4498), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4498), [anon_sym_LBRACE] = ACTIONS(4498), - [anon_sym_const] = ACTIONS(4500), + [anon_sym_const] = ACTIONS(4498), [anon_sym_LPAREN] = ACTIONS(4498), - [anon_sym___global] = ACTIONS(4500), - [anon_sym_type] = ACTIONS(4500), - [anon_sym_fn] = ACTIONS(4500), + [anon_sym___global] = ACTIONS(4498), + [anon_sym_type] = ACTIONS(4498), + [anon_sym_fn] = ACTIONS(4498), [anon_sym_PLUS] = ACTIONS(4498), [anon_sym_DASH] = ACTIONS(4498), [anon_sym_STAR] = ACTIONS(4498), - [anon_sym_struct] = ACTIONS(4500), - [anon_sym_union] = ACTIONS(4500), - [anon_sym_pub] = ACTIONS(4500), - [anon_sym_mut] = ACTIONS(4500), - [anon_sym_enum] = ACTIONS(4500), - [anon_sym_interface] = ACTIONS(4500), + [anon_sym_struct] = ACTIONS(4498), + [anon_sym_union] = ACTIONS(4498), + [anon_sym_pub] = ACTIONS(4498), + [anon_sym_mut] = ACTIONS(4498), + [anon_sym_enum] = ACTIONS(4498), + [anon_sym_interface] = ACTIONS(4498), [anon_sym_QMARK] = ACTIONS(4498), [anon_sym_BANG] = ACTIONS(4498), - [anon_sym_go] = ACTIONS(4500), - [anon_sym_spawn] = ACTIONS(4500), + [anon_sym_go] = ACTIONS(4498), + [anon_sym_spawn] = ACTIONS(4498), [anon_sym_json_DOTdecode] = ACTIONS(4498), [anon_sym_LBRACK2] = ACTIONS(4498), [anon_sym_TILDE] = ACTIONS(4498), [anon_sym_CARET] = ACTIONS(4498), [anon_sym_AMP] = ACTIONS(4498), [anon_sym_LT_DASH] = ACTIONS(4498), - [sym_none] = ACTIONS(4500), - [sym_true] = ACTIONS(4500), - [sym_false] = ACTIONS(4500), - [sym_nil] = ACTIONS(4500), - [anon_sym_if] = ACTIONS(4500), - [anon_sym_DOLLARif] = ACTIONS(4500), - [anon_sym_match] = ACTIONS(4500), - [anon_sym_select] = ACTIONS(4500), - [anon_sym_lock] = ACTIONS(4500), - [anon_sym_rlock] = ACTIONS(4500), - [anon_sym_unsafe] = ACTIONS(4500), - [anon_sym_sql] = ACTIONS(4500), - [sym_int_literal] = ACTIONS(4500), + [sym_none] = ACTIONS(4498), + [sym_true] = ACTIONS(4498), + [sym_false] = ACTIONS(4498), + [sym_nil] = ACTIONS(4498), + [anon_sym_if] = ACTIONS(4498), + [anon_sym_DOLLARif] = ACTIONS(4498), + [anon_sym_match] = ACTIONS(4498), + [anon_sym_select] = ACTIONS(4498), + [anon_sym_lock] = ACTIONS(4498), + [anon_sym_rlock] = ACTIONS(4498), + [anon_sym_unsafe] = ACTIONS(4498), + [anon_sym_sql] = ACTIONS(4498), + [sym_int_literal] = ACTIONS(4498), [sym_float_literal] = ACTIONS(4498), [sym_rune_literal] = ACTIONS(4498), - [sym_pseudo_compile_time_identifier] = ACTIONS(4500), - [anon_sym_shared] = ACTIONS(4500), + [sym_pseudo_compile_time_identifier] = ACTIONS(4498), + [anon_sym_shared] = ACTIONS(4498), [anon_sym_map_LBRACK] = ACTIONS(4498), - [anon_sym_chan] = ACTIONS(4500), - [anon_sym_thread] = ACTIONS(4500), - [anon_sym_atomic] = ACTIONS(4500), - [anon_sym_assert] = ACTIONS(4500), - [anon_sym_defer] = ACTIONS(4500), - [anon_sym_goto] = ACTIONS(4500), - [anon_sym_break] = ACTIONS(4500), - [anon_sym_continue] = ACTIONS(4500), - [anon_sym_return] = ACTIONS(4500), - [anon_sym_DOLLARfor] = ACTIONS(4500), - [anon_sym_for] = ACTIONS(4500), + [anon_sym_chan] = ACTIONS(4498), + [anon_sym_thread] = ACTIONS(4498), + [anon_sym_atomic] = ACTIONS(4498), + [anon_sym_assert] = ACTIONS(4498), + [anon_sym_defer] = ACTIONS(4498), + [anon_sym_goto] = ACTIONS(4498), + [anon_sym_break] = ACTIONS(4498), + [anon_sym_continue] = ACTIONS(4498), + [anon_sym_return] = ACTIONS(4498), + [anon_sym_DOLLARfor] = ACTIONS(4498), + [anon_sym_for] = ACTIONS(4498), [anon_sym_POUND] = ACTIONS(4498), - [anon_sym_asm] = ACTIONS(4500), + [anon_sym_asm] = ACTIONS(4498), [anon_sym_AT_LBRACK] = ACTIONS(4498), [sym___double_quote] = ACTIONS(4498), [sym___single_quote] = ACTIONS(4498), @@ -189035,502 +191738,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4498), [sym___r_single_quote] = ACTIONS(4498), }, - [1590] = { - [ts_builtin_sym_end] = ACTIONS(4505), - [sym_identifier] = ACTIONS(4507), - [anon_sym_LF] = ACTIONS(4507), - [anon_sym_CR] = ACTIONS(4507), - [anon_sym_CR_LF] = ACTIONS(4507), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(4507), - [anon_sym_const] = ACTIONS(4507), - [anon_sym_LPAREN] = ACTIONS(4507), - [anon_sym___global] = ACTIONS(4507), - [anon_sym_type] = ACTIONS(4507), - [anon_sym_fn] = ACTIONS(4507), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_struct] = ACTIONS(4507), - [anon_sym_union] = ACTIONS(4507), - [anon_sym_pub] = ACTIONS(4507), - [anon_sym_mut] = ACTIONS(4507), - [anon_sym_enum] = ACTIONS(4507), - [anon_sym_interface] = ACTIONS(4507), - [anon_sym_QMARK] = ACTIONS(4507), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_go] = ACTIONS(4507), - [anon_sym_spawn] = ACTIONS(4507), - [anon_sym_json_DOTdecode] = ACTIONS(4507), - [anon_sym_LBRACK2] = ACTIONS(4507), - [anon_sym_TILDE] = ACTIONS(4507), - [anon_sym_CARET] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym_LT_DASH] = ACTIONS(4507), - [sym_none] = ACTIONS(4507), - [sym_true] = ACTIONS(4507), - [sym_false] = ACTIONS(4507), - [sym_nil] = ACTIONS(4507), - [anon_sym_if] = ACTIONS(4507), - [anon_sym_DOLLARif] = ACTIONS(4507), - [anon_sym_match] = ACTIONS(4507), - [anon_sym_select] = ACTIONS(4507), - [anon_sym_lock] = ACTIONS(4507), - [anon_sym_rlock] = ACTIONS(4507), - [anon_sym_unsafe] = ACTIONS(4507), - [anon_sym_sql] = ACTIONS(4507), - [sym_int_literal] = ACTIONS(4507), - [sym_float_literal] = ACTIONS(4507), - [sym_rune_literal] = ACTIONS(4507), - [sym_pseudo_compile_time_identifier] = ACTIONS(4507), - [anon_sym_shared] = ACTIONS(4507), - [anon_sym_map_LBRACK] = ACTIONS(4507), - [anon_sym_chan] = ACTIONS(4507), - [anon_sym_thread] = ACTIONS(4507), - [anon_sym_atomic] = ACTIONS(4507), - [anon_sym_assert] = ACTIONS(4507), - [anon_sym_defer] = ACTIONS(4507), - [anon_sym_goto] = ACTIONS(4507), - [anon_sym_break] = ACTIONS(4507), - [anon_sym_continue] = ACTIONS(4507), - [anon_sym_return] = ACTIONS(4507), - [anon_sym_DOLLARfor] = ACTIONS(4507), - [anon_sym_for] = ACTIONS(4507), - [anon_sym_POUND] = ACTIONS(4507), - [anon_sym_asm] = ACTIONS(4507), - [anon_sym_AT_LBRACK] = ACTIONS(4507), - [sym___double_quote] = ACTIONS(4507), - [sym___single_quote] = ACTIONS(4507), - [sym___c_double_quote] = ACTIONS(4507), - [sym___c_single_quote] = ACTIONS(4507), - [sym___r_double_quote] = ACTIONS(4507), - [sym___r_single_quote] = ACTIONS(4507), + [1600] = { + [sym_line_comment] = STATE(1600), + [sym_block_comment] = STATE(1600), + [sym_import_declaration] = STATE(1622), + [aux_sym_import_list_repeat1] = STATE(1600), + [ts_builtin_sym_end] = ACTIONS(4500), + [sym_identifier] = ACTIONS(4502), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4504), + [anon_sym_DOT] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4500), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym___global] = ACTIONS(4502), + [anon_sym_type] = ACTIONS(4502), + [anon_sym_fn] = ACTIONS(4502), + [anon_sym_PLUS] = ACTIONS(4500), + [anon_sym_DASH] = ACTIONS(4500), + [anon_sym_STAR] = ACTIONS(4500), + [anon_sym_struct] = ACTIONS(4502), + [anon_sym_union] = ACTIONS(4502), + [anon_sym_pub] = ACTIONS(4502), + [anon_sym_mut] = ACTIONS(4502), + [anon_sym_enum] = ACTIONS(4502), + [anon_sym_interface] = ACTIONS(4502), + [anon_sym_QMARK] = ACTIONS(4500), + [anon_sym_BANG] = ACTIONS(4500), + [anon_sym_go] = ACTIONS(4502), + [anon_sym_spawn] = ACTIONS(4502), + [anon_sym_json_DOTdecode] = ACTIONS(4500), + [anon_sym_LBRACK2] = ACTIONS(4500), + [anon_sym_TILDE] = ACTIONS(4500), + [anon_sym_CARET] = ACTIONS(4500), + [anon_sym_AMP] = ACTIONS(4500), + [anon_sym_LT_DASH] = ACTIONS(4500), + [sym_none] = ACTIONS(4502), + [sym_true] = ACTIONS(4502), + [sym_false] = ACTIONS(4502), + [sym_nil] = ACTIONS(4502), + [anon_sym_if] = ACTIONS(4502), + [anon_sym_DOLLARif] = ACTIONS(4502), + [anon_sym_match] = ACTIONS(4502), + [anon_sym_select] = ACTIONS(4502), + [anon_sym_lock] = ACTIONS(4502), + [anon_sym_rlock] = ACTIONS(4502), + [anon_sym_unsafe] = ACTIONS(4502), + [anon_sym_sql] = ACTIONS(4502), + [sym_int_literal] = ACTIONS(4502), + [sym_float_literal] = ACTIONS(4500), + [sym_rune_literal] = ACTIONS(4500), + [sym_pseudo_compile_time_identifier] = ACTIONS(4502), + [anon_sym_shared] = ACTIONS(4502), + [anon_sym_map_LBRACK] = ACTIONS(4500), + [anon_sym_chan] = ACTIONS(4502), + [anon_sym_thread] = ACTIONS(4502), + [anon_sym_atomic] = ACTIONS(4502), + [anon_sym_assert] = ACTIONS(4502), + [anon_sym_defer] = ACTIONS(4502), + [anon_sym_goto] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4502), + [anon_sym_continue] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4502), + [anon_sym_DOLLARfor] = ACTIONS(4502), + [anon_sym_for] = ACTIONS(4502), + [anon_sym_POUND] = ACTIONS(4500), + [anon_sym_asm] = ACTIONS(4502), + [anon_sym_AT_LBRACK] = ACTIONS(4500), + [sym___double_quote] = ACTIONS(4500), + [sym___single_quote] = ACTIONS(4500), + [sym___c_double_quote] = ACTIONS(4500), + [sym___c_single_quote] = ACTIONS(4500), + [sym___r_double_quote] = ACTIONS(4500), + [sym___r_single_quote] = ACTIONS(4500), }, - [1591] = { - [ts_builtin_sym_end] = ACTIONS(4509), - [sym_identifier] = ACTIONS(4511), - [anon_sym_LF] = ACTIONS(4511), - [anon_sym_CR] = ACTIONS(4511), - [anon_sym_CR_LF] = ACTIONS(4511), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4511), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_const] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym___global] = ACTIONS(4511), - [anon_sym_type] = ACTIONS(4511), - [anon_sym_fn] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4511), - [anon_sym_DASH] = ACTIONS(4511), - [anon_sym_STAR] = ACTIONS(4511), - [anon_sym_struct] = ACTIONS(4511), - [anon_sym_union] = ACTIONS(4511), - [anon_sym_pub] = ACTIONS(4511), - [anon_sym_mut] = ACTIONS(4511), - [anon_sym_enum] = ACTIONS(4511), - [anon_sym_interface] = ACTIONS(4511), - [anon_sym_QMARK] = ACTIONS(4511), - [anon_sym_BANG] = ACTIONS(4511), - [anon_sym_go] = ACTIONS(4511), - [anon_sym_spawn] = ACTIONS(4511), - [anon_sym_json_DOTdecode] = ACTIONS(4511), - [anon_sym_LBRACK2] = ACTIONS(4511), - [anon_sym_TILDE] = ACTIONS(4511), - [anon_sym_CARET] = ACTIONS(4511), - [anon_sym_AMP] = ACTIONS(4511), - [anon_sym_LT_DASH] = ACTIONS(4511), - [sym_none] = ACTIONS(4511), - [sym_true] = ACTIONS(4511), - [sym_false] = ACTIONS(4511), - [sym_nil] = ACTIONS(4511), - [anon_sym_if] = ACTIONS(4511), - [anon_sym_DOLLARif] = ACTIONS(4511), - [anon_sym_match] = ACTIONS(4511), - [anon_sym_select] = ACTIONS(4511), - [anon_sym_lock] = ACTIONS(4511), - [anon_sym_rlock] = ACTIONS(4511), - [anon_sym_unsafe] = ACTIONS(4511), - [anon_sym_sql] = ACTIONS(4511), - [sym_int_literal] = ACTIONS(4511), - [sym_float_literal] = ACTIONS(4511), - [sym_rune_literal] = ACTIONS(4511), - [sym_pseudo_compile_time_identifier] = ACTIONS(4511), - [anon_sym_shared] = ACTIONS(4511), - [anon_sym_map_LBRACK] = ACTIONS(4511), - [anon_sym_chan] = ACTIONS(4511), - [anon_sym_thread] = ACTIONS(4511), - [anon_sym_atomic] = ACTIONS(4511), - [anon_sym_assert] = ACTIONS(4511), - [anon_sym_defer] = ACTIONS(4511), - [anon_sym_goto] = ACTIONS(4511), - [anon_sym_break] = ACTIONS(4511), - [anon_sym_continue] = ACTIONS(4511), - [anon_sym_return] = ACTIONS(4511), - [anon_sym_DOLLARfor] = ACTIONS(4511), - [anon_sym_for] = ACTIONS(4511), - [anon_sym_POUND] = ACTIONS(4511), - [anon_sym_asm] = ACTIONS(4511), - [anon_sym_AT_LBRACK] = ACTIONS(4511), - [sym___double_quote] = ACTIONS(4511), - [sym___single_quote] = ACTIONS(4511), - [sym___c_double_quote] = ACTIONS(4511), - [sym___c_single_quote] = ACTIONS(4511), - [sym___r_double_quote] = ACTIONS(4511), - [sym___r_single_quote] = ACTIONS(4511), + [1601] = { + [sym_line_comment] = STATE(1601), + [sym_block_comment] = STATE(1601), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_LBRACE] = ACTIONS(4509), + [anon_sym_const] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym___global] = ACTIONS(4509), + [anon_sym_type] = ACTIONS(4509), + [anon_sym_fn] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4509), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4509), + [anon_sym_struct] = ACTIONS(4509), + [anon_sym_union] = ACTIONS(4509), + [anon_sym_pub] = ACTIONS(4509), + [anon_sym_mut] = ACTIONS(4509), + [anon_sym_enum] = ACTIONS(4509), + [anon_sym_interface] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4509), + [anon_sym_go] = ACTIONS(4509), + [anon_sym_spawn] = ACTIONS(4509), + [anon_sym_json_DOTdecode] = ACTIONS(4509), + [anon_sym_LBRACK2] = ACTIONS(4509), + [anon_sym_TILDE] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_LT_DASH] = ACTIONS(4509), + [sym_none] = ACTIONS(4509), + [sym_true] = ACTIONS(4509), + [sym_false] = ACTIONS(4509), + [sym_nil] = ACTIONS(4509), + [anon_sym_if] = ACTIONS(4509), + [anon_sym_DOLLARif] = ACTIONS(4509), + [anon_sym_match] = ACTIONS(4509), + [anon_sym_select] = ACTIONS(4509), + [anon_sym_lock] = ACTIONS(4509), + [anon_sym_rlock] = ACTIONS(4509), + [anon_sym_unsafe] = ACTIONS(4509), + [anon_sym_sql] = ACTIONS(4509), + [sym_int_literal] = ACTIONS(4509), + [sym_float_literal] = ACTIONS(4509), + [sym_rune_literal] = ACTIONS(4509), + [sym_pseudo_compile_time_identifier] = ACTIONS(4509), + [anon_sym_shared] = ACTIONS(4509), + [anon_sym_map_LBRACK] = ACTIONS(4509), + [anon_sym_chan] = ACTIONS(4509), + [anon_sym_thread] = ACTIONS(4509), + [anon_sym_atomic] = ACTIONS(4509), + [anon_sym_assert] = ACTIONS(4509), + [anon_sym_defer] = ACTIONS(4509), + [anon_sym_goto] = ACTIONS(4509), + [anon_sym_break] = ACTIONS(4509), + [anon_sym_continue] = ACTIONS(4509), + [anon_sym_return] = ACTIONS(4509), + [anon_sym_DOLLARfor] = ACTIONS(4509), + [anon_sym_for] = ACTIONS(4509), + [anon_sym_POUND] = ACTIONS(4509), + [anon_sym_asm] = ACTIONS(4509), + [anon_sym_AT_LBRACK] = ACTIONS(4509), + [sym___double_quote] = ACTIONS(4509), + [sym___single_quote] = ACTIONS(4509), + [sym___c_double_quote] = ACTIONS(4509), + [sym___c_single_quote] = ACTIONS(4509), + [sym___r_double_quote] = ACTIONS(4509), + [sym___r_single_quote] = ACTIONS(4509), }, - [1592] = { - [ts_builtin_sym_end] = ACTIONS(4513), - [sym_identifier] = ACTIONS(4515), - [anon_sym_LF] = ACTIONS(4515), - [anon_sym_CR] = ACTIONS(4515), - [anon_sym_CR_LF] = ACTIONS(4515), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(4515), - [anon_sym_const] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4515), - [anon_sym___global] = ACTIONS(4515), - [anon_sym_type] = ACTIONS(4515), - [anon_sym_fn] = ACTIONS(4515), - [anon_sym_PLUS] = ACTIONS(4515), - [anon_sym_DASH] = ACTIONS(4515), - [anon_sym_STAR] = ACTIONS(4515), - [anon_sym_struct] = ACTIONS(4515), - [anon_sym_union] = ACTIONS(4515), - [anon_sym_pub] = ACTIONS(4515), - [anon_sym_mut] = ACTIONS(4515), - [anon_sym_enum] = ACTIONS(4515), - [anon_sym_interface] = ACTIONS(4515), - [anon_sym_QMARK] = ACTIONS(4515), - [anon_sym_BANG] = ACTIONS(4515), - [anon_sym_go] = ACTIONS(4515), - [anon_sym_spawn] = ACTIONS(4515), - [anon_sym_json_DOTdecode] = ACTIONS(4515), - [anon_sym_LBRACK2] = ACTIONS(4515), - [anon_sym_TILDE] = ACTIONS(4515), - [anon_sym_CARET] = ACTIONS(4515), - [anon_sym_AMP] = ACTIONS(4515), - [anon_sym_LT_DASH] = ACTIONS(4515), - [sym_none] = ACTIONS(4515), - [sym_true] = ACTIONS(4515), - [sym_false] = ACTIONS(4515), - [sym_nil] = ACTIONS(4515), - [anon_sym_if] = ACTIONS(4515), - [anon_sym_DOLLARif] = ACTIONS(4515), - [anon_sym_match] = ACTIONS(4515), - [anon_sym_select] = ACTIONS(4515), - [anon_sym_lock] = ACTIONS(4515), - [anon_sym_rlock] = ACTIONS(4515), - [anon_sym_unsafe] = ACTIONS(4515), - [anon_sym_sql] = ACTIONS(4515), - [sym_int_literal] = ACTIONS(4515), - [sym_float_literal] = ACTIONS(4515), - [sym_rune_literal] = ACTIONS(4515), - [sym_pseudo_compile_time_identifier] = ACTIONS(4515), - [anon_sym_shared] = ACTIONS(4515), - [anon_sym_map_LBRACK] = ACTIONS(4515), - [anon_sym_chan] = ACTIONS(4515), - [anon_sym_thread] = ACTIONS(4515), - [anon_sym_atomic] = ACTIONS(4515), - [anon_sym_assert] = ACTIONS(4515), - [anon_sym_defer] = ACTIONS(4515), - [anon_sym_goto] = ACTIONS(4515), - [anon_sym_break] = ACTIONS(4515), - [anon_sym_continue] = ACTIONS(4515), - [anon_sym_return] = ACTIONS(4515), - [anon_sym_DOLLARfor] = ACTIONS(4515), - [anon_sym_for] = ACTIONS(4515), - [anon_sym_POUND] = ACTIONS(4515), - [anon_sym_asm] = ACTIONS(4515), - [anon_sym_AT_LBRACK] = ACTIONS(4515), - [sym___double_quote] = ACTIONS(4515), - [sym___single_quote] = ACTIONS(4515), - [sym___c_double_quote] = ACTIONS(4515), - [sym___c_single_quote] = ACTIONS(4515), - [sym___r_double_quote] = ACTIONS(4515), - [sym___r_single_quote] = ACTIONS(4515), + [1602] = { + [sym_line_comment] = STATE(1602), + [sym_block_comment] = STATE(1602), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4513), + [anon_sym_const] = ACTIONS(4513), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym___global] = ACTIONS(4513), + [anon_sym_type] = ACTIONS(4513), + [anon_sym_fn] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4513), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_STAR] = ACTIONS(4513), + [anon_sym_struct] = ACTIONS(4513), + [anon_sym_union] = ACTIONS(4513), + [anon_sym_pub] = ACTIONS(4513), + [anon_sym_mut] = ACTIONS(4513), + [anon_sym_enum] = ACTIONS(4513), + [anon_sym_interface] = ACTIONS(4513), + [anon_sym_QMARK] = ACTIONS(4513), + [anon_sym_BANG] = ACTIONS(4513), + [anon_sym_go] = ACTIONS(4513), + [anon_sym_spawn] = ACTIONS(4513), + [anon_sym_json_DOTdecode] = ACTIONS(4513), + [anon_sym_LBRACK2] = ACTIONS(4513), + [anon_sym_TILDE] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_LT_DASH] = ACTIONS(4513), + [sym_none] = ACTIONS(4513), + [sym_true] = ACTIONS(4513), + [sym_false] = ACTIONS(4513), + [sym_nil] = ACTIONS(4513), + [anon_sym_if] = ACTIONS(4513), + [anon_sym_DOLLARif] = ACTIONS(4513), + [anon_sym_match] = ACTIONS(4513), + [anon_sym_select] = ACTIONS(4513), + [anon_sym_lock] = ACTIONS(4513), + [anon_sym_rlock] = ACTIONS(4513), + [anon_sym_unsafe] = ACTIONS(4513), + [anon_sym_sql] = ACTIONS(4513), + [sym_int_literal] = ACTIONS(4513), + [sym_float_literal] = ACTIONS(4513), + [sym_rune_literal] = ACTIONS(4513), + [sym_pseudo_compile_time_identifier] = ACTIONS(4513), + [anon_sym_shared] = ACTIONS(4513), + [anon_sym_map_LBRACK] = ACTIONS(4513), + [anon_sym_chan] = ACTIONS(4513), + [anon_sym_thread] = ACTIONS(4513), + [anon_sym_atomic] = ACTIONS(4513), + [anon_sym_assert] = ACTIONS(4513), + [anon_sym_defer] = ACTIONS(4513), + [anon_sym_goto] = ACTIONS(4513), + [anon_sym_break] = ACTIONS(4513), + [anon_sym_continue] = ACTIONS(4513), + [anon_sym_return] = ACTIONS(4513), + [anon_sym_DOLLARfor] = ACTIONS(4513), + [anon_sym_for] = ACTIONS(4513), + [anon_sym_POUND] = ACTIONS(4513), + [anon_sym_asm] = ACTIONS(4513), + [anon_sym_AT_LBRACK] = ACTIONS(4513), + [sym___double_quote] = ACTIONS(4513), + [sym___single_quote] = ACTIONS(4513), + [sym___c_double_quote] = ACTIONS(4513), + [sym___c_single_quote] = ACTIONS(4513), + [sym___r_double_quote] = ACTIONS(4513), + [sym___r_single_quote] = ACTIONS(4513), }, - [1593] = { - [ts_builtin_sym_end] = ACTIONS(4517), - [sym_identifier] = ACTIONS(4519), - [anon_sym_LF] = ACTIONS(4519), - [anon_sym_CR] = ACTIONS(4519), - [anon_sym_CR_LF] = ACTIONS(4519), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4519), - [anon_sym_LBRACE] = ACTIONS(4519), - [anon_sym_const] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym___global] = ACTIONS(4519), - [anon_sym_type] = ACTIONS(4519), - [anon_sym_fn] = ACTIONS(4519), - [anon_sym_PLUS] = ACTIONS(4519), - [anon_sym_DASH] = ACTIONS(4519), - [anon_sym_STAR] = ACTIONS(4519), - [anon_sym_struct] = ACTIONS(4519), - [anon_sym_union] = ACTIONS(4519), - [anon_sym_pub] = ACTIONS(4519), - [anon_sym_mut] = ACTIONS(4519), - [anon_sym_enum] = ACTIONS(4519), - [anon_sym_interface] = ACTIONS(4519), - [anon_sym_QMARK] = ACTIONS(4519), - [anon_sym_BANG] = ACTIONS(4519), - [anon_sym_go] = ACTIONS(4519), - [anon_sym_spawn] = ACTIONS(4519), - [anon_sym_json_DOTdecode] = ACTIONS(4519), - [anon_sym_LBRACK2] = ACTIONS(4519), - [anon_sym_TILDE] = ACTIONS(4519), - [anon_sym_CARET] = ACTIONS(4519), - [anon_sym_AMP] = ACTIONS(4519), - [anon_sym_LT_DASH] = ACTIONS(4519), - [sym_none] = ACTIONS(4519), - [sym_true] = ACTIONS(4519), - [sym_false] = ACTIONS(4519), - [sym_nil] = ACTIONS(4519), - [anon_sym_if] = ACTIONS(4519), - [anon_sym_DOLLARif] = ACTIONS(4519), - [anon_sym_match] = ACTIONS(4519), - [anon_sym_select] = ACTIONS(4519), - [anon_sym_lock] = ACTIONS(4519), - [anon_sym_rlock] = ACTIONS(4519), - [anon_sym_unsafe] = ACTIONS(4519), - [anon_sym_sql] = ACTIONS(4519), - [sym_int_literal] = ACTIONS(4519), - [sym_float_literal] = ACTIONS(4519), - [sym_rune_literal] = ACTIONS(4519), - [sym_pseudo_compile_time_identifier] = ACTIONS(4519), - [anon_sym_shared] = ACTIONS(4519), - [anon_sym_map_LBRACK] = ACTIONS(4519), - [anon_sym_chan] = ACTIONS(4519), - [anon_sym_thread] = ACTIONS(4519), - [anon_sym_atomic] = ACTIONS(4519), - [anon_sym_assert] = ACTIONS(4519), - [anon_sym_defer] = ACTIONS(4519), - [anon_sym_goto] = ACTIONS(4519), - [anon_sym_break] = ACTIONS(4519), - [anon_sym_continue] = ACTIONS(4519), - [anon_sym_return] = ACTIONS(4519), - [anon_sym_DOLLARfor] = ACTIONS(4519), - [anon_sym_for] = ACTIONS(4519), - [anon_sym_POUND] = ACTIONS(4519), - [anon_sym_asm] = ACTIONS(4519), - [anon_sym_AT_LBRACK] = ACTIONS(4519), - [sym___double_quote] = ACTIONS(4519), - [sym___single_quote] = ACTIONS(4519), - [sym___c_double_quote] = ACTIONS(4519), - [sym___c_single_quote] = ACTIONS(4519), - [sym___r_double_quote] = ACTIONS(4519), - [sym___r_single_quote] = ACTIONS(4519), + [1603] = { + [sym_line_comment] = STATE(1603), + [sym_block_comment] = STATE(1603), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(4517), + [anon_sym_const] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym___global] = ACTIONS(4517), + [anon_sym_type] = ACTIONS(4517), + [anon_sym_fn] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4517), + [anon_sym_struct] = ACTIONS(4517), + [anon_sym_union] = ACTIONS(4517), + [anon_sym_pub] = ACTIONS(4517), + [anon_sym_mut] = ACTIONS(4517), + [anon_sym_enum] = ACTIONS(4517), + [anon_sym_interface] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4517), + [anon_sym_go] = ACTIONS(4517), + [anon_sym_spawn] = ACTIONS(4517), + [anon_sym_json_DOTdecode] = ACTIONS(4517), + [anon_sym_LBRACK2] = ACTIONS(4517), + [anon_sym_TILDE] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_LT_DASH] = ACTIONS(4517), + [sym_none] = ACTIONS(4517), + [sym_true] = ACTIONS(4517), + [sym_false] = ACTIONS(4517), + [sym_nil] = ACTIONS(4517), + [anon_sym_if] = ACTIONS(4517), + [anon_sym_DOLLARif] = ACTIONS(4517), + [anon_sym_match] = ACTIONS(4517), + [anon_sym_select] = ACTIONS(4517), + [anon_sym_lock] = ACTIONS(4517), + [anon_sym_rlock] = ACTIONS(4517), + [anon_sym_unsafe] = ACTIONS(4517), + [anon_sym_sql] = ACTIONS(4517), + [sym_int_literal] = ACTIONS(4517), + [sym_float_literal] = ACTIONS(4517), + [sym_rune_literal] = ACTIONS(4517), + [sym_pseudo_compile_time_identifier] = ACTIONS(4517), + [anon_sym_shared] = ACTIONS(4517), + [anon_sym_map_LBRACK] = ACTIONS(4517), + [anon_sym_chan] = ACTIONS(4517), + [anon_sym_thread] = ACTIONS(4517), + [anon_sym_atomic] = ACTIONS(4517), + [anon_sym_assert] = ACTIONS(4517), + [anon_sym_defer] = ACTIONS(4517), + [anon_sym_goto] = ACTIONS(4517), + [anon_sym_break] = ACTIONS(4517), + [anon_sym_continue] = ACTIONS(4517), + [anon_sym_return] = ACTIONS(4517), + [anon_sym_DOLLARfor] = ACTIONS(4517), + [anon_sym_for] = ACTIONS(4517), + [anon_sym_POUND] = ACTIONS(4517), + [anon_sym_asm] = ACTIONS(4517), + [anon_sym_AT_LBRACK] = ACTIONS(4517), + [sym___double_quote] = ACTIONS(4517), + [sym___single_quote] = ACTIONS(4517), + [sym___c_double_quote] = ACTIONS(4517), + [sym___c_single_quote] = ACTIONS(4517), + [sym___r_double_quote] = ACTIONS(4517), + [sym___r_single_quote] = ACTIONS(4517), }, - [1594] = { - [ts_builtin_sym_end] = ACTIONS(4521), - [sym_identifier] = ACTIONS(4523), - [anon_sym_LF] = ACTIONS(4523), - [anon_sym_CR] = ACTIONS(4523), - [anon_sym_CR_LF] = ACTIONS(4523), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4523), - [anon_sym_LBRACE] = ACTIONS(4523), - [anon_sym_const] = ACTIONS(4523), - [anon_sym_LPAREN] = ACTIONS(4523), - [anon_sym___global] = ACTIONS(4523), - [anon_sym_type] = ACTIONS(4523), - [anon_sym_fn] = ACTIONS(4523), - [anon_sym_PLUS] = ACTIONS(4523), - [anon_sym_DASH] = ACTIONS(4523), - [anon_sym_STAR] = ACTIONS(4523), - [anon_sym_struct] = ACTIONS(4523), - [anon_sym_union] = ACTIONS(4523), - [anon_sym_pub] = ACTIONS(4523), - [anon_sym_mut] = ACTIONS(4523), - [anon_sym_enum] = ACTIONS(4523), - [anon_sym_interface] = ACTIONS(4523), - [anon_sym_QMARK] = ACTIONS(4523), - [anon_sym_BANG] = ACTIONS(4523), - [anon_sym_go] = ACTIONS(4523), - [anon_sym_spawn] = ACTIONS(4523), - [anon_sym_json_DOTdecode] = ACTIONS(4523), - [anon_sym_LBRACK2] = ACTIONS(4523), - [anon_sym_TILDE] = ACTIONS(4523), - [anon_sym_CARET] = ACTIONS(4523), - [anon_sym_AMP] = ACTIONS(4523), - [anon_sym_LT_DASH] = ACTIONS(4523), - [sym_none] = ACTIONS(4523), - [sym_true] = ACTIONS(4523), - [sym_false] = ACTIONS(4523), - [sym_nil] = ACTIONS(4523), - [anon_sym_if] = ACTIONS(4523), - [anon_sym_DOLLARif] = ACTIONS(4523), - [anon_sym_match] = ACTIONS(4523), - [anon_sym_select] = ACTIONS(4523), - [anon_sym_lock] = ACTIONS(4523), - [anon_sym_rlock] = ACTIONS(4523), - [anon_sym_unsafe] = ACTIONS(4523), - [anon_sym_sql] = ACTIONS(4523), - [sym_int_literal] = ACTIONS(4523), - [sym_float_literal] = ACTIONS(4523), - [sym_rune_literal] = ACTIONS(4523), - [sym_pseudo_compile_time_identifier] = ACTIONS(4523), - [anon_sym_shared] = ACTIONS(4523), - [anon_sym_map_LBRACK] = ACTIONS(4523), - [anon_sym_chan] = ACTIONS(4523), - [anon_sym_thread] = ACTIONS(4523), - [anon_sym_atomic] = ACTIONS(4523), - [anon_sym_assert] = ACTIONS(4523), - [anon_sym_defer] = ACTIONS(4523), - [anon_sym_goto] = ACTIONS(4523), - [anon_sym_break] = ACTIONS(4523), - [anon_sym_continue] = ACTIONS(4523), - [anon_sym_return] = ACTIONS(4523), - [anon_sym_DOLLARfor] = ACTIONS(4523), - [anon_sym_for] = ACTIONS(4523), - [anon_sym_POUND] = ACTIONS(4523), - [anon_sym_asm] = ACTIONS(4523), - [anon_sym_AT_LBRACK] = ACTIONS(4523), - [sym___double_quote] = ACTIONS(4523), - [sym___single_quote] = ACTIONS(4523), - [sym___c_double_quote] = ACTIONS(4523), - [sym___c_single_quote] = ACTIONS(4523), - [sym___r_double_quote] = ACTIONS(4523), - [sym___r_single_quote] = ACTIONS(4523), + [1604] = { + [sym_line_comment] = STATE(1604), + [sym_block_comment] = STATE(1604), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_const] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym___global] = ACTIONS(4521), + [anon_sym_type] = ACTIONS(4521), + [anon_sym_fn] = ACTIONS(4521), + [anon_sym_PLUS] = ACTIONS(4521), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_STAR] = ACTIONS(4521), + [anon_sym_struct] = ACTIONS(4521), + [anon_sym_union] = ACTIONS(4521), + [anon_sym_pub] = ACTIONS(4521), + [anon_sym_mut] = ACTIONS(4521), + [anon_sym_enum] = ACTIONS(4521), + [anon_sym_interface] = ACTIONS(4521), + [anon_sym_QMARK] = ACTIONS(4521), + [anon_sym_BANG] = ACTIONS(4521), + [anon_sym_go] = ACTIONS(4521), + [anon_sym_spawn] = ACTIONS(4521), + [anon_sym_json_DOTdecode] = ACTIONS(4521), + [anon_sym_LBRACK2] = ACTIONS(4521), + [anon_sym_TILDE] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_LT_DASH] = ACTIONS(4521), + [sym_none] = ACTIONS(4521), + [sym_true] = ACTIONS(4521), + [sym_false] = ACTIONS(4521), + [sym_nil] = ACTIONS(4521), + [anon_sym_if] = ACTIONS(4521), + [anon_sym_DOLLARif] = ACTIONS(4521), + [anon_sym_match] = ACTIONS(4521), + [anon_sym_select] = ACTIONS(4521), + [anon_sym_lock] = ACTIONS(4521), + [anon_sym_rlock] = ACTIONS(4521), + [anon_sym_unsafe] = ACTIONS(4521), + [anon_sym_sql] = ACTIONS(4521), + [sym_int_literal] = ACTIONS(4521), + [sym_float_literal] = ACTIONS(4521), + [sym_rune_literal] = ACTIONS(4521), + [sym_pseudo_compile_time_identifier] = ACTIONS(4521), + [anon_sym_shared] = ACTIONS(4521), + [anon_sym_map_LBRACK] = ACTIONS(4521), + [anon_sym_chan] = ACTIONS(4521), + [anon_sym_thread] = ACTIONS(4521), + [anon_sym_atomic] = ACTIONS(4521), + [anon_sym_assert] = ACTIONS(4521), + [anon_sym_defer] = ACTIONS(4521), + [anon_sym_goto] = ACTIONS(4521), + [anon_sym_break] = ACTIONS(4521), + [anon_sym_continue] = ACTIONS(4521), + [anon_sym_return] = ACTIONS(4521), + [anon_sym_DOLLARfor] = ACTIONS(4521), + [anon_sym_for] = ACTIONS(4521), + [anon_sym_POUND] = ACTIONS(4521), + [anon_sym_asm] = ACTIONS(4521), + [anon_sym_AT_LBRACK] = ACTIONS(4521), + [sym___double_quote] = ACTIONS(4521), + [sym___single_quote] = ACTIONS(4521), + [sym___c_double_quote] = ACTIONS(4521), + [sym___c_single_quote] = ACTIONS(4521), + [sym___r_double_quote] = ACTIONS(4521), + [sym___r_single_quote] = ACTIONS(4521), }, - [1595] = { - [ts_builtin_sym_end] = ACTIONS(4525), - [sym_identifier] = ACTIONS(4527), - [anon_sym_LF] = ACTIONS(4527), - [anon_sym_CR] = ACTIONS(4527), - [anon_sym_CR_LF] = ACTIONS(4527), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_const] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym___global] = ACTIONS(4527), - [anon_sym_type] = ACTIONS(4527), - [anon_sym_fn] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4527), - [anon_sym_STAR] = ACTIONS(4527), - [anon_sym_struct] = ACTIONS(4527), - [anon_sym_union] = ACTIONS(4527), - [anon_sym_pub] = ACTIONS(4527), - [anon_sym_mut] = ACTIONS(4527), - [anon_sym_enum] = ACTIONS(4527), - [anon_sym_interface] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_go] = ACTIONS(4527), - [anon_sym_spawn] = ACTIONS(4527), - [anon_sym_json_DOTdecode] = ACTIONS(4527), - [anon_sym_LBRACK2] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_CARET] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4527), - [anon_sym_LT_DASH] = ACTIONS(4527), - [sym_none] = ACTIONS(4527), - [sym_true] = ACTIONS(4527), - [sym_false] = ACTIONS(4527), - [sym_nil] = ACTIONS(4527), - [anon_sym_if] = ACTIONS(4527), - [anon_sym_DOLLARif] = ACTIONS(4527), - [anon_sym_match] = ACTIONS(4527), - [anon_sym_select] = ACTIONS(4527), - [anon_sym_lock] = ACTIONS(4527), - [anon_sym_rlock] = ACTIONS(4527), - [anon_sym_unsafe] = ACTIONS(4527), - [anon_sym_sql] = ACTIONS(4527), - [sym_int_literal] = ACTIONS(4527), - [sym_float_literal] = ACTIONS(4527), - [sym_rune_literal] = ACTIONS(4527), - [sym_pseudo_compile_time_identifier] = ACTIONS(4527), - [anon_sym_shared] = ACTIONS(4527), - [anon_sym_map_LBRACK] = ACTIONS(4527), - [anon_sym_chan] = ACTIONS(4527), - [anon_sym_thread] = ACTIONS(4527), - [anon_sym_atomic] = ACTIONS(4527), - [anon_sym_assert] = ACTIONS(4527), - [anon_sym_defer] = ACTIONS(4527), - [anon_sym_goto] = ACTIONS(4527), - [anon_sym_break] = ACTIONS(4527), - [anon_sym_continue] = ACTIONS(4527), - [anon_sym_return] = ACTIONS(4527), - [anon_sym_DOLLARfor] = ACTIONS(4527), - [anon_sym_for] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_asm] = ACTIONS(4527), - [anon_sym_AT_LBRACK] = ACTIONS(4527), - [sym___double_quote] = ACTIONS(4527), - [sym___single_quote] = ACTIONS(4527), - [sym___c_double_quote] = ACTIONS(4527), - [sym___c_single_quote] = ACTIONS(4527), - [sym___r_double_quote] = ACTIONS(4527), - [sym___r_single_quote] = ACTIONS(4527), + [1605] = { + [sym_line_comment] = STATE(1605), + [sym_block_comment] = STATE(1605), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_const] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym___global] = ACTIONS(4525), + [anon_sym_type] = ACTIONS(4525), + [anon_sym_fn] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_struct] = ACTIONS(4525), + [anon_sym_union] = ACTIONS(4525), + [anon_sym_pub] = ACTIONS(4525), + [anon_sym_mut] = ACTIONS(4525), + [anon_sym_enum] = ACTIONS(4525), + [anon_sym_interface] = ACTIONS(4525), + [anon_sym_QMARK] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4525), + [anon_sym_go] = ACTIONS(4525), + [anon_sym_spawn] = ACTIONS(4525), + [anon_sym_json_DOTdecode] = ACTIONS(4525), + [anon_sym_LBRACK2] = ACTIONS(4525), + [anon_sym_TILDE] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_LT_DASH] = ACTIONS(4525), + [sym_none] = ACTIONS(4525), + [sym_true] = ACTIONS(4525), + [sym_false] = ACTIONS(4525), + [sym_nil] = ACTIONS(4525), + [anon_sym_if] = ACTIONS(4525), + [anon_sym_DOLLARif] = ACTIONS(4525), + [anon_sym_match] = ACTIONS(4525), + [anon_sym_select] = ACTIONS(4525), + [anon_sym_lock] = ACTIONS(4525), + [anon_sym_rlock] = ACTIONS(4525), + [anon_sym_unsafe] = ACTIONS(4525), + [anon_sym_sql] = ACTIONS(4525), + [sym_int_literal] = ACTIONS(4525), + [sym_float_literal] = ACTIONS(4525), + [sym_rune_literal] = ACTIONS(4525), + [sym_pseudo_compile_time_identifier] = ACTIONS(4525), + [anon_sym_shared] = ACTIONS(4525), + [anon_sym_map_LBRACK] = ACTIONS(4525), + [anon_sym_chan] = ACTIONS(4525), + [anon_sym_thread] = ACTIONS(4525), + [anon_sym_atomic] = ACTIONS(4525), + [anon_sym_assert] = ACTIONS(4525), + [anon_sym_defer] = ACTIONS(4525), + [anon_sym_goto] = ACTIONS(4525), + [anon_sym_break] = ACTIONS(4525), + [anon_sym_continue] = ACTIONS(4525), + [anon_sym_return] = ACTIONS(4525), + [anon_sym_DOLLARfor] = ACTIONS(4525), + [anon_sym_for] = ACTIONS(4525), + [anon_sym_POUND] = ACTIONS(4525), + [anon_sym_asm] = ACTIONS(4525), + [anon_sym_AT_LBRACK] = ACTIONS(4525), + [sym___double_quote] = ACTIONS(4525), + [sym___single_quote] = ACTIONS(4525), + [sym___c_double_quote] = ACTIONS(4525), + [sym___c_single_quote] = ACTIONS(4525), + [sym___r_double_quote] = ACTIONS(4525), + [sym___r_single_quote] = ACTIONS(4525), }, - [1596] = { - [sym_import_declaration] = STATE(1589), - [aux_sym_import_list_repeat1] = STATE(1589), - [ts_builtin_sym_end] = ACTIONS(4529), - [sym_identifier] = ACTIONS(4531), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(4531), + [1606] = { + [sym_line_comment] = STATE(1606), + [sym_block_comment] = STATE(1606), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4529), [anon_sym_LBRACE] = ACTIONS(4529), - [anon_sym_const] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4529), [anon_sym_LPAREN] = ACTIONS(4529), - [anon_sym___global] = ACTIONS(4531), - [anon_sym_type] = ACTIONS(4531), - [anon_sym_fn] = ACTIONS(4531), + [anon_sym___global] = ACTIONS(4529), + [anon_sym_type] = ACTIONS(4529), + [anon_sym_fn] = ACTIONS(4529), [anon_sym_PLUS] = ACTIONS(4529), [anon_sym_DASH] = ACTIONS(4529), [anon_sym_STAR] = ACTIONS(4529), - [anon_sym_struct] = ACTIONS(4531), - [anon_sym_union] = ACTIONS(4531), - [anon_sym_pub] = ACTIONS(4531), - [anon_sym_mut] = ACTIONS(4531), - [anon_sym_enum] = ACTIONS(4531), - [anon_sym_interface] = ACTIONS(4531), + [anon_sym_struct] = ACTIONS(4529), + [anon_sym_union] = ACTIONS(4529), + [anon_sym_pub] = ACTIONS(4529), + [anon_sym_mut] = ACTIONS(4529), + [anon_sym_enum] = ACTIONS(4529), + [anon_sym_interface] = ACTIONS(4529), [anon_sym_QMARK] = ACTIONS(4529), [anon_sym_BANG] = ACTIONS(4529), - [anon_sym_go] = ACTIONS(4531), - [anon_sym_spawn] = ACTIONS(4531), + [anon_sym_go] = ACTIONS(4529), + [anon_sym_spawn] = ACTIONS(4529), [anon_sym_json_DOTdecode] = ACTIONS(4529), [anon_sym_LBRACK2] = ACTIONS(4529), [anon_sym_TILDE] = ACTIONS(4529), [anon_sym_CARET] = ACTIONS(4529), [anon_sym_AMP] = ACTIONS(4529), [anon_sym_LT_DASH] = ACTIONS(4529), - [sym_none] = ACTIONS(4531), - [sym_true] = ACTIONS(4531), - [sym_false] = ACTIONS(4531), - [sym_nil] = ACTIONS(4531), - [anon_sym_if] = ACTIONS(4531), - [anon_sym_DOLLARif] = ACTIONS(4531), - [anon_sym_match] = ACTIONS(4531), - [anon_sym_select] = ACTIONS(4531), - [anon_sym_lock] = ACTIONS(4531), - [anon_sym_rlock] = ACTIONS(4531), - [anon_sym_unsafe] = ACTIONS(4531), - [anon_sym_sql] = ACTIONS(4531), - [sym_int_literal] = ACTIONS(4531), + [sym_none] = ACTIONS(4529), + [sym_true] = ACTIONS(4529), + [sym_false] = ACTIONS(4529), + [sym_nil] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4529), + [anon_sym_DOLLARif] = ACTIONS(4529), + [anon_sym_match] = ACTIONS(4529), + [anon_sym_select] = ACTIONS(4529), + [anon_sym_lock] = ACTIONS(4529), + [anon_sym_rlock] = ACTIONS(4529), + [anon_sym_unsafe] = ACTIONS(4529), + [anon_sym_sql] = ACTIONS(4529), + [sym_int_literal] = ACTIONS(4529), [sym_float_literal] = ACTIONS(4529), [sym_rune_literal] = ACTIONS(4529), - [sym_pseudo_compile_time_identifier] = ACTIONS(4531), - [anon_sym_shared] = ACTIONS(4531), + [sym_pseudo_compile_time_identifier] = ACTIONS(4529), + [anon_sym_shared] = ACTIONS(4529), [anon_sym_map_LBRACK] = ACTIONS(4529), - [anon_sym_chan] = ACTIONS(4531), - [anon_sym_thread] = ACTIONS(4531), - [anon_sym_atomic] = ACTIONS(4531), - [anon_sym_assert] = ACTIONS(4531), - [anon_sym_defer] = ACTIONS(4531), - [anon_sym_goto] = ACTIONS(4531), - [anon_sym_break] = ACTIONS(4531), - [anon_sym_continue] = ACTIONS(4531), - [anon_sym_return] = ACTIONS(4531), - [anon_sym_DOLLARfor] = ACTIONS(4531), - [anon_sym_for] = ACTIONS(4531), + [anon_sym_chan] = ACTIONS(4529), + [anon_sym_thread] = ACTIONS(4529), + [anon_sym_atomic] = ACTIONS(4529), + [anon_sym_assert] = ACTIONS(4529), + [anon_sym_defer] = ACTIONS(4529), + [anon_sym_goto] = ACTIONS(4529), + [anon_sym_break] = ACTIONS(4529), + [anon_sym_continue] = ACTIONS(4529), + [anon_sym_return] = ACTIONS(4529), + [anon_sym_DOLLARfor] = ACTIONS(4529), + [anon_sym_for] = ACTIONS(4529), [anon_sym_POUND] = ACTIONS(4529), - [anon_sym_asm] = ACTIONS(4531), + [anon_sym_asm] = ACTIONS(4529), [anon_sym_AT_LBRACK] = ACTIONS(4529), [sym___double_quote] = ACTIONS(4529), [sym___single_quote] = ACTIONS(4529), @@ -189539,972 +192263,716 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4529), [sym___r_single_quote] = ACTIONS(4529), }, - [1597] = { - [ts_builtin_sym_end] = ACTIONS(4533), - [sym_identifier] = ACTIONS(4535), - [anon_sym_LF] = ACTIONS(4535), - [anon_sym_CR] = ACTIONS(4535), - [anon_sym_CR_LF] = ACTIONS(4535), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4535), - [anon_sym_LBRACE] = ACTIONS(4535), - [anon_sym_const] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym___global] = ACTIONS(4535), - [anon_sym_type] = ACTIONS(4535), - [anon_sym_fn] = ACTIONS(4535), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_STAR] = ACTIONS(4535), - [anon_sym_struct] = ACTIONS(4535), - [anon_sym_union] = ACTIONS(4535), - [anon_sym_pub] = ACTIONS(4535), - [anon_sym_mut] = ACTIONS(4535), - [anon_sym_enum] = ACTIONS(4535), - [anon_sym_interface] = ACTIONS(4535), - [anon_sym_QMARK] = ACTIONS(4535), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_go] = ACTIONS(4535), - [anon_sym_spawn] = ACTIONS(4535), - [anon_sym_json_DOTdecode] = ACTIONS(4535), - [anon_sym_LBRACK2] = ACTIONS(4535), - [anon_sym_TILDE] = ACTIONS(4535), - [anon_sym_CARET] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4535), - [anon_sym_LT_DASH] = ACTIONS(4535), - [sym_none] = ACTIONS(4535), - [sym_true] = ACTIONS(4535), - [sym_false] = ACTIONS(4535), - [sym_nil] = ACTIONS(4535), - [anon_sym_if] = ACTIONS(4535), - [anon_sym_DOLLARif] = ACTIONS(4535), - [anon_sym_match] = ACTIONS(4535), - [anon_sym_select] = ACTIONS(4535), - [anon_sym_lock] = ACTIONS(4535), - [anon_sym_rlock] = ACTIONS(4535), - [anon_sym_unsafe] = ACTIONS(4535), - [anon_sym_sql] = ACTIONS(4535), - [sym_int_literal] = ACTIONS(4535), - [sym_float_literal] = ACTIONS(4535), - [sym_rune_literal] = ACTIONS(4535), - [sym_pseudo_compile_time_identifier] = ACTIONS(4535), - [anon_sym_shared] = ACTIONS(4535), - [anon_sym_map_LBRACK] = ACTIONS(4535), - [anon_sym_chan] = ACTIONS(4535), - [anon_sym_thread] = ACTIONS(4535), - [anon_sym_atomic] = ACTIONS(4535), - [anon_sym_assert] = ACTIONS(4535), - [anon_sym_defer] = ACTIONS(4535), - [anon_sym_goto] = ACTIONS(4535), - [anon_sym_break] = ACTIONS(4535), - [anon_sym_continue] = ACTIONS(4535), - [anon_sym_return] = ACTIONS(4535), - [anon_sym_DOLLARfor] = ACTIONS(4535), - [anon_sym_for] = ACTIONS(4535), - [anon_sym_POUND] = ACTIONS(4535), - [anon_sym_asm] = ACTIONS(4535), - [anon_sym_AT_LBRACK] = ACTIONS(4535), - [sym___double_quote] = ACTIONS(4535), - [sym___single_quote] = ACTIONS(4535), - [sym___c_double_quote] = ACTIONS(4535), - [sym___c_single_quote] = ACTIONS(4535), - [sym___r_double_quote] = ACTIONS(4535), - [sym___r_single_quote] = ACTIONS(4535), - }, - [1598] = { - [ts_builtin_sym_end] = ACTIONS(4537), - [sym_identifier] = ACTIONS(4539), - [anon_sym_LF] = ACTIONS(4539), - [anon_sym_CR] = ACTIONS(4539), - [anon_sym_CR_LF] = ACTIONS(4539), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_const] = ACTIONS(4539), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym___global] = ACTIONS(4539), - [anon_sym_type] = ACTIONS(4539), - [anon_sym_fn] = ACTIONS(4539), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4539), - [anon_sym_struct] = ACTIONS(4539), - [anon_sym_union] = ACTIONS(4539), - [anon_sym_pub] = ACTIONS(4539), - [anon_sym_mut] = ACTIONS(4539), - [anon_sym_enum] = ACTIONS(4539), - [anon_sym_interface] = ACTIONS(4539), - [anon_sym_QMARK] = ACTIONS(4539), - [anon_sym_BANG] = ACTIONS(4539), - [anon_sym_go] = ACTIONS(4539), - [anon_sym_spawn] = ACTIONS(4539), - [anon_sym_json_DOTdecode] = ACTIONS(4539), - [anon_sym_LBRACK2] = ACTIONS(4539), - [anon_sym_TILDE] = ACTIONS(4539), - [anon_sym_CARET] = ACTIONS(4539), - [anon_sym_AMP] = ACTIONS(4539), - [anon_sym_LT_DASH] = ACTIONS(4539), - [sym_none] = ACTIONS(4539), - [sym_true] = ACTIONS(4539), - [sym_false] = ACTIONS(4539), - [sym_nil] = ACTIONS(4539), - [anon_sym_if] = ACTIONS(4539), - [anon_sym_DOLLARif] = ACTIONS(4539), - [anon_sym_match] = ACTIONS(4539), - [anon_sym_select] = ACTIONS(4539), - [anon_sym_lock] = ACTIONS(4539), - [anon_sym_rlock] = ACTIONS(4539), - [anon_sym_unsafe] = ACTIONS(4539), - [anon_sym_sql] = ACTIONS(4539), - [sym_int_literal] = ACTIONS(4539), - [sym_float_literal] = ACTIONS(4539), - [sym_rune_literal] = ACTIONS(4539), - [sym_pseudo_compile_time_identifier] = ACTIONS(4539), - [anon_sym_shared] = ACTIONS(4539), - [anon_sym_map_LBRACK] = ACTIONS(4539), - [anon_sym_chan] = ACTIONS(4539), - [anon_sym_thread] = ACTIONS(4539), - [anon_sym_atomic] = ACTIONS(4539), - [anon_sym_assert] = ACTIONS(4539), - [anon_sym_defer] = ACTIONS(4539), - [anon_sym_goto] = ACTIONS(4539), - [anon_sym_break] = ACTIONS(4539), - [anon_sym_continue] = ACTIONS(4539), - [anon_sym_return] = ACTIONS(4539), - [anon_sym_DOLLARfor] = ACTIONS(4539), - [anon_sym_for] = ACTIONS(4539), - [anon_sym_POUND] = ACTIONS(4539), - [anon_sym_asm] = ACTIONS(4539), - [anon_sym_AT_LBRACK] = ACTIONS(4539), - [sym___double_quote] = ACTIONS(4539), - [sym___single_quote] = ACTIONS(4539), - [sym___c_double_quote] = ACTIONS(4539), - [sym___c_single_quote] = ACTIONS(4539), - [sym___r_double_quote] = ACTIONS(4539), - [sym___r_single_quote] = ACTIONS(4539), - }, - [1599] = { - [ts_builtin_sym_end] = ACTIONS(4541), - [sym_identifier] = ACTIONS(4543), - [anon_sym_LF] = ACTIONS(4543), - [anon_sym_CR] = ACTIONS(4543), - [anon_sym_CR_LF] = ACTIONS(4543), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4543), - [anon_sym_const] = ACTIONS(4543), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym___global] = ACTIONS(4543), - [anon_sym_type] = ACTIONS(4543), - [anon_sym_fn] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4543), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_STAR] = ACTIONS(4543), - [anon_sym_struct] = ACTIONS(4543), - [anon_sym_union] = ACTIONS(4543), - [anon_sym_pub] = ACTIONS(4543), - [anon_sym_mut] = ACTIONS(4543), - [anon_sym_enum] = ACTIONS(4543), - [anon_sym_interface] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4543), - [anon_sym_BANG] = ACTIONS(4543), - [anon_sym_go] = ACTIONS(4543), - [anon_sym_spawn] = ACTIONS(4543), - [anon_sym_json_DOTdecode] = ACTIONS(4543), - [anon_sym_LBRACK2] = ACTIONS(4543), - [anon_sym_TILDE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4543), - [anon_sym_AMP] = ACTIONS(4543), - [anon_sym_LT_DASH] = ACTIONS(4543), - [sym_none] = ACTIONS(4543), - [sym_true] = ACTIONS(4543), - [sym_false] = ACTIONS(4543), - [sym_nil] = ACTIONS(4543), - [anon_sym_if] = ACTIONS(4543), - [anon_sym_DOLLARif] = ACTIONS(4543), - [anon_sym_match] = ACTIONS(4543), - [anon_sym_select] = ACTIONS(4543), - [anon_sym_lock] = ACTIONS(4543), - [anon_sym_rlock] = ACTIONS(4543), - [anon_sym_unsafe] = ACTIONS(4543), - [anon_sym_sql] = ACTIONS(4543), - [sym_int_literal] = ACTIONS(4543), - [sym_float_literal] = ACTIONS(4543), - [sym_rune_literal] = ACTIONS(4543), - [sym_pseudo_compile_time_identifier] = ACTIONS(4543), - [anon_sym_shared] = ACTIONS(4543), - [anon_sym_map_LBRACK] = ACTIONS(4543), - [anon_sym_chan] = ACTIONS(4543), - [anon_sym_thread] = ACTIONS(4543), - [anon_sym_atomic] = ACTIONS(4543), - [anon_sym_assert] = ACTIONS(4543), - [anon_sym_defer] = ACTIONS(4543), - [anon_sym_goto] = ACTIONS(4543), - [anon_sym_break] = ACTIONS(4543), - [anon_sym_continue] = ACTIONS(4543), - [anon_sym_return] = ACTIONS(4543), - [anon_sym_DOLLARfor] = ACTIONS(4543), - [anon_sym_for] = ACTIONS(4543), - [anon_sym_POUND] = ACTIONS(4543), - [anon_sym_asm] = ACTIONS(4543), - [anon_sym_AT_LBRACK] = ACTIONS(4543), - [sym___double_quote] = ACTIONS(4543), - [sym___single_quote] = ACTIONS(4543), - [sym___c_double_quote] = ACTIONS(4543), - [sym___c_single_quote] = ACTIONS(4543), - [sym___r_double_quote] = ACTIONS(4543), - [sym___r_single_quote] = ACTIONS(4543), - }, - [1600] = { - [ts_builtin_sym_end] = ACTIONS(4545), - [sym_identifier] = ACTIONS(4547), - [anon_sym_LF] = ACTIONS(4547), - [anon_sym_CR] = ACTIONS(4547), - [anon_sym_CR_LF] = ACTIONS(4547), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4547), - [anon_sym_LBRACE] = ACTIONS(4547), - [anon_sym_const] = ACTIONS(4547), - [anon_sym_LPAREN] = ACTIONS(4547), - [anon_sym___global] = ACTIONS(4547), - [anon_sym_type] = ACTIONS(4547), - [anon_sym_fn] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4547), - [anon_sym_DASH] = ACTIONS(4547), - [anon_sym_STAR] = ACTIONS(4547), - [anon_sym_struct] = ACTIONS(4547), - [anon_sym_union] = ACTIONS(4547), - [anon_sym_pub] = ACTIONS(4547), - [anon_sym_mut] = ACTIONS(4547), - [anon_sym_enum] = ACTIONS(4547), - [anon_sym_interface] = ACTIONS(4547), - [anon_sym_QMARK] = ACTIONS(4547), - [anon_sym_BANG] = ACTIONS(4547), - [anon_sym_go] = ACTIONS(4547), - [anon_sym_spawn] = ACTIONS(4547), - [anon_sym_json_DOTdecode] = ACTIONS(4547), - [anon_sym_LBRACK2] = ACTIONS(4547), - [anon_sym_TILDE] = ACTIONS(4547), - [anon_sym_CARET] = ACTIONS(4547), - [anon_sym_AMP] = ACTIONS(4547), - [anon_sym_LT_DASH] = ACTIONS(4547), - [sym_none] = ACTIONS(4547), - [sym_true] = ACTIONS(4547), - [sym_false] = ACTIONS(4547), - [sym_nil] = ACTIONS(4547), - [anon_sym_if] = ACTIONS(4547), - [anon_sym_DOLLARif] = ACTIONS(4547), - [anon_sym_match] = ACTIONS(4547), - [anon_sym_select] = ACTIONS(4547), - [anon_sym_lock] = ACTIONS(4547), - [anon_sym_rlock] = ACTIONS(4547), - [anon_sym_unsafe] = ACTIONS(4547), - [anon_sym_sql] = ACTIONS(4547), - [sym_int_literal] = ACTIONS(4547), - [sym_float_literal] = ACTIONS(4547), - [sym_rune_literal] = ACTIONS(4547), - [sym_pseudo_compile_time_identifier] = ACTIONS(4547), - [anon_sym_shared] = ACTIONS(4547), - [anon_sym_map_LBRACK] = ACTIONS(4547), - [anon_sym_chan] = ACTIONS(4547), - [anon_sym_thread] = ACTIONS(4547), - [anon_sym_atomic] = ACTIONS(4547), - [anon_sym_assert] = ACTIONS(4547), - [anon_sym_defer] = ACTIONS(4547), - [anon_sym_goto] = ACTIONS(4547), - [anon_sym_break] = ACTIONS(4547), - [anon_sym_continue] = ACTIONS(4547), - [anon_sym_return] = ACTIONS(4547), - [anon_sym_DOLLARfor] = ACTIONS(4547), - [anon_sym_for] = ACTIONS(4547), - [anon_sym_POUND] = ACTIONS(4547), - [anon_sym_asm] = ACTIONS(4547), - [anon_sym_AT_LBRACK] = ACTIONS(4547), - [sym___double_quote] = ACTIONS(4547), - [sym___single_quote] = ACTIONS(4547), - [sym___c_double_quote] = ACTIONS(4547), - [sym___c_single_quote] = ACTIONS(4547), - [sym___r_double_quote] = ACTIONS(4547), - [sym___r_single_quote] = ACTIONS(4547), - }, - [1601] = { - [ts_builtin_sym_end] = ACTIONS(4549), - [sym_identifier] = ACTIONS(4551), - [anon_sym_LF] = ACTIONS(4551), - [anon_sym_CR] = ACTIONS(4551), - [anon_sym_CR_LF] = ACTIONS(4551), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_const] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym___global] = ACTIONS(4551), - [anon_sym_type] = ACTIONS(4551), - [anon_sym_fn] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4551), - [anon_sym_STAR] = ACTIONS(4551), - [anon_sym_struct] = ACTIONS(4551), - [anon_sym_union] = ACTIONS(4551), - [anon_sym_pub] = ACTIONS(4551), - [anon_sym_mut] = ACTIONS(4551), - [anon_sym_enum] = ACTIONS(4551), - [anon_sym_interface] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_go] = ACTIONS(4551), - [anon_sym_spawn] = ACTIONS(4551), - [anon_sym_json_DOTdecode] = ACTIONS(4551), - [anon_sym_LBRACK2] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_CARET] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4551), - [anon_sym_LT_DASH] = ACTIONS(4551), - [sym_none] = ACTIONS(4551), - [sym_true] = ACTIONS(4551), - [sym_false] = ACTIONS(4551), - [sym_nil] = ACTIONS(4551), - [anon_sym_if] = ACTIONS(4551), - [anon_sym_DOLLARif] = ACTIONS(4551), - [anon_sym_match] = ACTIONS(4551), - [anon_sym_select] = ACTIONS(4551), - [anon_sym_lock] = ACTIONS(4551), - [anon_sym_rlock] = ACTIONS(4551), - [anon_sym_unsafe] = ACTIONS(4551), - [anon_sym_sql] = ACTIONS(4551), - [sym_int_literal] = ACTIONS(4551), - [sym_float_literal] = ACTIONS(4551), - [sym_rune_literal] = ACTIONS(4551), - [sym_pseudo_compile_time_identifier] = ACTIONS(4551), - [anon_sym_shared] = ACTIONS(4551), - [anon_sym_map_LBRACK] = ACTIONS(4551), - [anon_sym_chan] = ACTIONS(4551), - [anon_sym_thread] = ACTIONS(4551), - [anon_sym_atomic] = ACTIONS(4551), - [anon_sym_assert] = ACTIONS(4551), - [anon_sym_defer] = ACTIONS(4551), - [anon_sym_goto] = ACTIONS(4551), - [anon_sym_break] = ACTIONS(4551), - [anon_sym_continue] = ACTIONS(4551), - [anon_sym_return] = ACTIONS(4551), - [anon_sym_DOLLARfor] = ACTIONS(4551), - [anon_sym_for] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_asm] = ACTIONS(4551), - [anon_sym_AT_LBRACK] = ACTIONS(4551), - [sym___double_quote] = ACTIONS(4551), - [sym___single_quote] = ACTIONS(4551), - [sym___c_double_quote] = ACTIONS(4551), - [sym___c_single_quote] = ACTIONS(4551), - [sym___r_double_quote] = ACTIONS(4551), - [sym___r_single_quote] = ACTIONS(4551), - }, - [1602] = { - [ts_builtin_sym_end] = ACTIONS(4553), - [sym_identifier] = ACTIONS(4555), - [anon_sym_LF] = ACTIONS(4555), - [anon_sym_CR] = ACTIONS(4555), - [anon_sym_CR_LF] = ACTIONS(4555), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_LBRACE] = ACTIONS(4555), - [anon_sym_const] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4555), - [anon_sym___global] = ACTIONS(4555), - [anon_sym_type] = ACTIONS(4555), - [anon_sym_fn] = ACTIONS(4555), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_STAR] = ACTIONS(4555), - [anon_sym_struct] = ACTIONS(4555), - [anon_sym_union] = ACTIONS(4555), - [anon_sym_pub] = ACTIONS(4555), - [anon_sym_mut] = ACTIONS(4555), - [anon_sym_enum] = ACTIONS(4555), - [anon_sym_interface] = ACTIONS(4555), - [anon_sym_QMARK] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_go] = ACTIONS(4555), - [anon_sym_spawn] = ACTIONS(4555), - [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(4555), - [sym_true] = ACTIONS(4555), - [sym_false] = ACTIONS(4555), - [sym_nil] = ACTIONS(4555), - [anon_sym_if] = ACTIONS(4555), - [anon_sym_DOLLARif] = ACTIONS(4555), - [anon_sym_match] = ACTIONS(4555), - [anon_sym_select] = ACTIONS(4555), - [anon_sym_lock] = ACTIONS(4555), - [anon_sym_rlock] = ACTIONS(4555), - [anon_sym_unsafe] = ACTIONS(4555), - [anon_sym_sql] = ACTIONS(4555), - [sym_int_literal] = ACTIONS(4555), - [sym_float_literal] = ACTIONS(4555), - [sym_rune_literal] = ACTIONS(4555), - [sym_pseudo_compile_time_identifier] = ACTIONS(4555), - [anon_sym_shared] = ACTIONS(4555), - [anon_sym_map_LBRACK] = ACTIONS(4555), - [anon_sym_chan] = ACTIONS(4555), - [anon_sym_thread] = ACTIONS(4555), - [anon_sym_atomic] = ACTIONS(4555), - [anon_sym_assert] = ACTIONS(4555), - [anon_sym_defer] = ACTIONS(4555), - [anon_sym_goto] = ACTIONS(4555), - [anon_sym_break] = ACTIONS(4555), - [anon_sym_continue] = ACTIONS(4555), - [anon_sym_return] = ACTIONS(4555), - [anon_sym_DOLLARfor] = ACTIONS(4555), - [anon_sym_for] = ACTIONS(4555), - [anon_sym_POUND] = ACTIONS(4555), - [anon_sym_asm] = ACTIONS(4555), - [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), + [1607] = { + [sym_line_comment] = STATE(1607), + [sym_block_comment] = STATE(1607), + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2829), + [anon_sym_CR] = ACTIONS(2829), + [anon_sym_CR_LF] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym___global] = ACTIONS(2829), + [anon_sym_type] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_pub] = ACTIONS(2829), + [anon_sym_mut] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_QMARK] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_go] = ACTIONS(2829), + [anon_sym_spawn] = ACTIONS(2829), + [anon_sym_json_DOTdecode] = ACTIONS(2829), + [anon_sym_LBRACK2] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2829), + [sym_none] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_nil] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_DOLLARif] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_select] = ACTIONS(2829), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + [sym_rune_literal] = ACTIONS(2829), + [sym_pseudo_compile_time_identifier] = ACTIONS(2829), + [anon_sym_shared] = ACTIONS(2829), + [anon_sym_map_LBRACK] = ACTIONS(2829), + [anon_sym_chan] = ACTIONS(2829), + [anon_sym_thread] = ACTIONS(2829), + [anon_sym_atomic] = ACTIONS(2829), + [anon_sym_assert] = ACTIONS(2829), + [anon_sym_defer] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_DOLLARfor] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_asm] = ACTIONS(2829), + [anon_sym_AT_LBRACK] = ACTIONS(2829), + [sym___double_quote] = ACTIONS(2829), + [sym___single_quote] = ACTIONS(2829), + [sym___c_double_quote] = ACTIONS(2829), + [sym___c_single_quote] = ACTIONS(2829), + [sym___r_double_quote] = ACTIONS(2829), + [sym___r_single_quote] = ACTIONS(2829), }, - [1603] = { - [ts_builtin_sym_end] = ACTIONS(4557), - [sym_identifier] = ACTIONS(4559), - [anon_sym_LF] = ACTIONS(4559), - [anon_sym_CR] = ACTIONS(4559), - [anon_sym_CR_LF] = ACTIONS(4559), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_LBRACE] = ACTIONS(4559), - [anon_sym_const] = ACTIONS(4559), - [anon_sym_LPAREN] = ACTIONS(4559), - [anon_sym___global] = ACTIONS(4559), - [anon_sym_type] = ACTIONS(4559), - [anon_sym_fn] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4559), - [anon_sym_DASH] = ACTIONS(4559), - [anon_sym_STAR] = ACTIONS(4559), - [anon_sym_struct] = ACTIONS(4559), - [anon_sym_union] = ACTIONS(4559), - [anon_sym_pub] = ACTIONS(4559), - [anon_sym_mut] = ACTIONS(4559), - [anon_sym_enum] = ACTIONS(4559), - [anon_sym_interface] = ACTIONS(4559), - [anon_sym_QMARK] = ACTIONS(4559), - [anon_sym_BANG] = ACTIONS(4559), - [anon_sym_go] = ACTIONS(4559), - [anon_sym_spawn] = ACTIONS(4559), - [anon_sym_json_DOTdecode] = ACTIONS(4559), - [anon_sym_LBRACK2] = ACTIONS(4559), - [anon_sym_TILDE] = ACTIONS(4559), - [anon_sym_CARET] = ACTIONS(4559), - [anon_sym_AMP] = ACTIONS(4559), - [anon_sym_LT_DASH] = ACTIONS(4559), - [sym_none] = ACTIONS(4559), - [sym_true] = ACTIONS(4559), - [sym_false] = ACTIONS(4559), - [sym_nil] = ACTIONS(4559), - [anon_sym_if] = ACTIONS(4559), - [anon_sym_DOLLARif] = ACTIONS(4559), - [anon_sym_match] = ACTIONS(4559), - [anon_sym_select] = ACTIONS(4559), - [anon_sym_lock] = ACTIONS(4559), - [anon_sym_rlock] = ACTIONS(4559), - [anon_sym_unsafe] = ACTIONS(4559), - [anon_sym_sql] = ACTIONS(4559), - [sym_int_literal] = ACTIONS(4559), - [sym_float_literal] = ACTIONS(4559), - [sym_rune_literal] = ACTIONS(4559), - [sym_pseudo_compile_time_identifier] = ACTIONS(4559), - [anon_sym_shared] = ACTIONS(4559), - [anon_sym_map_LBRACK] = ACTIONS(4559), - [anon_sym_chan] = ACTIONS(4559), - [anon_sym_thread] = ACTIONS(4559), - [anon_sym_atomic] = ACTIONS(4559), - [anon_sym_assert] = ACTIONS(4559), - [anon_sym_defer] = ACTIONS(4559), - [anon_sym_goto] = ACTIONS(4559), - [anon_sym_break] = ACTIONS(4559), - [anon_sym_continue] = ACTIONS(4559), - [anon_sym_return] = ACTIONS(4559), - [anon_sym_DOLLARfor] = ACTIONS(4559), - [anon_sym_for] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(4559), - [anon_sym_asm] = ACTIONS(4559), - [anon_sym_AT_LBRACK] = ACTIONS(4559), - [sym___double_quote] = ACTIONS(4559), - [sym___single_quote] = ACTIONS(4559), - [sym___c_double_quote] = ACTIONS(4559), - [sym___c_single_quote] = ACTIONS(4559), - [sym___r_double_quote] = ACTIONS(4559), - [sym___r_single_quote] = ACTIONS(4559), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_const] = ACTIONS(4533), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym___global] = ACTIONS(4533), + [anon_sym_type] = ACTIONS(4533), + [anon_sym_fn] = ACTIONS(4533), + [anon_sym_PLUS] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_struct] = ACTIONS(4533), + [anon_sym_union] = ACTIONS(4533), + [anon_sym_pub] = ACTIONS(4533), + [anon_sym_mut] = ACTIONS(4533), + [anon_sym_enum] = ACTIONS(4533), + [anon_sym_interface] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_BANG] = ACTIONS(4533), + [anon_sym_go] = ACTIONS(4533), + [anon_sym_spawn] = ACTIONS(4533), + [anon_sym_json_DOTdecode] = ACTIONS(4533), + [anon_sym_LBRACK2] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_LT_DASH] = ACTIONS(4533), + [sym_none] = ACTIONS(4533), + [sym_true] = ACTIONS(4533), + [sym_false] = ACTIONS(4533), + [sym_nil] = ACTIONS(4533), + [anon_sym_if] = ACTIONS(4533), + [anon_sym_DOLLARif] = ACTIONS(4533), + [anon_sym_match] = ACTIONS(4533), + [anon_sym_select] = ACTIONS(4533), + [anon_sym_lock] = ACTIONS(4533), + [anon_sym_rlock] = ACTIONS(4533), + [anon_sym_unsafe] = ACTIONS(4533), + [anon_sym_sql] = ACTIONS(4533), + [sym_int_literal] = ACTIONS(4533), + [sym_float_literal] = ACTIONS(4533), + [sym_rune_literal] = ACTIONS(4533), + [sym_pseudo_compile_time_identifier] = ACTIONS(4533), + [anon_sym_shared] = ACTIONS(4533), + [anon_sym_map_LBRACK] = ACTIONS(4533), + [anon_sym_chan] = ACTIONS(4533), + [anon_sym_thread] = ACTIONS(4533), + [anon_sym_atomic] = ACTIONS(4533), + [anon_sym_assert] = ACTIONS(4533), + [anon_sym_defer] = ACTIONS(4533), + [anon_sym_goto] = ACTIONS(4533), + [anon_sym_break] = ACTIONS(4533), + [anon_sym_continue] = ACTIONS(4533), + [anon_sym_return] = ACTIONS(4533), + [anon_sym_DOLLARfor] = ACTIONS(4533), + [anon_sym_for] = ACTIONS(4533), + [anon_sym_POUND] = ACTIONS(4533), + [anon_sym_asm] = ACTIONS(4533), + [anon_sym_AT_LBRACK] = ACTIONS(4533), + [sym___double_quote] = ACTIONS(4533), + [sym___single_quote] = ACTIONS(4533), + [sym___c_double_quote] = ACTIONS(4533), + [sym___c_single_quote] = ACTIONS(4533), + [sym___r_double_quote] = ACTIONS(4533), + [sym___r_single_quote] = ACTIONS(4533), }, - [1604] = { - [ts_builtin_sym_end] = ACTIONS(4561), - [sym_identifier] = ACTIONS(4563), - [anon_sym_LF] = ACTIONS(4563), - [anon_sym_CR] = ACTIONS(4563), - [anon_sym_CR_LF] = ACTIONS(4563), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(4563), - [anon_sym_const] = ACTIONS(4563), - [anon_sym_LPAREN] = ACTIONS(4563), - [anon_sym___global] = ACTIONS(4563), - [anon_sym_type] = ACTIONS(4563), - [anon_sym_fn] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4563), - [anon_sym_DASH] = ACTIONS(4563), - [anon_sym_STAR] = ACTIONS(4563), - [anon_sym_struct] = ACTIONS(4563), - [anon_sym_union] = ACTIONS(4563), - [anon_sym_pub] = ACTIONS(4563), - [anon_sym_mut] = ACTIONS(4563), - [anon_sym_enum] = ACTIONS(4563), - [anon_sym_interface] = ACTIONS(4563), - [anon_sym_QMARK] = ACTIONS(4563), - [anon_sym_BANG] = ACTIONS(4563), - [anon_sym_go] = ACTIONS(4563), - [anon_sym_spawn] = ACTIONS(4563), - [anon_sym_json_DOTdecode] = ACTIONS(4563), - [anon_sym_LBRACK2] = ACTIONS(4563), - [anon_sym_TILDE] = ACTIONS(4563), - [anon_sym_CARET] = ACTIONS(4563), - [anon_sym_AMP] = ACTIONS(4563), - [anon_sym_LT_DASH] = ACTIONS(4563), - [sym_none] = ACTIONS(4563), - [sym_true] = ACTIONS(4563), - [sym_false] = ACTIONS(4563), - [sym_nil] = ACTIONS(4563), - [anon_sym_if] = ACTIONS(4563), - [anon_sym_DOLLARif] = ACTIONS(4563), - [anon_sym_match] = ACTIONS(4563), - [anon_sym_select] = ACTIONS(4563), - [anon_sym_lock] = ACTIONS(4563), - [anon_sym_rlock] = ACTIONS(4563), - [anon_sym_unsafe] = ACTIONS(4563), - [anon_sym_sql] = ACTIONS(4563), - [sym_int_literal] = ACTIONS(4563), - [sym_float_literal] = ACTIONS(4563), - [sym_rune_literal] = ACTIONS(4563), - [sym_pseudo_compile_time_identifier] = ACTIONS(4563), - [anon_sym_shared] = ACTIONS(4563), - [anon_sym_map_LBRACK] = ACTIONS(4563), - [anon_sym_chan] = ACTIONS(4563), - [anon_sym_thread] = ACTIONS(4563), - [anon_sym_atomic] = ACTIONS(4563), - [anon_sym_assert] = ACTIONS(4563), - [anon_sym_defer] = ACTIONS(4563), - [anon_sym_goto] = ACTIONS(4563), - [anon_sym_break] = ACTIONS(4563), - [anon_sym_continue] = ACTIONS(4563), - [anon_sym_return] = ACTIONS(4563), - [anon_sym_DOLLARfor] = ACTIONS(4563), - [anon_sym_for] = ACTIONS(4563), - [anon_sym_POUND] = ACTIONS(4563), - [anon_sym_asm] = ACTIONS(4563), - [anon_sym_AT_LBRACK] = ACTIONS(4563), - [sym___double_quote] = ACTIONS(4563), - [sym___single_quote] = ACTIONS(4563), - [sym___c_double_quote] = ACTIONS(4563), - [sym___c_single_quote] = ACTIONS(4563), - [sym___r_double_quote] = ACTIONS(4563), - [sym___r_single_quote] = ACTIONS(4563), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_const] = ACTIONS(4537), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym___global] = ACTIONS(4537), + [anon_sym_type] = ACTIONS(4537), + [anon_sym_fn] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4537), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_struct] = ACTIONS(4537), + [anon_sym_union] = ACTIONS(4537), + [anon_sym_pub] = ACTIONS(4537), + [anon_sym_mut] = ACTIONS(4537), + [anon_sym_enum] = ACTIONS(4537), + [anon_sym_interface] = ACTIONS(4537), + [anon_sym_QMARK] = ACTIONS(4537), + [anon_sym_BANG] = ACTIONS(4537), + [anon_sym_go] = ACTIONS(4537), + [anon_sym_spawn] = ACTIONS(4537), + [anon_sym_json_DOTdecode] = ACTIONS(4537), + [anon_sym_LBRACK2] = ACTIONS(4537), + [anon_sym_TILDE] = ACTIONS(4537), + [anon_sym_CARET] = ACTIONS(4537), + [anon_sym_AMP] = ACTIONS(4537), + [anon_sym_LT_DASH] = ACTIONS(4537), + [sym_none] = ACTIONS(4537), + [sym_true] = ACTIONS(4537), + [sym_false] = ACTIONS(4537), + [sym_nil] = ACTIONS(4537), + [anon_sym_if] = ACTIONS(4537), + [anon_sym_DOLLARif] = ACTIONS(4537), + [anon_sym_match] = ACTIONS(4537), + [anon_sym_select] = ACTIONS(4537), + [anon_sym_lock] = ACTIONS(4537), + [anon_sym_rlock] = ACTIONS(4537), + [anon_sym_unsafe] = ACTIONS(4537), + [anon_sym_sql] = ACTIONS(4537), + [sym_int_literal] = ACTIONS(4537), + [sym_float_literal] = ACTIONS(4537), + [sym_rune_literal] = ACTIONS(4537), + [sym_pseudo_compile_time_identifier] = ACTIONS(4537), + [anon_sym_shared] = ACTIONS(4537), + [anon_sym_map_LBRACK] = ACTIONS(4537), + [anon_sym_chan] = ACTIONS(4537), + [anon_sym_thread] = ACTIONS(4537), + [anon_sym_atomic] = ACTIONS(4537), + [anon_sym_assert] = ACTIONS(4537), + [anon_sym_defer] = ACTIONS(4537), + [anon_sym_goto] = ACTIONS(4537), + [anon_sym_break] = ACTIONS(4537), + [anon_sym_continue] = ACTIONS(4537), + [anon_sym_return] = ACTIONS(4537), + [anon_sym_DOLLARfor] = ACTIONS(4537), + [anon_sym_for] = ACTIONS(4537), + [anon_sym_POUND] = ACTIONS(4537), + [anon_sym_asm] = ACTIONS(4537), + [anon_sym_AT_LBRACK] = ACTIONS(4537), + [sym___double_quote] = ACTIONS(4537), + [sym___single_quote] = ACTIONS(4537), + [sym___c_double_quote] = ACTIONS(4537), + [sym___c_single_quote] = ACTIONS(4537), + [sym___r_double_quote] = ACTIONS(4537), + [sym___r_single_quote] = ACTIONS(4537), }, - [1605] = { - [ts_builtin_sym_end] = ACTIONS(4565), - [sym_identifier] = ACTIONS(4567), - [anon_sym_LF] = ACTIONS(4567), - [anon_sym_CR] = ACTIONS(4567), - [anon_sym_CR_LF] = ACTIONS(4567), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_const] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym___global] = ACTIONS(4567), - [anon_sym_type] = ACTIONS(4567), - [anon_sym_fn] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4567), - [anon_sym_STAR] = ACTIONS(4567), - [anon_sym_struct] = ACTIONS(4567), - [anon_sym_union] = ACTIONS(4567), - [anon_sym_pub] = ACTIONS(4567), - [anon_sym_mut] = ACTIONS(4567), - [anon_sym_enum] = ACTIONS(4567), - [anon_sym_interface] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_go] = ACTIONS(4567), - [anon_sym_spawn] = ACTIONS(4567), - [anon_sym_json_DOTdecode] = ACTIONS(4567), - [anon_sym_LBRACK2] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_CARET] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4567), - [anon_sym_LT_DASH] = ACTIONS(4567), - [sym_none] = ACTIONS(4567), - [sym_true] = ACTIONS(4567), - [sym_false] = ACTIONS(4567), - [sym_nil] = ACTIONS(4567), - [anon_sym_if] = ACTIONS(4567), - [anon_sym_DOLLARif] = ACTIONS(4567), - [anon_sym_match] = ACTIONS(4567), - [anon_sym_select] = ACTIONS(4567), - [anon_sym_lock] = ACTIONS(4567), - [anon_sym_rlock] = ACTIONS(4567), - [anon_sym_unsafe] = ACTIONS(4567), - [anon_sym_sql] = ACTIONS(4567), - [sym_int_literal] = ACTIONS(4567), - [sym_float_literal] = ACTIONS(4567), - [sym_rune_literal] = ACTIONS(4567), - [sym_pseudo_compile_time_identifier] = ACTIONS(4567), - [anon_sym_shared] = ACTIONS(4567), - [anon_sym_map_LBRACK] = ACTIONS(4567), - [anon_sym_chan] = ACTIONS(4567), - [anon_sym_thread] = ACTIONS(4567), - [anon_sym_atomic] = ACTIONS(4567), - [anon_sym_assert] = ACTIONS(4567), - [anon_sym_defer] = ACTIONS(4567), - [anon_sym_goto] = ACTIONS(4567), - [anon_sym_break] = ACTIONS(4567), - [anon_sym_continue] = ACTIONS(4567), - [anon_sym_return] = ACTIONS(4567), - [anon_sym_DOLLARfor] = ACTIONS(4567), - [anon_sym_for] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_asm] = ACTIONS(4567), - [anon_sym_AT_LBRACK] = ACTIONS(4567), - [sym___double_quote] = ACTIONS(4567), - [sym___single_quote] = ACTIONS(4567), - [sym___c_double_quote] = ACTIONS(4567), - [sym___c_single_quote] = ACTIONS(4567), - [sym___r_double_quote] = ACTIONS(4567), - [sym___r_single_quote] = ACTIONS(4567), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_const] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym___global] = ACTIONS(4541), + [anon_sym_type] = ACTIONS(4541), + [anon_sym_fn] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_STAR] = ACTIONS(4541), + [anon_sym_struct] = ACTIONS(4541), + [anon_sym_union] = ACTIONS(4541), + [anon_sym_pub] = ACTIONS(4541), + [anon_sym_mut] = ACTIONS(4541), + [anon_sym_enum] = ACTIONS(4541), + [anon_sym_interface] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_BANG] = ACTIONS(4541), + [anon_sym_go] = ACTIONS(4541), + [anon_sym_spawn] = ACTIONS(4541), + [anon_sym_json_DOTdecode] = ACTIONS(4541), + [anon_sym_LBRACK2] = ACTIONS(4541), + [anon_sym_TILDE] = ACTIONS(4541), + [anon_sym_CARET] = ACTIONS(4541), + [anon_sym_AMP] = ACTIONS(4541), + [anon_sym_LT_DASH] = ACTIONS(4541), + [sym_none] = ACTIONS(4541), + [sym_true] = ACTIONS(4541), + [sym_false] = ACTIONS(4541), + [sym_nil] = ACTIONS(4541), + [anon_sym_if] = ACTIONS(4541), + [anon_sym_DOLLARif] = ACTIONS(4541), + [anon_sym_match] = ACTIONS(4541), + [anon_sym_select] = ACTIONS(4541), + [anon_sym_lock] = ACTIONS(4541), + [anon_sym_rlock] = ACTIONS(4541), + [anon_sym_unsafe] = ACTIONS(4541), + [anon_sym_sql] = ACTIONS(4541), + [sym_int_literal] = ACTIONS(4541), + [sym_float_literal] = ACTIONS(4541), + [sym_rune_literal] = ACTIONS(4541), + [sym_pseudo_compile_time_identifier] = ACTIONS(4541), + [anon_sym_shared] = ACTIONS(4541), + [anon_sym_map_LBRACK] = ACTIONS(4541), + [anon_sym_chan] = ACTIONS(4541), + [anon_sym_thread] = ACTIONS(4541), + [anon_sym_atomic] = ACTIONS(4541), + [anon_sym_assert] = ACTIONS(4541), + [anon_sym_defer] = ACTIONS(4541), + [anon_sym_goto] = ACTIONS(4541), + [anon_sym_break] = ACTIONS(4541), + [anon_sym_continue] = ACTIONS(4541), + [anon_sym_return] = ACTIONS(4541), + [anon_sym_DOLLARfor] = ACTIONS(4541), + [anon_sym_for] = ACTIONS(4541), + [anon_sym_POUND] = ACTIONS(4541), + [anon_sym_asm] = ACTIONS(4541), + [anon_sym_AT_LBRACK] = ACTIONS(4541), + [sym___double_quote] = ACTIONS(4541), + [sym___single_quote] = ACTIONS(4541), + [sym___c_double_quote] = ACTIONS(4541), + [sym___c_single_quote] = ACTIONS(4541), + [sym___r_double_quote] = ACTIONS(4541), + [sym___r_single_quote] = ACTIONS(4541), }, - [1606] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(559), - [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(4569), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_GT_GT_GT] = ACTIONS(559), - [anon_sym_AMP_CARET] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_or] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(559), - [anon_sym_POUND_LBRACK] = ACTIONS(559), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(559), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(563), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4545), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_const] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym___global] = ACTIONS(4545), + [anon_sym_type] = ACTIONS(4545), + [anon_sym_fn] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4545), + [anon_sym_STAR] = ACTIONS(4545), + [anon_sym_struct] = ACTIONS(4545), + [anon_sym_union] = ACTIONS(4545), + [anon_sym_pub] = ACTIONS(4545), + [anon_sym_mut] = ACTIONS(4545), + [anon_sym_enum] = ACTIONS(4545), + [anon_sym_interface] = ACTIONS(4545), + [anon_sym_QMARK] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4545), + [anon_sym_go] = ACTIONS(4545), + [anon_sym_spawn] = ACTIONS(4545), + [anon_sym_json_DOTdecode] = ACTIONS(4545), + [anon_sym_LBRACK2] = ACTIONS(4545), + [anon_sym_TILDE] = ACTIONS(4545), + [anon_sym_CARET] = ACTIONS(4545), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_LT_DASH] = ACTIONS(4545), + [sym_none] = ACTIONS(4545), + [sym_true] = ACTIONS(4545), + [sym_false] = ACTIONS(4545), + [sym_nil] = ACTIONS(4545), + [anon_sym_if] = ACTIONS(4545), + [anon_sym_DOLLARif] = ACTIONS(4545), + [anon_sym_match] = ACTIONS(4545), + [anon_sym_select] = ACTIONS(4545), + [anon_sym_lock] = ACTIONS(4545), + [anon_sym_rlock] = ACTIONS(4545), + [anon_sym_unsafe] = ACTIONS(4545), + [anon_sym_sql] = ACTIONS(4545), + [sym_int_literal] = ACTIONS(4545), + [sym_float_literal] = ACTIONS(4545), + [sym_rune_literal] = ACTIONS(4545), + [sym_pseudo_compile_time_identifier] = ACTIONS(4545), + [anon_sym_shared] = ACTIONS(4545), + [anon_sym_map_LBRACK] = ACTIONS(4545), + [anon_sym_chan] = ACTIONS(4545), + [anon_sym_thread] = ACTIONS(4545), + [anon_sym_atomic] = ACTIONS(4545), + [anon_sym_assert] = ACTIONS(4545), + [anon_sym_defer] = ACTIONS(4545), + [anon_sym_goto] = ACTIONS(4545), + [anon_sym_break] = ACTIONS(4545), + [anon_sym_continue] = ACTIONS(4545), + [anon_sym_return] = ACTIONS(4545), + [anon_sym_DOLLARfor] = ACTIONS(4545), + [anon_sym_for] = ACTIONS(4545), + [anon_sym_POUND] = ACTIONS(4545), + [anon_sym_asm] = ACTIONS(4545), + [anon_sym_AT_LBRACK] = ACTIONS(4545), + [sym___double_quote] = ACTIONS(4545), + [sym___single_quote] = ACTIONS(4545), + [sym___c_double_quote] = ACTIONS(4545), + [sym___c_single_quote] = ACTIONS(4545), + [sym___r_double_quote] = ACTIONS(4545), + [sym___r_single_quote] = ACTIONS(4545), }, - [1607] = { - [sym_reference_expression] = STATE(4533), - [sym_type_reference_expression] = STATE(2652), - [sym_plain_type] = STATE(2732), - [sym__plain_type_without_special] = STATE(2707), - [sym_anon_struct_type] = STATE(2708), - [sym_multi_return_type] = STATE(2707), - [sym_result_type] = STATE(2707), - [sym_option_type] = STATE(2707), - [sym_qualified_type] = STATE(2652), - [sym_fixed_array_type] = STATE(2708), - [sym_array_type] = STATE(2708), - [sym_pointer_type] = STATE(2708), - [sym_wrong_pointer_type] = STATE(2708), - [sym_map_type] = STATE(2708), - [sym_channel_type] = STATE(2708), - [sym_shared_type] = STATE(2708), - [sym_thread_type] = STATE(2708), - [sym_atomic_type] = STATE(2708), - [sym_generic_type] = STATE(2708), - [sym_function_type] = STATE(2708), - [sym_identifier] = ACTIONS(4571), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(4573), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(581), - [anon_sym_BANG_EQ] = ACTIONS(581), - [anon_sym_LT_EQ] = ACTIONS(581), - [anon_sym_GT_EQ] = ACTIONS(581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_struct] = ACTIONS(4579), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [anon_sym_QMARK] = ACTIONS(4581), - [anon_sym_BANG] = ACTIONS(4583), - [anon_sym_LBRACK2] = ACTIONS(4585), - [anon_sym_CARET] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(4587), - [anon_sym_LT_LT] = ACTIONS(581), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(581), - [anon_sym_AMP_CARET] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(581), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(581), - [anon_sym_POUND_LBRACK] = ACTIONS(581), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(581), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(581), - [anon_sym_shared] = ACTIONS(4589), - [anon_sym_map_LBRACK] = ACTIONS(4591), - [anon_sym_chan] = ACTIONS(4593), - [anon_sym_thread] = ACTIONS(4595), - [anon_sym_atomic] = ACTIONS(4597), - [anon_sym_DOT_DOT] = ACTIONS(585), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4549), + [anon_sym_const] = ACTIONS(4549), + [anon_sym_LPAREN] = ACTIONS(4549), + [anon_sym___global] = ACTIONS(4549), + [anon_sym_type] = ACTIONS(4549), + [anon_sym_fn] = ACTIONS(4549), + [anon_sym_PLUS] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_STAR] = ACTIONS(4549), + [anon_sym_struct] = ACTIONS(4549), + [anon_sym_union] = ACTIONS(4549), + [anon_sym_pub] = ACTIONS(4549), + [anon_sym_mut] = ACTIONS(4549), + [anon_sym_enum] = ACTIONS(4549), + [anon_sym_interface] = ACTIONS(4549), + [anon_sym_QMARK] = ACTIONS(4549), + [anon_sym_BANG] = ACTIONS(4549), + [anon_sym_go] = ACTIONS(4549), + [anon_sym_spawn] = ACTIONS(4549), + [anon_sym_json_DOTdecode] = ACTIONS(4549), + [anon_sym_LBRACK2] = ACTIONS(4549), + [anon_sym_TILDE] = ACTIONS(4549), + [anon_sym_CARET] = ACTIONS(4549), + [anon_sym_AMP] = ACTIONS(4549), + [anon_sym_LT_DASH] = ACTIONS(4549), + [sym_none] = ACTIONS(4549), + [sym_true] = ACTIONS(4549), + [sym_false] = ACTIONS(4549), + [sym_nil] = ACTIONS(4549), + [anon_sym_if] = ACTIONS(4549), + [anon_sym_DOLLARif] = ACTIONS(4549), + [anon_sym_match] = ACTIONS(4549), + [anon_sym_select] = ACTIONS(4549), + [anon_sym_lock] = ACTIONS(4549), + [anon_sym_rlock] = ACTIONS(4549), + [anon_sym_unsafe] = ACTIONS(4549), + [anon_sym_sql] = ACTIONS(4549), + [sym_int_literal] = ACTIONS(4549), + [sym_float_literal] = ACTIONS(4549), + [sym_rune_literal] = ACTIONS(4549), + [sym_pseudo_compile_time_identifier] = ACTIONS(4549), + [anon_sym_shared] = ACTIONS(4549), + [anon_sym_map_LBRACK] = ACTIONS(4549), + [anon_sym_chan] = ACTIONS(4549), + [anon_sym_thread] = ACTIONS(4549), + [anon_sym_atomic] = ACTIONS(4549), + [anon_sym_assert] = ACTIONS(4549), + [anon_sym_defer] = ACTIONS(4549), + [anon_sym_goto] = ACTIONS(4549), + [anon_sym_break] = ACTIONS(4549), + [anon_sym_continue] = ACTIONS(4549), + [anon_sym_return] = ACTIONS(4549), + [anon_sym_DOLLARfor] = ACTIONS(4549), + [anon_sym_for] = ACTIONS(4549), + [anon_sym_POUND] = ACTIONS(4549), + [anon_sym_asm] = ACTIONS(4549), + [anon_sym_AT_LBRACK] = ACTIONS(4549), + [sym___double_quote] = ACTIONS(4549), + [sym___single_quote] = ACTIONS(4549), + [sym___c_double_quote] = ACTIONS(4549), + [sym___c_single_quote] = ACTIONS(4549), + [sym___r_double_quote] = ACTIONS(4549), + [sym___r_single_quote] = ACTIONS(4549), }, - [1608] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2384), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_const] = ACTIONS(4553), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym___global] = ACTIONS(4553), + [anon_sym_type] = ACTIONS(4553), + [anon_sym_fn] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_STAR] = ACTIONS(4553), + [anon_sym_struct] = ACTIONS(4553), + [anon_sym_union] = ACTIONS(4553), + [anon_sym_pub] = ACTIONS(4553), + [anon_sym_mut] = ACTIONS(4553), + [anon_sym_enum] = ACTIONS(4553), + [anon_sym_interface] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4553), + [anon_sym_BANG] = ACTIONS(4553), + [anon_sym_go] = ACTIONS(4553), + [anon_sym_spawn] = ACTIONS(4553), + [anon_sym_json_DOTdecode] = ACTIONS(4553), + [anon_sym_LBRACK2] = ACTIONS(4553), + [anon_sym_TILDE] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_LT_DASH] = ACTIONS(4553), + [sym_none] = ACTIONS(4553), + [sym_true] = ACTIONS(4553), + [sym_false] = ACTIONS(4553), + [sym_nil] = ACTIONS(4553), + [anon_sym_if] = ACTIONS(4553), + [anon_sym_DOLLARif] = ACTIONS(4553), + [anon_sym_match] = ACTIONS(4553), + [anon_sym_select] = ACTIONS(4553), + [anon_sym_lock] = ACTIONS(4553), + [anon_sym_rlock] = ACTIONS(4553), + [anon_sym_unsafe] = ACTIONS(4553), + [anon_sym_sql] = ACTIONS(4553), + [sym_int_literal] = ACTIONS(4553), + [sym_float_literal] = ACTIONS(4553), + [sym_rune_literal] = ACTIONS(4553), + [sym_pseudo_compile_time_identifier] = ACTIONS(4553), + [anon_sym_shared] = ACTIONS(4553), + [anon_sym_map_LBRACK] = ACTIONS(4553), + [anon_sym_chan] = ACTIONS(4553), + [anon_sym_thread] = ACTIONS(4553), + [anon_sym_atomic] = ACTIONS(4553), + [anon_sym_assert] = ACTIONS(4553), + [anon_sym_defer] = ACTIONS(4553), + [anon_sym_goto] = ACTIONS(4553), + [anon_sym_break] = ACTIONS(4553), + [anon_sym_continue] = ACTIONS(4553), + [anon_sym_return] = ACTIONS(4553), + [anon_sym_DOLLARfor] = ACTIONS(4553), + [anon_sym_for] = ACTIONS(4553), + [anon_sym_POUND] = ACTIONS(4553), + [anon_sym_asm] = ACTIONS(4553), + [anon_sym_AT_LBRACK] = ACTIONS(4553), + [sym___double_quote] = ACTIONS(4553), + [sym___single_quote] = ACTIONS(4553), + [sym___c_double_quote] = ACTIONS(4553), + [sym___c_single_quote] = ACTIONS(4553), + [sym___r_double_quote] = ACTIONS(4553), + [sym___r_single_quote] = ACTIONS(4553), }, - [1609] = { - [sym_reference_expression] = STATE(4533), - [sym_type_reference_expression] = STATE(2652), - [sym_plain_type] = STATE(2728), - [sym__plain_type_without_special] = STATE(2707), - [sym_anon_struct_type] = STATE(2708), - [sym_multi_return_type] = STATE(2707), - [sym_result_type] = STATE(2707), - [sym_option_type] = STATE(2707), - [sym_qualified_type] = STATE(2652), - [sym_fixed_array_type] = STATE(2708), - [sym_array_type] = STATE(2708), - [sym_pointer_type] = STATE(2708), - [sym_wrong_pointer_type] = STATE(2708), - [sym_map_type] = STATE(2708), - [sym_channel_type] = STATE(2708), - [sym_shared_type] = STATE(2708), - [sym_thread_type] = STATE(2708), - [sym_atomic_type] = STATE(2708), - [sym_generic_type] = STATE(2708), - [sym_function_type] = STATE(2708), - [sym_identifier] = ACTIONS(4571), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(4573), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(4577), - [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(4579), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(4581), - [anon_sym_BANG] = ACTIONS(4583), - [anon_sym_LBRACK2] = ACTIONS(4585), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(4587), - [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(4589), - [anon_sym_map_LBRACK] = ACTIONS(4591), - [anon_sym_chan] = ACTIONS(4593), - [anon_sym_thread] = ACTIONS(4595), - [anon_sym_atomic] = ACTIONS(4597), - [anon_sym_DOT_DOT] = ACTIONS(619), + [1614] = { + [sym_line_comment] = STATE(1614), + [sym_block_comment] = STATE(1614), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(611), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(603), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(619), + [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(603), }, - [1610] = { - [sym_reference_expression] = STATE(4533), - [sym_type_reference_expression] = STATE(2652), - [sym_plain_type] = STATE(2717), - [sym__plain_type_without_special] = STATE(2707), - [sym_anon_struct_type] = STATE(2708), - [sym_multi_return_type] = STATE(2707), - [sym_result_type] = STATE(2707), - [sym_option_type] = STATE(2707), - [sym_qualified_type] = STATE(2652), - [sym_fixed_array_type] = STATE(2708), - [sym_array_type] = STATE(2708), - [sym_pointer_type] = STATE(2708), - [sym_wrong_pointer_type] = STATE(2708), - [sym_map_type] = STATE(2708), - [sym_channel_type] = STATE(2708), - [sym_shared_type] = STATE(2708), - [sym_thread_type] = STATE(2708), - [sym_atomic_type] = STATE(2708), - [sym_generic_type] = STATE(2708), - [sym_function_type] = STATE(2708), - [sym_identifier] = ACTIONS(4571), - [sym_comment] = ACTIONS(3), + [1615] = { + [sym_line_comment] = STATE(1615), + [sym_block_comment] = STATE(1615), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2476), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [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(611), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LBRACK2] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(565), + [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(565), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(565), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(565), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(619), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1616] = { + [sym_line_comment] = STATE(1616), + [sym_block_comment] = STATE(1616), + [sym_reference_expression] = STATE(4574), + [sym_type_reference_expression] = STATE(2686), + [sym_plain_type] = STATE(2773), + [sym__plain_type_without_special] = STATE(2746), + [sym_anon_struct_type] = STATE(2747), + [sym_multi_return_type] = STATE(2746), + [sym_result_type] = STATE(2746), + [sym_option_type] = STATE(2746), + [sym_qualified_type] = STATE(2686), + [sym_fixed_array_type] = STATE(2747), + [sym_array_type] = STATE(2747), + [sym_pointer_type] = STATE(2747), + [sym_wrong_pointer_type] = STATE(2747), + [sym_map_type] = STATE(2747), + [sym_channel_type] = STATE(2747), + [sym_shared_type] = STATE(2747), + [sym_thread_type] = STATE(2747), + [sym_atomic_type] = STATE(2747), + [sym_generic_type] = STATE(2747), + [sym_function_type] = STATE(2747), + [sym_identifier] = ACTIONS(4557), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(623), [anon_sym_DOT] = ACTIONS(623), [anon_sym_as] = ACTIONS(623), [anon_sym_LBRACE] = ACTIONS(621), [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4559), [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(4575), + [anon_sym_fn] = ACTIONS(4561), [anon_sym_PLUS] = ACTIONS(623), [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(4563), [anon_sym_PERCENT] = ACTIONS(621), [anon_sym_LT] = ACTIONS(623), [anon_sym_GT] = ACTIONS(623), @@ -190514,14 +192982,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(621), [anon_sym_DOT_DOT_DOT] = ACTIONS(621), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(4579), + [anon_sym_struct] = ACTIONS(4565), [anon_sym_PLUS_PLUS] = ACTIONS(621), [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(4581), - [anon_sym_BANG] = ACTIONS(4583), - [anon_sym_LBRACK2] = ACTIONS(4585), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_LBRACK2] = ACTIONS(4571), [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4573), [anon_sym_LT_LT] = ACTIONS(621), [anon_sym_GT_GT] = ACTIONS(623), [anon_sym_GT_GT_GT] = ACTIONS(621), @@ -190535,55 +193003,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(621), [anon_sym_in] = ACTIONS(623), [anon_sym_BANGin] = ACTIONS(621), + [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(623), + }, + [1617] = { + [sym_line_comment] = STATE(1617), + [sym_block_comment] = STATE(1617), + [sym_reference_expression] = STATE(4574), + [sym_type_reference_expression] = STATE(2686), + [sym_plain_type] = STATE(2769), + [sym__plain_type_without_special] = STATE(2746), + [sym_anon_struct_type] = STATE(2747), + [sym_multi_return_type] = STATE(2746), + [sym_result_type] = STATE(2746), + [sym_option_type] = STATE(2746), + [sym_qualified_type] = STATE(2686), + [sym_fixed_array_type] = STATE(2747), + [sym_array_type] = STATE(2747), + [sym_pointer_type] = STATE(2747), + [sym_wrong_pointer_type] = STATE(2747), + [sym_map_type] = STATE(2747), + [sym_channel_type] = STATE(2747), + [sym_shared_type] = STATE(2747), + [sym_thread_type] = STATE(2747), + [sym_atomic_type] = STATE(2747), + [sym_generic_type] = STATE(2747), + [sym_function_type] = STATE(2747), + [sym_identifier] = ACTIONS(4557), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_as] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [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(567), + [anon_sym_struct] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_LBRACK2] = ACTIONS(4571), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(4573), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(571), + [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(571), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_is] = ACTIONS(571), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(571), + [anon_sym_BANGin] = ACTIONS(567), + [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(571), + }, + [1618] = { + [sym_line_comment] = STATE(1618), + [sym_block_comment] = STATE(1618), + [sym_reference_expression] = STATE(4574), + [sym_type_reference_expression] = STATE(2686), + [sym_plain_type] = STATE(2757), + [sym__plain_type_without_special] = STATE(2746), + [sym_anon_struct_type] = STATE(2747), + [sym_multi_return_type] = STATE(2746), + [sym_result_type] = STATE(2746), + [sym_option_type] = STATE(2746), + [sym_qualified_type] = STATE(2686), + [sym_fixed_array_type] = STATE(2747), + [sym_array_type] = STATE(2747), + [sym_pointer_type] = STATE(2747), + [sym_wrong_pointer_type] = STATE(2747), + [sym_map_type] = STATE(2747), + [sym_channel_type] = STATE(2747), + [sym_shared_type] = STATE(2747), + [sym_thread_type] = STATE(2747), + [sym_atomic_type] = STATE(2747), + [sym_generic_type] = STATE(2747), + [sym_function_type] = STATE(2747), + [sym_identifier] = ACTIONS(4557), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(4563), + [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(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_LBRACK2] = ACTIONS(4571), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(4573), + [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(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(627), + }, + [1619] = { + [sym_line_comment] = STATE(1619), + [sym_block_comment] = STATE(1619), + [ts_builtin_sym_end] = ACTIONS(4585), + [sym_identifier] = ACTIONS(4587), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2394), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(4589), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_fn] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4591), + [anon_sym_STAR] = ACTIONS(4591), + [anon_sym_struct] = ACTIONS(4589), + [anon_sym_mut] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_go] = ACTIONS(4589), + [anon_sym_spawn] = ACTIONS(4589), + [anon_sym_json_DOTdecode] = ACTIONS(4591), + [anon_sym_LBRACK2] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4591), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_AMP] = ACTIONS(4591), + [anon_sym_LT_DASH] = ACTIONS(4591), + [sym_none] = ACTIONS(4589), + [sym_true] = ACTIONS(4589), + [sym_false] = ACTIONS(4589), + [sym_nil] = ACTIONS(4589), + [anon_sym_if] = ACTIONS(4589), + [anon_sym_DOLLARif] = ACTIONS(4589), + [anon_sym_match] = ACTIONS(4589), + [anon_sym_select] = ACTIONS(4589), + [anon_sym_lock] = ACTIONS(4589), + [anon_sym_rlock] = ACTIONS(4589), + [anon_sym_unsafe] = ACTIONS(4589), + [anon_sym_sql] = ACTIONS(4589), + [sym_int_literal] = ACTIONS(4589), + [sym_float_literal] = ACTIONS(4591), + [sym_rune_literal] = ACTIONS(4591), + [sym_pseudo_compile_time_identifier] = ACTIONS(4589), [anon_sym_shared] = ACTIONS(4589), [anon_sym_map_LBRACK] = ACTIONS(4591), - [anon_sym_chan] = ACTIONS(4593), + [anon_sym_chan] = ACTIONS(4589), + [anon_sym_thread] = ACTIONS(4589), + [anon_sym_atomic] = ACTIONS(4589), + [sym___double_quote] = ACTIONS(4591), + [sym___single_quote] = ACTIONS(4591), + [sym___c_double_quote] = ACTIONS(4591), + [sym___c_single_quote] = ACTIONS(4591), + [sym___r_double_quote] = ACTIONS(4591), + [sym___r_single_quote] = ACTIONS(4591), + }, + [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), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4593), + [anon_sym_const] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym___global] = ACTIONS(4595), + [anon_sym_type] = ACTIONS(4595), + [anon_sym_fn] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4593), + [anon_sym_struct] = ACTIONS(4595), + [anon_sym_union] = ACTIONS(4595), + [anon_sym_pub] = ACTIONS(4595), + [anon_sym_mut] = ACTIONS(4595), + [anon_sym_enum] = ACTIONS(4595), + [anon_sym_interface] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4593), + [anon_sym_go] = ACTIONS(4595), + [anon_sym_spawn] = ACTIONS(4595), + [anon_sym_json_DOTdecode] = ACTIONS(4593), + [anon_sym_LBRACK2] = ACTIONS(4593), + [anon_sym_TILDE] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [anon_sym_LT_DASH] = ACTIONS(4593), + [sym_none] = ACTIONS(4595), + [sym_true] = ACTIONS(4595), + [sym_false] = ACTIONS(4595), + [sym_nil] = ACTIONS(4595), + [anon_sym_if] = ACTIONS(4595), + [anon_sym_DOLLARif] = ACTIONS(4595), + [anon_sym_match] = ACTIONS(4595), + [anon_sym_select] = ACTIONS(4595), + [anon_sym_lock] = ACTIONS(4595), + [anon_sym_rlock] = ACTIONS(4595), + [anon_sym_unsafe] = ACTIONS(4595), + [anon_sym_sql] = ACTIONS(4595), + [sym_int_literal] = ACTIONS(4595), + [sym_float_literal] = ACTIONS(4593), + [sym_rune_literal] = ACTIONS(4593), + [sym_pseudo_compile_time_identifier] = ACTIONS(4595), + [anon_sym_shared] = ACTIONS(4595), + [anon_sym_map_LBRACK] = ACTIONS(4593), + [anon_sym_chan] = ACTIONS(4595), [anon_sym_thread] = ACTIONS(4595), - [anon_sym_atomic] = ACTIONS(4597), - [anon_sym_DOT_DOT] = ACTIONS(623), + [anon_sym_atomic] = ACTIONS(4595), + [anon_sym_assert] = ACTIONS(4595), + [anon_sym_defer] = ACTIONS(4595), + [anon_sym_goto] = ACTIONS(4595), + [anon_sym_break] = ACTIONS(4595), + [anon_sym_continue] = ACTIONS(4595), + [anon_sym_return] = ACTIONS(4595), + [anon_sym_DOLLARfor] = ACTIONS(4595), + [anon_sym_for] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + [anon_sym_asm] = ACTIONS(4595), + [anon_sym_AT_LBRACK] = ACTIONS(4593), + [sym___double_quote] = ACTIONS(4593), + [sym___single_quote] = ACTIONS(4593), + [sym___c_double_quote] = ACTIONS(4593), + [sym___c_single_quote] = ACTIONS(4593), + [sym___r_double_quote] = ACTIONS(4593), + [sym___r_single_quote] = ACTIONS(4593), }, - [1611] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2438), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), + [1622] = { + [sym_line_comment] = STATE(1622), + [sym_block_comment] = STATE(1622), + [ts_builtin_sym_end] = ACTIONS(4597), [sym_identifier] = ACTIONS(4599), - [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4599), [anon_sym_DOT] = ACTIONS(4599), - [anon_sym_LBRACE] = ACTIONS(4601), - [anon_sym_LPAREN] = ACTIONS(4601), + [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(4601), - [anon_sym_DASH] = ACTIONS(4601), - [anon_sym_STAR] = ACTIONS(4601), + [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_QMARK] = ACTIONS(4601), - [anon_sym_BANG] = ACTIONS(4601), + [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(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), + [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), @@ -190597,14 +193425,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4599), [anon_sym_sql] = ACTIONS(4599), [sym_int_literal] = ACTIONS(4599), - [sym_float_literal] = ACTIONS(4601), - [sym_rune_literal] = ACTIONS(4601), + [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(4601), + [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_block_comment] = STATE(1623), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_as] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(611), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(603), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(619), + [anon_sym_map_LBRACK] = ACTIONS(85), + [anon_sym_chan] = ACTIONS(87), + [anon_sym_thread] = ACTIONS(89), + [anon_sym_atomic] = ACTIONS(91), + }, + [1624] = { + [sym_line_comment] = STATE(1624), + [sym_block_comment] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(4601), + [sym_identifier] = ACTIONS(4603), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [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), @@ -190612,177 +193597,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4601), [sym___r_single_quote] = ACTIONS(4601), }, - [1612] = { - [ts_builtin_sym_end] = ACTIONS(4603), - [sym_identifier] = ACTIONS(4605), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4605), - [anon_sym_DOT] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4603), - [anon_sym_const] = ACTIONS(4605), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym___global] = ACTIONS(4605), - [anon_sym_type] = ACTIONS(4605), - [anon_sym_fn] = ACTIONS(4605), - [anon_sym_PLUS] = ACTIONS(4603), - [anon_sym_DASH] = ACTIONS(4603), - [anon_sym_STAR] = ACTIONS(4603), - [anon_sym_struct] = ACTIONS(4605), - [anon_sym_union] = ACTIONS(4605), - [anon_sym_pub] = ACTIONS(4605), - [anon_sym_mut] = ACTIONS(4605), - [anon_sym_enum] = ACTIONS(4605), - [anon_sym_interface] = ACTIONS(4605), - [anon_sym_QMARK] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(4603), - [anon_sym_go] = ACTIONS(4605), - [anon_sym_spawn] = ACTIONS(4605), - [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(4605), - [sym_true] = ACTIONS(4605), - [sym_false] = ACTIONS(4605), - [sym_nil] = ACTIONS(4605), - [anon_sym_if] = ACTIONS(4605), - [anon_sym_DOLLARif] = ACTIONS(4605), - [anon_sym_match] = ACTIONS(4605), - [anon_sym_select] = ACTIONS(4605), - [anon_sym_lock] = ACTIONS(4605), - [anon_sym_rlock] = ACTIONS(4605), - [anon_sym_unsafe] = ACTIONS(4605), - [anon_sym_sql] = ACTIONS(4605), - [sym_int_literal] = ACTIONS(4605), - [sym_float_literal] = ACTIONS(4603), - [sym_rune_literal] = ACTIONS(4603), - [sym_pseudo_compile_time_identifier] = ACTIONS(4605), - [anon_sym_shared] = ACTIONS(4605), - [anon_sym_map_LBRACK] = ACTIONS(4603), - [anon_sym_chan] = ACTIONS(4605), - [anon_sym_thread] = ACTIONS(4605), - [anon_sym_atomic] = ACTIONS(4605), - [anon_sym_assert] = ACTIONS(4605), - [anon_sym_defer] = ACTIONS(4605), - [anon_sym_goto] = ACTIONS(4605), - [anon_sym_break] = ACTIONS(4605), - [anon_sym_continue] = ACTIONS(4605), - [anon_sym_return] = ACTIONS(4605), - [anon_sym_DOLLARfor] = ACTIONS(4605), - [anon_sym_for] = ACTIONS(4605), - [anon_sym_POUND] = ACTIONS(4603), - [anon_sym_asm] = ACTIONS(4605), - [anon_sym_AT_LBRACK] = ACTIONS(4603), - [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), - }, - [1613] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_as] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(559), - [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(4607), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_GT_GT_GT] = ACTIONS(559), - [anon_sym_AMP_CARET] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_or] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(559), - [anon_sym_POUND_LBRACK] = ACTIONS(559), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(559), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(559), - [anon_sym_COLON_EQ] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1614] = { - [ts_builtin_sym_end] = ACTIONS(4609), + [1625] = { + [sym_line_comment] = STATE(1625), + [sym_block_comment] = STATE(1625), + [ts_builtin_sym_end] = ACTIONS(4605), + [sym_identifier] = ACTIONS(4607), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = 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), + }, + [1626] = { + [sym_line_comment] = STATE(1626), + [sym_block_comment] = STATE(1626), + [sym_reference_expression] = STATE(4652), + [sym_type_reference_expression] = STATE(3557), + [sym_plain_type] = STATE(2461), + [sym__plain_type_without_special] = STATE(2446), + [sym_anon_struct_type] = STATE(2462), + [sym_multi_return_type] = STATE(2446), + [sym_result_type] = STATE(2446), + [sym_option_type] = STATE(2446), + [sym_qualified_type] = STATE(3557), + [sym_fixed_array_type] = STATE(2462), + [sym_array_type] = STATE(2462), + [sym_pointer_type] = STATE(2462), + [sym_wrong_pointer_type] = STATE(2462), + [sym_map_type] = STATE(2462), + [sym_channel_type] = STATE(2462), + [sym_shared_type] = STATE(2462), + [sym_thread_type] = STATE(2462), + [sym_atomic_type] = STATE(2462), + [sym_generic_type] = STATE(2462), + [sym_function_type] = STATE(2462), + [sym_identifier] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_as] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(603), + [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(611), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4609), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(603), + [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(603), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(603), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(603), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(619), + [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), + [sym_block_comment] = STATE(1627), + [ts_builtin_sym_end] = ACTIONS(135), [sym_identifier] = ACTIONS(4611), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(4609), + [anon_sym_LBRACE] = ACTIONS(135), [anon_sym_const] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(135), [anon_sym___global] = ACTIONS(4611), [anon_sym_type] = ACTIONS(4611), [anon_sym_fn] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), + [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(4609), - [anon_sym_BANG] = ACTIONS(4609), + [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(4609), - [anon_sym_LBRACK2] = ACTIONS(4609), - [anon_sym_TILDE] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym_AMP] = ACTIONS(4609), - [anon_sym_LT_DASH] = ACTIONS(4609), + [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), @@ -190796,11 +193789,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4611), [anon_sym_sql] = ACTIONS(4611), [sym_int_literal] = ACTIONS(4611), - [sym_float_literal] = ACTIONS(4609), - [sym_rune_literal] = ACTIONS(4609), + [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(4609), + [anon_sym_map_LBRACK] = ACTIONS(135), [anon_sym_chan] = ACTIONS(4611), [anon_sym_thread] = ACTIONS(4611), [anon_sym_atomic] = ACTIONS(4611), @@ -190812,217 +193805,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4611), [anon_sym_DOLLARfor] = ACTIONS(4611), [anon_sym_for] = ACTIONS(4611), - [anon_sym_POUND] = ACTIONS(4609), - [anon_sym_asm] = ACTIONS(4611), - [anon_sym_AT_LBRACK] = ACTIONS(4609), - [sym___double_quote] = ACTIONS(4609), - [sym___single_quote] = ACTIONS(4609), - [sym___c_double_quote] = ACTIONS(4609), - [sym___c_single_quote] = ACTIONS(4609), - [sym___r_double_quote] = ACTIONS(4609), - [sym___r_single_quote] = ACTIONS(4609), - }, - [1615] = { - [ts_builtin_sym_end] = ACTIONS(4613), - [sym_identifier] = ACTIONS(4615), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4615), - [anon_sym_DOT] = ACTIONS(4615), - [anon_sym_LBRACE] = ACTIONS(4613), - [anon_sym_const] = ACTIONS(4615), - [anon_sym_LPAREN] = ACTIONS(4613), - [anon_sym___global] = ACTIONS(4615), - [anon_sym_type] = ACTIONS(4615), - [anon_sym_fn] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_struct] = ACTIONS(4615), - [anon_sym_union] = ACTIONS(4615), - [anon_sym_pub] = ACTIONS(4615), - [anon_sym_mut] = ACTIONS(4615), - [anon_sym_enum] = ACTIONS(4615), - [anon_sym_interface] = ACTIONS(4615), - [anon_sym_QMARK] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_go] = ACTIONS(4615), - [anon_sym_spawn] = ACTIONS(4615), - [anon_sym_json_DOTdecode] = ACTIONS(4613), - [anon_sym_LBRACK2] = ACTIONS(4613), - [anon_sym_TILDE] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym_AMP] = ACTIONS(4613), - [anon_sym_LT_DASH] = ACTIONS(4613), - [sym_none] = ACTIONS(4615), - [sym_true] = ACTIONS(4615), - [sym_false] = ACTIONS(4615), - [sym_nil] = ACTIONS(4615), - [anon_sym_if] = ACTIONS(4615), - [anon_sym_DOLLARif] = ACTIONS(4615), - [anon_sym_match] = ACTIONS(4615), - [anon_sym_select] = ACTIONS(4615), - [anon_sym_lock] = ACTIONS(4615), - [anon_sym_rlock] = ACTIONS(4615), - [anon_sym_unsafe] = ACTIONS(4615), - [anon_sym_sql] = ACTIONS(4615), - [sym_int_literal] = ACTIONS(4615), - [sym_float_literal] = ACTIONS(4613), - [sym_rune_literal] = ACTIONS(4613), - [sym_pseudo_compile_time_identifier] = ACTIONS(4615), - [anon_sym_shared] = ACTIONS(4615), - [anon_sym_map_LBRACK] = ACTIONS(4613), - [anon_sym_chan] = ACTIONS(4615), - [anon_sym_thread] = ACTIONS(4615), - [anon_sym_atomic] = ACTIONS(4615), - [anon_sym_assert] = ACTIONS(4615), - [anon_sym_defer] = ACTIONS(4615), - [anon_sym_goto] = ACTIONS(4615), - [anon_sym_break] = ACTIONS(4615), - [anon_sym_continue] = ACTIONS(4615), - [anon_sym_return] = ACTIONS(4615), - [anon_sym_DOLLARfor] = ACTIONS(4615), - [anon_sym_for] = ACTIONS(4615), - [anon_sym_POUND] = ACTIONS(4613), - [anon_sym_asm] = ACTIONS(4615), - [anon_sym_AT_LBRACK] = ACTIONS(4613), - [sym___double_quote] = ACTIONS(4613), - [sym___single_quote] = ACTIONS(4613), - [sym___c_double_quote] = ACTIONS(4613), - [sym___c_single_quote] = ACTIONS(4613), - [sym___r_double_quote] = ACTIONS(4613), - [sym___r_single_quote] = ACTIONS(4613), - }, - [1616] = { - [sym_reference_expression] = STATE(4626), - [sym_type_reference_expression] = STATE(3605), - [sym_plain_type] = STATE(2395), - [sym__plain_type_without_special] = STATE(2406), - [sym_anon_struct_type] = STATE(2413), - [sym_multi_return_type] = STATE(2406), - [sym_result_type] = STATE(2406), - [sym_option_type] = STATE(2406), - [sym_qualified_type] = STATE(3605), - [sym_fixed_array_type] = STATE(2413), - [sym_array_type] = STATE(2413), - [sym_pointer_type] = STATE(2413), - [sym_wrong_pointer_type] = STATE(2413), - [sym_map_type] = STATE(2413), - [sym_channel_type] = STATE(2413), - [sym_shared_type] = STATE(2413), - [sym_thread_type] = STATE(2413), - [sym_atomic_type] = STATE(2413), - [sym_generic_type] = STATE(2413), - [sym_function_type] = STATE(2413), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_as] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_PLUS_PLUS] = ACTIONS(559), - [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(4569), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_GT_GT_GT] = ACTIONS(559), - [anon_sym_AMP_CARET] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_or] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(559), - [anon_sym_POUND_LBRACK] = ACTIONS(559), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(559), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(559), - [anon_sym_COLON_EQ] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1617] = { - [ts_builtin_sym_end] = ACTIONS(135), - [sym_identifier] = ACTIONS(4617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(4617), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym___global] = ACTIONS(4617), - [anon_sym_type] = ACTIONS(4617), - [anon_sym_fn] = ACTIONS(4617), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_struct] = ACTIONS(4617), - [anon_sym_union] = ACTIONS(4617), - [anon_sym_pub] = ACTIONS(4617), - [anon_sym_mut] = ACTIONS(4617), - [anon_sym_enum] = ACTIONS(4617), - [anon_sym_interface] = ACTIONS(4617), - [anon_sym_QMARK] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_go] = ACTIONS(4617), - [anon_sym_spawn] = ACTIONS(4617), - [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(4617), - [sym_true] = ACTIONS(4617), - [sym_false] = ACTIONS(4617), - [sym_nil] = ACTIONS(4617), - [anon_sym_if] = ACTIONS(4617), - [anon_sym_DOLLARif] = ACTIONS(4617), - [anon_sym_match] = ACTIONS(4617), - [anon_sym_select] = ACTIONS(4617), - [anon_sym_lock] = ACTIONS(4617), - [anon_sym_rlock] = ACTIONS(4617), - [anon_sym_unsafe] = ACTIONS(4617), - [anon_sym_sql] = ACTIONS(4617), - [sym_int_literal] = ACTIONS(4617), - [sym_float_literal] = ACTIONS(135), - [sym_rune_literal] = ACTIONS(135), - [sym_pseudo_compile_time_identifier] = ACTIONS(4617), - [anon_sym_shared] = ACTIONS(4617), - [anon_sym_map_LBRACK] = ACTIONS(135), - [anon_sym_chan] = ACTIONS(4617), - [anon_sym_thread] = ACTIONS(4617), - [anon_sym_atomic] = ACTIONS(4617), - [anon_sym_assert] = ACTIONS(4617), - [anon_sym_defer] = ACTIONS(4617), - [anon_sym_goto] = ACTIONS(4617), - [anon_sym_break] = ACTIONS(4617), - [anon_sym_continue] = ACTIONS(4617), - [anon_sym_return] = ACTIONS(4617), - [anon_sym_DOLLARfor] = ACTIONS(4617), - [anon_sym_for] = ACTIONS(4617), [anon_sym_POUND] = ACTIONS(135), - [anon_sym_asm] = ACTIONS(4617), + [anon_sym_asm] = ACTIONS(4611), [anon_sym_AT_LBRACK] = ACTIONS(135), [sym___double_quote] = ACTIONS(135), [sym___single_quote] = ACTIONS(135), @@ -191031,398 +193815,2510 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(135), [sym___r_single_quote] = ACTIONS(135), }, - [1618] = { - [sym_identifier] = ACTIONS(3261), - [anon_sym_LF] = ACTIONS(3261), - [anon_sym_CR] = ACTIONS(3261), - [anon_sym_CR_LF] = ACTIONS(3261), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3261), - [anon_sym_as] = ACTIONS(3261), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_RBRACE] = ACTIONS(3261), - [anon_sym_LPAREN] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(3261), - [anon_sym_PIPE] = ACTIONS(3261), - [anon_sym_fn] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_SLASH] = ACTIONS(3261), - [anon_sym_PERCENT] = ACTIONS(3261), - [anon_sym_LT] = ACTIONS(3261), - [anon_sym_GT] = ACTIONS(3261), - [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(3259), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_COLON] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_QMARK] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_LBRACK2] = ACTIONS(3261), - [anon_sym_CARET] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3261), - [anon_sym_LT_DASH] = ACTIONS(3261), - [anon_sym_LT_LT] = ACTIONS(3261), - [anon_sym_GT_GT] = ACTIONS(3261), - [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(3261), - [anon_sym_QMARK_DOT] = ACTIONS(3261), - [anon_sym_POUND_LBRACK] = ACTIONS(3261), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3261), - [anon_sym_in] = ACTIONS(3261), - [anon_sym_BANGin] = ACTIONS(3261), - [anon_sym_STAR_EQ] = ACTIONS(3261), - [anon_sym_SLASH_EQ] = ACTIONS(3261), - [anon_sym_PERCENT_EQ] = ACTIONS(3261), - [anon_sym_LT_LT_EQ] = ACTIONS(3261), - [anon_sym_GT_GT_EQ] = ACTIONS(3261), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3261), - [anon_sym_AMP_EQ] = ACTIONS(3261), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3261), - [anon_sym_PLUS_EQ] = ACTIONS(3261), - [anon_sym_DASH_EQ] = ACTIONS(3261), - [anon_sym_PIPE_EQ] = ACTIONS(3261), - [anon_sym_CARET_EQ] = ACTIONS(3261), - [anon_sym_COLON_EQ] = ACTIONS(3261), - [anon_sym_shared] = ACTIONS(3261), - [anon_sym_map_LBRACK] = ACTIONS(3261), - [anon_sym_chan] = ACTIONS(3261), - [anon_sym_thread] = ACTIONS(3261), - [anon_sym_atomic] = ACTIONS(3261), + [1628] = { + [sym_line_comment] = STATE(1628), + [sym_block_comment] = STATE(1628), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_DOT] = ACTIONS(3379), + [anon_sym_as] = ACTIONS(3379), + [anon_sym_COMMA] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_EQ] = 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_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_COLON] = 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_LBRACK2] = 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), + [anon_sym_QMARK_DOT] = ACTIONS(3379), + [anon_sym_POUND_LBRACK] = ACTIONS(3379), + [anon_sym_is] = ACTIONS(3379), + [anon_sym_BANGis] = ACTIONS(3379), + [anon_sym_in] = ACTIONS(3379), + [anon_sym_BANGin] = 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_shared] = ACTIONS(3379), + [anon_sym_map_LBRACK] = ACTIONS(3379), + [anon_sym_chan] = ACTIONS(3379), + [anon_sym_thread] = ACTIONS(3379), + [anon_sym_atomic] = ACTIONS(3379), + }, + [1629] = { + [sym_line_comment] = STATE(1629), + [sym_block_comment] = STATE(1629), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_DOT] = ACTIONS(3383), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_COMMA] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_EQ] = 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_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_COLON] = 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_LBRACK2] = 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), + [anon_sym_QMARK_DOT] = ACTIONS(3383), + [anon_sym_POUND_LBRACK] = ACTIONS(3383), + [anon_sym_is] = ACTIONS(3383), + [anon_sym_BANGis] = ACTIONS(3383), + [anon_sym_in] = ACTIONS(3383), + [anon_sym_BANGin] = 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_shared] = ACTIONS(3383), + [anon_sym_map_LBRACK] = ACTIONS(3383), + [anon_sym_chan] = ACTIONS(3383), + [anon_sym_thread] = ACTIONS(3383), + [anon_sym_atomic] = ACTIONS(3383), + }, + [1630] = { + [sym_line_comment] = STATE(1630), + [sym_block_comment] = STATE(1630), + [sym_identifier] = ACTIONS(3301), + [anon_sym_LF] = ACTIONS(3301), + [anon_sym_CR] = ACTIONS(3301), + [anon_sym_CR_LF] = ACTIONS(3301), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_COMMA] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [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(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_COLON] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_DASH] = ACTIONS(3301), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3301), + [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(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3301), + [anon_sym_POUND_LBRACK] = ACTIONS(3301), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3301), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = ACTIONS(3301), + [anon_sym_STAR_EQ] = ACTIONS(3301), + [anon_sym_SLASH_EQ] = ACTIONS(3301), + [anon_sym_PERCENT_EQ] = ACTIONS(3301), + [anon_sym_LT_LT_EQ] = ACTIONS(3301), + [anon_sym_GT_GT_EQ] = ACTIONS(3301), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3301), + [anon_sym_AMP_EQ] = ACTIONS(3301), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3301), + [anon_sym_PLUS_EQ] = ACTIONS(3301), + [anon_sym_DASH_EQ] = ACTIONS(3301), + [anon_sym_PIPE_EQ] = ACTIONS(3301), + [anon_sym_CARET_EQ] = ACTIONS(3301), + [anon_sym_COLON_EQ] = ACTIONS(3301), + [anon_sym_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3301), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + }, + [1631] = { + [sym_line_comment] = STATE(1631), + [sym_block_comment] = STATE(1631), + [sym_identifier] = ACTIONS(3305), + [anon_sym_LF] = ACTIONS(3305), + [anon_sym_CR] = ACTIONS(3305), + [anon_sym_CR_LF] = ACTIONS(3305), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_COMMA] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_EQ] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [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(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_COLON] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3305), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3305), + [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(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3305), + [anon_sym_POUND_LBRACK] = ACTIONS(3305), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3305), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = ACTIONS(3305), + [anon_sym_STAR_EQ] = ACTIONS(3305), + [anon_sym_SLASH_EQ] = ACTIONS(3305), + [anon_sym_PERCENT_EQ] = ACTIONS(3305), + [anon_sym_LT_LT_EQ] = ACTIONS(3305), + [anon_sym_GT_GT_EQ] = ACTIONS(3305), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3305), + [anon_sym_AMP_EQ] = ACTIONS(3305), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3305), + [anon_sym_PLUS_EQ] = ACTIONS(3305), + [anon_sym_DASH_EQ] = ACTIONS(3305), + [anon_sym_PIPE_EQ] = ACTIONS(3305), + [anon_sym_CARET_EQ] = ACTIONS(3305), + [anon_sym_COLON_EQ] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3305), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), }, - [1619] = { - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_EQ] = 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_COLON] = 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_LBRACK2] = 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), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = 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_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), + [1632] = { + [sym_line_comment] = STATE(1632), + [sym_block_comment] = STATE(1632), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LF] = ACTIONS(3145), + [anon_sym_CR] = ACTIONS(3145), + [anon_sym_CR_LF] = ACTIONS(3145), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3145), + [anon_sym_as] = ACTIONS(3145), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_fn] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_PERCENT] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3145), + [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(3143), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_LBRACK2] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_LT_DASH] = ACTIONS(3145), + [anon_sym_LT_LT] = ACTIONS(3145), + [anon_sym_GT_GT] = ACTIONS(3145), + [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(3145), + [anon_sym_QMARK_DOT] = ACTIONS(3145), + [anon_sym_POUND_LBRACK] = ACTIONS(3145), + [anon_sym_is] = ACTIONS(3145), + [anon_sym_BANGis] = ACTIONS(3145), + [anon_sym_in] = ACTIONS(3145), + [anon_sym_BANGin] = ACTIONS(3145), + [anon_sym_STAR_EQ] = ACTIONS(3145), + [anon_sym_SLASH_EQ] = ACTIONS(3145), + [anon_sym_PERCENT_EQ] = ACTIONS(3145), + [anon_sym_LT_LT_EQ] = ACTIONS(3145), + [anon_sym_GT_GT_EQ] = ACTIONS(3145), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3145), + [anon_sym_AMP_EQ] = ACTIONS(3145), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3145), + [anon_sym_PLUS_EQ] = ACTIONS(3145), + [anon_sym_DASH_EQ] = ACTIONS(3145), + [anon_sym_PIPE_EQ] = ACTIONS(3145), + [anon_sym_CARET_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_shared] = ACTIONS(3145), + [anon_sym_map_LBRACK] = ACTIONS(3145), + [anon_sym_chan] = ACTIONS(3145), + [anon_sym_thread] = ACTIONS(3145), + [anon_sym_atomic] = ACTIONS(3145), }, - [1620] = { - [sym_identifier] = ACTIONS(3009), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_CR] = ACTIONS(3009), - [anon_sym_CR_LF] = ACTIONS(3009), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3009), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_EQ] = 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_COLON] = 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_LBRACK2] = 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), - [anon_sym_QMARK_DOT] = ACTIONS(3009), - [anon_sym_POUND_LBRACK] = ACTIONS(3009), - [anon_sym_is] = ACTIONS(3009), - [anon_sym_BANGis] = ACTIONS(3009), - [anon_sym_in] = ACTIONS(3009), - [anon_sym_BANGin] = 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_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3009), - [anon_sym_chan] = ACTIONS(3009), - [anon_sym_thread] = ACTIONS(3009), - [anon_sym_atomic] = ACTIONS(3009), + [1633] = { + [sym_line_comment] = STATE(1633), + [sym_block_comment] = STATE(1633), + [sym_identifier] = ACTIONS(3305), + [anon_sym_LF] = ACTIONS(3305), + [anon_sym_CR] = ACTIONS(3305), + [anon_sym_CR_LF] = ACTIONS(3305), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_COMMA] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_EQ] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [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(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3305), + [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(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3305), + [anon_sym_POUND_LBRACK] = ACTIONS(3305), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3305), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = ACTIONS(3305), + [anon_sym_STAR_EQ] = ACTIONS(3305), + [anon_sym_SLASH_EQ] = ACTIONS(3305), + [anon_sym_PERCENT_EQ] = ACTIONS(3305), + [anon_sym_LT_LT_EQ] = ACTIONS(3305), + [anon_sym_GT_GT_EQ] = ACTIONS(3305), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3305), + [anon_sym_AMP_EQ] = ACTIONS(3305), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3305), + [anon_sym_PLUS_EQ] = ACTIONS(3305), + [anon_sym_DASH_EQ] = ACTIONS(3305), + [anon_sym_PIPE_EQ] = ACTIONS(3305), + [anon_sym_CARET_EQ] = ACTIONS(3305), + [anon_sym_COLON_EQ] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3305), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + }, + [1634] = { + [sym_line_comment] = STATE(1634), + [sym_block_comment] = STATE(1634), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_DOT] = ACTIONS(3379), + [anon_sym_as] = ACTIONS(3379), + [anon_sym_COMMA] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_EQ] = 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_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_PLUS_PLUS] = ACTIONS(3379), + [anon_sym_DASH_DASH] = ACTIONS(3379), + [anon_sym_QMARK] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3379), + [anon_sym_LBRACK2] = ACTIONS(3379), + [anon_sym_CARET] = ACTIONS(3379), + [anon_sym_AMP] = 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), + [anon_sym_QMARK_DOT] = ACTIONS(3379), + [anon_sym_POUND_LBRACK] = ACTIONS(3379), + [anon_sym_is] = ACTIONS(3379), + [anon_sym_BANGis] = ACTIONS(3379), + [anon_sym_in] = ACTIONS(3379), + [anon_sym_BANGin] = 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_shared] = ACTIONS(3379), + [anon_sym_map_LBRACK] = ACTIONS(3379), + [anon_sym_chan] = ACTIONS(3379), + [anon_sym_thread] = ACTIONS(3379), + [anon_sym_atomic] = ACTIONS(3379), + }, + [1635] = { + [sym_line_comment] = STATE(1635), + [sym_block_comment] = STATE(1635), + [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), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_DOT] = ACTIONS(3383), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_COMMA] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_EQ] = 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_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_PLUS_PLUS] = ACTIONS(3383), + [anon_sym_DASH_DASH] = ACTIONS(3383), + [anon_sym_QMARK] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_LBRACK2] = ACTIONS(3383), + [anon_sym_CARET] = ACTIONS(3383), + [anon_sym_AMP] = 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), + [anon_sym_QMARK_DOT] = ACTIONS(3383), + [anon_sym_POUND_LBRACK] = ACTIONS(3383), + [anon_sym_is] = ACTIONS(3383), + [anon_sym_BANGis] = ACTIONS(3383), + [anon_sym_in] = ACTIONS(3383), + [anon_sym_BANGin] = 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_shared] = ACTIONS(3383), + [anon_sym_map_LBRACK] = ACTIONS(3383), + [anon_sym_chan] = ACTIONS(3383), + [anon_sym_thread] = ACTIONS(3383), + [anon_sym_atomic] = ACTIONS(3383), + }, + [1636] = { + [sym_line_comment] = STATE(1636), + [sym_block_comment] = STATE(1636), + [sym_identifier] = ACTIONS(3301), + [anon_sym_LF] = ACTIONS(3301), + [anon_sym_CR] = ACTIONS(3301), + [anon_sym_CR_LF] = ACTIONS(3301), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_COMMA] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [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(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3301), + [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(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3301), + [anon_sym_POUND_LBRACK] = ACTIONS(3301), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3301), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = ACTIONS(3301), + [anon_sym_STAR_EQ] = ACTIONS(3301), + [anon_sym_SLASH_EQ] = ACTIONS(3301), + [anon_sym_PERCENT_EQ] = ACTIONS(3301), + [anon_sym_LT_LT_EQ] = ACTIONS(3301), + [anon_sym_GT_GT_EQ] = ACTIONS(3301), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3301), + [anon_sym_AMP_EQ] = ACTIONS(3301), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3301), + [anon_sym_PLUS_EQ] = ACTIONS(3301), + [anon_sym_DASH_EQ] = ACTIONS(3301), + [anon_sym_PIPE_EQ] = ACTIONS(3301), + [anon_sym_CARET_EQ] = ACTIONS(3301), + [anon_sym_COLON_EQ] = ACTIONS(3301), + [anon_sym_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3301), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + }, + [1637] = { + [sym_line_comment] = STATE(1637), + [sym_block_comment] = STATE(1637), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LF] = ACTIONS(3145), + [anon_sym_CR] = ACTIONS(3145), + [anon_sym_CR_LF] = ACTIONS(3145), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3145), + [anon_sym_as] = ACTIONS(3145), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_fn] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_PERCENT] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3145), + [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(3143), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_LBRACK2] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_LT_LT] = ACTIONS(3145), + [anon_sym_GT_GT] = ACTIONS(3145), + [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(3145), + [anon_sym_QMARK_DOT] = ACTIONS(3145), + [anon_sym_POUND_LBRACK] = ACTIONS(3145), + [anon_sym_is] = ACTIONS(3145), + [anon_sym_BANGis] = ACTIONS(3145), + [anon_sym_in] = ACTIONS(3145), + [anon_sym_BANGin] = ACTIONS(3145), + [anon_sym_STAR_EQ] = ACTIONS(3145), + [anon_sym_SLASH_EQ] = ACTIONS(3145), + [anon_sym_PERCENT_EQ] = ACTIONS(3145), + [anon_sym_LT_LT_EQ] = ACTIONS(3145), + [anon_sym_GT_GT_EQ] = ACTIONS(3145), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3145), + [anon_sym_AMP_EQ] = ACTIONS(3145), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3145), + [anon_sym_PLUS_EQ] = ACTIONS(3145), + [anon_sym_DASH_EQ] = ACTIONS(3145), + [anon_sym_PIPE_EQ] = ACTIONS(3145), + [anon_sym_CARET_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_shared] = ACTIONS(3145), + [anon_sym_map_LBRACK] = ACTIONS(3145), + [anon_sym_chan] = ACTIONS(3145), + [anon_sym_thread] = ACTIONS(3145), + [anon_sym_atomic] = ACTIONS(3145), + }, + [1638] = { + [sym_line_comment] = STATE(1638), + [sym_block_comment] = STATE(1638), + [sym_identifier] = ACTIONS(3379), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_DOT] = ACTIONS(3377), + [anon_sym_as] = ACTIONS(3379), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_COMMA] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_EQ] = 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_PERCENT] = ACTIONS(3379), + [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_struct] = ACTIONS(3379), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_QMARK] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3379), + [anon_sym_LBRACK2] = ACTIONS(3379), + [anon_sym_CARET] = ACTIONS(3379), + [anon_sym_AMP] = 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(3377), + [anon_sym_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_or] = ACTIONS(3379), + [anon_sym_QMARK_DOT] = ACTIONS(3377), + [anon_sym_POUND_LBRACK] = ACTIONS(3377), + [anon_sym_is] = ACTIONS(3379), + [anon_sym_BANGis] = ACTIONS(3377), + [anon_sym_in] = ACTIONS(3379), + [anon_sym_BANGin] = ACTIONS(3377), + [anon_sym_STAR_EQ] = ACTIONS(3377), + [anon_sym_SLASH_EQ] = ACTIONS(3377), + [anon_sym_PERCENT_EQ] = ACTIONS(3377), + [anon_sym_LT_LT_EQ] = ACTIONS(3377), + [anon_sym_GT_GT_EQ] = ACTIONS(3377), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3377), + [anon_sym_AMP_EQ] = ACTIONS(3377), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3377), + [anon_sym_PLUS_EQ] = ACTIONS(3377), + [anon_sym_DASH_EQ] = ACTIONS(3377), + [anon_sym_PIPE_EQ] = ACTIONS(3377), + [anon_sym_CARET_EQ] = ACTIONS(3377), + [anon_sym_COLON_EQ] = ACTIONS(3377), + [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), + }, + [1639] = { + [sym_line_comment] = STATE(1639), + [sym_block_comment] = STATE(1639), + [sym_type_parameters] = STATE(4270), + [sym_argument_list] = STATE(1738), + [sym_or_block] = STATE(1737), + [aux_sym_strictly_expression_list_repeat1] = STATE(3383), + [anon_sym_LF] = ACTIONS(1713), + [anon_sym_CR] = ACTIONS(1713), + [anon_sym_CR_LF] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_as] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4613), + [anon_sym_PERCENT] = ACTIONS(4613), + [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(4623), + [anon_sym_AMP] = ACTIONS(4613), + [anon_sym_LT_DASH] = ACTIONS(4641), + [anon_sym_LT_LT] = ACTIONS(4643), + [anon_sym_GT_GT] = ACTIONS(4613), + [anon_sym_GT_GT_GT] = ACTIONS(4613), + [anon_sym_AMP_CARET] = ACTIONS(4613), + [anon_sym_AMP_AMP] = ACTIONS(4645), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [anon_sym_or] = ACTIONS(4649), + [anon_sym_QMARK_DOT] = ACTIONS(4615), + [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(1725), + [anon_sym_SLASH_EQ] = ACTIONS(1725), + [anon_sym_PERCENT_EQ] = ACTIONS(1725), + [anon_sym_LT_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_GT_EQ] = ACTIONS(1725), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1725), + [anon_sym_AMP_EQ] = ACTIONS(1725), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1725), + [anon_sym_PLUS_EQ] = ACTIONS(1725), + [anon_sym_DASH_EQ] = ACTIONS(1725), + [anon_sym_PIPE_EQ] = ACTIONS(1725), + [anon_sym_CARET_EQ] = ACTIONS(1725), + [anon_sym_COLON_EQ] = ACTIONS(1725), + }, + [1640] = { + [sym_line_comment] = STATE(1640), + [sym_block_comment] = STATE(1640), + [sym_identifier] = ACTIONS(3383), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_COMMA] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_EQ] = 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_PERCENT] = ACTIONS(3383), + [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_struct] = 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_LBRACK2] = ACTIONS(3383), + [anon_sym_CARET] = ACTIONS(3383), + [anon_sym_AMP] = ACTIONS(3383), + [anon_sym_LT_DASH] = ACTIONS(3381), + [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(3381), + [anon_sym_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_or] = ACTIONS(3383), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3381), + [anon_sym_is] = ACTIONS(3383), + [anon_sym_BANGis] = ACTIONS(3381), + [anon_sym_in] = ACTIONS(3383), + [anon_sym_BANGin] = ACTIONS(3381), + [anon_sym_STAR_EQ] = ACTIONS(3381), + [anon_sym_SLASH_EQ] = ACTIONS(3381), + [anon_sym_PERCENT_EQ] = ACTIONS(3381), + [anon_sym_LT_LT_EQ] = ACTIONS(3381), + [anon_sym_GT_GT_EQ] = ACTIONS(3381), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3381), + [anon_sym_AMP_EQ] = ACTIONS(3381), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3381), + [anon_sym_PLUS_EQ] = ACTIONS(3381), + [anon_sym_DASH_EQ] = ACTIONS(3381), + [anon_sym_PIPE_EQ] = ACTIONS(3381), + [anon_sym_CARET_EQ] = ACTIONS(3381), + [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), + }, + [1641] = { + [sym_line_comment] = STATE(1641), + [sym_block_comment] = STATE(1641), + [sym_identifier] = ACTIONS(3383), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_COMMA] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_EQ] = 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_PERCENT] = ACTIONS(3383), + [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_struct] = ACTIONS(3383), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [anon_sym_QMARK] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_LBRACK2] = ACTIONS(3383), + [anon_sym_CARET] = ACTIONS(3383), + [anon_sym_AMP] = 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(3381), + [anon_sym_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_or] = ACTIONS(3383), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3381), + [anon_sym_is] = ACTIONS(3383), + [anon_sym_BANGis] = ACTIONS(3381), + [anon_sym_in] = ACTIONS(3383), + [anon_sym_BANGin] = ACTIONS(3381), + [anon_sym_STAR_EQ] = ACTIONS(3381), + [anon_sym_SLASH_EQ] = ACTIONS(3381), + [anon_sym_PERCENT_EQ] = ACTIONS(3381), + [anon_sym_LT_LT_EQ] = ACTIONS(3381), + [anon_sym_GT_GT_EQ] = ACTIONS(3381), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3381), + [anon_sym_AMP_EQ] = ACTIONS(3381), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3381), + [anon_sym_PLUS_EQ] = ACTIONS(3381), + [anon_sym_DASH_EQ] = ACTIONS(3381), + [anon_sym_PIPE_EQ] = ACTIONS(3381), + [anon_sym_CARET_EQ] = ACTIONS(3381), + [anon_sym_COLON_EQ] = ACTIONS(3381), + [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), + }, + [1642] = { + [sym_line_comment] = STATE(1642), + [sym_block_comment] = STATE(1642), + [sym_identifier] = ACTIONS(3379), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_DOT] = ACTIONS(3377), + [anon_sym_as] = ACTIONS(3379), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_COMMA] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_EQ] = 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_PERCENT] = ACTIONS(3379), + [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_struct] = 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_LBRACK2] = ACTIONS(3379), + [anon_sym_CARET] = ACTIONS(3379), + [anon_sym_AMP] = ACTIONS(3379), + [anon_sym_LT_DASH] = ACTIONS(3377), + [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(3377), + [anon_sym_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_or] = ACTIONS(3379), + [anon_sym_QMARK_DOT] = ACTIONS(3377), + [anon_sym_POUND_LBRACK] = ACTIONS(3377), + [anon_sym_is] = ACTIONS(3379), + [anon_sym_BANGis] = ACTIONS(3377), + [anon_sym_in] = ACTIONS(3379), + [anon_sym_BANGin] = ACTIONS(3377), + [anon_sym_STAR_EQ] = ACTIONS(3377), + [anon_sym_SLASH_EQ] = ACTIONS(3377), + [anon_sym_PERCENT_EQ] = ACTIONS(3377), + [anon_sym_LT_LT_EQ] = ACTIONS(3377), + [anon_sym_GT_GT_EQ] = ACTIONS(3377), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3377), + [anon_sym_AMP_EQ] = ACTIONS(3377), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3377), + [anon_sym_PLUS_EQ] = ACTIONS(3377), + [anon_sym_DASH_EQ] = ACTIONS(3377), + [anon_sym_PIPE_EQ] = ACTIONS(3377), + [anon_sym_CARET_EQ] = ACTIONS(3377), + [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), + }, + [1643] = { + [sym_line_comment] = STATE(1643), + [sym_block_comment] = STATE(1643), + [sym_identifier] = ACTIONS(3305), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_DOT] = ACTIONS(3303), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_COMMA] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_EQ] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [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(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_COLON] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3303), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3305), + [anon_sym_GT_GT_GT] = ACTIONS(3305), + [anon_sym_AMP_CARET] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3303), + [anon_sym_PIPE_PIPE] = ACTIONS(3303), + [anon_sym_or] = ACTIONS(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3303), + [anon_sym_POUND_LBRACK] = ACTIONS(3303), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3303), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = 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_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3303), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + }, + [1644] = { + [sym_line_comment] = STATE(1644), + [sym_block_comment] = STATE(1644), + [sym_identifier] = ACTIONS(3301), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [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(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3301), + [anon_sym_GT_GT_GT] = ACTIONS(3301), + [anon_sym_AMP_CARET] = ACTIONS(3301), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3299), + [anon_sym_POUND_LBRACK] = ACTIONS(3299), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3299), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = 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_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3299), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + }, + [1645] = { + [sym_line_comment] = STATE(1645), + [sym_block_comment] = STATE(1645), + [sym_identifier] = ACTIONS(3305), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_DOT] = ACTIONS(3303), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_COMMA] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_EQ] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [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(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3305), + [anon_sym_GT_GT_GT] = ACTIONS(3305), + [anon_sym_AMP_CARET] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3303), + [anon_sym_PIPE_PIPE] = ACTIONS(3303), + [anon_sym_or] = ACTIONS(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3303), + [anon_sym_POUND_LBRACK] = ACTIONS(3303), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3303), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = 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_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3303), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + }, + [1646] = { + [sym_line_comment] = STATE(1646), + [sym_block_comment] = STATE(1646), + [sym_identifier] = ACTIONS(3301), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [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(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3301), + [anon_sym_GT_GT_GT] = ACTIONS(3301), + [anon_sym_AMP_CARET] = ACTIONS(3301), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3299), + [anon_sym_POUND_LBRACK] = ACTIONS(3299), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3299), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = 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_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3299), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), }, - [1621] = { - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2891), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_EQ] = 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_COLON] = 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_LBRACK2] = 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), - [anon_sym_QMARK_DOT] = ACTIONS(2891), - [anon_sym_POUND_LBRACK] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2891), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = 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_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2891), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), + [1647] = { + [sym_line_comment] = STATE(1647), + [sym_block_comment] = STATE(1647), + [sym_identifier] = ACTIONS(3145), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_as] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_fn] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_PERCENT] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3145), + [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(3143), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_LBRACK2] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_LT_LT] = ACTIONS(3145), + [anon_sym_GT_GT] = ACTIONS(3145), + [anon_sym_GT_GT_GT] = ACTIONS(3145), + [anon_sym_AMP_CARET] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_or] = ACTIONS(3145), + [anon_sym_QMARK_DOT] = ACTIONS(3143), + [anon_sym_POUND_LBRACK] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3145), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_in] = ACTIONS(3145), + [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(3145), + [anon_sym_map_LBRACK] = ACTIONS(3143), + [anon_sym_chan] = ACTIONS(3145), + [anon_sym_thread] = ACTIONS(3145), + [anon_sym_atomic] = ACTIONS(3145), }, - [1622] = { - [sym_identifier] = ACTIONS(2895), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_CR] = ACTIONS(2895), - [anon_sym_CR_LF] = ACTIONS(2895), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_COMMA] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_EQ] = 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_COLON] = 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_LBRACK2] = 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), - [anon_sym_QMARK_DOT] = ACTIONS(2895), - [anon_sym_POUND_LBRACK] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = 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_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2895), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), + [1648] = { + [sym_line_comment] = STATE(1648), + [sym_block_comment] = STATE(1648), + [sym_identifier] = ACTIONS(3145), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_as] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_fn] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_PERCENT] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3145), + [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(3143), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_LBRACK2] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_LT_LT] = ACTIONS(3145), + [anon_sym_GT_GT] = ACTIONS(3145), + [anon_sym_GT_GT_GT] = ACTIONS(3145), + [anon_sym_AMP_CARET] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_or] = ACTIONS(3145), + [anon_sym_QMARK_DOT] = ACTIONS(3143), + [anon_sym_POUND_LBRACK] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3145), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_in] = ACTIONS(3145), + [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_shared] = ACTIONS(3145), + [anon_sym_map_LBRACK] = ACTIONS(3143), + [anon_sym_chan] = ACTIONS(3145), + [anon_sym_thread] = ACTIONS(3145), + [anon_sym_atomic] = ACTIONS(3145), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2893), 1, + [0] = 14, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4621), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_QMARK, + ACTIONS(4637), 1, + anon_sym_BANG, + STATE(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1649), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1883), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(1879), 45, + anon_sym_SLASH, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + 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, + [93] = 14, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4621), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_QMARK, + ACTIONS(4637), 1, + anon_sym_BANG, + STATE(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4613), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 41, + 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_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, + 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, + 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, + [186] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4621), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_QMARK, + ACTIONS(4637), 1, + anon_sym_BANG, + STATE(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1915), 49, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_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_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, + [277] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4621), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_QMARK, + ACTIONS(4637), 1, + anon_sym_BANG, + STATE(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4623), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4613), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 37, + 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, + 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, + [372] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4621), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_QMARK, + ACTIONS(4637), 1, + anon_sym_BANG, + STATE(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1653), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4623), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4613), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1875), 37, + 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, + 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, + [467] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4617), 1, + anon_sym_as, + ACTIONS(4621), 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(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1654), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4623), 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(4613), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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), 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, + [584] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4621), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_QMARK, + ACTIONS(4637), 1, + anon_sym_BANG, + STATE(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1655), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4623), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4613), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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), 37, + 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, + 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, + [679] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4621), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_QMARK, + ACTIONS(4637), 1, + anon_sym_BANG, + STATE(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1903), 49, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_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_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, + [770] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4617), 1, + anon_sym_as, + ACTIONS(4621), 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(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1657), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4623), 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(4613), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1937), 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, + [887] = 19, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4621), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + 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(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4623), 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(4613), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 28, + 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, + 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, + [990] = 18, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4621), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_QMARK, + ACTIONS(4637), 1, + anon_sym_BANG, + ACTIONS(4655), 1, + anon_sym_in, + ACTIONS(4657), 1, + anon_sym_BANGin, + STATE(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4623), 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(4613), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 29, + 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_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, + 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, + [1091] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4621), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_QMARK, + ACTIONS(4637), 1, + anon_sym_BANG, + STATE(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 49, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_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_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, + [1182] = 31, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4617), 1, + anon_sym_as, + ACTIONS(4619), 1, + anon_sym_COMMA, + ACTIONS(4621), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, anon_sym_LBRACK, - ACTIONS(2895), 62, + 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(1737), 1, + sym_or_block, + STATE(1738), 1, + sym_argument_list, + STATE(3383), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4270), 1, + sym_type_parameters, + ACTIONS(4615), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1661), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1713), 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(4623), 4, anon_sym_PIPE, - anon_sym_fn, 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_struct, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4613), 7, + anon_sym_SLASH, + anon_sym_STAR, + 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(1725), 14, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -191436,61 +196332,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [71] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2889), 1, + [1309] = 28, + ACTIONS(497), 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(4671), 1, anon_sym_LBRACK, - ACTIONS(2891), 62, + ACTIONS(4673), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4675), 1, + anon_sym_DASH_DASH, + ACTIONS(4677), 1, + anon_sym_QMARK, + ACTIONS(4679), 1, + anon_sym_BANG, + ACTIONS(4683), 1, + anon_sym_AMP_AMP, + ACTIONS(4685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4687), 1, + anon_sym_or, + ACTIONS(4689), 1, + anon_sym_is, + ACTIONS(4691), 1, + anon_sym_BANGis, + ACTIONS(4693), 1, + anon_sym_in, + ACTIONS(4695), 1, + anon_sym_BANGin, + STATE(1847), 1, + sym_or_block, + STATE(1854), 1, + sym_argument_list, + STATE(3578), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4392), 1, + sym_type_parameters, + ACTIONS(4661), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4681), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1662), 2, + sym_line_comment, + 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_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4669), 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_struct, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4659), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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(1765), 15, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -191504,21 +196424,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [142] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3003), 1, + [1429] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(3005), 62, + ACTIONS(4697), 1, + anon_sym_else, + STATE(1761), 1, + sym_else_branch, + STATE(1663), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2457), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -191526,11 +196450,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, 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, @@ -191538,7 +196460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_struct, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -191546,6 +196468,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, @@ -191572,21 +196495,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [213] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3259), 1, + [1507] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3261), 62, + ACTIONS(4697), 1, + anon_sym_else, + STATE(1764), 1, + sym_else_branch, + STATE(1664), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -191594,11 +196521,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, 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, @@ -191606,7 +196531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_struct, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -191614,6 +196539,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, @@ -191640,21 +196566,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [284] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACK, - ACTIONS(3009), 62, + [1585] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2827), 1, + anon_sym_LBRACK, + STATE(1665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2829), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -191662,11 +196588,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, 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, @@ -191674,7 +196598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_struct, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -191682,6 +196606,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, @@ -191691,6 +196616,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, @@ -191708,63 +196635,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 29, + [1659] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2745), 1, + anon_sym_LBRACK, + STATE(1666), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 58, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, 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_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_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3007), 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_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, @@ -191779,58 +196704,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 29, + [1733] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, + anon_sym_LPAREN, + ACTIONS(4671), 1, + anon_sym_LBRACK, + ACTIONS(4677), 1, + anon_sym_QMARK, + ACTIONS(4679), 1, + anon_sym_BANG, + STATE(1847), 1, + sym_or_block, + STATE(1854), 1, + sym_argument_list, + STATE(4392), 1, + sym_type_parameters, + ACTIONS(4661), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4681), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1915), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, 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(2889), 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_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_QMARK_DOT, - anon_sym_POUND_LBRACK, + anon_sym_or, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -191845,125 +196780,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3261), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, + [1822] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1668), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4701), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, 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_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, - anon_sym_or, - anon_sym_is, - anon_sym_in, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + anon_sym_POUND, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4699), 34, + 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, - ACTIONS(3259), 32, + anon_sym_assert, + anon_sym_defer, + anon_sym_goto, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_DOLLARfor, + anon_sym_for, + anon_sym_asm, + [1895] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3329), 1, + anon_sym_LBRACK, + STATE(1669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3331), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, 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, - [562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 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_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_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2889), 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_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, @@ -191977,59 +196915,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 29, + anon_sym_COLON_EQ, + [1968] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2763), 1, + anon_sym_LBRACK, + ACTIONS(4703), 1, + anon_sym_DOLLARelse, + STATE(1670), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2765), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, 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_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_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2893), 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_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, @@ -192043,59 +196984,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 29, + anon_sym_COLON_EQ, + [2043] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, + anon_sym_LPAREN, + ACTIONS(4671), 1, + anon_sym_LBRACK, + ACTIONS(4677), 1, + anon_sym_QMARK, + ACTIONS(4679), 1, + anon_sym_BANG, + STATE(1847), 1, + sym_or_block, + STATE(1854), 1, + sym_argument_list, + STATE(4392), 1, + sym_type_parameters, + ACTIONS(4661), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4681), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1671), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, 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(3003), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_GT, 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_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_QMARK_DOT, - anon_sym_POUND_LBRACK, + anon_sym_or, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -192109,58 +197060,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 29, + anon_sym_COLON_EQ, + [2132] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_LBRACK, + STATE(1672), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, 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_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_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2893), 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_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, @@ -192175,58 +197130,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3261), 29, + [2207] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2819), 1, + anon_sym_LBRACK, + ACTIONS(4705), 1, + anon_sym_DOLLARelse, + STATE(1673), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2821), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, 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_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_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3259), 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_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, @@ -192241,58 +197199,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 29, + [2282] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3235), 1, + anon_sym_LBRACK, + STATE(1674), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3237), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_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_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3003), 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_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, @@ -192307,87 +197267,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [976] = 30, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4621), 1, + [2355] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1711), 1, + anon_sym_SEMI, + ACTIONS(1725), 1, + anon_sym_EQ, + ACTIONS(4711), 1, anon_sym_as, - ACTIONS(4623), 1, + ACTIONS(4713), 1, + anon_sym_LBRACE, + ACTIONS(4715), 1, anon_sym_COMMA, - ACTIONS(4625), 1, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4633), 1, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(4635), 1, - anon_sym_COLON, - ACTIONS(4637), 1, + ACTIONS(4727), 1, anon_sym_PLUS_PLUS, - ACTIONS(4639), 1, + ACTIONS(4729), 1, anon_sym_DASH_DASH, - ACTIONS(4641), 1, + ACTIONS(4731), 1, anon_sym_QMARK, - ACTIONS(4643), 1, + ACTIONS(4733), 1, anon_sym_BANG, - ACTIONS(4647), 1, - anon_sym_LT_DASH, - ACTIONS(4649), 1, - anon_sym_LT_LT, - ACTIONS(4651), 1, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4737), 1, anon_sym_AMP_AMP, - ACTIONS(4653), 1, + ACTIONS(4739), 1, anon_sym_PIPE_PIPE, - ACTIONS(4655), 1, + ACTIONS(4741), 1, anon_sym_or, - ACTIONS(4657), 1, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4745), 1, anon_sym_is, - ACTIONS(4659), 1, + ACTIONS(4747), 1, anon_sym_BANGis, - ACTIONS(4661), 1, + ACTIONS(4749), 1, anon_sym_in, - ACTIONS(4663), 1, + ACTIONS(4751), 1, anon_sym_BANGin, - STATE(1752), 1, + STATE(1519), 1, + sym_block, + STATE(2008), 1, sym_or_block, - STATE(1753), 1, + STATE(2078), 1, sym_argument_list, - STATE(3359), 1, + STATE(3383), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4285), 1, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4619), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1709), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4627), 4, + ACTIONS(4721), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1675), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4719), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4723), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4629), 7, - anon_sym_STAR, + ACTIONS(4707), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1719), 14, - anon_sym_EQ, + ACTIONS(3502), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192401,58 +197364,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 29, + [2486] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, + anon_sym_LBRACK, + STATE(1676), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3233), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_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_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3007), 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_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, @@ -192466,85 +197431,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [1168] = 29, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4621), 1, - anon_sym_as, - ACTIONS(4623), 1, - anon_sym_COMMA, - ACTIONS(4625), 1, - anon_sym_LPAREN, - ACTIONS(4633), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4639), 1, - anon_sym_DASH_DASH, - ACTIONS(4641), 1, - anon_sym_QMARK, - ACTIONS(4643), 1, - anon_sym_BANG, - ACTIONS(4647), 1, - anon_sym_LT_DASH, - ACTIONS(4649), 1, - anon_sym_LT_LT, - ACTIONS(4651), 1, - anon_sym_AMP_AMP, - ACTIONS(4653), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4655), 1, - anon_sym_or, - ACTIONS(4657), 1, - anon_sym_is, - ACTIONS(4659), 1, - anon_sym_BANGis, - ACTIONS(4661), 1, - anon_sym_in, - ACTIONS(4663), 1, - anon_sym_BANGin, - STATE(1752), 1, - sym_or_block, - STATE(1753), 1, - sym_argument_list, - STATE(3359), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4285), 1, - sym_type_parameters, - ACTIONS(4619), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1709), 4, + anon_sym_COLON_EQ, + [2559] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3295), 1, + anon_sym_LBRACK, + STATE(1677), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3297), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4627), 4, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4631), 6, + 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, - ACTIONS(4629), 7, - 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(1719), 14, - 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, @@ -192558,42 +197500,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1288] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_LPAREN, - ACTIONS(4633), 1, - anon_sym_LBRACK, - ACTIONS(4641), 1, - anon_sym_QMARK, - ACTIONS(4643), 1, - anon_sym_BANG, - STATE(1752), 1, - sym_or_block, - STATE(1753), 1, - sym_argument_list, - STATE(4285), 1, - sym_type_parameters, - ACTIONS(4619), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1869), 49, + [2632] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3223), 1, + anon_sym_LBRACK, + STATE(1678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3225), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -192604,6 +197536,9 @@ 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, @@ -192614,6 +197549,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, @@ -192631,51 +197568,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1372] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_LPAREN, - ACTIONS(4633), 1, - anon_sym_LBRACK, - ACTIONS(4641), 1, - anon_sym_QMARK, - ACTIONS(4643), 1, - anon_sym_BANG, - STATE(1752), 1, - sym_or_block, - STATE(1753), 1, - sym_argument_list, - STATE(4285), 1, - sym_type_parameters, - ACTIONS(4619), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4629), 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(1865), 37, + [2705] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, + anon_sym_LBRACK, + STATE(1679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3217), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -192685,10 +197604,21 @@ 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, @@ -192706,121 +197636,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1460] = 16, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4625), 1, + [2778] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1711), 1, + anon_sym_SEMI, + ACTIONS(1725), 1, + anon_sym_EQ, + ACTIONS(4711), 1, + anon_sym_as, + ACTIONS(4715), 1, + anon_sym_COMMA, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4633), 1, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(4641), 1, + ACTIONS(4727), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4729), 1, + anon_sym_DASH_DASH, + ACTIONS(4731), 1, anon_sym_QMARK, - ACTIONS(4643), 1, + ACTIONS(4733), 1, anon_sym_BANG, - ACTIONS(4661), 1, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4737), 1, + anon_sym_AMP_AMP, + ACTIONS(4739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4741), 1, + anon_sym_or, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4745), 1, + anon_sym_is, + ACTIONS(4747), 1, + anon_sym_BANGis, + ACTIONS(4749), 1, anon_sym_in, - ACTIONS(4663), 1, + ACTIONS(4751), 1, anon_sym_BANGin, - STATE(1752), 1, + ACTIONS(4753), 1, + anon_sym_LBRACE, + STATE(2008), 1, sym_or_block, - STATE(1753), 1, + STATE(2078), 1, sym_argument_list, - STATE(4285), 1, + STATE(3383), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3756), 1, + sym_block, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4619), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, + ACTIONS(4721), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1680), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4719), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4723), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4629), 8, - anon_sym_STAR, + ACTIONS(4707), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 29, + 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, + [2909] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3193), 1, + anon_sym_LBRACK, + STATE(1681), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3195), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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_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, - [1554] = 12, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_LPAREN, - ACTIONS(4633), 1, - anon_sym_LBRACK, - ACTIONS(4641), 1, - anon_sym_QMARK, - ACTIONS(4643), 1, - anon_sym_BANG, - STATE(1752), 1, - sym_or_block, - STATE(1753), 1, - sym_argument_list, - STATE(4285), 1, - sym_type_parameters, - ACTIONS(4619), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1879), 4, + 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, + [2982] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 1, + anon_sym_LBRACK, + ACTIONS(3149), 1, + anon_sym_LBRACE, + STATE(1682), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(1881), 45, + anon_sym_SLASH, + 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, @@ -192831,6 +197838,9 @@ 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, @@ -192841,6 +197851,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, @@ -192858,51 +197870,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1640] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_LPAREN, - ACTIONS(4633), 1, - anon_sym_LBRACK, - ACTIONS(4641), 1, - anon_sym_QMARK, - ACTIONS(4643), 1, - anon_sym_BANG, - STATE(1752), 1, - sym_or_block, - STATE(1753), 1, - sym_argument_list, - STATE(4285), 1, - sym_type_parameters, - ACTIONS(4619), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4629), 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, + [3057] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3181), 1, + anon_sym_LBRACK, + STATE(1683), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3183), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -192912,10 +197906,21 @@ 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, @@ -192933,42 +197938,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1728] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_LPAREN, - ACTIONS(4633), 1, - anon_sym_LBRACK, - ACTIONS(4641), 1, - anon_sym_QMARK, - ACTIONS(4643), 1, - anon_sym_BANG, - STATE(1752), 1, - sym_or_block, - STATE(1753), 1, - sym_argument_list, - STATE(4285), 1, - sym_type_parameters, - ACTIONS(4619), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1881), 49, + [3130] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3177), 1, + anon_sym_LBRACK, + STATE(1684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3179), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -192979,6 +197974,9 @@ 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, @@ -192989,6 +197987,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, @@ -193006,49 +198006,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1812] = 12, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_LPAREN, - ACTIONS(4633), 1, + [3203] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3131), 1, anon_sym_LBRACK, - ACTIONS(4641), 1, - anon_sym_QMARK, - ACTIONS(4643), 1, - anon_sym_BANG, - STATE(1752), 1, - sym_or_block, - STATE(1753), 1, - sym_argument_list, - STATE(4285), 1, - sym_type_parameters, - ACTIONS(4619), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4629), 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), 41, + STATE(1685), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3133), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -193058,11 +198042,21 @@ 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, @@ -193080,64 +198074,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1898] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_LPAREN, - ACTIONS(4633), 1, - anon_sym_LBRACK, - ACTIONS(4641), 1, - anon_sym_QMARK, - ACTIONS(4643), 1, - anon_sym_BANG, - STATE(1752), 1, - sym_or_block, - STATE(1753), 1, - sym_argument_list, - STATE(4285), 1, - sym_type_parameters, - ACTIONS(4619), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4629), 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(2067), 37, + [3276] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 1, + anon_sym_LBRACK, + ACTIONS(2841), 1, + anon_sym_COLON, + ACTIONS(3149), 1, + anon_sym_LBRACE, + STATE(1686), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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_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, @@ -193155,42 +198144,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1986] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_LPAREN, - ACTIONS(4633), 1, - anon_sym_LBRACK, - ACTIONS(4641), 1, - anon_sym_QMARK, - ACTIONS(4643), 1, - anon_sym_BANG, - STATE(1752), 1, - sym_or_block, - STATE(1753), 1, - sym_argument_list, - STATE(4285), 1, - sym_type_parameters, - ACTIONS(4619), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1853), 49, + [3353] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3049), 1, + anon_sym_LBRACK, + STATE(1687), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3051), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -193201,6 +198180,9 @@ 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, @@ -193211,6 +198193,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, @@ -193228,79 +198212,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2070] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4621), 1, - anon_sym_as, - ACTIONS(4625), 1, - anon_sym_LPAREN, - ACTIONS(4633), 1, + [3426] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3041), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4639), 1, - anon_sym_DASH_DASH, - ACTIONS(4641), 1, - anon_sym_QMARK, - ACTIONS(4643), 1, - anon_sym_BANG, - ACTIONS(4651), 1, - anon_sym_AMP_AMP, - ACTIONS(4653), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4655), 1, - anon_sym_or, - ACTIONS(4657), 1, - anon_sym_is, - ACTIONS(4659), 1, - anon_sym_BANGis, - ACTIONS(4661), 1, - anon_sym_in, - ACTIONS(4663), 1, - anon_sym_BANGin, - STATE(1752), 1, - sym_or_block, - STATE(1753), 1, - sym_argument_list, - STATE(4285), 1, - sym_type_parameters, - ACTIONS(4619), 2, + STATE(1688), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3043), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4645), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 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(4631), 6, + 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, - ACTIONS(4629), 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(1861), 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_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, @@ -193314,79 +198280,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2180] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4621), 1, + [3499] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4663), 1, anon_sym_as, - ACTIONS(4625), 1, + ACTIONS(4665), 1, anon_sym_LPAREN, - ACTIONS(4633), 1, + ACTIONS(4671), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4673), 1, anon_sym_PLUS_PLUS, - ACTIONS(4639), 1, + ACTIONS(4675), 1, anon_sym_DASH_DASH, - ACTIONS(4641), 1, + ACTIONS(4677), 1, anon_sym_QMARK, - ACTIONS(4643), 1, + ACTIONS(4679), 1, anon_sym_BANG, - ACTIONS(4651), 1, + ACTIONS(4683), 1, anon_sym_AMP_AMP, - ACTIONS(4653), 1, + ACTIONS(4685), 1, anon_sym_PIPE_PIPE, - ACTIONS(4655), 1, + ACTIONS(4687), 1, anon_sym_or, - ACTIONS(4657), 1, + ACTIONS(4689), 1, anon_sym_is, - ACTIONS(4659), 1, + ACTIONS(4691), 1, anon_sym_BANGis, - ACTIONS(4661), 1, + ACTIONS(4693), 1, anon_sym_in, - ACTIONS(4663), 1, + ACTIONS(4695), 1, anon_sym_BANGin, - STATE(1752), 1, + STATE(1847), 1, sym_or_block, - STATE(1753), 1, + STATE(1854), 1, sym_argument_list, - STATE(4285), 1, + STATE(4392), 1, sym_type_parameters, - ACTIONS(4619), 2, + ACTIONS(4661), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4645), 2, + ACTIONS(4681), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, + STATE(1689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4667), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4631), 6, + ACTIONS(4669), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4629), 8, - anon_sym_STAR, + ACTIONS(4659), 8, anon_sym_SLASH, + anon_sym_STAR, 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, + ACTIONS(1937), 19, 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, @@ -193400,132 +198369,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2290] = 17, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4625), 1, + [3614] = 14, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, anon_sym_LPAREN, - ACTIONS(4633), 1, + ACTIONS(4671), 1, anon_sym_LBRACK, - ACTIONS(4641), 1, + ACTIONS(4677), 1, anon_sym_QMARK, - ACTIONS(4643), 1, + ACTIONS(4679), 1, anon_sym_BANG, - ACTIONS(4651), 1, - anon_sym_AMP_AMP, - ACTIONS(4661), 1, - anon_sym_in, - ACTIONS(4663), 1, - anon_sym_BANGin, - STATE(1752), 1, + STATE(1847), 1, sym_or_block, - STATE(1753), 1, + STATE(1854), 1, sym_argument_list, - STATE(4285), 1, + STATE(4392), 1, sym_type_parameters, - ACTIONS(4619), 2, + ACTIONS(4661), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4645), 2, + ACTIONS(4681), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4629), 8, - anon_sym_STAR, + STATE(1690), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4659), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 28, - 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, - 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, - [2386] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2647), 1, - anon_sym_LBRACK, - ACTIONS(2649), 58, + ACTIONS(1879), 39, 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, @@ -193543,125 +198446,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2453] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(4665), 1, - anon_sym_else, - STATE(1727), 1, - sym_else_branch, - ACTIONS(2505), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + [3705] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4663), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4665), 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(4671), 1, + anon_sym_LBRACK, + ACTIONS(4673), 1, anon_sym_PLUS_PLUS, + ACTIONS(4675), 1, anon_sym_DASH_DASH, + ACTIONS(4677), 1, anon_sym_QMARK, + ACTIONS(4679), 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, + ACTIONS(4683), 1, anon_sym_AMP_AMP, + ACTIONS(4685), 1, anon_sym_PIPE_PIPE, + ACTIONS(4687), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4689), 1, anon_sym_is, + ACTIONS(4691), 1, anon_sym_BANGis, + ACTIONS(4693), 1, anon_sym_in, + ACTIONS(4695), 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, - [2524] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(4665), 1, - anon_sym_else, - STATE(1726), 1, - sym_else_branch, - ACTIONS(2635), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + STATE(1847), 1, + sym_or_block, + STATE(1854), 1, + sym_argument_list, + STATE(4392), 1, + sym_type_parameters, + ACTIONS(4661), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4681), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1691), 2, + sym_line_comment, + sym_block_comment, + 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(4669), 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(4659), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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(1931), 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, @@ -193675,53 +198535,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2595] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2683), 1, + [3820] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, + anon_sym_LPAREN, + ACTIONS(4671), 1, anon_sym_LBRACK, - ACTIONS(2685), 58, + ACTIONS(4677), 1, + anon_sym_QMARK, + ACTIONS(4679), 1, + anon_sym_BANG, + STATE(1847), 1, + sym_or_block, + STATE(1854), 1, + sym_argument_list, + STATE(4392), 1, + sym_type_parameters, + ACTIONS(4661), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4681), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1692), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4667), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4659), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 35, 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, @@ -193739,80 +198613,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2662] = 26, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4669), 1, - anon_sym_as, - ACTIONS(4671), 1, + [3913] = 18, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4671), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4683), 1, - anon_sym_DASH_DASH, - ACTIONS(4685), 1, + ACTIONS(4677), 1, anon_sym_QMARK, - ACTIONS(4687), 1, + ACTIONS(4679), 1, anon_sym_BANG, - ACTIONS(4691), 1, - anon_sym_AMP_AMP, ACTIONS(4693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, - anon_sym_or, - ACTIONS(4697), 1, - anon_sym_is, - ACTIONS(4699), 1, - anon_sym_BANGis, - ACTIONS(4701), 1, anon_sym_in, - ACTIONS(4703), 1, + ACTIONS(4695), 1, anon_sym_BANGin, - STATE(1841), 1, + STATE(1847), 1, sym_or_block, - STATE(1842), 1, + STATE(1854), 1, sym_argument_list, - STATE(3622), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4231), 1, + STATE(4392), 1, sym_type_parameters, - ACTIONS(4667), 2, + ACTIONS(4661), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4689), 2, + ACTIONS(4681), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1759), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4673), 4, + 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(4677), 6, + ACTIONS(4669), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4675), 8, - anon_sym_STAR, + ACTIONS(4659), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1761), 15, + ACTIONS(1879), 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, @@ -193826,64 +198694,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2775] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4671), 1, + [4012] = 19, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4671), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4677), 1, anon_sym_QMARK, - ACTIONS(4687), 1, + ACTIONS(4679), 1, anon_sym_BANG, - STATE(1841), 1, + ACTIONS(4683), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_in, + ACTIONS(4695), 1, + anon_sym_BANGin, + STATE(1847), 1, sym_or_block, - STATE(1842), 1, + STATE(1854), 1, sym_argument_list, - STATE(4231), 1, + STATE(4392), 1, sym_type_parameters, - ACTIONS(4667), 2, + ACTIONS(4661), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4689), 2, + ACTIONS(4681), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1869), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + STATE(1694), 2, + sym_line_comment, + sym_block_comment, + 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(4669), 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(4659), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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(1879), 26, + 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_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, @@ -193897,39 +198776,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2857] = 12, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4671), 1, + [4113] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4671), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4677), 1, anon_sym_QMARK, - ACTIONS(4687), 1, + ACTIONS(4679), 1, anon_sym_BANG, - STATE(1841), 1, + STATE(1847), 1, sym_or_block, - STATE(1842), 1, + STATE(1854), 1, sym_argument_list, - STATE(4231), 1, + STATE(4392), 1, sym_type_parameters, - ACTIONS(4667), 2, + ACTIONS(4661), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4689), 2, + ACTIONS(4681), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4675), 8, - anon_sym_STAR, + STATE(1695), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4667), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4659), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 39, + ACTIONS(1875), 35, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193937,9 +198826,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_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -193948,7 +198834,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_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -193969,52 +198854,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2941] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3326), 1, + [4206] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, + anon_sym_LPAREN, + ACTIONS(4671), 1, anon_sym_LBRACK, - ACTIONS(3328), 57, + ACTIONS(4677), 1, + anon_sym_QMARK, + ACTIONS(4679), 1, + anon_sym_BANG, + STATE(1847), 1, + sym_or_block, + STATE(1854), 1, + sym_argument_list, + STATE(4392), 1, + sym_type_parameters, + ACTIONS(4661), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4681), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1696), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4667), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4659), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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), 35, 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, @@ -194032,15 +198932,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3007] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3330), 1, - anon_sym_LBRACK, - ACTIONS(3332), 57, + [4299] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_LBRACK, + STATE(1697), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3035), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -194052,7 +198958,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -194095,15 +199000,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3073] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3334), 1, + [4372] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3336), 57, + STATE(1698), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3027), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -194115,7 +199026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -194158,15 +199068,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3139] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3338), 1, - anon_sym_LBRACK, - ACTIONS(3340), 57, + [4445] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3333), 1, + anon_sym_LBRACK, + STATE(1699), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3335), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -194178,7 +199094,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -194221,183 +199136,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3205] = 16, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4671), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4685), 1, - anon_sym_QMARK, - ACTIONS(4687), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_in, - ACTIONS(4703), 1, - anon_sym_BANGin, - STATE(1841), 1, - sym_or_block, - STATE(1842), 1, - sym_argument_list, - STATE(4231), 1, - sym_type_parameters, - ACTIONS(4667), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4689), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4673), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4677), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4675), 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), 27, + [4518] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3353), 1, + anon_sym_LBRACK, + STATE(1700), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3355), 57, 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, - 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, - [3297] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1707), 1, - anon_sym_SEMI, - ACTIONS(1719), 1, - anon_sym_EQ, - ACTIONS(4707), 1, - anon_sym_as, - ACTIONS(4709), 1, - anon_sym_LBRACE, - ACTIONS(4711), 1, - anon_sym_COMMA, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, - anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4735), 1, - anon_sym_AMP_AMP, - ACTIONS(4737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4743), 1, - anon_sym_is, - ACTIONS(4745), 1, - anon_sym_BANGis, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - STATE(1543), 1, - sym_block, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(3359), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4719), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4715), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4721), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4717), 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(3512), 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, - [3421] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACK, - ACTIONS(3356), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -194409,7 +199162,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -194452,88 +199204,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3487] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4671), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4685), 1, - anon_sym_QMARK, - ACTIONS(4687), 1, - anon_sym_BANG, - STATE(1841), 1, - sym_or_block, - STATE(1842), 1, - sym_argument_list, - STATE(4231), 1, - sym_type_parameters, - ACTIONS(4667), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4689), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4673), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4675), 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), 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, - 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, - [3573] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACK, - ACTIONS(3257), 57, + [4591] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2741), 1, + anon_sym_LBRACK, + STATE(1701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -194545,7 +199230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -194588,163 +199272,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3639] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1707), 1, - anon_sym_SEMI, - ACTIONS(1719), 1, - anon_sym_EQ, - ACTIONS(4707), 1, + [4664] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4663), 1, anon_sym_as, - ACTIONS(4711), 1, - anon_sym_COMMA, - ACTIONS(4713), 1, + ACTIONS(4665), 1, anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, - anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4735), 1, - anon_sym_AMP_AMP, - ACTIONS(4737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4743), 1, - anon_sym_is, - ACTIONS(4745), 1, - anon_sym_BANGis, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4751), 1, - anon_sym_LBRACE, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(3359), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3802), 1, - sym_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4719), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4715), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4721), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4717), 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(3512), 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, - [3763] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4669), 1, - anon_sym_as, ACTIONS(4671), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4673), 1, anon_sym_PLUS_PLUS, - ACTIONS(4683), 1, + ACTIONS(4675), 1, anon_sym_DASH_DASH, - ACTIONS(4685), 1, + ACTIONS(4677), 1, anon_sym_QMARK, - ACTIONS(4687), 1, + ACTIONS(4679), 1, anon_sym_BANG, - ACTIONS(4691), 1, + ACTIONS(4683), 1, anon_sym_AMP_AMP, - ACTIONS(4693), 1, + ACTIONS(4685), 1, anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, + ACTIONS(4687), 1, anon_sym_or, - ACTIONS(4701), 1, + ACTIONS(4693), 1, anon_sym_in, - ACTIONS(4703), 1, + ACTIONS(4695), 1, anon_sym_BANGin, - ACTIONS(4753), 1, - anon_sym_is, ACTIONS(4755), 1, + anon_sym_is, + ACTIONS(4757), 1, anon_sym_BANGis, - STATE(1841), 1, + STATE(1847), 1, sym_or_block, - STATE(1842), 1, + STATE(1854), 1, sym_argument_list, - STATE(4231), 1, + STATE(4392), 1, sym_type_parameters, - ACTIONS(4667), 2, + ACTIONS(4661), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4689), 2, + ACTIONS(4681), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4673), 4, + STATE(1702), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4667), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4677), 6, + ACTIONS(4669), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4675), 8, - anon_sym_STAR, + ACTIONS(4659), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 19, + ACTIONS(1919), 19, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194764,42 +199361,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3871] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4671), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4685), 1, - anon_sym_QMARK, - ACTIONS(4687), 1, - anon_sym_BANG, - STATE(1841), 1, - sym_or_block, - STATE(1842), 1, - sym_argument_list, - STATE(4231), 1, - sym_type_parameters, - ACTIONS(4667), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4689), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1881), 47, + [4779] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2745), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_LBRACE, + STATE(1703), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -194807,10 +199395,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, @@ -194818,6 +199411,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, @@ -194835,15 +199430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3953] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_LBRACK, - ACTIONS(2907), 57, + [4854] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2947), 1, + anon_sym_LBRACK, + STATE(1704), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2949), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -194855,7 +199456,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -194898,27 +199498,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4019] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3179), 1, + [4927] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, + anon_sym_LPAREN, + ACTIONS(4671), 1, anon_sym_LBRACK, - ACTIONS(3181), 57, + ACTIONS(4677), 1, + anon_sym_QMARK, + ACTIONS(4679), 1, + anon_sym_BANG, + STATE(1847), 1, + sym_or_block, + STATE(1854), 1, + sym_argument_list, + STATE(4392), 1, + sym_type_parameters, + ACTIONS(4661), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4681), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1705), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1903), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_SLASH, 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, @@ -194926,15 +199546,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, @@ -194942,8 +199557,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, @@ -194961,15 +199574,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4085] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3175), 1, - anon_sym_LBRACK, - ACTIONS(3177), 57, + [5016] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3009), 1, + anon_sym_LBRACK, + STATE(1706), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3011), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -194981,7 +199600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -195024,62 +199642,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4151] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4671), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4685), 1, - anon_sym_QMARK, - ACTIONS(4687), 1, - anon_sym_BANG, - STATE(1841), 1, - sym_or_block, - STATE(1842), 1, - sym_argument_list, - STATE(4231), 1, - sym_type_parameters, - ACTIONS(4667), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4689), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4673), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4675), 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(2067), 35, + [5089] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3373), 1, + anon_sym_LBRACK, + STATE(1707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3375), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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_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, @@ -195097,16 +199710,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4237] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2983), 1, + [5162] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2741), 1, anon_sym_LBRACK, - ACTIONS(2985), 57, + STATE(1779), 1, + sym_type_parameters, + STATE(1708), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195117,7 +199737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -195160,15 +199779,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4303] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2979), 1, + [5237] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2973), 1, anon_sym_LBRACK, - ACTIONS(2981), 57, + STATE(1709), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2975), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -195180,7 +199805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -195223,91 +199847,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4759), 24, + [5310] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 1, + anon_sym_LBRACK, + ACTIONS(3149), 1, anon_sym_LBRACE, + STATE(1710), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_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, - anon_sym_POUND, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4757), 34, - 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, - anon_sym_assert, - anon_sym_defer, - anon_sym_goto, - anon_sym_break, - anon_sym_continue, - anon_sym_return, - anon_sym_DOLLARfor, - anon_sym_for, - anon_sym_asm, - [4435] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(3412), 1, - anon_sym_LBRACE, - ACTIONS(2727), 56, + 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, + [5385] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3274), 1, + anon_sym_LBRACK, + STATE(1711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3269), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(3271), 50, + anon_sym_SLASH, 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, @@ -195315,7 +199951,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, @@ -195323,7 +199958,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, @@ -195350,17 +199984,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4503] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2871), 1, - anon_sym_LBRACK, - ACTIONS(4761), 1, - anon_sym_DOLLARelse, - ACTIONS(2873), 56, + [5459] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3345), 1, + anon_sym_LBRACK, + STATE(1712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3347), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195371,7 +200009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -195414,19 +200051,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4571] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2732), 1, + [5531] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3263), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, - anon_sym_COLON, - ACTIONS(3412), 1, - anon_sym_LBRACE, - ACTIONS(2727), 55, + STATE(1713), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3265), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195437,7 +200076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -195445,6 +200083,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, @@ -195479,16 +200118,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4641] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3376), 1, + [5603] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3251), 1, anon_sym_LBRACK, - ACTIONS(3378), 57, + STATE(1714), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3253), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195499,7 +200143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -195542,16 +200185,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4707] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3011), 1, + [5675] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3259), 1, anon_sym_LBRACK, - ACTIONS(3013), 57, + STATE(1715), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3261), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195562,7 +200210,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -195605,70 +200252,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4773] = 17, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4671), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, + [5747] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, - anon_sym_QMARK, - ACTIONS(4687), 1, - anon_sym_BANG, - ACTIONS(4691), 1, - anon_sym_AMP_AMP, - ACTIONS(4701), 1, - anon_sym_in, - ACTIONS(4703), 1, - anon_sym_BANGin, - STATE(1841), 1, - sym_or_block, - STATE(1842), 1, - sym_argument_list, - STATE(4231), 1, - sym_type_parameters, - ACTIONS(4667), 2, + STATE(1716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3257), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4689), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4673), 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(4677), 6, + 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, - ACTIONS(4675), 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(1881), 26, - 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, @@ -195682,17 +200319,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4867] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2647), 1, - anon_sym_LBRACK, - ACTIONS(2651), 1, - anon_sym_LBRACE, - ACTIONS(2649), 56, + [5819] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3123), 1, + anon_sym_LBRACK, + STATE(1717), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3125), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195703,7 +200344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -195746,77 +200386,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4935] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4669), 1, + [5891] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3337), 1, + anon_sym_LBRACK, + STATE(1718), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3339), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_as, - ACTIONS(4671), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4683), 1, - anon_sym_DASH_DASH, - ACTIONS(4685), 1, - anon_sym_QMARK, - ACTIONS(4687), 1, - anon_sym_BANG, - ACTIONS(4691), 1, - anon_sym_AMP_AMP, - ACTIONS(4693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, - anon_sym_or, - ACTIONS(4697), 1, - anon_sym_is, - ACTIONS(4699), 1, - anon_sym_BANGis, - ACTIONS(4701), 1, - anon_sym_in, - ACTIONS(4703), 1, - anon_sym_BANGin, - STATE(1841), 1, - sym_or_block, - STATE(1842), 1, - sym_argument_list, - STATE(4231), 1, - sym_type_parameters, - ACTIONS(4667), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4689), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4673), 4, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4677), 6, + 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, - ACTIONS(4675), 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(1849), 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, @@ -195830,16 +200453,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5043] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_LBRACK, - ACTIONS(2715), 57, + [5963] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3325), 1, + anon_sym_LBRACK, + STATE(1719), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3327), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195850,7 +200478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -195893,16 +200520,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5109] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3394), 1, - anon_sym_LBRACK, - ACTIONS(3396), 57, + [6035] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2911), 1, + anon_sym_LBRACK, + STATE(1720), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2913), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195913,7 +200545,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -195956,17 +200587,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5175] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_LBRACK, - STATE(1710), 1, - sym_type_parameters, - ACTIONS(2715), 56, + [6107] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2939), 1, + anon_sym_LBRACK, + STATE(1721), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2941), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195977,7 +200612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196020,16 +200654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5243] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3273), 1, - anon_sym_LBRACK, - ACTIONS(3275), 57, + [6179] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3291), 1, + anon_sym_LBRACK, + STATE(1722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196040,7 +200679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196083,62 +200721,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5309] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4671), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4685), 1, - anon_sym_QMARK, - ACTIONS(4687), 1, - anon_sym_BANG, - STATE(1841), 1, - sym_or_block, - STATE(1842), 1, - sym_argument_list, - STATE(4231), 1, - sym_type_parameters, - ACTIONS(4667), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4689), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4673), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4675), 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(1865), 35, + [6251] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3287), 1, + anon_sym_LBRACK, + STATE(1723), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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_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, @@ -196156,77 +200788,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5395] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4669), 1, + [6323] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3284), 1, + anon_sym_LBRACK, + STATE(1724), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3279), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(3281), 50, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_as, - ACTIONS(4671), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4683), 1, - anon_sym_DASH_DASH, - ACTIONS(4685), 1, - anon_sym_QMARK, - ACTIONS(4687), 1, - anon_sym_BANG, - ACTIONS(4691), 1, - anon_sym_AMP_AMP, - ACTIONS(4693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4695), 1, - anon_sym_or, - ACTIONS(4697), 1, - anon_sym_is, - ACTIONS(4699), 1, - anon_sym_BANGis, - ACTIONS(4701), 1, - anon_sym_in, - ACTIONS(4703), 1, - anon_sym_BANGin, - STATE(1841), 1, - sym_or_block, - STATE(1842), 1, - sym_argument_list, - STATE(4231), 1, - sym_type_parameters, - ACTIONS(4667), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4689), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4673), 4, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4677), 6, + 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, - ACTIONS(4675), 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(1861), 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, @@ -196240,42 +200856,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5503] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4671), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4685), 1, - anon_sym_QMARK, - ACTIONS(4687), 1, - anon_sym_BANG, - STATE(1841), 1, - sym_or_block, - STATE(1842), 1, - sym_argument_list, - STATE(4231), 1, - sym_type_parameters, - ACTIONS(4667), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4689), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1853), 47, + [6397] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3317), 1, + anon_sym_LBRACK, + STATE(1725), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3319), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -196283,10 +200888,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, @@ -196294,6 +200904,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, @@ -196311,17 +200923,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5585] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(3412), 1, - anon_sym_LBRACE, - ACTIONS(2727), 56, + [6469] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2943), 1, + anon_sym_LBRACK, + STATE(1726), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2945), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196332,7 +200948,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196375,16 +200990,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5653] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LBRACK, - ACTIONS(3193), 57, + [6541] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2951), 1, + anon_sym_LBRACK, + STATE(1727), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2953), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196395,7 +201015,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196438,16 +201057,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5719] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3203), 1, - anon_sym_LBRACK, - ACTIONS(3205), 57, + [6613] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2985), 1, + anon_sym_LBRACK, + STATE(1728), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2987), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196458,7 +201082,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196501,17 +201124,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5785] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2641), 1, - anon_sym_LBRACK, - ACTIONS(4763), 1, - anon_sym_DOLLARelse, - ACTIONS(2643), 56, + [6685] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2989), 1, + anon_sym_LBRACK, + STATE(1729), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2991), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196522,7 +201149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196565,17 +201191,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5853] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2651), 1, - anon_sym_LBRACE, - ACTIONS(3199), 1, - anon_sym_LBRACK, - ACTIONS(3201), 56, + [6757] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2993), 1, + anon_sym_LBRACK, + STATE(1730), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2995), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196586,7 +201216,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196629,16 +201258,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5921] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3211), 1, - anon_sym_LBRACK, - ACTIONS(3213), 57, + [6829] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3307), 1, + anon_sym_LBRACK, + ACTIONS(4759), 1, + anon_sym_BANG, + STATE(1731), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3309), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196649,7 +201285,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196661,7 +201296,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, @@ -196692,16 +201326,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5987] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3243), 1, - anon_sym_LBRACK, - ACTIONS(3245), 57, + [6903] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3005), 1, + anon_sym_LBRACK, + STATE(1732), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3007), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196712,7 +201351,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196755,16 +201393,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6053] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACK, - ACTIONS(2915), 57, + [6975] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3321), 1, + anon_sym_LBRACK, + STATE(1733), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196775,7 +201418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196818,15 +201460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6119] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3139), 1, - anon_sym_LBRACK, - ACTIONS(3141), 56, + [7047] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3369), 1, + anon_sym_LBRACK, + STATE(1734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196837,7 +201485,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196880,15 +201527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6184] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3380), 1, + [7119] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(3382), 56, + STATE(1735), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3129), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196899,7 +201552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -196942,15 +201594,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6249] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3402), 1, - anon_sym_LBRACK, - ACTIONS(3404), 56, + [7191] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3341), 1, + anon_sym_LBRACK, + STATE(1736), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196961,7 +201619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197004,15 +201661,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6314] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3442), 1, - anon_sym_LBRACK, - ACTIONS(3444), 56, + [7263] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2977), 1, + anon_sym_LBRACK, + STATE(1737), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2979), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197023,7 +201686,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197066,15 +201728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6379] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3131), 1, - anon_sym_LBRACK, - ACTIONS(3133), 56, + [7335] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3021), 1, + anon_sym_LBRACK, + STATE(1738), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3023), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197085,7 +201753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197128,15 +201795,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6444] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3097), 1, - anon_sym_LBRACK, - ACTIONS(3099), 56, + [7407] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2907), 1, + anon_sym_LBRACK, + STATE(1739), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2909), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197147,7 +201820,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197190,15 +201862,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6509] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACK, - ACTIONS(3253), 56, + [7479] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3029), 1, + anon_sym_LBRACK, + STATE(1740), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3031), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197209,7 +201887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197252,15 +201929,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6574] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3426), 1, + [7551] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3313), 1, anon_sym_LBRACK, - ACTIONS(3428), 56, + STATE(1741), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197271,7 +201954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197314,15 +201996,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6639] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2897), 1, + [7623] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3284), 1, + anon_sym_LBRACK, + STATE(1742), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3279), 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(3281), 35, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [7697] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3274), 1, anon_sym_LBRACK, - ACTIONS(2899), 56, + STATE(1743), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3269), 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(3271), 35, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [7771] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3357), 1, + anon_sym_LBRACK, + STATE(1744), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197333,7 +202157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197376,15 +202199,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6704] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3368), 1, + [7843] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3037), 1, anon_sym_LBRACK, - ACTIONS(3370), 56, + STATE(1745), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3039), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197395,7 +202224,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, 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_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, + [7915] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(1746), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2757), 52, anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [7989] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3440), 1, + anon_sym_LBRACK, + STATE(1747), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197438,29 +202401,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6769] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2653), 1, - anon_sym_LBRACK, - ACTIONS(2649), 4, + [8061] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3429), 1, + anon_sym_LBRACK, + STATE(1748), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2651), 52, - anon_sym_SEMI, + anon_sym_SLASH, 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, @@ -197468,6 +202433,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, @@ -197475,6 +202441,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, @@ -197501,15 +202468,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6836] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 56, + [8133] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3045), 1, + anon_sym_LBRACK, + STATE(1749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3047), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197520,7 +202493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197563,15 +202535,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6901] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2909), 1, - anon_sym_LBRACK, - ACTIONS(2911), 56, + [8205] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3135), 1, + anon_sym_LBRACK, + STATE(1750), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3137), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197582,7 +202560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197625,15 +202602,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6966] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 56, + [8277] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3053), 1, + anon_sym_LBRACK, + STATE(1751), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3055), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197644,7 +202627,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197687,15 +202669,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7031] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2991), 1, - anon_sym_LBRACK, - ACTIONS(2993), 56, + [8349] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3385), 1, + anon_sym_LBRACK, + STATE(1752), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3387), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197706,7 +202694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197749,15 +202736,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7096] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_LBRACK, - ACTIONS(2997), 56, + [8421] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2981), 1, + anon_sym_LBRACK, + STATE(1753), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2983), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197768,7 +202761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197811,15 +202803,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7161] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2999), 1, + [8493] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(3001), 56, + STATE(1754), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3141), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197830,7 +202828,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197873,15 +202870,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7226] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3350), 1, - anon_sym_LBRACK, - ACTIONS(3352), 56, + [8565] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3151), 1, + anon_sym_LBRACK, + STATE(1755), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3153), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197892,7 +202895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197935,17 +202937,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7291] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3267), 1, + [8637] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2997), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, - anon_sym_BANG, - ACTIONS(3269), 55, + STATE(1756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -197956,7 +202962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -197968,6 +202973,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, @@ -197998,15 +203004,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7358] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(3049), 56, + [8709] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, + anon_sym_LBRACK, + STATE(1757), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3411), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198017,7 +203029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198060,15 +203071,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7423] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3051), 1, - anon_sym_LBRACK, - ACTIONS(3053), 56, + [8781] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3155), 1, + anon_sym_LBRACK, + STATE(1758), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3157), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198079,7 +203096,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198122,15 +203138,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7488] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3057), 56, + [8853] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3185), 1, + anon_sym_LBRACK, + STATE(1759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3187), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198141,7 +203163,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198184,15 +203205,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7553] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3059), 1, - anon_sym_LBRACK, - ACTIONS(3061), 56, + [8925] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3189), 1, + anon_sym_LBRACK, + STATE(1760), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3191), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198203,7 +203230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198246,15 +203272,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7618] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_LBRACK, - ACTIONS(3083), 56, + [8997] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3197), 1, + anon_sym_LBRACK, + STATE(1761), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3199), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198265,7 +203297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198308,15 +203339,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7683] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3017), 56, + [9069] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3436), 1, + anon_sym_LBRACK, + STATE(1762), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198327,7 +203364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198370,15 +203406,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7748] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_LBRACK, - ACTIONS(3091), 56, + [9141] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(1763), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2757), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198389,7 +203431,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198432,15 +203473,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7813] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3093), 1, - anon_sym_LBRACK, - ACTIONS(3095), 56, + [9213] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3201), 1, + anon_sym_LBRACK, + STATE(1764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3203), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198451,7 +203498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198494,15 +203540,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7878] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3103), 56, + [9285] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3413), 1, + anon_sym_LBRACK, + STATE(1765), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3415), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198513,7 +203565,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198556,16 +203607,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7943] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3127), 1, - anon_sym_LBRACK, - ACTIONS(3129), 56, + [9357] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3429), 1, + anon_sym_LBRACK, + ACTIONS(3433), 1, + anon_sym_DOT, + STATE(1766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, + anon_sym_SLASH, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -198575,7 +203633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198618,15 +203675,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8008] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_LBRACK, - ACTIONS(3145), 56, + [9431] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3205), 1, + anon_sym_LBRACK, + STATE(1767), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3207), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198637,7 +203700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198680,15 +203742,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8073] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3171), 1, - anon_sym_LBRACK, - ACTIONS(3173), 56, + [9503] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3405), 1, + anon_sym_LBRACK, + STATE(1768), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3407), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198699,7 +203767,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198742,15 +203809,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8138] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3183), 1, - anon_sym_LBRACK, - ACTIONS(3185), 56, + [9575] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2831), 1, + anon_sym_LBRACK, + STATE(1769), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198761,7 +203834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198804,15 +203876,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8203] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3195), 1, - anon_sym_LBRACK, - ACTIONS(3197), 56, + [9647] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3001), 1, + anon_sym_LBRACK, + STATE(1770), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3003), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -198823,7 +203901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -198866,29 +203943,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8268] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3222), 1, - anon_sym_LBRACK, - ACTIONS(3217), 6, + [9719] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3417), 1, + anon_sym_LBRACK, + STATE(1771), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3419), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(3219), 50, + anon_sym_SLASH, 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, @@ -198896,6 +203975,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, @@ -198903,6 +203983,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, @@ -198929,29 +204010,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8335] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3232), 1, - anon_sym_LBRACK, - ACTIONS(3227), 6, + [9791] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3013), 1, + anon_sym_LBRACK, + STATE(1772), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3015), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(3229), 50, + anon_sym_SLASH, 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, @@ -198959,6 +204042,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, @@ -198966,6 +204050,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, @@ -198992,15 +204077,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8402] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3235), 1, - anon_sym_LBRACK, - ACTIONS(3237), 56, + [9863] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3147), 1, + anon_sym_LBRACK, + STATE(1773), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199011,7 +204102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199054,19 +204144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8467] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2503), 1, + [9935] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3247), 1, anon_sym_LBRACK, - ACTIONS(4767), 1, - anon_sym_else, - STATE(1878), 1, - sym_else_branch, - ACTIONS(2505), 54, + STATE(1774), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3249), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199077,7 +204169,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199085,6 +204176,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, @@ -199092,6 +204184,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, @@ -199118,15 +204211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8536] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3239), 1, + [10007] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3211), 1, anon_sym_LBRACK, - ACTIONS(3241), 56, + STATE(1775), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3213), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199137,7 +204236,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199180,15 +204278,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8601] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3342), 1, - anon_sym_LBRACK, - ACTIONS(3344), 56, + [10079] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3219), 1, + anon_sym_LBRACK, + STATE(1776), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3221), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199199,7 +204303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199242,19 +204345,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8666] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2633), 1, + [10151] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(4767), 1, - anon_sym_else, - STATE(1877), 1, - sym_else_branch, - ACTIONS(2635), 54, + STATE(1777), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3229), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199265,7 +204370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199273,6 +204377,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, @@ -199280,6 +204385,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, @@ -199306,15 +204412,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8735] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3277), 1, + [10223] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2447), 1, anon_sym_LBRACK, - ACTIONS(3279), 56, + ACTIONS(4761), 1, + anon_sym_else, + STATE(1894), 1, + sym_else_branch, + STATE(1778), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199325,7 +204441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199333,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, @@ -199341,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, @@ -199368,15 +204481,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8800] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3293), 1, - anon_sym_LBRACK, - ACTIONS(3295), 56, + [10299] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3425), 1, + anon_sym_LBRACK, + STATE(1779), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3427), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199387,7 +204506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199430,15 +204548,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8865] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3187), 1, + [10371] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(3189), 56, + ACTIONS(4761), 1, + anon_sym_else, + STATE(1827), 1, + sym_else_branch, + STATE(1780), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2457), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199449,7 +204577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199457,7 +204584,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, @@ -199465,7 +204591,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, @@ -199492,15 +204617,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8930] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3299), 56, + [10447] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3401), 1, + anon_sym_LBRACK, + STATE(1781), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3403), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199511,7 +204642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199554,15 +204684,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8995] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3301), 1, - anon_sym_LBRACK, - ACTIONS(3303), 56, + [10519] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3397), 1, + anon_sym_LBRACK, + STATE(1782), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3399), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199573,7 +204709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199616,15 +204751,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9060] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_LBRACK, - ACTIONS(3307), 56, + [10591] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3393), 1, + anon_sym_LBRACK, + STATE(1783), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3395), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199635,7 +204776,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199678,15 +204818,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9125] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3316), 1, - anon_sym_LBRACK, - ACTIONS(3318), 56, + [10663] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2827), 1, + anon_sym_LBRACK, + STATE(1784), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2829), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199697,7 +204843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199705,7 +204850,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, @@ -199713,7 +204857,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, @@ -199723,6 +204866,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, @@ -199740,15 +204885,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9190] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3263), 1, - anon_sym_LBRACK, - ACTIONS(3265), 56, + [10735] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2745), 1, + anon_sym_LBRACK, + STATE(1785), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199759,7 +204910,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199767,7 +204917,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, @@ -199775,7 +204924,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, @@ -199785,6 +204933,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, @@ -199802,16 +204952,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9255] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3320), 1, - anon_sym_LBRACK, - ACTIONS(3322), 56, + [10807] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2835), 1, + anon_sym_DOT, + ACTIONS(3147), 1, + anon_sym_LBRACK, + STATE(1786), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, + anon_sym_SLASH, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -199821,7 +204978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199864,15 +205020,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9320] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3027), 56, + [10881] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3421), 1, + anon_sym_LBRACK, + STATE(1787), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3423), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199883,7 +205045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199926,15 +205087,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9385] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3418), 1, - anon_sym_LBRACK, - ACTIONS(3420), 56, + [10953] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3057), 1, + anon_sym_LBRACK, + STATE(1788), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3059), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -199945,7 +205112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -199988,15 +205154,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9450] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3450), 1, - anon_sym_LBRACK, - ACTIONS(3452), 56, + [11025] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3389), 1, + anon_sym_LBRACK, + STATE(1789), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3391), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -200007,7 +205179,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -200050,26 +205221,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9515] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3434), 1, - anon_sym_LBRACK, - ACTIONS(3436), 56, + [11097] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(1790), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2757), 52, + anon_sym_SLASH, 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, @@ -200112,15 +205289,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9580] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3390), 1, + [11171] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3243), 1, anon_sym_LBRACK, - ACTIONS(3392), 56, + STATE(1791), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3245), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -200131,7 +205314,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -200174,15 +205356,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9645] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACK, - ACTIONS(3362), 56, + [11243] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_LBRACK, + STATE(1792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3367), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -200193,7 +205381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -200236,15 +205423,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9710] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3364), 1, - anon_sym_LBRACK, - ACTIONS(3366), 56, + [11315] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3361), 1, + anon_sym_LBRACK, + STATE(1793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3363), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -200255,7 +205448,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -200298,15 +205490,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9775] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3374), 56, + [11387] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3349), 1, + anon_sym_LBRACK, + STATE(1794), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3351), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -200317,7 +205515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -200360,52 +205557,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9840] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2653), 1, + [11459] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(2649), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2651), 52, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 7, 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, + ACTIONS(4707), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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(1877), 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_QMARK_DOT, - anon_sym_POUND_LBRACK, + anon_sym_or, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -200423,29 +205634,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9907] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2725), 1, + [11552] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(2727), 56, - 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, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1796), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_CARET, + ACTIONS(4763), 8, anon_sym_SLASH, + anon_sym_STAR, 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(1877), 30, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -200453,21 +205692,10 @@ 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, @@ -200484,16 +205712,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9972] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3085), 1, - anon_sym_LBRACK, - ACTIONS(3087), 56, + [11647] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 1, + anon_sym_LBRACK, + ACTIONS(3149), 1, + anon_sym_LBRACE, + STATE(1797), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -200504,7 +205739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -200512,7 +205746,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, @@ -200520,7 +205753,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, @@ -200547,55 +205779,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10037] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3406), 1, + [11720] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1931), 1, + anon_sym_EQ, + ACTIONS(4767), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(3408), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + 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(4781), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4787), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4789), 1, + anon_sym_DASH_DASH, + ACTIONS(4791), 1, + anon_sym_AMP_AMP, + ACTIONS(4793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4795), 1, + anon_sym_or, + ACTIONS(4797), 1, + anon_sym_is, + ACTIONS(4799), 1, + anon_sym_BANGis, + ACTIONS(4801), 1, + anon_sym_in, + ACTIONS(4803), 1, + anon_sym_BANGin, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4783), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1798), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4769), 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(4785), 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, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4763), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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(1929), 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, @@ -200608,56 +205869,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10102] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3446), 1, + [11839] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1937), 1, + anon_sym_EQ, + ACTIONS(4767), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(3448), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + 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(4781), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4787), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4789), 1, + anon_sym_DASH_DASH, + ACTIONS(4791), 1, + anon_sym_AMP_AMP, + ACTIONS(4793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4795), 1, + anon_sym_or, + ACTIONS(4797), 1, + anon_sym_is, + ACTIONS(4799), 1, + anon_sym_BANGis, + ACTIONS(4801), 1, + anon_sym_in, + ACTIONS(4803), 1, + anon_sym_BANGin, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4783), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4769), 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(4785), 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, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4763), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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(1935), 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, @@ -200670,16 +205959,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10167] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3410), 1, - anon_sym_LBRACK, - ACTIONS(3412), 56, + [11958] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2745), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_LBRACE, + STATE(1800), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -200690,7 +205986,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -200698,7 +205993,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, @@ -200706,7 +206000,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, @@ -200733,29 +206026,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10232] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3414), 1, + [12031] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(3416), 56, - 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, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1801), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 7, 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_CARET, + ACTIONS(4763), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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), 30, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -200763,21 +206083,10 @@ 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, @@ -200794,16 +206103,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10297] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3386), 1, - anon_sym_LBRACK, - ACTIONS(3388), 56, + [12124] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2741), 1, + anon_sym_LBRACK, + STATE(1875), 1, + sym_type_parameters, + STATE(1802), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -200814,7 +206130,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -200822,7 +206137,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, @@ -200830,7 +206144,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, @@ -200857,29 +206170,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10362] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3422), 1, + [12197] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(3424), 56, - 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, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1803), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1875), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_CARET, + ACTIONS(4763), 8, anon_sym_SLASH, + anon_sym_STAR, 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(1873), 30, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -200887,21 +206228,10 @@ 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, @@ -200918,56 +206248,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10427] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3430), 1, + [12292] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1879), 1, + anon_sym_EQ, + ACTIONS(4767), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(3432), 56, - 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(4791), 1, + anon_sym_AMP_AMP, + ACTIONS(4801), 1, + anon_sym_in, + ACTIONS(4803), 1, + anon_sym_BANGin, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4783), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4769), 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(4785), 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, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4763), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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, + ACTIONS(1877), 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, @@ -200980,52 +206331,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10492] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2683), 1, + [12397] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(2685), 56, - 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, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1805), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1903), 15, + anon_sym_SLASH, 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, + ACTIONS(1901), 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_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, @@ -201042,52 +206407,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10557] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2647), 1, + [12488] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(2649), 56, - 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, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1806), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1915), 15, + anon_sym_SLASH, 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, + ACTIONS(1913), 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_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, @@ -201104,18 +206483,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10622] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_DOT, - ACTIONS(3410), 1, - anon_sym_LBRACK, - ACTIONS(3412), 55, + [12579] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2763), 1, + anon_sym_LBRACK, + ACTIONS(4805), 1, + anon_sym_DOLLARelse, + STATE(1807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2765), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -201125,7 +206510,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -201133,7 +206517,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, @@ -201141,7 +206524,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, @@ -201168,55 +206550,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10689] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3398), 1, + [12652] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1879), 1, + anon_sym_EQ, + ACTIONS(4767), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(3400), 56, - 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(4801), 1, + anon_sym_in, + ACTIONS(4803), 1, + anon_sym_BANGin, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4783), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1808), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4769), 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(4785), 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, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4763), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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(1877), 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_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, @@ -201229,18 +206632,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10754] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3309), 1, + [12755] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, anon_sym_LBRACK, - ACTIONS(3313), 1, - anon_sym_DOT, - ACTIONS(3311), 55, + STATE(1809), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -201250,7 +206659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -201258,7 +206666,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, @@ -201266,7 +206673,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, @@ -201293,51 +206699,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10821] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3207), 1, + [12828] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(3209), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1810), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1903), 15, + anon_sym_SLASH, 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, + ACTIONS(1901), 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_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -201355,29 +206775,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10886] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3289), 1, + [12919] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(3291), 56, - 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, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1871), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_CARET, + ACTIONS(4763), 8, anon_sym_SLASH, + anon_sym_STAR, 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(1869), 30, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -201385,21 +206833,10 @@ 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, @@ -201416,56 +206853,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10951] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2653), 1, - anon_sym_LBRACK, - ACTIONS(2651), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + [13014] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1761), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(4711), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4717), 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(4725), 1, + anon_sym_LBRACK, + ACTIONS(4727), 1, anon_sym_PLUS_PLUS, + ACTIONS(4729), 1, anon_sym_DASH_DASH, + ACTIONS(4731), 1, anon_sym_QMARK, + ACTIONS(4733), 1, anon_sym_BANG, + ACTIONS(4735), 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(4737), 1, anon_sym_AMP_AMP, + ACTIONS(4739), 1, anon_sym_PIPE_PIPE, + ACTIONS(4741), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4743), 1, anon_sym_POUND_LBRACK, + ACTIONS(4745), 1, anon_sym_is, + ACTIONS(4747), 1, anon_sym_BANGis, + ACTIONS(4749), 1, anon_sym_in, + ACTIONS(4751), 1, anon_sym_BANGin, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(3983), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4721), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1812), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4719), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4723), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4707), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3550), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201479,15 +206945,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11016] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3285), 1, - anon_sym_LBRACK, - ACTIONS(3287), 56, + [13137] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2819), 1, + anon_sym_LBRACK, + ACTIONS(4807), 1, + anon_sym_DOLLARelse, + STATE(1813), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2821), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -201498,7 +206972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -201506,7 +206979,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, @@ -201514,7 +206986,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, @@ -201541,29 +207012,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11081] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3346), 1, + [13210] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(3348), 56, - 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, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 15, + anon_sym_SLASH, 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_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 30, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -201571,21 +207068,10 @@ 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, @@ -201602,52 +207088,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11146] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3247), 1, + [13301] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(3249), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1815), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1915), 15, + anon_sym_SLASH, 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, + ACTIONS(1913), 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_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -201665,118 +207164,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11211] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3222), 1, - anon_sym_LBRACK, - ACTIONS(3217), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, + [13392] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1711), 1, + anon_sym_LBRACE, + ACTIONS(1725), 1, 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(3219), 35, - anon_sym_DOT, + ACTIONS(4711), 1, anon_sym_as, + ACTIONS(4717), 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, + ACTIONS(4725), 1, + anon_sym_LBRACK, + ACTIONS(4727), 1, anon_sym_PLUS_PLUS, + ACTIONS(4729), 1, anon_sym_DASH_DASH, + ACTIONS(4731), 1, anon_sym_QMARK, + ACTIONS(4733), 1, anon_sym_BANG, + ACTIONS(4735), 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(4737), 1, anon_sym_AMP_AMP, + ACTIONS(4739), 1, anon_sym_PIPE_PIPE, + ACTIONS(4741), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4743), 1, anon_sym_POUND_LBRACK, + ACTIONS(4745), 1, anon_sym_is, + ACTIONS(4747), 1, anon_sym_BANGis, + ACTIONS(4749), 1, anon_sym_in, + ACTIONS(4751), 1, anon_sym_BANGin, - [11278] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACK, - ACTIONS(3440), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4809), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(3383), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4721), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4719), 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(4723), 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, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4707), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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(3502), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201790,51 +207257,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11343] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3281), 1, + [13517] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(3283), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1817), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1871), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4719), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_CARET, + ACTIONS(4707), 8, anon_sym_SLASH, + anon_sym_STAR, 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(1869), 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_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, @@ -201852,140 +207335,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11408] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3232), 1, + [13612] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(3227), 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(3229), 35, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1875), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4719), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_CARET, + ACTIONS(4707), 8, anon_sym_SLASH, + anon_sym_STAR, 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(1873), 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_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, - [11475] = 27, + 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, + [13707] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1761), 1, + anon_sym_SEMI, + ACTIONS(1765), 1, anon_sym_EQ, - ACTIONS(4707), 1, + ACTIONS(4711), 1, anon_sym_as, - ACTIONS(4713), 1, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, + anon_sym_LBRACK, ACTIONS(4727), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(4729), 1, - anon_sym_QMARK, + anon_sym_DASH_DASH, ACTIONS(4731), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4733), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4735), 1, - anon_sym_AMP_AMP, - ACTIONS(4737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4739), 1, - anon_sym_or, + anon_sym_LBRACK2, ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, + anon_sym_or, ACTIONS(4743), 1, - anon_sym_is, + anon_sym_POUND_LBRACK, ACTIONS(4745), 1, - anon_sym_BANGis, + anon_sym_is, ACTIONS(4747), 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(4749), 1, + ACTIONS(4825), 1, anon_sym_BANGin, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, + STATE(2008), 1, sym_or_block, - STATE(4315), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4011), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4705), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4719), 2, + ACTIONS(4815), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4715), 4, + STATE(1819), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4721), 4, + ACTIONS(4817), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4717), 8, - anon_sym_STAR, + ACTIONS(4811), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1859), 16, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3550), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -202000,64 +207505,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11587] = 13, + [13830] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1879), 1, + anon_sym_EQ, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4723), 1, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, ACTIONS(4731), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, anon_sym_LBRACK2, - ACTIONS(4741), 1, + ACTIONS(4737), 1, + anon_sym_AMP_AMP, + ACTIONS(4743), 1, anon_sym_POUND_LBRACK, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, + ACTIONS(4749), 1, + anon_sym_in, + ACTIONS(4751), 1, + anon_sym_BANGin, + STATE(2008), 1, sym_or_block, - STATE(4315), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4705), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1853), 15, - anon_sym_EQ, + ACTIONS(4721), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4719), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_CARET, + ACTIONS(4723), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4707), 8, anon_sym_SLASH, + anon_sym_STAR, 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(1851), 30, + ACTIONS(1877), 23, 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, @@ -202071,78 +207588,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11671] = 27, + [13935] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1879), 1, anon_sym_EQ, - ACTIONS(4707), 1, - anon_sym_as, - ACTIONS(4713), 1, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, - anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4731), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4733), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4735), 1, - anon_sym_AMP_AMP, - ACTIONS(4737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, + anon_sym_LBRACK2, ACTIONS(4743), 1, - anon_sym_is, - ACTIONS(4745), 1, - anon_sym_BANGis, - ACTIONS(4747), 1, - anon_sym_in, + anon_sym_POUND_LBRACK, ACTIONS(4749), 1, + anon_sym_in, + ACTIONS(4751), 1, anon_sym_BANGin, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, + STATE(2008), 1, sym_or_block, - STATE(4315), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4705), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4719), 2, + ACTIONS(4721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4715), 4, + STATE(1821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4719), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4721), 4, + ACTIONS(4723), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4717), 8, - anon_sym_STAR, + ACTIONS(4707), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 16, + ACTIONS(1877), 24, anon_sym_SEMI, + 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_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202156,80 +207670,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11783] = 29, + [14038] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - anon_sym_SEMI, - ACTIONS(1761), 1, - anon_sym_EQ, - ACTIONS(4707), 1, - anon_sym_as, - ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, - anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4731), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, ACTIONS(4743), 1, - anon_sym_is, - ACTIONS(4745), 1, - anon_sym_BANGis, - ACTIONS(4777), 1, - anon_sym_AMP_AMP, - ACTIONS(4779), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4781), 1, - anon_sym_in, - ACTIONS(4783), 1, - anon_sym_BANGin, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, + anon_sym_POUND_LBRACK, + STATE(2008), 1, sym_or_block, - STATE(4066), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4315), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4705), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4773), 2, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4769), 4, + ACTIONS(4719), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4775), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4771), 8, - anon_sym_STAR, + ACTIONS(4707), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3554), 14, + ACTIONS(1877), 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, @@ -202243,37 +207748,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11899] = 13, + [14133] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4789), 1, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4731), 1, anon_sym_QMARK, - ACTIONS(4793), 1, + ACTIONS(4733), 1, anon_sym_BANG, - ACTIONS(4795), 1, + ACTIONS(4735), 1, anon_sym_LBRACK2, - ACTIONS(4797), 1, + ACTIONS(4743), 1, anon_sym_POUND_LBRACK, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, + STATE(2008), 1, sym_or_block, - STATE(4215), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4785), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1881), 15, + STATE(1823), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 15, + anon_sym_SLASH, 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, @@ -202283,7 +207793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 30, + ACTIONS(1877), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -202291,10 +207802,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, @@ -202314,79 +207823,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11983] = 29, + anon_sym_COLON_EQ, + [14224] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - anon_sym_LBRACE, - ACTIONS(1761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1937), 1, anon_sym_EQ, - ACTIONS(4707), 1, + ACTIONS(4711), 1, anon_sym_as, - ACTIONS(4713), 1, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, + anon_sym_LBRACK, ACTIONS(4727), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(4729), 1, - anon_sym_QMARK, + anon_sym_DASH_DASH, ACTIONS(4731), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4733), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4735), 1, - anon_sym_AMP_AMP, + anon_sym_LBRACK2, ACTIONS(4737), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(4739), 1, - anon_sym_or, + anon_sym_PIPE_PIPE, ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, + anon_sym_or, ACTIONS(4743), 1, - anon_sym_is, + anon_sym_POUND_LBRACK, ACTIONS(4745), 1, - anon_sym_BANGis, + anon_sym_is, ACTIONS(4747), 1, - anon_sym_in, + anon_sym_BANGis, ACTIONS(4749), 1, + anon_sym_in, + ACTIONS(4751), 1, anon_sym_BANGin, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, + STATE(2008), 1, sym_or_block, - STATE(3953), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4315), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4705), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4719), 2, + ACTIONS(4721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4715), 4, + STATE(1824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4719), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4721), 4, + ACTIONS(4723), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4717), 8, - anon_sym_STAR, + ACTIONS(4707), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3554), 14, + ACTIONS(1935), 16, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -202401,60 +207914,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12099] = 13, + [14343] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1931), 1, + anon_sym_EQ, + ACTIONS(4711), 1, + anon_sym_as, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4723), 1, + ACTIONS(4725), 1, anon_sym_LBRACK, + ACTIONS(4727), 1, + anon_sym_PLUS_PLUS, ACTIONS(4729), 1, - anon_sym_QMARK, + anon_sym_DASH_DASH, ACTIONS(4731), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, anon_sym_LBRACK2, + ACTIONS(4737), 1, + anon_sym_AMP_AMP, + ACTIONS(4739), 1, + anon_sym_PIPE_PIPE, ACTIONS(4741), 1, + anon_sym_or, + ACTIONS(4743), 1, anon_sym_POUND_LBRACK, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, + ACTIONS(4745), 1, + anon_sym_is, + ACTIONS(4747), 1, + anon_sym_BANGis, + ACTIONS(4749), 1, + anon_sym_in, + ACTIONS(4751), 1, + anon_sym_BANGin, + STATE(2008), 1, sym_or_block, - STATE(4315), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4705), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1869), 15, - anon_sym_EQ, + ACTIONS(4721), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1825), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4719), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4723), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4707), 8, + anon_sym_SLASH, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1929), 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, + [14462] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3143), 1, + anon_sym_LBRACK, + STATE(1826), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3145), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SLASH, + 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_fn, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1867), 30, - 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, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [14532] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3197), 1, + anon_sym_LBRACK, + STATE(1827), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3199), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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, @@ -202472,61 +208134,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12183] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4789), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_QMARK, - ACTIONS(4793), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_LBRACK2, - ACTIONS(4797), 1, - anon_sym_POUND_LBRACK, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, - sym_or_block, - STATE(4215), 1, - sym_type_parameters, - ACTIONS(4785), 2, + [14602] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACK, + STATE(1828), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2975), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1853), 15, + 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, - ACTIONS(1851), 30, + 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, + [14672] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3429), 1, + anon_sym_LBRACK, + ACTIONS(3433), 1, + anon_sym_DOT, + STATE(1829), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 53, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, 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_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_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, @@ -202541,19 +208262,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [12267] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2871), 1, - anon_sym_LBRACK, - ACTIONS(4799), 1, - anon_sym_DOLLARelse, - ACTIONS(2873), 54, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [14744] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3421), 1, + anon_sym_LBRACK, + STATE(1830), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3423), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -202564,7 +208290,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -202605,79 +208330,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12333] = 27, + [14814] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1919), 1, anon_sym_EQ, - ACTIONS(4787), 1, + ACTIONS(4711), 1, + anon_sym_as, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4789), 1, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4727), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4729), 1, + anon_sym_DASH_DASH, + ACTIONS(4731), 1, anon_sym_QMARK, - ACTIONS(4793), 1, + ACTIONS(4733), 1, anon_sym_BANG, - ACTIONS(4795), 1, + ACTIONS(4735), 1, anon_sym_LBRACK2, - ACTIONS(4797), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4813), 1, - anon_sym_DASH_DASH, - ACTIONS(4815), 1, + ACTIONS(4737), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4739), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4741), 1, anon_sym_or, - ACTIONS(4821), 1, - anon_sym_is, - ACTIONS(4823), 1, - anon_sym_BANGis, - ACTIONS(4825), 1, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4749), 1, anon_sym_in, - ACTIONS(4827), 1, + ACTIONS(4751), 1, anon_sym_BANGin, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, + ACTIONS(4827), 1, + anon_sym_is, + ACTIONS(4829), 1, + anon_sym_BANGis, + STATE(2008), 1, sym_or_block, - STATE(4215), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4785), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4807), 2, + ACTIONS(4721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4803), 4, + STATE(1831), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4719), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4809), 4, + ACTIONS(4723), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4805), 8, - anon_sym_STAR, + ACTIONS(4707), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1859), 16, + ACTIONS(1917), 15, 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, @@ -202690,136 +208418,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12445] = 27, + anon_sym_COLON_EQ, + [14932] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1832), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2829), 18, + anon_sym_SLASH, anon_sym_EQ, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4789), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_QMARK, - ACTIONS(4793), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_LBRACK2, - ACTIONS(4797), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4813), 1, - anon_sym_DASH_DASH, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_or, - ACTIONS(4821), 1, - anon_sym_is, - ACTIONS(4823), 1, - anon_sym_BANGis, - ACTIONS(4825), 1, - anon_sym_in, - ACTIONS(4827), 1, - anon_sym_BANGin, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, - sym_or_block, - STATE(4215), 1, - sym_type_parameters, - ACTIONS(4785), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4807), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4803), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4809), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4805), 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(1847), 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, - [12557] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(3412), 1, - anon_sym_LBRACE, - ACTIONS(2727), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2827), 37, 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_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_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, @@ -202836,62 +208484,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12623] = 13, + [15002] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4789), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4831), 1, + anon_sym_COMMA, + ACTIONS(4833), 1, + anon_sym_COLON_EQ, + STATE(3949), 1, + aux_sym_identifier_list_repeat1, + ACTIONS(2838), 2, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_QMARK, - ACTIONS(4793), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_LBRACK2, - ACTIONS(4797), 1, - anon_sym_POUND_LBRACK, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, - sym_or_block, - STATE(4215), 1, - sym_type_parameters, - ACTIONS(4785), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1869), 15, + STATE(1833), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 19, + anon_sym_SLASH, 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_COLON, + 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(1867), 30, + ACTIONS(2831), 31, + 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_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, @@ -202908,17 +208553,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12707] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2651), 1, - anon_sym_LBRACE, - ACTIONS(3199), 1, - anon_sym_LBRACK, - ACTIONS(3201), 54, + [15080] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3436), 1, + anon_sym_LBRACK, + STATE(1834), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -202929,7 +208578,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -202970,17 +208618,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12773] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_LBRACK, - STATE(1906), 1, - sym_type_parameters, - ACTIONS(2715), 54, + [15150] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3369), 1, + anon_sym_LBRACK, + STATE(1835), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -202991,7 +208643,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -203032,81 +208683,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12839] = 30, + [15220] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1719), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1919), 1, anon_sym_EQ, - ACTIONS(4707), 1, + ACTIONS(4711), 1, anon_sym_as, - ACTIONS(4713), 1, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, + anon_sym_LBRACK, ACTIONS(4727), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(4729), 1, - anon_sym_QMARK, + anon_sym_DASH_DASH, ACTIONS(4731), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4733), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4735), 1, - anon_sym_AMP_AMP, - ACTIONS(4737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4739), 1, - anon_sym_or, + anon_sym_LBRACK2, ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, + anon_sym_or, ACTIONS(4743), 1, - anon_sym_is, - ACTIONS(4745), 1, - anon_sym_BANGis, - ACTIONS(4747), 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(4749), 1, + ACTIONS(4825), 1, anon_sym_BANGin, + ACTIONS(4827), 1, + anon_sym_is, ACTIONS(4829), 1, - anon_sym_COMMA, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, + anon_sym_BANGis, + STATE(2008), 1, sym_or_block, - STATE(3359), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4315), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4705), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4719), 2, + ACTIONS(4815), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4715), 4, + STATE(1836), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4721), 4, + ACTIONS(4817), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4717), 8, - anon_sym_STAR, + ACTIONS(4811), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3512), 13, + ACTIONS(1917), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203120,61 +208772,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12957] = 14, + [15338] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1881), 7, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1837), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2829), 18, + anon_sym_SLASH, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, - ACTIONS(4717), 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(1941), 30, + ACTIONS(2827), 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, @@ -203192,60 +208837,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13043] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, + [15408] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(1838), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2757), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1881), 15, + 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_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1941), 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_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, @@ -203263,17 +208902,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13127] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2647), 1, - anon_sym_LBRACK, - ACTIONS(2651), 1, - anon_sym_LBRACE, - ACTIONS(2649), 54, + [15478] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3429), 1, + anon_sym_LBRACK, + STATE(1839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -203284,7 +208927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -203325,62 +208967,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13193] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, + [15548] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3307), 1, anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, + ACTIONS(4835), 1, anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, + STATE(1840), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3309), 53, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1881), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4717), 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(1941), 30, - anon_sym_SEMI, - 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_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, @@ -203398,70 +209033,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13281] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_EQ, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, + [15620] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3440), 1, + anon_sym_LBRACK, + STATE(1841), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4719), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4715), 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(4721), 4, + 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, - ACTIONS(4717), 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(1941), 24, - anon_sym_SEMI, - 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_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203475,71 +209098,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13377] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_EQ, - ACTIONS(4713), 1, + [15690] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3321), 1, + anon_sym_LBRACK, + STATE(1842), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(4735), 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, - ACTIONS(4741), 1, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(4747), 1, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(4749), 1, anon_sym_BANGin, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, + 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, + [15760] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2947), 1, + anon_sym_LBRACK, + STATE(1843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2949), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4719), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4715), 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_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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, - ACTIONS(4721), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4717), 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(1941), 23, - anon_sym_SEMI, - 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_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203553,62 +209228,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13475] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, + [15830] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3357), 1, + anon_sym_LBRACK, + STATE(1844), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1865), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4717), 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(1863), 30, - anon_sym_SEMI, - 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, @@ -203626,63 +209293,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13563] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4789), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_QMARK, - ACTIONS(4793), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_LBRACK2, - ACTIONS(4797), 1, - anon_sym_POUND_LBRACK, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, - sym_or_block, - STATE(4215), 1, - sym_type_parameters, - ACTIONS(4785), 2, + [15900] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3405), 1, + anon_sym_LBRACK, + STATE(1845), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3407), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2067), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4803), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4805), 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(2065), 30, - 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_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, @@ -203699,63 +209357,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13651] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4789), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_QMARK, - ACTIONS(4793), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_LBRACK2, - ACTIONS(4797), 1, - anon_sym_POUND_LBRACK, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, - sym_or_block, - STATE(4215), 1, - sym_type_parameters, - ACTIONS(4785), 2, + anon_sym_COLON_EQ, + [15970] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3385), 1, + anon_sym_LBRACK, + STATE(1846), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3387), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1865), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4803), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4805), 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(1863), 30, - 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_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, @@ -203772,62 +209422,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13739] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, + anon_sym_COLON_EQ, + [16040] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2977), 1, + anon_sym_LBRACK, + STATE(1847), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2979), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2067), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4717), 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(2065), 30, - anon_sym_SEMI, - 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, @@ -203845,17 +209488,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13827] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2641), 1, - anon_sym_LBRACK, - ACTIONS(4831), 1, - anon_sym_DOLLARelse, - ACTIONS(2643), 54, + [16110] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3009), 1, + anon_sym_LBRACK, + STATE(1848), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3011), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -203866,7 +209513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -203907,62 +209553,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13893] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4789), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_QMARK, - ACTIONS(4793), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_LBRACK2, - ACTIONS(4797), 1, - anon_sym_POUND_LBRACK, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, - sym_or_block, - STATE(4215), 1, - sym_type_parameters, - ACTIONS(4785), 2, + [16180] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3274), 1, + anon_sym_LBRACK, + STATE(1849), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3271), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1881), 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_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4805), 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(1941), 30, - 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_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, @@ -203979,72 +209617,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13979] = 20, + anon_sym_COLON_EQ, + [16250] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1931), 1, anon_sym_EQ, - ACTIONS(4787), 1, + ACTIONS(4711), 1, + anon_sym_as, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4789), 1, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4727), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4729), 1, + anon_sym_DASH_DASH, + ACTIONS(4731), 1, anon_sym_QMARK, - ACTIONS(4793), 1, + ACTIONS(4733), 1, anon_sym_BANG, - ACTIONS(4795), 1, + ACTIONS(4735), 1, anon_sym_LBRACK2, - ACTIONS(4797), 1, + ACTIONS(4741), 1, + anon_sym_or, + ACTIONS(4743), 1, anon_sym_POUND_LBRACK, - ACTIONS(4815), 1, + ACTIONS(4745), 1, + anon_sym_is, + ACTIONS(4747), 1, + anon_sym_BANGis, + ACTIONS(4819), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, + ACTIONS(4821), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4823), 1, anon_sym_in, - ACTIONS(4827), 1, + ACTIONS(4825), 1, anon_sym_BANGin, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, + STATE(2008), 1, sym_or_block, - STATE(4215), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4785), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4807), 2, + ACTIONS(4815), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4803), 4, + STATE(1850), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4809), 4, + ACTIONS(4817), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4805), 8, - anon_sym_STAR, + ACTIONS(4811), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 23, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1929), 15, + anon_sym_SEMI, 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, @@ -204057,63 +209706,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14077] = 15, + anon_sym_COLON_EQ, + [16368] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1937), 1, + anon_sym_EQ, + ACTIONS(4711), 1, + anon_sym_as, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4789), 1, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4727), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4729), 1, + anon_sym_DASH_DASH, + ACTIONS(4731), 1, anon_sym_QMARK, - ACTIONS(4793), 1, + ACTIONS(4733), 1, anon_sym_BANG, - ACTIONS(4795), 1, + ACTIONS(4735), 1, anon_sym_LBRACK2, - ACTIONS(4797), 1, + ACTIONS(4741), 1, + anon_sym_or, + ACTIONS(4743), 1, anon_sym_POUND_LBRACK, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, + ACTIONS(4745), 1, + anon_sym_is, + ACTIONS(4747), 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(2008), 1, sym_or_block, - STATE(4215), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4785), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1881), 3, - anon_sym_EQ, + ACTIONS(4815), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4803), 4, + STATE(1851), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4805), 8, - anon_sym_STAR, + ACTIONS(4817), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4811), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 30, + ACTIONS(1935), 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, + [16486] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3284), 1, + anon_sym_LBRACK, + STATE(1852), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_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, @@ -204130,62 +209860,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14165] = 19, + anon_sym_COLON_EQ, + [16556] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1853), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 18, + anon_sym_SLASH, anon_sym_EQ, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4789), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, - anon_sym_QMARK, - ACTIONS(4793), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_LBRACK2, - ACTIONS(4797), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4825), 1, - anon_sym_in, - ACTIONS(4827), 1, - anon_sym_BANGin, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, - sym_or_block, - STATE(4215), 1, - sym_type_parameters, - ACTIONS(4785), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4807), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4803), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4809), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4805), 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(1941), 24, + 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, @@ -204193,8 +209906,14 @@ 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, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -204207,15 +209926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14261] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3442), 1, - anon_sym_LBRACK, - ACTIONS(3444), 54, + [16626] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3021), 1, + anon_sym_LBRACK, + STATE(1854), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3023), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204226,7 +209951,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -204267,15 +209991,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14324] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3422), 1, - anon_sym_LBRACK, - ACTIONS(3424), 54, + [16696] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3053), 1, + anon_sym_LBRACK, + STATE(1855), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3055), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204286,7 +210016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -204327,23 +210056,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14387] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4833), 1, - anon_sym_else, - STATE(1963), 1, - sym_else_branch, - ACTIONS(2635), 18, + [16766] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3045), 1, + anon_sym_LBRACK, + STATE(1856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3047), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -204353,20 +210099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2633), 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, @@ -204389,15 +210121,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14454] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2909), 1, - anon_sym_LBRACK, - ACTIONS(2911), 54, + [16836] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3037), 1, + anon_sym_LBRACK, + STATE(1857), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3039), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204408,7 +210146,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -204449,15 +210186,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14517] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 54, + [16906] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2907), 1, + anon_sym_LBRACK, + STATE(1858), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2909), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204468,7 +210211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -204509,15 +210251,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14580] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2897), 1, - anon_sym_LBRACK, - ACTIONS(2899), 54, + [16976] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2911), 1, + anon_sym_LBRACK, + STATE(1859), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2913), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204528,7 +210276,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -204569,15 +210316,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14643] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3426), 1, + [17046] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3428), 54, + STATE(1860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3027), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204588,7 +210341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -204629,15 +210381,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14706] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3097), 1, + [17116] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3274), 1, + anon_sym_LBRACK, + STATE(1861), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3269), 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, + ACTIONS(3271), 35, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [17188] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2939), 1, anon_sym_LBRACK, - ACTIONS(3099), 54, + STATE(1862), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2941), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204648,7 +210472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -204689,15 +210512,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14769] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3131), 1, - anon_sym_LBRACK, - ACTIONS(3133), 54, + [17258] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2943), 1, + anon_sym_LBRACK, + STATE(1863), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2945), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204708,7 +210537,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -204749,19 +210577,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14832] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 18, + [17328] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2951), 1, + anon_sym_LBRACK, + STATE(1864), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2953), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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, + [17398] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3284), 1, + anon_sym_LBRACK, + STATE(1865), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3279), 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, + ACTIONS(3281), 35, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -204771,27 +210699,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2647), 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, + [17470] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_LBRACK, + STATE(1866), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3035), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, 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_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, @@ -204809,15 +210773,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14895] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3402), 1, - anon_sym_LBRACK, - ACTIONS(3404), 54, + [17540] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3041), 1, + anon_sym_LBRACK, + STATE(1867), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3043), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204828,7 +210798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -204869,15 +210838,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14958] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_LBRACK, - ACTIONS(3145), 54, + [17610] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3049), 1, + anon_sym_LBRACK, + STATE(1868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3051), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204888,7 +210863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -204929,15 +210903,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15021] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2987), 1, + [17680] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3313), 1, anon_sym_LBRACK, - ACTIONS(2989), 54, + STATE(1869), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204948,7 +210928,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, 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_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, + [17750] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2835), 1, + anon_sym_DOT, + ACTIONS(3147), 1, + anon_sym_LBRACK, + STATE(1870), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 53, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SLASH, + 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_PERCENT, anon_sym_LT, anon_sym_GT, @@ -204989,15 +211034,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15084] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2991), 1, - anon_sym_LBRACK, - ACTIONS(2993), 54, + [17822] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2985), 1, + anon_sym_LBRACK, + STATE(1871), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2987), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -205008,7 +211059,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205049,15 +211099,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15147] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_LBRACK, - ACTIONS(2997), 54, + [17892] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2989), 1, + anon_sym_LBRACK, + STATE(1872), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2991), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -205068,7 +211124,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205109,17 +211164,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15210] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3267), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_BANG, - ACTIONS(3269), 53, + [17962] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2993), 1, + anon_sym_LBRACK, + STATE(1873), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2995), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -205130,7 +211189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205141,6 +211199,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, @@ -205170,19 +211229,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2685), 18, + [18032] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, + anon_sym_LBRACK, + STATE(1874), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3411), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -205192,28 +211272,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2683), 37, + 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, + [18102] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3425), 1, + anon_sym_LBRACK, + STATE(1875), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3427), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, 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_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_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_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -205230,15 +211358,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [15338] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2999), 1, - anon_sym_LBRACK, - ACTIONS(3001), 54, + anon_sym_COLON_EQ, + [18172] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3005), 1, + anon_sym_LBRACK, + STATE(1876), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3007), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -205249,7 +211384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205290,15 +211424,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15401] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3027), 54, + [18242] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3029), 1, + anon_sym_LBRACK, + STATE(1877), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3031), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -205309,7 +211449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205350,15 +211489,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15464] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3259), 1, - anon_sym_LBRACK, - ACTIONS(3261), 54, + [18312] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3299), 1, + anon_sym_LBRACK, + STATE(1878), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3301), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -205371,7 +211516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205410,99 +211554,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [15527] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1933), 1, - anon_sym_EQ, - ACTIONS(4707), 1, + [18382] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3303), 1, + anon_sym_LBRACK, + STATE(1879), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3305), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4713), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, - anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4735), 1, - anon_sym_AMP_AMP, - ACTIONS(4737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_is, - ACTIONS(4839), 1, - anon_sym_BANGis, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4719), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4715), 4, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4721), 4, + 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, - ACTIONS(4717), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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, 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_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, - [15638] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACK, - ACTIONS(3253), 54, + 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_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [18452] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3135), 1, + anon_sym_LBRACK, + STATE(1880), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3137), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -205513,7 +211644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205554,99 +211684,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15701] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1933), 1, - anon_sym_EQ, - ACTIONS(4707), 1, - anon_sym_as, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, - anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4777), 1, - anon_sym_AMP_AMP, - ACTIONS(4779), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4781), 1, - anon_sym_in, - ACTIONS(4783), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_is, - ACTIONS(4839), 1, - anon_sym_BANGis, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4773), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4775), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4771), 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, - [15812] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2653), 1, + [18522] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(2651), 54, + STATE(1881), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3141), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -205657,7 +211709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205698,15 +211749,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15875] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3263), 1, - anon_sym_LBRACK, - ACTIONS(3265), 54, + [18592] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3151), 1, + anon_sym_LBRACK, + STATE(1882), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3153), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -205717,7 +211774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205758,17 +211814,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15938] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_DOT, - ACTIONS(3410), 1, - anon_sym_LBRACK, - ACTIONS(3412), 53, + [18662] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3373), 1, + anon_sym_LBRACK, + STATE(1883), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3375), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -205778,7 +211839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205819,15 +211879,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16003] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3418), 1, + [18732] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4837), 1, + anon_sym_else, + STATE(2022), 1, + sym_else_branch, + STATE(1884), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 18, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + 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(2447), 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, - ACTIONS(3420), 54, + 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, + [18806] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2981), 1, + anon_sym_LBRACK, + STATE(1885), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2983), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -205838,7 +211971,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205879,35 +212011,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16066] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3450), 1, - anon_sym_LBRACK, - ACTIONS(3452), 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, + [18876] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4837), 1, + anon_sym_else, + STATE(2021), 1, + sym_else_branch, + STATE(1886), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2457), 18, + anon_sym_SLASH, 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, @@ -205917,6 +212042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2455), 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, @@ -205938,16 +212078,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16129] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3434), 1, + [18950] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3131), 1, anon_sym_LBRACK, - ACTIONS(3436), 54, + STATE(1887), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3133), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -205958,7 +212103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -205999,15 +212143,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16192] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(3392), 54, + [19020] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3155), 1, + anon_sym_LBRACK, + STATE(1888), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3157), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206018,7 +212168,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206059,15 +212208,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16255] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3386), 1, - anon_sym_LBRACK, - ACTIONS(3388), 54, + [19090] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3185), 1, + anon_sym_LBRACK, + STATE(1889), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3187), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206078,7 +212233,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206119,15 +212273,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16318] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3350), 1, - anon_sym_LBRACK, - ACTIONS(3352), 54, + [19160] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3189), 1, + anon_sym_LBRACK, + STATE(1890), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3191), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206138,7 +212298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206179,18 +212338,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16381] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3232), 1, - anon_sym_LBRACK, - ACTIONS(3227), 19, + [19230] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3177), 1, + anon_sym_LBRACK, + STATE(1891), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3179), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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_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, @@ -206204,15 +212403,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(3229), 35, + [19300] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3181), 1, + anon_sym_LBRACK, + STATE(1892), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3183), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, 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, @@ -206240,18 +212455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [16446] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3222), 1, - anon_sym_LBRACK, - ACTIONS(3217), 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, @@ -206265,15 +212468,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(3219), 35, + [19370] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2741), 1, + anon_sym_LBRACK, + STATE(1893), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, 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, @@ -206301,15 +212520,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [16511] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACK, - ACTIONS(3348), 54, + 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, + [19440] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3201), 1, + anon_sym_LBRACK, + STATE(1894), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3203), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206320,7 +212558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206361,15 +212598,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16574] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3281), 1, + [19510] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(3283), 54, + STATE(1895), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3195), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206380,7 +212623,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206421,15 +212663,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16637] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACK, - ACTIONS(3440), 54, + [19580] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, + anon_sym_LBRACK, + STATE(1896), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3217), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206440,7 +212688,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206481,15 +212728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16700] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3207), 1, - anon_sym_LBRACK, - ACTIONS(3209), 54, + [19650] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3223), 1, + anon_sym_LBRACK, + STATE(1897), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3225), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206500,7 +212753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206541,15 +212793,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16763] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3446), 1, - anon_sym_LBRACK, - ACTIONS(3448), 54, + [19720] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3205), 1, + anon_sym_LBRACK, + STATE(1898), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3207), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206560,7 +212818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206601,15 +212858,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16826] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3406), 1, + [19790] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3211), 1, anon_sym_LBRACK, - ACTIONS(3408), 54, + STATE(1899), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3213), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206620,7 +212883,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206661,15 +212923,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16889] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3187), 1, - anon_sym_LBRACK, - ACTIONS(3189), 54, + [19860] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3219), 1, + anon_sym_LBRACK, + STATE(1900), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3221), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206680,7 +212948,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206721,15 +212988,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16952] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3015), 1, + [19930] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3243), 1, anon_sym_LBRACK, - ACTIONS(3017), 54, + STATE(1901), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3245), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206740,7 +213013,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206781,28 +213053,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17015] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3007), 1, + [20000] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3247), 1, anon_sym_LBRACK, - ACTIONS(3009), 54, + STATE(1902), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3249), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, 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, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206810,10 +213085,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, @@ -206834,22 +213105,34 @@ 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, - [17078] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3398), 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, + [20070] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3251), 1, anon_sym_LBRACK, - ACTIONS(3400), 54, + STATE(1903), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3253), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206860,7 +213143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206901,15 +213183,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17141] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3342), 1, - anon_sym_LBRACK, - ACTIONS(3344), 54, + [20140] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2997), 1, + anon_sym_LBRACK, + STATE(1904), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -206920,7 +213208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -206961,19 +213248,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 18, + [20210] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3413), 1, + anon_sym_LBRACK, + STATE(1905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3415), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -206983,28 +213291,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2647), 37, + 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, + [20280] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, + anon_sym_LBRACK, + STATE(1906), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3233), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, 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_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_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_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -207021,15 +213377,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17267] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3289), 1, - anon_sym_LBRACK, - ACTIONS(3291), 54, + anon_sym_COLON_EQ, + [20350] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3287), 1, + anon_sym_LBRACK, + STATE(1907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207040,7 +213403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207081,15 +213443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17330] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3285), 1, - anon_sym_LBRACK, - ACTIONS(3287), 54, + [20420] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3291), 1, + anon_sym_LBRACK, + STATE(1908), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207100,7 +213468,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207141,15 +213508,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17393] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(3005), 54, + [20490] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3377), 1, + anon_sym_LBRACK, + STATE(1909), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3379), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -207162,7 +213535,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207201,15 +213573,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [17456] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(3382), 54, + [20560] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3001), 1, + anon_sym_LBRACK, + STATE(1910), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3003), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207220,7 +213598,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207261,15 +213638,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17519] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3247), 1, + [20630] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3235), 1, anon_sym_LBRACK, - ACTIONS(3249), 54, + STATE(1911), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3237), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207280,7 +213663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207321,26 +213703,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17582] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3232), 1, + [20700] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1912), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 18, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + 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_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, - ACTIONS(3229), 54, + 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, + 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, + [20770] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3381), 1, + anon_sym_LBRACK, + STATE(1913), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3383), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207348,6 +213802,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, @@ -207368,28 +213826,28 @@ 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, - [17645] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(3049), 54, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [20840] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3325), 1, + anon_sym_LBRACK, + STATE(1914), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3327), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207400,7 +213858,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207441,15 +213898,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17708] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3222), 1, - anon_sym_LBRACK, - ACTIONS(3219), 54, + [20910] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3013), 1, + anon_sym_LBRACK, + STATE(1915), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3015), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207460,7 +213923,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207501,15 +213963,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17771] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3430), 1, - anon_sym_LBRACK, - ACTIONS(3432), 54, + [20980] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3057), 1, + anon_sym_LBRACK, + STATE(1916), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3059), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207520,7 +213988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207561,15 +214028,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17834] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3051), 1, - anon_sym_LBRACK, - ACTIONS(3053), 54, + [21050] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3123), 1, + anon_sym_LBRACK, + STATE(1917), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3125), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207580,7 +214053,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207621,23 +214093,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17897] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_else, - STATE(2098), 1, - sym_else_branch, - ACTIONS(2635), 18, + [21120] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3127), 1, + anon_sym_LBRACK, + STATE(1918), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3129), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -207647,21 +214136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2633), 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, @@ -207683,23 +214157,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17964] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_else, - STATE(2097), 1, - sym_else_branch, - ACTIONS(2505), 18, + anon_sym_COLON_EQ, + [21190] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3337), 1, + anon_sym_LBRACK, + STATE(1919), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3339), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -207709,21 +214201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2503), 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, @@ -207745,15 +214222,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18031] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3374), 54, + anon_sym_COLON_EQ, + [21260] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3353), 1, + anon_sym_LBRACK, + STATE(1920), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3355), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207764,7 +214248,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207805,15 +214288,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18094] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3055), 1, + [21330] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(3057), 54, + STATE(1921), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3257), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207824,7 +214313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207865,15 +214353,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18157] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3059), 1, - anon_sym_LBRACK, - ACTIONS(3061), 54, + [21400] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3147), 1, + anon_sym_LBRACK, + STATE(1922), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207884,7 +214378,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207925,15 +214418,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18220] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_LBRACK, - ACTIONS(3083), 54, + [21470] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2831), 1, + anon_sym_LBRACK, + STATE(1923), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -207944,7 +214443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -207985,109 +214483,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18283] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3085), 1, + [21540] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(3087), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1924), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1871), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4813), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_CARET, + ACTIONS(4811), 8, anon_sym_SLASH, + 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_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, - [18346] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_LBRACK, - ACTIONS(3091), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1869), 29, + anon_sym_SEMI, 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, @@ -208105,15 +214560,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18409] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3093), 1, - anon_sym_LBRACK, - ACTIONS(3095), 54, + [21634] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3341), 1, + anon_sym_LBRACK, + STATE(1925), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -208124,7 +214585,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -208165,49 +214625,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18472] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3101), 1, + [21704] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(3103), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1926), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1875), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4813), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_CARET, + ACTIONS(4811), 8, anon_sym_SLASH, + anon_sym_STAR, 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(1873), 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, @@ -208225,15 +214702,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18535] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_LBRACK, - ACTIONS(2907), 54, + [21798] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3417), 1, + anon_sym_LBRACK, + STATE(1927), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3419), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -208244,7 +214727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -208285,115 +214767,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18598] = 5, + [21868] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4833), 1, - anon_sym_else, - STATE(1968), 1, - sym_else_branch, - ACTIONS(2505), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1879), 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, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, + anon_sym_LBRACK, + ACTIONS(4731), 1, anon_sym_QMARK, + ACTIONS(4733), 1, anon_sym_BANG, + ACTIONS(4735), 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(2503), 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, + ACTIONS(4743), 1, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4819), 1, + anon_sym_AMP_AMP, + ACTIONS(4823), 1, anon_sym_in, + ACTIONS(4825), 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, - [18665] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACK, - ACTIONS(2915), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4815), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1928), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 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(4817), 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(4811), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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(1877), 22, + 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_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, @@ -208407,15 +214849,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18728] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2979), 1, - anon_sym_LBRACK, - ACTIONS(2981), 54, + [21972] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3345), 1, + anon_sym_LBRACK, + STATE(1929), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3347), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -208426,7 +214874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -208467,15 +214914,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18791] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_LBRACK, - ACTIONS(2985), 54, + [22042] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3349), 1, + anon_sym_LBRACK, + STATE(1930), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3351), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -208486,7 +214939,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -208527,15 +214979,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18854] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3127), 1, + [22112] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1879), 1, + anon_sym_EQ, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(3129), 54, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4823), 1, + anon_sym_in, + ACTIONS(4825), 1, + anon_sym_BANGin, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4815), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1931), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 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(4811), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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), 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, + 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, + [22214] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3361), 1, + anon_sym_LBRACK, + STATE(1932), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3363), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -208546,7 +215085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -208587,15 +215125,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18917] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3011), 1, - anon_sym_LBRACK, - ACTIONS(3013), 54, + [22284] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_LBRACK, + STATE(1933), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3367), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -208606,7 +215150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -208647,15 +215190,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18980] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3414), 1, + [22354] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3259), 1, anon_sym_LBRACK, - ACTIONS(3416), 54, + STATE(1934), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3261), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -208666,7 +215215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -208707,15 +215255,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19043] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3410), 1, + [22424] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3389), 1, anon_sym_LBRACK, - ACTIONS(3412), 54, + STATE(1935), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3391), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -208726,7 +215280,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -208767,15 +215320,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19106] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3139), 1, + [22494] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(3141), 54, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1936), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 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_SLASH, + anon_sym_STAR, + 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), 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, + [22586] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3393), 1, + anon_sym_LBRACK, + STATE(1937), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3395), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -208786,7 +215421,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -208827,15 +215461,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19169] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_LBRACK, - ACTIONS(2727), 54, + [22656] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3397), 1, + anon_sym_LBRACK, + STATE(1938), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3399), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -208846,7 +215486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -208887,29 +215526,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19232] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, + [22726] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3401), 1, + anon_sym_LBRACK, + STATE(1939), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3403), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - ACTIONS(4845), 1, - anon_sym_COLON_EQ, - STATE(3917), 1, - aux_sym_identifier_list_repeat1, - ACTIONS(2732), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2727), 19, + 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_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, @@ -208919,17 +215569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2725), 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, @@ -208951,15 +215590,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [19303] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3175), 1, + anon_sym_COLON_EQ, + [22796] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(3177), 54, + STATE(1940), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3229), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -208970,7 +215616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -209011,15 +215656,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19366] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 54, + [22866] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3295), 1, + anon_sym_LBRACK, + STATE(1941), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3297), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -209030,7 +215681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -209071,77 +215721,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19429] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, - anon_sym_EQ, - ACTIONS(4707), 1, + [22936] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3263), 1, + anon_sym_LBRACK, + STATE(1942), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3265), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_as, - ACTIONS(4713), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4725), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_PLUS_PLUS, - ACTIONS(4727), 1, anon_sym_DASH_DASH, - ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4733), 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, - ACTIONS(4741), 1, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(4743), 1, anon_sym_is, - ACTIONS(4745), 1, anon_sym_BANGis, - ACTIONS(4777), 1, - anon_sym_AMP_AMP, - ACTIONS(4779), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4781), 1, anon_sym_in, - ACTIONS(4783), 1, anon_sym_BANGin, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, + 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, + [23006] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3329), 1, + anon_sym_LBRACK, + STATE(1943), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3331), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4773), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 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(4775), 4, + 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, - ACTIONS(4771), 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(1859), 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, @@ -209155,15 +215851,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19540] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3364), 1, - anon_sym_LBRACK, - ACTIONS(3366), 54, + [23076] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3333), 1, + anon_sym_LBRACK, + STATE(1944), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3335), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -209174,7 +215876,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -209215,15 +215916,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19603] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LBRACK, - ACTIONS(3193), 54, + [23146] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3317), 1, + anon_sym_LBRACK, + STATE(1945), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3319), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -209234,7 +215941,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -209275,77 +215981,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19666] = 27, + [23216] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - anon_sym_EQ, - ACTIONS(4707), 1, - anon_sym_as, - ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, - anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4731), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, ACTIONS(4743), 1, - anon_sym_is, - ACTIONS(4745), 1, - anon_sym_BANGis, - ACTIONS(4777), 1, - anon_sym_AMP_AMP, - ACTIONS(4779), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4781), 1, - anon_sym_in, - ACTIONS(4783), 1, - anon_sym_BANGin, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, + anon_sym_POUND_LBRACK, + STATE(2008), 1, sym_or_block, - STATE(4315), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(4705), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4773), 2, + STATE(1946), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4769), 4, + ACTIONS(4813), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4775), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4771), 8, - anon_sym_STAR, + ACTIONS(4811), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 15, + ACTIONS(1877), 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, @@ -209359,35 +216058,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19777] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3171), 1, - anon_sym_LBRACK, - ACTIONS(3173), 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, + [23310] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4839), 1, + anon_sym_else, + STATE(2147), 1, + sym_else_branch, + STATE(1947), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2457), 18, + anon_sym_SLASH, 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, @@ -209397,6 +216089,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2455), 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, @@ -209419,61 +216125,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19840] = 15, + [23384] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2067), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4839), 1, + anon_sym_else, + STATE(2143), 1, + sym_else_branch, + STATE(1948), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 18, + anon_sym_SLASH, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4771), 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(2065), 29, + ACTIONS(2447), 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, @@ -209491,35 +216192,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19927] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3203), 1, - anon_sym_LBRACK, - ACTIONS(3205), 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, + [23458] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4841), 1, + anon_sym_DOLLARelse, + STATE(1949), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2765), 18, + anon_sym_SLASH, 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, @@ -209529,6 +216221,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2763), 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, @@ -209551,53 +216257,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19990] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3211), 1, - anon_sym_LBRACK, - ACTIONS(3213), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + [23529] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(4711), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4717), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4725), 1, + anon_sym_LBRACK, + ACTIONS(4727), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4729), 1, + anon_sym_DASH_DASH, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4741), 1, + anon_sym_or, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4745), 1, + anon_sym_is, + ACTIONS(4747), 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(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4815), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1950), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 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(4817), 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(4811), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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(3550), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -209611,35 +216345,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20053] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3243), 1, - anon_sym_LBRACK, - ACTIONS(3245), 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, + [23646] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2051), 1, + sym_type_parameters, + STATE(1951), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 18, + anon_sym_SLASH, 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, @@ -209649,6 +216374,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2741), 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, @@ -209670,36 +216410,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20116] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACK, - ACTIONS(3257), 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, + [23717] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4843), 1, + anon_sym_DOLLARelse, + STATE(1952), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2821), 18, + anon_sym_SLASH, 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, @@ -209709,6 +216439,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2819), 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, @@ -209731,35 +216475,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20179] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3183), 1, + [23788] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1919), 1, + anon_sym_EQ, + ACTIONS(4711), 1, + anon_sym_as, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(3185), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4727), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4729), 1, + anon_sym_DASH_DASH, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4741), 1, + anon_sym_or, + ACTIONS(4743), 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(4845), 1, + anon_sym_is, + ACTIONS(4847), 1, + anon_sym_BANGis, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, anon_sym_DOT, - anon_sym_as, + anon_sym_QMARK_DOT, + ACTIONS(4815), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1953), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 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(4811), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1917), 14, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + 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, + [23905] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4849), 1, + anon_sym_DOLLARelse, + STATE(1954), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2765), 18, + anon_sym_SLASH, 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, @@ -209769,6 +216592,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2763), 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, @@ -209790,36 +216628,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20242] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3273), 1, + [23976] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1919), 1, + anon_sym_EQ, + ACTIONS(4711), 1, + anon_sym_as, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(3275), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4727), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4729), 1, + anon_sym_DASH_DASH, + ACTIONS(4731), 1, + anon_sym_QMARK, + ACTIONS(4733), 1, + anon_sym_BANG, + ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4741), 1, + anon_sym_or, + ACTIONS(4743), 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(4851), 1, + anon_sym_is, + ACTIONS(4853), 1, + anon_sym_BANGis, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, anon_sym_DOT, - anon_sym_as, + anon_sym_QMARK_DOT, + ACTIONS(4815), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1955), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 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(4811), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1917), 14, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + 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, + [24093] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4855), 1, + anon_sym_DOLLARelse, + STATE(1956), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2821), 18, + anon_sym_SLASH, 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, @@ -209829,6 +216745,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2819), 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, @@ -209850,36 +216781,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20305] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3368), 1, - anon_sym_LBRACK, - ACTIONS(3370), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, + [24164] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4859), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_EQ, + STATE(3382), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(1957), 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_SLASH, 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, @@ -209889,6 +216827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(3440), 21, + 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_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -209898,66 +216849,208 @@ 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, - [20368] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3195), 1, - anon_sym_LBRACK, - ACTIONS(3197), 54, + [24241] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(1958), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4865), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4863), 49, anon_sym_DOT, - anon_sym_as, + 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, + [24310] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(1959), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3762), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_RPAREN, + 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + 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, + [24377] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1919), 1, + anon_sym_EQ, + ACTIONS(4711), 1, + anon_sym_as, + ACTIONS(4717), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, + anon_sym_LBRACK, + ACTIONS(4727), 1, anon_sym_PLUS_PLUS, + ACTIONS(4729), 1, anon_sym_DASH_DASH, + ACTIONS(4731), 1, anon_sym_QMARK, + ACTIONS(4733), 1, anon_sym_BANG, + ACTIONS(4735), 1, anon_sym_LBRACK2, + ACTIONS(4741), 1, + anon_sym_or, + ACTIONS(4743), 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, + ACTIONS(4869), 1, + anon_sym_BANGis, + STATE(2008), 1, + sym_or_block, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, + sym_type_parameters, + ACTIONS(4709), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4815), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1960), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 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(4811), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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(1917), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -209971,35 +217064,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20431] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3235), 1, - anon_sym_LBRACK, - ACTIONS(3237), 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, + [24494] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1998), 1, + sym_type_parameters, + STATE(1961), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 18, + anon_sym_SLASH, 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, @@ -210009,6 +217093,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2741), 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, @@ -210031,35 +217129,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20494] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3326), 1, - anon_sym_LBRACK, - ACTIONS(3328), 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, + [24565] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3279), 1, anon_sym_EQ, + STATE(1962), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3277), 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(3281), 17, + anon_sym_SLASH, 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, @@ -210069,6 +217174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(3284), 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, @@ -210078,48 +217194,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, - [20557] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3239), 1, - anon_sym_LBRACK, - ACTIONS(3241), 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, + [24637] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1963), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3039), 18, + anon_sym_SLASH, 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, @@ -210129,6 +217221,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(3037), 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, @@ -210150,42 +217257,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20620] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2893), 1, - anon_sym_LBRACK, - ACTIONS(2895), 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, + [24705] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1964), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3003), 18, + anon_sym_SLASH, + 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_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, @@ -210195,60 +217284,20 @@ static const uint16_t ts_small_parse_table[] = { 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_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [20683] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3330), 1, - anon_sym_LBRACK, - ACTIONS(3332), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3001), 35, + 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, - 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, @@ -210271,35 +217320,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20746] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_LBRACK, - ACTIONS(3336), 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, + [24773] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1965), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3387), 18, + anon_sym_SLASH, 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, @@ -210309,6 +217347,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(3385), 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, @@ -210331,41 +217383,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20809] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2889), 1, - anon_sym_LBRACK, - ACTIONS(2891), 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, + [24841] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1966), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2983), 18, + anon_sym_SLASH, + 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_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, @@ -210375,6 +217410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2981), 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, @@ -210384,42 +217433,37 @@ 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, - [20872] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3277), 1, - anon_sym_LBRACK, - ACTIONS(3279), 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_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, + [24909] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1967), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 18, + anon_sym_SLASH, 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, @@ -210429,6 +217473,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(3321), 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, @@ -210451,35 +217509,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20935] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3293), 1, - anon_sym_LBRACK, - ACTIONS(3295), 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, + [24977] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1968), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 18, + anon_sym_SLASH, 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, @@ -210489,6 +217536,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(3369), 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, @@ -210511,35 +217572,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20998] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3338), 1, - anon_sym_LBRACK, - ACTIONS(3340), 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, + [25045] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1969), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 18, + anon_sym_SLASH, 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, @@ -210549,6 +217599,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2997), 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, @@ -210571,35 +217635,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21061] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3299), 54, + [25113] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(1970), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4873), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, + anon_sym_SEMI, anon_sym_COMMA, + ACTIONS(4871), 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, + [25181] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1971), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3423), 18, + anon_sym_SLASH, 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, @@ -210609,6 +217725,20 @@ 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, + 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, @@ -210631,35 +217761,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21124] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3301), 1, - anon_sym_LBRACK, - ACTIONS(3303), 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, + [25249] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1972), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 18, + anon_sym_SLASH, 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, @@ -210669,6 +217788,20 @@ 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, + 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, @@ -210691,35 +217824,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21187] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_LBRACK, - ACTIONS(3307), 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, + [25317] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1973), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 18, + anon_sym_SLASH, 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, @@ -210729,6 +217851,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2831), 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, @@ -210751,61 +217887,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21250] = 15, + [25385] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1865), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1974), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3015), 18, + anon_sym_SLASH, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4771), 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(1863), 29, + ACTIONS(3013), 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, @@ -210823,35 +217950,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21337] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3316), 1, - anon_sym_LBRACK, - ACTIONS(3318), 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, + [25453] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1975), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3059), 18, + anon_sym_SLASH, 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, @@ -210861,6 +217977,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(3057), 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, @@ -210883,35 +218013,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21400] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3320), 1, - anon_sym_LBRACK, - ACTIONS(3322), 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, + [25521] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1976), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3403), 18, + anon_sym_SLASH, 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, @@ -210921,6 +218040,21 @@ 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_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, @@ -210942,36 +218076,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21463] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACK, - ACTIONS(3362), 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, + [25589] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1977), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3391), 18, + anon_sym_SLASH, 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, @@ -210981,6 +218103,21 @@ 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_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, @@ -211002,36 +218139,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21526] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACK, - ACTIONS(3356), 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, + [25657] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1978), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3125), 18, + anon_sym_SLASH, 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, @@ -211041,6 +218166,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(3123), 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, @@ -211063,35 +218202,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21589] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3376), 1, - anon_sym_LBRACK, - ACTIONS(3378), 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, + [25725] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1979), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 18, + anon_sym_SLASH, 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, @@ -211101,6 +218229,21 @@ 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_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, @@ -211122,61 +218265,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21652] = 14, + [25793] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1881), 7, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1980), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 18, + anon_sym_SLASH, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, - ACTIONS(4771), 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(1941), 29, - anon_sym_SEMI, + ACTIONS(3436), 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, @@ -211193,36 +218328,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21737] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_LBRACK, - ACTIONS(2715), 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, + [25861] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1981), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2975), 18, + anon_sym_SLASH, 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, @@ -211232,6 +218355,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2973), 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, @@ -211254,61 +218391,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21800] = 15, + [25929] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1881), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1982), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 18, + anon_sym_SLASH, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4771), 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(1941), 29, + ACTIONS(2741), 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, @@ -211326,35 +218454,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21887] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3394), 1, - anon_sym_LBRACK, - ACTIONS(3396), 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, + [25997] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_LBRACE, + STATE(1983), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 18, + anon_sym_SLASH, 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, @@ -211364,6 +218483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2745), 34, + 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, anon_sym_PIPE_PIPE, anon_sym_or, @@ -211386,16 +218518,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21950] = 3, + [26067] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2685), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(1984), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 18, + anon_sym_SLASH, 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, @@ -211408,18 +218548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2683), 37, + ACTIONS(2831), 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, @@ -211427,8 +218565,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, @@ -211446,69 +218582,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22013] = 19, + [26137] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1985), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2949), 18, + anon_sym_SLASH, anon_sym_EQ, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4781), 1, - anon_sym_in, - ACTIONS(4783), 1, - anon_sym_BANGin, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4773), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4775), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4771), 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(1941), 23, + ACTIONS(2947), 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, @@ -211522,36 +218645,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22108] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_LBRACK, - ACTIONS(3313), 1, - anon_sym_DOT, - ACTIONS(3311), 53, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + [26205] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1986), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3011), 18, + anon_sym_SLASH, 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, @@ -211561,6 +218672,20 @@ 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, + 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, @@ -211583,70 +218708,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22173] = 20, + [26273] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1987), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3375), 18, + anon_sym_SLASH, anon_sym_EQ, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4777), 1, - anon_sym_AMP_AMP, - ACTIONS(4781), 1, - anon_sym_in, - ACTIONS(4783), 1, - anon_sym_BANGin, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4773), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4775), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4771), 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(1941), 22, - anon_sym_SEMI, + ACTIONS(3373), 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, @@ -211659,19 +218771,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22270] = 4, + [26341] = 6, ACTIONS(3), 1, - sym_comment, - STATE(2070), 1, - sym_type_parameters, - ACTIONS(2715), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + STATE(1988), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 18, + anon_sym_SLASH, 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, @@ -211684,9 +218800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2713), 35, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3429), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211696,8 +218810,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, @@ -211719,160 +218835,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22334] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 1, + [26411] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1989), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 18, + anon_sym_SLASH, anon_sym_EQ, - ACTIONS(4707), 1, - anon_sym_as, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, - anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4743), 1, - anon_sym_is, - ACTIONS(4745), 1, - anon_sym_BANGis, - ACTIONS(4777), 1, - anon_sym_AMP_AMP, - ACTIONS(4779), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4781), 1, - anon_sym_in, - ACTIONS(4783), 1, - anon_sym_BANGin, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4773), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4775), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4771), 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(3554), 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, - [22444] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1933), 1, - anon_sym_EQ, - ACTIONS(4707), 1, + ACTIONS(3239), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4713), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4723), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(4725), 1, anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4777), 1, anon_sym_AMP_AMP, - ACTIONS(4779), 1, anon_sym_PIPE_PIPE, - ACTIONS(4781), 1, - anon_sym_in, - ACTIONS(4783), 1, - anon_sym_BANGin, - ACTIONS(4847), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4849), 1, anon_sym_BANGis, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4773), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4775), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4771), 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), 14, - anon_sym_COMMA, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -211886,76 +218898,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22554] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1933), 1, + [26479] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1990), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3265), 18, + anon_sym_SLASH, anon_sym_EQ, - ACTIONS(4707), 1, - anon_sym_as, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, - anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4777), 1, - anon_sym_AMP_AMP, - ACTIONS(4779), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4781), 1, - anon_sym_in, - ACTIONS(4783), 1, - anon_sym_BANGin, - ACTIONS(4851), 1, - anon_sym_is, - ACTIONS(4853), 1, - anon_sym_BANGis, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4773), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4775), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4771), 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(1931), 14, + ACTIONS(3263), 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, @@ -211968,19 +218961,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22664] = 4, + [26547] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4855), 1, - anon_sym_DOLLARelse, - ACTIONS(2873), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1991), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3261), 18, + anon_sym_SLASH, 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, @@ -211993,7 +218988,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(3259), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212029,18 +219024,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [22728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4857), 1, - anon_sym_DOLLARelse, - ACTIONS(2643), 18, + [26615] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1992), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3257), 18, + anon_sym_SLASH, 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, @@ -212053,7 +219051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2641), 35, + ACTIONS(3255), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212089,76 +219087,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [22792] = 27, + [26683] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1933), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1993), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3027), 18, + anon_sym_SLASH, anon_sym_EQ, - ACTIONS(4707), 1, - anon_sym_as, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, - anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4777), 1, - anon_sym_AMP_AMP, - ACTIONS(4779), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4781), 1, - anon_sym_in, - ACTIONS(4783), 1, - anon_sym_BANGin, - ACTIONS(4859), 1, - anon_sym_is, - ACTIONS(4861), 1, - anon_sym_BANGis, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4773), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4775), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4771), 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(1931), 14, + ACTIONS(3025), 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, @@ -212172,18 +219150,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22902] = 4, + [26751] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4863), 1, - anon_sym_DOLLARelse, - ACTIONS(2643), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1994), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3035), 18, + anon_sym_SLASH, 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, @@ -212196,7 +219177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2641), 35, + ACTIONS(3033), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212232,134 +219213,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22966] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3772), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_fn, + [26819] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1995), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3043), 18, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_mut, + 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_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, - [23026] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4867), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3041), 35, anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4865), 49, anon_sym_DOT, + anon_sym_as, 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, - [23088] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, anon_sym_COMMA, - ACTIONS(4873), 1, - anon_sym_EQ, - STATE(3357), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4869), 13, - anon_sym_LBRACE, + 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, @@ -212372,12 +219275,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(3287), 17, + anon_sym_COLON_EQ, + [26887] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1996), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3051), 18, + anon_sym_SLASH, + 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, @@ -212390,19 +219303,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3285), 21, + ACTIONS(3049), 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, @@ -212412,18 +219326,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [23158] = 4, + 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, + [26955] = 5, ACTIONS(3), 1, - sym_comment, - STATE(1970), 1, - sym_type_parameters, - ACTIONS(2715), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1997), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3327), 18, + anon_sym_SLASH, 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, @@ -212436,7 +219366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2713), 35, + ACTIONS(3325), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212472,18 +219402,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23222] = 4, + [27023] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_DOLLARelse, - ACTIONS(2873), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1998), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3427), 18, + anon_sym_SLASH, 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, @@ -212496,7 +219429,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(3425), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212532,16 +219465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23286] = 3, + [27091] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1999), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3387), 18, + anon_sym_SLASH, 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, @@ -212554,7 +219492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3139), 35, + ACTIONS(3385), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212590,16 +219528,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23347] = 3, + [27159] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2000), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 18, + anon_sym_SLASH, 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, @@ -212612,8 +219555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3051), 35, - anon_sym_SEMI, + ACTIONS(3321), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212624,8 +219566,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, @@ -212647,17 +219591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23408] = 3, + [27227] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2001), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2757), 18, + anon_sym_SLASH, 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, @@ -212670,7 +219618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3175), 35, + ACTIONS(2759), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212706,16 +219654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3396), 18, + [27295] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2002), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3133), 18, + anon_sym_SLASH, 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, @@ -212728,7 +219681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3394), 35, + ACTIONS(3131), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212764,16 +219717,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23530] = 3, + [27363] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2003), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3179), 18, + anon_sym_SLASH, 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, @@ -212786,7 +219744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3055), 35, + ACTIONS(3177), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212822,16 +219780,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23591] = 3, + [27431] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3291), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2004), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3183), 18, + anon_sym_SLASH, 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, @@ -212844,7 +219807,8 @@ 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(3181), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212855,10 +219819,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, @@ -212880,16 +219842,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23652] = 3, + anon_sym_COLON_EQ, + [27499] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3287), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2005), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3195), 18, + anon_sym_SLASH, 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, @@ -212902,7 +219870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3285), 35, + ACTIONS(3193), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212913,10 +219882,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, @@ -212938,16 +219905,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23713] = 3, + anon_sym_COLON_EQ, + [27567] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2006), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3217), 18, + anon_sym_SLASH, 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, @@ -212960,7 +219933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3059), 35, + ACTIONS(3215), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212996,16 +219969,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23774] = 3, + [27635] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2007), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3225), 18, + anon_sym_SLASH, 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, @@ -213018,7 +219996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3179), 35, + ACTIONS(3223), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213029,10 +220008,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, @@ -213054,16 +220031,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23835] = 3, + anon_sym_COLON_EQ, + [27703] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3201), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2008), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2979), 18, + anon_sym_SLASH, 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, @@ -213076,7 +220059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3199), 35, + ACTIONS(2977), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213112,16 +220095,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23896] = 3, + [27771] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3083), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2009), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3233), 18, + anon_sym_SLASH, 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, @@ -213134,7 +220122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3081), 35, + ACTIONS(3231), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213170,16 +220158,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 18, + [27839] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2010), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3237), 18, + anon_sym_SLASH, 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, @@ -213192,7 +220185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3191), 35, + ACTIONS(3235), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213203,10 +220197,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, @@ -213228,16 +220220,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24018] = 3, + anon_sym_COLON_EQ, + [27907] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2011), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3055), 18, + anon_sym_SLASH, 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, @@ -213250,7 +220248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3203), 35, + ACTIONS(3053), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213286,16 +220284,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24079] = 3, + [27975] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3087), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2012), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3047), 18, + anon_sym_SLASH, 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, @@ -213308,8 +220311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3085), 35, - anon_sym_SEMI, + ACTIONS(3045), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213320,8 +220322,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, @@ -213343,17 +220347,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24140] = 3, + [28043] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2013), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 18, + anon_sym_SLASH, 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, @@ -213366,7 +220374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3211), 35, + ACTIONS(3147), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213377,10 +220386,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, @@ -213402,16 +220409,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24201] = 3, + anon_sym_COLON_EQ, + [28111] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2014), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3419), 18, + anon_sym_SLASH, 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, @@ -213424,7 +220437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3089), 35, + ACTIONS(3417), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213460,16 +220473,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24262] = 3, + [28179] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3245), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2015), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3031), 18, + anon_sym_SLASH, 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, @@ -213482,7 +220500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3243), 35, + ACTIONS(3029), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213518,16 +220536,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24323] = 3, + [28247] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3257), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2016), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3297), 18, + anon_sym_SLASH, 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, @@ -213540,7 +220563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3255), 35, + ACTIONS(3295), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213551,10 +220575,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, @@ -213576,16 +220598,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24384] = 3, + anon_sym_COLON_EQ, + [28315] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3412), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2017), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3153), 18, + anon_sym_SLASH, 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, @@ -213598,7 +220626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3410), 35, + ACTIONS(3151), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213634,16 +220662,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24445] = 3, + [28383] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3275), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2018), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3157), 18, + anon_sym_SLASH, 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, @@ -213656,7 +220689,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, + ACTIONS(3155), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213692,16 +220725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24506] = 3, + [28451] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3095), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2019), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3331), 18, + anon_sym_SLASH, 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, @@ -213714,7 +220752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3093), 35, + ACTIONS(3329), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213750,16 +220788,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24567] = 3, + [28519] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2651), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2020), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3335), 18, + anon_sym_SLASH, 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, @@ -213772,7 +220815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2653), 35, + ACTIONS(3333), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213808,16 +220851,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24628] = 3, + [28587] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3370), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2021), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3199), 18, + anon_sym_SLASH, 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, @@ -213830,7 +220878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3368), 35, + ACTIONS(3197), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213866,16 +220914,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24689] = 3, + [28655] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3103), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2022), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3203), 18, + anon_sym_SLASH, 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, @@ -213888,8 +220941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3101), 35, - anon_sym_SEMI, + ACTIONS(3201), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213900,8 +220952,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, @@ -213923,19 +220977,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24750] = 4, + [28723] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(3311), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2023), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3207), 18, + anon_sym_SLASH, 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, @@ -213948,8 +221004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3309), 34, - anon_sym_SEMI, + ACTIONS(3205), 35, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213959,8 +221015,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, @@ -213982,17 +221040,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 18, + [28791] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2024), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3213), 18, + anon_sym_SLASH, 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, @@ -214005,8 +221067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3127), 35, - anon_sym_SEMI, + ACTIONS(3211), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214017,8 +221078,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, @@ -214040,17 +221103,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24874] = 3, + [28859] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3416), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2025), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3221), 18, + anon_sym_SLASH, 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, @@ -214063,7 +221130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3414), 35, + ACTIONS(3219), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214099,16 +221166,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24935] = 3, + [28927] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2026), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3355), 18, + anon_sym_SLASH, 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, @@ -214121,7 +221193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3139), 35, + ACTIONS(3353), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214157,16 +221229,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24996] = 3, + [28995] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3328), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2027), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3415), 18, + anon_sym_SLASH, 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, @@ -214179,7 +221256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3326), 35, + ACTIONS(3413), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214190,10 +221268,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, @@ -214215,16 +221291,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25057] = 3, + anon_sym_COLON_EQ, + [29063] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3332), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2028), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 18, + anon_sym_SLASH, 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, @@ -214237,7 +221319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3330), 35, + ACTIONS(3287), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214273,16 +221355,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25118] = 3, + [29131] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2029), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 18, + anon_sym_SLASH, 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, @@ -214295,8 +221382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3143), 35, - anon_sym_SEMI, + ACTIONS(3291), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214307,8 +221393,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, @@ -214330,17 +221418,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25179] = 3, + [29199] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2030), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3375), 18, + anon_sym_SLASH, 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, @@ -214353,7 +221445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3171), 35, + ACTIONS(3373), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214389,16 +221481,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25240] = 3, + [29267] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2031), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3339), 18, + anon_sym_SLASH, 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, @@ -214411,8 +221508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3183), 35, - anon_sym_SEMI, + ACTIONS(3337), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214423,8 +221519,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, @@ -214446,17 +221544,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25301] = 3, + [29335] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2032), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 18, + anon_sym_SLASH, 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, @@ -214469,7 +221571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3334), 35, + ACTIONS(3341), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214505,16 +221607,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25362] = 3, + [29403] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2033), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3347), 18, + anon_sym_SLASH, 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, @@ -214527,8 +221634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3195), 35, - anon_sym_SEMI, + ACTIONS(3345), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214539,8 +221645,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, @@ -214562,17 +221670,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25423] = 3, + [29471] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3340), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2034), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3351), 18, + anon_sym_SLASH, 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, @@ -214585,7 +221697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3338), 35, + ACTIONS(3349), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214621,16 +221733,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25484] = 3, + [29539] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3356), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2035), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3363), 18, + anon_sym_SLASH, 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, @@ -214643,7 +221760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3354), 35, + ACTIONS(3361), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214679,16 +221796,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25545] = 3, + [29607] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3378), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2036), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3367), 18, + anon_sym_SLASH, 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, @@ -214701,7 +221823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3376), 35, + ACTIONS(3365), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214737,16 +221859,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25606] = 3, + [29675] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3237), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3267), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(2037), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3271), 18, + anon_sym_SLASH, 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, @@ -214759,11 +221889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3235), 35, - anon_sym_SEMI, + ACTIONS(3274), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -214795,16 +221923,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25667] = 3, + [29745] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3277), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(2038), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 18, + anon_sym_SLASH, 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, @@ -214817,11 +221953,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3239), 35, - anon_sym_SEMI, + ACTIONS(3284), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -214853,18 +221987,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25728] = 4, + [29815] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 1, - anon_sym_LBRACE, - ACTIONS(2649), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2039), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3411), 18, + anon_sym_SLASH, 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, @@ -214877,10 +222014,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2647), 34, + ACTIONS(3409), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -214912,16 +222050,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25791] = 3, + [29883] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3279), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2040), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3395), 18, + anon_sym_SLASH, 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, @@ -214934,8 +222077,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(3393), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214946,8 +222088,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, @@ -214969,17 +222113,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25852] = 3, + [29951] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2041), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3399), 18, + anon_sym_SLASH, 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, @@ -214992,8 +222140,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, - anon_sym_SEMI, + ACTIONS(3397), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215004,8 +222151,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, @@ -215027,20 +222176,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25913] = 4, + [30019] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2727), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2042), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2975), 18, + anon_sym_SLASH, 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, @@ -215053,18 +222203,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2725), 33, - anon_sym_SEMI, + ACTIONS(2973), 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, @@ -215086,17 +222239,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25976] = 3, + [30087] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2043), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 18, + anon_sym_SLASH, 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, @@ -215109,8 +222266,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, - anon_sym_SEMI, + ACTIONS(2741), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215121,8 +222277,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, @@ -215144,17 +222302,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26037] = 3, + [30155] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2044), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 18, + anon_sym_SLASH, 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, @@ -215167,8 +222329,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, - anon_sym_SEMI, + ACTIONS(2831), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215179,8 +222340,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, @@ -215202,17 +222365,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26098] = 3, + [30223] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3307), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2045), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2949), 18, + anon_sym_SLASH, 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, @@ -215225,8 +222392,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, - anon_sym_SEMI, + ACTIONS(2947), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215237,8 +222403,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, @@ -215260,17 +222428,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26159] = 3, + [30291] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3318), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2046), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3011), 18, + anon_sym_SLASH, 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, @@ -215283,8 +222455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3316), 35, - anon_sym_SEMI, + ACTIONS(3009), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215295,8 +222466,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, @@ -215318,17 +222491,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 18, + [30359] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2047), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3027), 18, + anon_sym_SLASH, 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, @@ -215341,8 +222518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3320), 35, - anon_sym_SEMI, + ACTIONS(3025), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215353,8 +222529,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, @@ -215376,17 +222554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26281] = 3, + [30427] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2903), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2048), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3035), 18, + anon_sym_SLASH, 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, @@ -215399,8 +222581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2901), 35, - anon_sym_SEMI, + ACTIONS(3033), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215411,8 +222592,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, @@ -215434,17 +222617,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26342] = 3, + [30495] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2049), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3043), 18, + anon_sym_SLASH, 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, @@ -215457,7 +222644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2725), 35, + ACTIONS(3041), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215493,16 +222680,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26403] = 3, + [30563] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3362), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2050), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3051), 18, + anon_sym_SLASH, 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, @@ -215515,8 +222707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3360), 35, - anon_sym_SEMI, + ACTIONS(3049), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215527,8 +222718,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, @@ -215550,17 +222743,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26464] = 3, + [30631] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3366), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2051), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3427), 18, + anon_sym_SLASH, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + 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), 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, + [30699] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2052), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3133), 18, anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -215573,8 +222833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3364), 35, - anon_sym_SEMI, + ACTIONS(3131), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215585,8 +222844,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, @@ -215608,17 +222869,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26525] = 3, + [30767] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2053), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3179), 18, + anon_sym_SLASH, 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, @@ -215631,8 +222896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3372), 35, - anon_sym_SEMI, + ACTIONS(3177), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215643,8 +222907,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, @@ -215666,17 +222932,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26586] = 3, + [30835] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3382), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2054), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3183), 18, + anon_sym_SLASH, 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, @@ -215689,8 +222959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3380), 35, - anon_sym_SEMI, + ACTIONS(3181), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215701,8 +222970,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, @@ -215724,17 +222995,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26647] = 3, + [30903] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3378), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2055), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3195), 18, + anon_sym_SLASH, 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, @@ -215747,8 +223022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3376), 35, - anon_sym_SEMI, + ACTIONS(3193), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215759,8 +223033,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, @@ -215782,20 +223058,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26708] = 4, + [30971] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3215), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3219), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2056), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3217), 18, + anon_sym_SLASH, 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, @@ -215808,9 +223085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3222), 33, + ACTIONS(3215), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215818,8 +223096,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, @@ -215841,20 +223121,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26771] = 4, + [31039] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3229), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2057), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 18, + anon_sym_SLASH, 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, @@ -215867,9 +223148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3232), 33, + ACTIONS(3313), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215877,8 +223159,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, @@ -215900,17 +223184,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26834] = 3, + [31107] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2058), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 18, + anon_sym_SLASH, 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, @@ -215923,7 +223211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2713), 35, + ACTIONS(3357), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215959,16 +223247,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26895] = 3, + [31175] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2059), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3225), 18, + anon_sym_SLASH, 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, @@ -215981,8 +223274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3015), 35, - anon_sym_SEMI, + ACTIONS(3223), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215993,8 +223285,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, @@ -216016,17 +223310,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26956] = 3, + [31243] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2060), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3233), 18, + anon_sym_SLASH, 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, @@ -216039,8 +223337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2999), 35, - anon_sym_SEMI, + ACTIONS(3231), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216051,8 +223348,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, @@ -216074,17 +223373,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 18, + [31311] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2061), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3237), 18, + anon_sym_SLASH, 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, @@ -216097,8 +223400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2995), 35, - anon_sym_SEMI, + ACTIONS(3235), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216109,8 +223411,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, @@ -216132,17 +223436,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 18, + [31379] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2062), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3129), 18, + anon_sym_SLASH, 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, @@ -216155,7 +223463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2991), 35, + ACTIONS(3127), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216191,16 +223499,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27139] = 3, + [31447] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2063), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 18, + anon_sym_SLASH, 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, @@ -216213,8 +223526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2987), 35, - anon_sym_SEMI, + ACTIONS(3429), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216225,8 +223537,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, @@ -216248,21 +223562,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27200] = 5, + [31515] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(3410), 1, - anon_sym_LBRACE, - ACTIONS(2727), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2064), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 18, + anon_sym_SLASH, 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, @@ -216275,18 +223589,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2725), 33, - anon_sym_SEMI, + ACTIONS(3147), 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, @@ -216308,17 +223625,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27265] = 3, + [31583] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3356), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + STATE(2065), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 18, + anon_sym_SLASH, 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, @@ -216331,9 +223654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3354), 35, + ACTIONS(3429), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216367,16 +223689,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27326] = 3, + [31653] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3189), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2066), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3419), 18, + anon_sym_SLASH, 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, @@ -216389,7 +223716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3187), 35, + ACTIONS(3417), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216425,16 +223752,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27387] = 3, + [31721] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3408), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2067), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3297), 18, + anon_sym_SLASH, 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, @@ -216447,7 +223779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3406), 35, + ACTIONS(3295), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216483,16 +223815,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27448] = 3, + [31789] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2068), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3331), 18, + anon_sym_SLASH, 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, @@ -216505,8 +223842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2647), 35, - anon_sym_SEMI, + ACTIONS(3329), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216517,8 +223853,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, @@ -216540,17 +223878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27509] = 3, + [31857] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3396), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2069), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3335), 18, + anon_sym_SLASH, 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, @@ -216563,7 +223905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3394), 35, + ACTIONS(3333), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216599,16 +223941,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27570] = 3, + [31925] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2070), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3407), 18, + anon_sym_SLASH, 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, @@ -216621,7 +223968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3011), 35, + ACTIONS(3405), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216657,16 +224004,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 18, + [31993] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2071), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3229), 18, + anon_sym_SLASH, 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, @@ -216679,8 +224031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2725), 35, - anon_sym_SEMI, + ACTIONS(3227), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216691,8 +224042,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, @@ -216714,17 +224067,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27692] = 3, + [32061] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2072), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3355), 18, + anon_sym_SLASH, 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, @@ -216737,7 +224094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3446), 35, + ACTIONS(3353), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216773,16 +224130,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27753] = 3, + [32129] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3340), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2073), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3415), 18, + anon_sym_SLASH, 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, @@ -216795,8 +224157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3338), 35, - anon_sym_SEMI, + ACTIONS(3413), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216807,8 +224168,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, @@ -216830,17 +224193,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27814] = 3, + [32197] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3269), 1, anon_sym_EQ, + STATE(2074), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3267), 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(3271), 17, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + 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(3274), 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, + [32269] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2075), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3411), 18, anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -216853,8 +224285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3346), 35, - anon_sym_SEMI, + ACTIONS(3409), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216865,8 +224296,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, @@ -216888,17 +224321,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2899), 18, + [32337] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2076), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3257), 18, + anon_sym_SLASH, 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, @@ -216911,7 +224348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2897), 35, + ACTIONS(3255), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216947,16 +224384,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27936] = 3, + [32405] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3279), 1, anon_sym_EQ, + STATE(2077), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3277), 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(3281), 17, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -216969,21 +224429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3247), 35, + ACTIONS(3284), 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, @@ -216993,28 +224449,21 @@ 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, - [27997] = 3, + [32477] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3428), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2078), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3023), 18, + anon_sym_SLASH, 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, @@ -217027,7 +224476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3426), 35, + ACTIONS(3021), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217063,16 +224512,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28058] = 3, + [32545] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3099), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3269), 1, anon_sym_EQ, + STATE(2079), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3267), 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(3271), 17, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + 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(3274), 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, + [32617] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2080), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3253), 18, anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -217085,8 +224604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3097), 35, - anon_sym_SEMI, + ACTIONS(3251), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217097,8 +224615,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, @@ -217120,17 +224640,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28119] = 3, + [32685] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3237), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2081), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3261), 18, + anon_sym_SLASH, 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, @@ -217143,7 +224667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3235), 35, + ACTIONS(3259), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217154,10 +224679,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, @@ -217179,16 +224702,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 18, + anon_sym_COLON_EQ, + [32753] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2082), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3249), 18, + anon_sym_SLASH, 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, @@ -217201,7 +224730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3372), 35, + ACTIONS(3247), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217237,16 +224766,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28241] = 3, + [32821] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3366), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2083), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3319), 18, + anon_sym_SLASH, 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, @@ -217259,7 +224793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3364), 35, + ACTIONS(3317), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217295,16 +224829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3133), 18, + [32889] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2084), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3245), 18, + anon_sym_SLASH, 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, @@ -217317,8 +224856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3131), 35, - anon_sym_SEMI, + ACTIONS(3243), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217329,8 +224867,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, @@ -217352,17 +224892,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28363] = 3, + [32957] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3444), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2085), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2757), 18, + anon_sym_SLASH, 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, @@ -217375,7 +224919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3442), 35, + ACTIONS(2759), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217411,16 +224955,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 18, + [33025] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2086), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3265), 18, + anon_sym_SLASH, 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, @@ -217433,7 +224982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3334), 35, + ACTIONS(3263), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217469,16 +225018,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3404), 18, + [33093] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2087), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 18, + anon_sym_SLASH, 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, @@ -217491,8 +225045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3402), 35, - anon_sym_SEMI, + ACTIONS(3239), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217503,8 +225056,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, @@ -217526,17 +225081,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28546] = 3, + [33161] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3332), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2088), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3319), 18, + anon_sym_SLASH, 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, @@ -217549,7 +225108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3330), 35, + ACTIONS(3317), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217585,16 +225144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28607] = 3, + [33229] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3344), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2089), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3271), 18, + anon_sym_SLASH, 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, @@ -217607,7 +225171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3342), 35, + ACTIONS(3274), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217618,10 +225183,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, @@ -217643,16 +225206,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28668] = 3, + anon_sym_COLON_EQ, + [33297] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, + anon_sym_LBRACE, + STATE(2090), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 18, + anon_sym_SLASH, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + 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(2831), 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_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, + [33369] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2091), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 18, anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -217665,7 +225299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3430), 35, + ACTIONS(3284), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217701,21 +225335,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28729] = 3, + [33437] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4878), 1, + anon_sym_BANG, + STATE(2092), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3309), 17, + anon_sym_SLASH, 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, @@ -217723,7 +225363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3047), 35, + ACTIONS(3307), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217759,16 +225399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28790] = 3, + [33507] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2093), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3055), 18, + anon_sym_SLASH, 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, @@ -217781,7 +225426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3320), 35, + ACTIONS(3053), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217792,10 +225438,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, @@ -217817,16 +225461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28851] = 3, + anon_sym_COLON_EQ, + [33575] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2094), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 18, + anon_sym_SLASH, 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, @@ -217839,7 +225489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2983), 35, + ACTIONS(2745), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217875,16 +225525,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 18, + [33643] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2095), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3129), 18, + anon_sym_SLASH, 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, @@ -217897,8 +225552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3247), 35, - anon_sym_SEMI, + ACTIONS(3127), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217909,8 +225563,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, @@ -217932,17 +225588,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28973] = 3, + [33711] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3318), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2096), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3125), 18, + anon_sym_SLASH, 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, @@ -217955,7 +225615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3316), 35, + ACTIONS(3123), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217991,16 +225651,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29034] = 3, + [33779] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3328), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2097), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3059), 18, + anon_sym_SLASH, 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, @@ -218013,8 +225678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3326), 35, - anon_sym_SEMI, + ACTIONS(3057), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218025,8 +225689,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, @@ -218048,17 +225714,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29095] = 3, + [33847] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3307), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(2098), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 18, + anon_sym_SLASH, 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, @@ -218071,17 +225744,15 @@ 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(2831), 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, @@ -218107,16 +225778,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29156] = 3, + [33917] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + STATE(2099), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 18, + anon_sym_SLASH, 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, @@ -218129,9 +225807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2909), 35, + ACTIONS(3147), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -218165,16 +225842,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29217] = 3, + [33987] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + STATE(2100), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 18, + anon_sym_SLASH, 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, @@ -218187,8 +225871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2979), 35, - anon_sym_DOT, + ACTIONS(3147), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -218223,16 +225906,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29278] = 3, + [34057] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2101), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3015), 18, + anon_sym_SLASH, 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, @@ -218245,7 +225933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3143), 35, + ACTIONS(3013), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218281,16 +225969,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29339] = 3, + [34125] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2102), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3003), 18, + anon_sym_SLASH, 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, @@ -218303,7 +225996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2913), 35, + ACTIONS(3001), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218339,16 +226032,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29400] = 3, + [34193] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3400), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2103), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 18, + anon_sym_SLASH, 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, @@ -218361,7 +226059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3398), 35, + ACTIONS(2997), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218397,16 +226095,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29461] = 3, + [34261] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2983), 18, + anon_sym_SLASH, 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, @@ -218419,7 +226122,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(2981), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218455,16 +226158,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29522] = 3, + [34329] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2105), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3047), 18, + anon_sym_SLASH, 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, @@ -218477,7 +226185,8 @@ 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(3045), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218488,10 +226197,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, @@ -218513,16 +226220,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29583] = 3, + anon_sym_COLON_EQ, + [34397] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2106), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3039), 18, + anon_sym_SLASH, 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, @@ -218535,7 +226248,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(3037), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218546,10 +226260,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, @@ -218571,16 +226283,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29644] = 3, + anon_sym_COLON_EQ, + [34465] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3287), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2107), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3403), 18, + anon_sym_SLASH, 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, @@ -218593,7 +226311,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, + ACTIONS(3401), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218629,16 +226347,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29705] = 3, + [34533] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3291), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2108), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3399), 18, + anon_sym_SLASH, 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, @@ -218651,7 +226374,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(3397), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218687,16 +226410,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29766] = 3, + [34601] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3424), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2109), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3023), 18, + anon_sym_SLASH, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + 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(3021), 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, + [34669] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2110), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2979), 18, anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -218709,7 +226500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3422), 35, + ACTIONS(2977), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218745,16 +226536,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29827] = 3, + [34737] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2111), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3395), 18, + anon_sym_SLASH, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + 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(3393), 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, + [34805] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2112), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3391), 18, anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -218767,7 +226626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2905), 35, + ACTIONS(3389), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218803,16 +226662,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29888] = 3, + [34873] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3344), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2113), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3367), 18, + anon_sym_SLASH, 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, @@ -218825,7 +226689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3342), 35, + ACTIONS(3365), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218861,16 +226725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29949] = 3, + [34941] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2114), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3363), 18, + anon_sym_SLASH, 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, @@ -218883,7 +226752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2905), 35, + ACTIONS(3361), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218894,10 +226764,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, @@ -218919,16 +226787,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30010] = 3, + anon_sym_COLON_EQ, + [35009] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2115), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3351), 18, + anon_sym_SLASH, 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, @@ -218941,7 +226815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3430), 35, + ACTIONS(3349), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218952,10 +226827,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, @@ -218977,16 +226850,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30071] = 3, + anon_sym_COLON_EQ, + [35077] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2116), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3347), 18, + anon_sym_SLASH, 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, @@ -218999,7 +226878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3239), 35, + ACTIONS(3345), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219010,10 +226890,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, @@ -219035,16 +226913,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30132] = 3, + anon_sym_COLON_EQ, + [35145] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3209), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2117), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 18, + anon_sym_SLASH, 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, @@ -219057,7 +226941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3207), 35, + ACTIONS(3369), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219093,16 +226977,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30193] = 3, + [35213] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2118), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 18, + anon_sym_SLASH, 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, @@ -219115,7 +227004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3438), 35, + ACTIONS(3341), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219126,10 +227016,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, @@ -219151,16 +227039,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30254] = 3, + anon_sym_COLON_EQ, + [35281] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3283), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2119), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3339), 18, + anon_sym_SLASH, 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, @@ -219173,7 +227067,8 @@ 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(3337), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219184,10 +227079,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, @@ -219209,16 +227102,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30315] = 3, + anon_sym_COLON_EQ, + [35349] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3400), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2120), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3423), 18, + anon_sym_SLASH, 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, @@ -219231,8 +227130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3398), 35, - anon_sym_SEMI, + ACTIONS(3421), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219243,8 +227141,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, @@ -219266,23 +227166,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30376] = 4, + [35417] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4880), 1, - anon_sym_BANG, - ACTIONS(3269), 17, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2121), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3327), 18, + anon_sym_SLASH, 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, @@ -219290,7 +227193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3267), 35, + ACTIONS(3325), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219326,18 +227229,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30439] = 4, + [35485] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_DOT, - ACTIONS(3412), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(4880), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(2122), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 18, + anon_sym_SLASH, 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, @@ -219350,20 +227262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3410), 34, + ACTIONS(2831), 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_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -219371,7 +227280,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, @@ -219385,16 +227293,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30502] = 3, + anon_sym_COLON_EQ, + [35557] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2123), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 18, + anon_sym_SLASH, 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, @@ -219407,7 +227321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3346), 35, + ACTIONS(3313), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219418,10 +227333,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, @@ -219443,16 +227356,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30563] = 3, + anon_sym_COLON_EQ, + [35625] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2124), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 18, + anon_sym_SLASH, 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, @@ -219465,7 +227384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3350), 35, + ACTIONS(3357), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219476,10 +227396,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, @@ -219501,16 +227419,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30624] = 3, + anon_sym_COLON_EQ, + [35693] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2125), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 18, + anon_sym_SLASH, 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, @@ -219523,7 +227447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3386), 35, + ACTIONS(3291), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219534,10 +227459,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, @@ -219559,16 +227482,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30685] = 3, + anon_sym_COLON_EQ, + [35761] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2126), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 18, + anon_sym_SLASH, 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, @@ -219581,7 +227510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3390), 35, + ACTIONS(3287), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219592,10 +227522,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, @@ -219617,16 +227545,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30746] = 3, + anon_sym_COLON_EQ, + [35829] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3370), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2127), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 18, + anon_sym_SLASH, 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, @@ -219639,7 +227573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3368), 35, + ACTIONS(3440), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219675,16 +227609,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30807] = 3, + [35897] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3420), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2128), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 18, + anon_sym_SLASH, 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, @@ -219697,7 +227636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3418), 35, + ACTIONS(3429), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219708,10 +227648,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, @@ -219733,16 +227671,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3201), 18, + anon_sym_COLON_EQ, + [35965] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2129), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3253), 18, + anon_sym_SLASH, 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, @@ -219755,7 +227699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3199), 35, + ACTIONS(3251), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219766,10 +227711,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, @@ -219791,16 +227734,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30929] = 3, + anon_sym_COLON_EQ, + [36033] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3424), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2130), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 18, + anon_sym_SLASH, 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, @@ -219813,7 +227762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3422), 35, + ACTIONS(3436), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219849,21 +227798,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30990] = 3, + [36101] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3436), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4882), 1, + anon_sym_BANG, + STATE(2131), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3309), 17, + anon_sym_SLASH, 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, @@ -219871,7 +227826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3434), 35, + ACTIONS(3307), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219907,16 +227862,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3452), 18, + [36171] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2132), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3249), 18, + anon_sym_SLASH, 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, @@ -219929,7 +227889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3450), 35, + ACTIONS(3247), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219940,10 +227901,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, @@ -219965,18 +227924,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31112] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_DOT, - ACTIONS(3412), 18, + anon_sym_COLON_EQ, + [36239] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2133), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3245), 18, + anon_sym_SLASH, 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, @@ -219989,8 +227952,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3410), 34, + ACTIONS(3243), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -220024,16 +227988,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31175] = 3, + [36307] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2134), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2909), 18, + anon_sym_SLASH, 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, @@ -220046,7 +228015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2913), 35, + ACTIONS(2907), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220082,19 +228051,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31236] = 4, + [36375] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2727), 18, + STATE(2135), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 18, + anon_sym_SLASH, 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, @@ -220107,7 +228080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2725), 33, + ACTIONS(3239), 34, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -220116,10 +228090,9 @@ 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_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220141,16 +228114,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 18, + anon_sym_COLON_EQ, + [36445] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2136), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3229), 18, + anon_sym_SLASH, 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, @@ -220163,7 +228142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2713), 35, + ACTIONS(3227), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220199,16 +228178,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31360] = 3, + [36513] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2137), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3221), 18, + anon_sym_SLASH, 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, @@ -220221,7 +228205,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3127), 35, + ACTIONS(3219), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220232,10 +228217,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, @@ -220257,16 +228240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3103), 18, + anon_sym_COLON_EQ, + [36581] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2138), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3213), 18, + anon_sym_SLASH, 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, @@ -220279,7 +228268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3101), 35, + ACTIONS(3211), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220290,10 +228280,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, @@ -220315,16 +228303,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31482] = 3, + anon_sym_COLON_EQ, + [36649] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2139), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3207), 18, + anon_sym_SLASH, 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, @@ -220337,7 +228331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3251), 35, + ACTIONS(3205), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220348,10 +228343,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, @@ -220373,16 +228366,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31543] = 3, + anon_sym_COLON_EQ, + [36717] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3265), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2140), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2913), 18, + anon_sym_SLASH, 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, @@ -220395,7 +228394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3263), 35, + ACTIONS(2911), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220406,10 +228406,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, @@ -220431,16 +228429,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31604] = 3, + anon_sym_COLON_EQ, + [36785] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2141), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2909), 18, + anon_sym_SLASH, 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, @@ -220453,7 +228457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2647), 35, + ACTIONS(2907), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220489,16 +228493,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31665] = 3, + [36853] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2142), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2913), 18, + anon_sym_SLASH, 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, @@ -220511,7 +228520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3025), 35, + ACTIONS(2911), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220547,74 +228556,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31726] = 3, + [36921] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3229), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2143), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3203), 18, 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(3232), 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, - [31787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3189), 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, @@ -220627,7 +228583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3187), 35, + ACTIONS(3201), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220663,16 +228619,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31848] = 3, + [36989] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3408), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2144), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2941), 18, + anon_sym_SLASH, 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, @@ -220685,8 +228646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3406), 35, - anon_sym_SEMI, + ACTIONS(2939), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220697,8 +228657,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, @@ -220720,17 +228682,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31909] = 3, + [37057] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2145), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2945), 18, + anon_sym_SLASH, 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, @@ -220743,8 +228709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3446), 35, - anon_sym_SEMI, + ACTIONS(2943), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220755,8 +228720,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, @@ -220778,17 +228745,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31970] = 3, + [37125] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3209), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2146), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2953), 18, + anon_sym_SLASH, 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, @@ -220801,8 +228772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3207), 35, - anon_sym_SEMI, + ACTIONS(2951), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220813,8 +228783,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, @@ -220836,17 +228808,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32031] = 3, + [37193] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2147), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3199), 18, + anon_sym_SLASH, 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, @@ -220859,7 +228835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3438), 35, + ACTIONS(3197), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220895,16 +228871,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32092] = 3, + [37261] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3283), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2148), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3191), 18, + anon_sym_SLASH, 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, @@ -220917,7 +228898,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(3189), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220953,16 +228934,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32153] = 3, + [37329] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3219), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2149), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3187), 18, + anon_sym_SLASH, 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, @@ -220975,7 +228961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3222), 35, + ACTIONS(3185), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221011,16 +228997,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32214] = 3, + [37397] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2150), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3407), 18, + anon_sym_SLASH, 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, @@ -221033,7 +229024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3350), 35, + ACTIONS(3405), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221069,22 +229060,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32275] = 5, + [37465] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2151), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2987), 18, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + 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(2985), 35, + anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(4882), 2, 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, - ACTIONS(2727), 18, + 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, + [37533] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2152), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2991), 18, + anon_sym_SLASH, 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, @@ -221097,17 +229150,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2725), 31, - anon_sym_SEMI, + ACTIONS(2989), 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, @@ -221115,6 +229172,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, @@ -221128,23 +229186,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32340] = 4, + [37601] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4884), 1, - anon_sym_BANG, - ACTIONS(3269), 17, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2153), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2995), 18, + anon_sym_SLASH, 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, @@ -221152,7 +229213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3267), 35, + ACTIONS(2993), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221188,16 +229249,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32403] = 3, + [37669] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3095), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2154), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3157), 18, + anon_sym_SLASH, 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, @@ -221210,7 +229276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3093), 35, + ACTIONS(3155), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221221,10 +229288,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, @@ -221246,16 +229311,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32464] = 3, + anon_sym_COLON_EQ, + [37737] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2155), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3153), 18, + anon_sym_SLASH, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + 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(3151), 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, + [37805] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2156), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3007), 18, anon_sym_SLASH, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -221268,7 +229402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3089), 35, + ACTIONS(3005), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221304,16 +229438,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 18, + [37873] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2157), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3141), 18, + anon_sym_SLASH, 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, @@ -221326,7 +229465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2979), 35, + ACTIONS(3139), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221362,18 +229501,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32586] = 4, + [37941] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 1, - anon_sym_LBRACE, - ACTIONS(3201), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2158), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3137), 18, + anon_sym_SLASH, 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, @@ -221386,10 +229528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3199), 34, + ACTIONS(3135), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -221421,16 +229564,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32649] = 3, + [38009] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2159), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3031), 18, + anon_sym_SLASH, 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, @@ -221443,7 +229591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2983), 35, + ACTIONS(3029), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221479,16 +229627,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32710] = 3, + [38077] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2651), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2160), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3007), 18, + anon_sym_SLASH, 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, @@ -221501,7 +229654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2653), 35, + ACTIONS(3005), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221512,10 +229666,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, @@ -221537,16 +229689,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32771] = 3, + anon_sym_COLON_EQ, + [38145] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2161), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2995), 18, + anon_sym_SLASH, 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, @@ -221559,7 +229717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3059), 35, + ACTIONS(2993), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221570,10 +229729,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, @@ -221595,16 +229752,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32832] = 3, + anon_sym_COLON_EQ, + [38213] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3275), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2162), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2991), 18, + anon_sym_SLASH, 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, @@ -221617,7 +229780,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, + ACTIONS(2989), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221653,16 +229816,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32893] = 3, + [38281] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3133), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2163), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3137), 18, + anon_sym_SLASH, 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, @@ -221675,7 +229843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3131), 35, + ACTIONS(3135), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221711,16 +229879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32954] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3099), 18, + [38349] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2164), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3141), 18, + anon_sym_SLASH, 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, @@ -221733,7 +229906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3097), 35, + ACTIONS(3139), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221769,16 +229942,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33015] = 3, + [38417] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3428), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2165), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2987), 18, + anon_sym_SLASH, 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, @@ -221791,7 +229969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3426), 35, + ACTIONS(2985), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221802,10 +229981,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, @@ -221827,16 +230004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33076] = 3, + anon_sym_COLON_EQ, + [38485] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2899), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2166), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2953), 18, + anon_sym_SLASH, 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, @@ -221849,7 +230032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2897), 35, + ACTIONS(2951), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221860,10 +230044,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, @@ -221885,16 +230067,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33137] = 3, + anon_sym_COLON_EQ, + [38553] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2903), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2167), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2945), 18, + anon_sym_SLASH, 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, @@ -221907,7 +230095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2901), 35, + ACTIONS(2943), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221918,10 +230107,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, @@ -221943,16 +230130,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33198] = 3, + anon_sym_COLON_EQ, + [38621] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2168), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3187), 18, + anon_sym_SLASH, 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, @@ -221965,7 +230158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2909), 35, + ACTIONS(3185), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222001,16 +230194,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33259] = 3, + [38689] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3257), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2169), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2941), 18, + anon_sym_SLASH, 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, @@ -222023,7 +230221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3255), 35, + ACTIONS(2939), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -222059,16 +230257,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33320] = 3, + [38757] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 18, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2170), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3191), 18, + anon_sym_SLASH, 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, @@ -222081,8 +230284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3386), 35, - anon_sym_SEMI, + ACTIONS(3189), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222093,8 +230295,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, @@ -222116,285 +230320,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33381] = 3, + [38825] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3245), 18, - anon_sym_EQ, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2171), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3383), 24, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, + 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, + ACTIONS(3381), 28, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, 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_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_BANGis, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [38892] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2172), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3379), 24, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, 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(3243), 35, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3377), 28, anon_sym_SEMI, - anon_sym_DOT, - 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_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, - [33442] = 3, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [38959] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 18, - anon_sym_EQ, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2173), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3305), 24, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, 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_COLON, 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(3211), 35, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3303), 28, anon_sym_SEMI, - anon_sym_DOT, - 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_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, - [33503] = 3, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [39026] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 18, - anon_sym_EQ, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2174), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3301), 24, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, 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_COLON, 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(3203), 35, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3299), 28, anon_sym_SEMI, - anon_sym_DOT, - 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_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, - [33564] = 3, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [39093] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 18, - anon_sym_EQ, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2175), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3145), 24, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, 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_COLON, 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(2987), 35, - anon_sym_DOT, - anon_sym_as, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3143), 28, + anon_sym_SEMI, 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_COLON, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_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_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, - [33625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 18, - anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [39160] = 13, + ACTIONS(497), 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(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(2176), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1903), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + 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, - ACTIONS(2991), 35, + 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(497), 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(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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, + sym_block_comment, + ACTIONS(1879), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_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, + sym_identifier, + anon_sym_AT_LBRACK, + [39324] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4898), 1, + anon_sym_EQ, + STATE(2178), 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, @@ -222407,16 +230793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 18, - anon_sym_EQ, + ACTIONS(3442), 17, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -222429,21 +230811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2995), 35, + ACTIONS(3440), 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, @@ -222453,54 +230831,126 @@ 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, - [33747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 18, - anon_sym_EQ, + [39394] = 13, + ACTIONS(497), 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(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(2179), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1915), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + 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, - ACTIONS(3191), 35, + 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, + [39476] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(4900), 1, + anon_sym_else, + STATE(2277), 1, + sym_else_branch, + STATE(2180), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - 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_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_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, @@ -222510,32 +230960,50 @@ 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, - [33808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 18, - anon_sym_EQ, + sym_identifier, + anon_sym_AT_LBRACK, + [39545] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2455), 1, + anon_sym_LBRACK, + ACTIONS(4900), 1, + anon_sym_else, + STATE(2279), 1, + sym_else_branch, + STATE(2181), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2457), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -222545,20 +231013,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3025), 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, @@ -222568,32 +231022,111 @@ 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, - [33869] = 3, + sym_identifier, + anon_sym_AT_LBRACK, + [39614] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 18, - anon_sym_EQ, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4902), 1, + anon_sym_COLON, + ACTIONS(4904), 1, + anon_sym_static, + ACTIONS(4906), 1, + anon_sym_volatile, + STATE(2182), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4591), 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(4589), 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, + [39685] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2741), 1, + anon_sym_LBRACK, + STATE(2257), 1, + sym_type_parameters, + STATE(2183), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -222603,21 +231136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2999), 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, @@ -222627,265 +231145,343 @@ 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, - [33930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 18, - anon_sym_EQ, - anon_sym_PIPE, + sym_identifier, + anon_sym_AT_LBRACK, + [39751] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2184), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4910), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, 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_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(3390), 35, - anon_sym_SEMI, + 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_as, + 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, + [39815] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2185), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2827), 23, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, 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, - [33991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3436), 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_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(3434), 35, - anon_sym_SEMI, + 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(2829), 26, anon_sym_DOT, - anon_sym_as, + 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, + [39879] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2186), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2745), 23, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, 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, - [34052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 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_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(3055), 35, + 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(2747), 26, anon_sym_DOT, - anon_sym_as, + 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, + [39943] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2187), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4914), 23, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, 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_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, - 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, - [34113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3452), 18, - anon_sym_EQ, - anon_sym_PIPE, + 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), 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, + [40007] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2188), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1482), 24, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + 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_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3450), 35, + 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(4916), 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, + [40071] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2819), 1, + anon_sym_LBRACK, + ACTIONS(4918), 1, + anon_sym_DOLLARelse, + STATE(2189), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2821), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, 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, - [34174] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(3311), 18, - anon_sym_EQ, + 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, @@ -222895,20 +231491,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3309), 34, - 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, @@ -222918,53 +231500,112 @@ 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, - [34237] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4888), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4886), 48, + sym_identifier, + anon_sym_AT_LBRACK, + [40137] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2190), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4922), 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(4920), 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, + [40201] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2191), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4926), 23, 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_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(4924), 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, @@ -222973,150 +231614,171 @@ static const uint16_t ts_small_parse_table[] = { 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, + [40265] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2192), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4930), 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, - [34298] = 3, + ACTIONS(4928), 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, + [40329] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 18, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4904), 1, + anon_sym_static, + ACTIONS(4906), 1, + anon_sym_volatile, + ACTIONS(4932), 1, + sym_identifier, + STATE(2193), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4591), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, 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_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(3047), 35, + 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(4589), 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, + [40399] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2745), 1, + anon_sym_LBRACK, + STATE(2194), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, 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, - [34359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 18, - anon_sym_EQ, + 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_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(3051), 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_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, 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, - [34420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 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, @@ -223126,287 +231788,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3011), 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_else, 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, - [34481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 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, + sym_identifier, + anon_sym_AT_LBRACK, + [40463] = 29, + ACTIONS(497), 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, - 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(3015), 35, - anon_sym_DOT, + ACTIONS(4894), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4938), 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_COLON, + ACTIONS(4944), 1, anon_sym_PLUS_PLUS, + ACTIONS(4946), 1, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + ACTIONS(4948), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, anon_sym_AMP_AMP, + ACTIONS(4952), 1, anon_sym_PIPE_PIPE, + ACTIONS(4954), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4956), 1, anon_sym_is, + ACTIONS(4958), 1, anon_sym_BANGis, + ACTIONS(4960), 1, anon_sym_in, + ACTIONS(4962), 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, - [34542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3420), 18, - anon_sym_EQ, + ACTIONS(4964), 1, + anon_sym_AT_LBRACK, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(3496), 1, + sym_attribute, + STATE(4294), 1, + sym_type_parameters, + ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2195), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4940), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4942), 6, 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(3418), 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, - [34603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3083), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(4934), 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(4936), 8, anon_sym_SLASH, + anon_sym_STAR, 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(3081), 35, + [40575] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2827), 1, + anon_sym_LBRACK, + STATE(2196), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2829), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, 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, - [34664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 18, - anon_sym_EQ, + 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_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(3179), 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_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_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, - [34725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3087), 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, @@ -223416,55 +231930,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3085), 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_else, 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, - [34786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3416), 18, - anon_sym_EQ, + sym_identifier, + anon_sym_AT_LBRACK, + [40639] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 1, + anon_sym_LBRACK, + ACTIONS(3149), 1, + anon_sym_LBRACE, + STATE(2197), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -223474,20 +231991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3414), 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, @@ -223497,32 +232000,46 @@ 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, - [34847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3412), 18, - anon_sym_EQ, + sym_identifier, + anon_sym_AT_LBRACK, + [40705] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2827), 1, + anon_sym_LBRACK, + STATE(2198), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2829), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -223532,78 +232049,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3410), 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_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, - [34908] = 3, + sym_identifier, + anon_sym_AT_LBRACK, + [40769] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 18, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4904), 1, + anon_sym_static, + ACTIONS(4906), 1, + anon_sym_volatile, + STATE(2199), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4591), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, 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_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(3251), 35, + 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(4589), 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, + [40837] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2763), 1, + anon_sym_LBRACK, + ACTIONS(4966), 1, + anon_sym_DOLLARelse, + STATE(2200), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2765), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - 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_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_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, @@ -223613,32 +232180,46 @@ 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, - [34969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3382), 18, - anon_sym_EQ, + sym_identifier, + anon_sym_AT_LBRACK, + [40903] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2745), 1, + anon_sym_LBRACK, + STATE(2201), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -223648,55 +232229,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3380), 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_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, - [35030] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 18, - anon_sym_EQ, + sym_identifier, + anon_sym_AT_LBRACK, + [40967] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3329), 1, + anon_sym_LBRACK, + STATE(2202), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3331), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -223706,20 +232288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3175), 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, @@ -223729,32 +232297,46 @@ 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, - [35091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3362), 18, - anon_sym_EQ, + sym_identifier, + anon_sym_AT_LBRACK, + [41030] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3235), 1, + anon_sym_LBRACK, + STATE(2203), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3237), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -223764,21 +232346,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3360), 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, @@ -223788,31 +232355,46 @@ 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, - [35152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3404), 18, - anon_sym_EQ, + sym_identifier, + anon_sym_AT_LBRACK, + [41093] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3259), 1, + anon_sym_LBRACK, + STATE(2204), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3261), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -223822,173 +232404,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3402), 35, - anon_sym_DOT, - anon_sym_as, - 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, + sym_identifier, + anon_sym_AT_LBRACK, + [41156] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4888), 1, anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4938), 1, + anon_sym_as, + ACTIONS(4944), 1, anon_sym_PLUS_PLUS, + ACTIONS(4946), 1, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + ACTIONS(4950), 1, anon_sym_AMP_AMP, + ACTIONS(4952), 1, anon_sym_PIPE_PIPE, + ACTIONS(4954), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4956), 1, anon_sym_is, + ACTIONS(4958), 1, anon_sym_BANGis, + ACTIONS(4960), 1, anon_sym_in, + ACTIONS(4962), 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, - [35213] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3217), 1, - anon_sym_EQ, - ACTIONS(3215), 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(3219), 17, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(2205), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4940), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4942), 6, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4936), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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), 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, + [41261] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2206), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4970), 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(4968), 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, + [41324] = 26, + ACTIONS(497), 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, - 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(3222), 19, - anon_sym_DOT, + ACTIONS(4938), 1, 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, + ACTIONS(4944), 1, anon_sym_PLUS_PLUS, + ACTIONS(4946), 1, anon_sym_DASH_DASH, + ACTIONS(4950), 1, anon_sym_AMP_AMP, + ACTIONS(4952), 1, anon_sym_PIPE_PIPE, + ACTIONS(4954), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4956), 1, anon_sym_is, + ACTIONS(4958), 1, anon_sym_BANGis, + ACTIONS(4960), 1, anon_sym_in, + ACTIONS(4962), 1, anon_sym_BANGin, - [35278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 18, - anon_sym_EQ, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(4940), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4942), 6, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4936), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3171), 35, + ACTIONS(1937), 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, + [41429] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3263), 1, + anon_sym_LBRACK, + STATE(2208), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3265), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, 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, - [35339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 18, - anon_sym_EQ, + 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, @@ -223998,21 +232678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3183), 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, @@ -224022,49 +232687,46 @@ 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, - [35400] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3225), 16, - anon_sym_LBRACE, + sym_identifier, + anon_sym_AT_LBRACK, + [41492] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3317), 1, + anon_sym_LBRACK, + STATE(2209), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3319), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, 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(3229), 17, + 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, @@ -224074,17 +232736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3232), 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, @@ -224094,19 +232745,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [35465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 18, - anon_sym_EQ, + sym_identifier, + anon_sym_AT_LBRACK, + [41555] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3227), 1, + anon_sym_LBRACK, + STATE(2210), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3229), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -224116,21 +232794,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3195), 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, @@ -224140,49 +232803,46 @@ 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, - [35526] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3217), 1, - anon_sym_EQ, - ACTIONS(3215), 16, + sym_identifier, + anon_sym_AT_LBRACK, + [41618] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3405), 1, + anon_sym_LBRACK, + STATE(2211), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3407), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_as, 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(3219), 17, + 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, @@ -224192,17 +232852,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3222), 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, @@ -224212,57 +232861,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [35591] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3225), 16, - anon_sym_SEMI, + sym_identifier, + anon_sym_AT_LBRACK, + [41681] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2212), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2484), 23, 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(3229), 17, - anon_sym_PIPE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + 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_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3232), 19, + 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(4972), 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, + [41744] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2973), 1, + anon_sym_LBRACK, + STATE(2213), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2975), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_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, @@ -224272,19 +232977,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [35656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3444), 18, - anon_sym_EQ, + sym_identifier, + anon_sym_AT_LBRACK, + [41807] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2741), 1, + anon_sym_LBRACK, + STATE(2214), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -224294,21 +233026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3442), 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, @@ -224318,31 +233035,47 @@ 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, - [35717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3279), 18, - anon_sym_EQ, + sym_identifier, + anon_sym_AT_LBRACK, + [41870] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3429), 1, + anon_sym_LBRACK, + ACTIONS(3433), 1, + anon_sym_DOT, + STATE(2215), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 46, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -224352,21 +233085,6 @@ 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_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, @@ -224376,31 +233094,46 @@ 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, - [35778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3265), 18, - anon_sym_EQ, + sym_identifier, + anon_sym_AT_LBRACK, + [41935] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3436), 1, + anon_sym_LBRACK, + STATE(2216), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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, @@ -224410,57 +233143,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3263), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + 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, + [41998] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2217), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3143), 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_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, - [35839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 24, + anon_sym_map_LBRACK, + ACTIONS(3145), 24, + anon_sym_SLASH, 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_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -224474,134 +233211,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3003), 28, + anon_sym_DOT_DOT, + [42061] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3429), 1, + anon_sym_LBRACK, + STATE(2218), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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_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_map_LBRACK, - anon_sym_DOT_DOT, - [35899] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3261), 24, + sym_identifier, + anon_sym_AT_LBRACK, + [42124] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3440), 1, + anon_sym_LBRACK, + STATE(2219), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, - 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_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_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3259), 28, + anon_sym_AT_LBRACK, + [42187] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3357), 1, + anon_sym_LBRACK, + STATE(2220), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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_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_map_LBRACK, - anon_sym_DOT_DOT, - [35959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 24, + sym_identifier, + anon_sym_AT_LBRACK, + [42250] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2947), 1, + anon_sym_LBRACK, + STATE(2221), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2949), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, - 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_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_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2889), 28, + anon_sym_AT_LBRACK, + [42313] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3313), 1, + anon_sym_LBRACK, + STATE(2222), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, 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_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, + [42376] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2223), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3299), 24, 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, anon_sym_CARET, @@ -224614,24 +233534,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACK, anon_sym_BANGis, anon_sym_BANGin, - anon_sym_COLON_EQ, anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [36019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 24, + ACTIONS(3301), 24, + anon_sym_SLASH, 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_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -224645,20 +233559,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2893), 28, - anon_sym_SEMI, + anon_sym_DOT_DOT, + [42439] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2224), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3303), 24, 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, anon_sym_CARET, @@ -224671,24 +233592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACK, anon_sym_BANGis, anon_sym_BANGin, - anon_sym_COLON_EQ, anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [36079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 24, + ACTIONS(3305), 24, + anon_sym_SLASH, 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_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -224702,20 +233617,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3007), 28, - anon_sym_SEMI, + anon_sym_DOT_DOT, + [42502] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2225), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 24, 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, anon_sym_CARET, @@ -224728,110 +233650,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACK, anon_sym_BANGis, anon_sym_BANGin, - anon_sym_COLON_EQ, anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [36139] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_QMARK, - ACTIONS(4898), 1, - anon_sym_BANG, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(3379), 24, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4900), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1881), 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_fn, 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_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, - 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, - [36214] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_QMARK, - ACTIONS(4898), 1, - anon_sym_BANG, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4900), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1853), 40, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [42565] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3009), 1, + anon_sym_LBRACK, + STATE(2226), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3011), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, 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, @@ -224844,6 +233714,9 @@ 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, @@ -224853,147 +233726,87 @@ 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, sym_identifier, anon_sym_AT_LBRACK, - [36289] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4904), 1, - anon_sym_EQ, - ACTIONS(4902), 14, + [42628] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2227), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3381), 24, 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(3287), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LPAREN, 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), 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_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, - [36352] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_QMARK, - ACTIONS(4898), 1, - anon_sym_BANG, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, + anon_sym_map_LBRACK, + ACTIONS(3383), 24, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4900), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1869), 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_fn, 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_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, - 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, - [36427] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(4906), 1, - anon_sym_else, - STATE(2208), 1, - sym_else_branch, - ACTIONS(2635), 47, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [42691] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, + anon_sym_LBRACK, + STATE(2228), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3411), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225005,7 +233818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -225038,77 +233850,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [36489] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, - anon_sym_COLON, - ACTIONS(4910), 1, - anon_sym_static, - ACTIONS(4912), 1, - anon_sym_volatile, - ACTIONS(4601), 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(4599), 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, - [36553] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(4906), 1, - anon_sym_else, - STATE(2207), 1, - sym_else_branch, - ACTIONS(2505), 47, + [42754] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3373), 1, + anon_sym_LBRACK, + STATE(2229), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3375), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225120,7 +233876,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -225153,64 +233908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [36615] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - [36672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2683), 23, + [42817] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2230), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1960), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -225234,7 +233940,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(2685), 26, + ACTIONS(4974), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -225246,7 +233952,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, @@ -225261,73 +233966,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [36729] = 5, + [42880] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4910), 1, - anon_sym_static, - ACTIONS(4912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4980), 1, anon_sym_volatile, - ACTIONS(4601), 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(4599), 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, - [36790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1486), 24, + STATE(2231), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4978), 22, 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, @@ -225345,7 +233999,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4918), 25, + ACTIONS(4976), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -225371,15 +234025,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [36847] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2647), 1, + [42945] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2649), 48, + STATE(2232), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3129), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225391,7 +234051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -225418,114 +234077,44 @@ 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, - [36904] = 27, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_QMARK, - ACTIONS(4898), 1, - anon_sym_BANG, - ACTIONS(4900), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4922), 1, - anon_sym_as, - ACTIONS(4930), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4932), 1, - anon_sym_DASH_DASH, - ACTIONS(4934), 1, - anon_sym_LBRACK2, - ACTIONS(4936), 1, - anon_sym_AMP_AMP, - ACTIONS(4938), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4940), 1, - anon_sym_or, - ACTIONS(4942), 1, - anon_sym_is, - ACTIONS(4944), 1, - anon_sym_BANGis, - ACTIONS(4946), 1, - anon_sym_in, - ACTIONS(4948), 1, - anon_sym_BANGin, - ACTIONS(4950), 1, - anon_sym_AT_LBRACK, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(3472), 1, - sym_attribute, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4924), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4928), 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, + [43008] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3274), 1, + anon_sym_LBRACK, + STATE(2233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3269), 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, - ACTIONS(4926), 8, - anon_sym_STAR, + anon_sym_AT_LBRACK, + ACTIONS(3271), 35, 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, - [37009] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2641), 1, - anon_sym_LBRACK, - ACTIONS(4952), 1, - anon_sym_DOLLARelse, - ACTIONS(2643), 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, @@ -225533,9 +234122,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_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -225556,125 +234142,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + [43073] = 29, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3147), 1, + anon_sym_LBRACK, + ACTIONS(3444), 1, sym_identifier, - anon_sym_AT_LBRACK, - [37068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_json_DOTdecode, + ACTIONS(3458), 1, anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, + ACTIONS(3460), 1, 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(4954), 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, + 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, - [37125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4960), 23, - anon_sym_LBRACE, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_LT2, + STATE(3446), 1, + sym_plain_type, + STATE(3455), 1, + sym_signature, + STATE(3836), 1, + sym_generic_parameters, + STATE(4442), 1, + sym_reference_expression, + STATE(2234), 2, + sym_line_comment, + sym_block_comment, + STATE(2488), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3406), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3451), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(3149), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3452), 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, + [43184] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3284), 1, + anon_sym_LBRACK, + STATE(2235), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3279), 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(3281), 35, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, 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_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(4958), 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, - [37182] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2647), 1, + 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, + [43249] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3413), 1, anon_sym_LBRACK, - ACTIONS(2649), 48, + STATE(2236), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3415), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225686,7 +234309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -225713,22 +234335,27 @@ 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, - [37239] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2683), 1, + [43312] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(2685), 48, + STATE(2237), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3027), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225740,7 +234367,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -225767,24 +234393,27 @@ 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, - [37296] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_LBRACK, - STATE(2220), 1, - sym_type_parameters, - ACTIONS(2715), 47, + [43375] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_LBRACK, + STATE(2238), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3035), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225796,7 +234425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -225829,69 +234457,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2647), 23, - anon_sym_LBRACE, + [43438] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3041), 1, + anon_sym_LBRACK, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3043), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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(2649), 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, + 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_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [37412] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2683), 1, - anon_sym_LBRACK, - ACTIONS(2685), 48, + anon_sym_AT_LBRACK, + [43501] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3049), 1, + anon_sym_LBRACK, + STATE(2240), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3051), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225903,7 +234541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -225930,81 +234567,27 @@ 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, - [37469] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4910), 1, - anon_sym_static, - ACTIONS(4912), 1, - anon_sym_volatile, - ACTIONS(4962), 1, - sym_identifier, - ACTIONS(4601), 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(4599), 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, - [37532] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2871), 1, - anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_DOLLARelse, - ACTIONS(2873), 47, + [43564] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3401), 1, + anon_sym_LBRACK, + STATE(2241), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3403), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226016,7 +234599,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226049,17 +234631,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37591] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(3412), 1, - anon_sym_LBRACE, - ACTIONS(2727), 47, + [43627] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3397), 1, + anon_sym_LBRACK, + STATE(2242), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3399), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226071,7 +234657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226104,15 +234689,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37650] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_LBRACK, - ACTIONS(2997), 47, + [43690] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3393), 1, + anon_sym_LBRACK, + STATE(2243), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3395), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226124,7 +234715,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226157,15 +234747,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37706] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3097), 1, - anon_sym_LBRACK, - ACTIONS(3099), 47, + [43753] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3389), 1, + anon_sym_LBRACK, + STATE(2244), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3391), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226177,7 +234773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226210,15 +234805,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37762] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_LBRACK, - ACTIONS(2715), 47, + [43816] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3123), 1, + anon_sym_LBRACK, + STATE(2245), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3125), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226230,7 +234831,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226263,15 +234863,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37818] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3301), 1, - anon_sym_LBRACK, - ACTIONS(3303), 47, + [43879] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_LBRACK, + STATE(2246), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3367), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226283,7 +234889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226316,15 +234921,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37874] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3299), 47, + [43942] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3361), 1, + anon_sym_LBRACK, + STATE(2247), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3363), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226336,7 +234947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226369,15 +234979,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37930] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3293), 1, + [44005] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3349), 1, anon_sym_LBRACK, - ACTIONS(3295), 47, + STATE(2248), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3351), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226389,7 +235005,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226422,15 +235037,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37986] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3277), 1, - anon_sym_LBRACK, - ACTIONS(3279), 47, + [44068] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3345), 1, + anon_sym_LBRACK, + STATE(2249), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3347), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226442,7 +235063,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226475,15 +235095,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38042] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3376), 1, - anon_sym_LBRACK, - ACTIONS(3378), 47, + [44131] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3341), 1, + anon_sym_LBRACK, + STATE(2250), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226495,7 +235121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226528,15 +235153,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38098] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3239), 1, - anon_sym_LBRACK, - ACTIONS(3241), 47, + [44194] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3337), 1, + anon_sym_LBRACK, + STATE(2251), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3339), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226548,7 +235179,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226581,15 +235211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38154] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3235), 1, - anon_sym_LBRACK, - ACTIONS(3237), 47, + [44257] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3325), 1, + anon_sym_LBRACK, + STATE(2252), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3327), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226601,7 +235237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226634,15 +235269,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38210] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3195), 1, - anon_sym_LBRACK, - ACTIONS(3197), 47, + [44320] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3057), 1, + anon_sym_LBRACK, + STATE(2253), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3059), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226654,7 +235295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226687,15 +235327,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38266] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3342), 1, - anon_sym_LBRACK, - ACTIONS(3344), 47, + [44383] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3291), 1, + anon_sym_LBRACK, + STATE(2254), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226707,7 +235353,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226740,15 +235385,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38322] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACK, - ACTIONS(3356), 47, + [44446] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3287), 1, + anon_sym_LBRACK, + STATE(2255), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226760,7 +235411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226793,15 +235443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38378] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3183), 1, + [44509] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3251), 1, anon_sym_LBRACK, - ACTIONS(3185), 47, + STATE(2256), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3253), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226813,7 +235469,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226846,15 +235501,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38434] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3171), 1, - anon_sym_LBRACK, - ACTIONS(3173), 47, + [44572] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3425), 1, + anon_sym_LBRACK, + STATE(2257), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3427), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226866,7 +235527,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226899,33 +235559,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38490] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3222), 1, - anon_sym_LBRACK, - ACTIONS(3217), 12, + [44635] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3353), 1, + anon_sym_LBRACK, + STATE(2258), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3355), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, 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(3219), 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, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -226933,60 +235592,9 @@ static const uint16_t ts_small_parse_table[] = { 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, - [38548] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3232), 1, - anon_sym_LBRACK, - ACTIONS(3227), 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(3229), 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, @@ -227007,15 +235615,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [38606] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3139), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [44698] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3247), 1, anon_sym_LBRACK, - ACTIONS(3141), 47, + STATE(2259), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3249), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227027,7 +235643,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227060,15 +235675,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38662] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3127), 1, + [44761] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3243), 1, anon_sym_LBRACK, - ACTIONS(3129), 47, + STATE(2260), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3245), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227080,7 +235701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227113,68 +235733,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3007), 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(3009), 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, - [38774] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3338), 1, - anon_sym_LBRACK, - ACTIONS(3340), 47, + [44824] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3219), 1, + anon_sym_LBRACK, + STATE(2261), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3221), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227186,7 +235759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227219,15 +235791,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38830] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3334), 1, + [44887] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3211), 1, anon_sym_LBRACK, - ACTIONS(3336), 47, + STATE(2262), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3213), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227239,7 +235817,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227272,15 +235849,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38886] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3330), 1, - anon_sym_LBRACK, - ACTIONS(3332), 47, + [44950] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3205), 1, + anon_sym_LBRACK, + STATE(2263), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3207), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227292,7 +235875,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227325,15 +235907,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38942] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3326), 1, + [45013] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3131), 1, anon_sym_LBRACK, - ACTIONS(3328), 47, + STATE(2264), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3133), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227345,7 +235933,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227378,121 +235965,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38998] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3101), 1, + [45076] = 15, + ACTIONS(497), 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(3103), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2265), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4940), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_CARET, + ACTIONS(4936), 8, anon_sym_SLASH, + 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_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, - [39054] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3093), 1, - anon_sym_LBRACK, - ACTIONS(3095), 47, + ACTIONS(1871), 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, - [39110] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_LBRACK, - ACTIONS(3091), 47, + [45159] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2831), 1, + anon_sym_LBRACK, + STATE(2266), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227504,7 +236059,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227537,15 +236091,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39166] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3085), 1, - anon_sym_LBRACK, - ACTIONS(3087), 47, + [45222] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3177), 1, + anon_sym_LBRACK, + STATE(2267), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3179), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227557,7 +236117,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227590,68 +236149,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3259), 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(3261), 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, - [39278] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3398), 1, - anon_sym_LBRACK, - ACTIONS(3400), 47, + [45285] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3181), 1, + anon_sym_LBRACK, + STATE(2268), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3183), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227663,7 +236175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227696,18 +236207,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39334] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_LBRACK, - ACTIONS(3313), 1, - anon_sym_DOT, - ACTIONS(3311), 46, + [45348] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3193), 1, + anon_sym_LBRACK, + STATE(2269), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3195), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -227717,7 +236233,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227750,15 +236265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39392] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3289), 1, - anon_sym_LBRACK, - ACTIONS(3291), 47, + [45411] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, + anon_sym_LBRACK, + STATE(2270), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3217), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227770,7 +236291,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227803,15 +236323,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39448] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_LBRACK, - ACTIONS(3083), 47, + [45474] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3223), 1, + anon_sym_LBRACK, + STATE(2271), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3225), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227823,7 +236349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227856,68 +236381,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39504] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3059), 1, + [45537] = 15, + ACTIONS(497), 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(3061), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2272), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4940), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_CARET, + ACTIONS(4936), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1875), 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_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, - [39560] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3285), 1, - anon_sym_LBRACK, - ACTIONS(3287), 47, + [45620] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, + anon_sym_LBRACK, + STATE(2273), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3233), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227929,7 +236475,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -227962,15 +236507,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39616] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3055), 1, + [45683] = 19, + ACTIONS(497), 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(3057), 47, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4950), 1, + anon_sym_AMP_AMP, + ACTIONS(4960), 1, + anon_sym_in, + ACTIONS(4962), 1, + anon_sym_BANGin, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(2274), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4940), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4942), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4936), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 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_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + sym_identifier, + anon_sym_AT_LBRACK, + [45774] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3255), 1, + anon_sym_LBRACK, + STATE(2275), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3257), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227982,7 +236605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228015,68 +236637,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39672] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3143), 1, + [45837] = 18, + ACTIONS(497), 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(3145), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4960), 1, + anon_sym_in, + ACTIONS(4962), 1, + anon_sym_BANGin, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2276), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4940), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4942), 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(4936), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1879), 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_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39728] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3187), 1, + [45926] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3201), 1, anon_sym_LBRACK, - ACTIONS(3189), 47, + STATE(2277), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3203), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228088,7 +236734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228121,68 +236766,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39784] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3368), 1, + [45989] = 15, + ACTIONS(497), 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(3370), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2278), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4940), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_CARET, + ACTIONS(4936), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 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_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, - [39840] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3051), 1, - anon_sym_LBRACK, - ACTIONS(3053), 47, + [46072] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3197), 1, + anon_sym_LBRACK, + STATE(2279), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3199), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228194,7 +236860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228227,15 +236892,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39896] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_LBRACK, - ACTIONS(2907), 47, + [46135] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3189), 1, + anon_sym_LBRACK, + STATE(2280), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3191), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228247,7 +236918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228280,15 +236950,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39952] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(3049), 47, + [46198] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3185), 1, + anon_sym_LBRACK, + STATE(2281), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3187), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228300,7 +236976,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228333,15 +237008,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40008] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3247), 1, - anon_sym_LBRACK, - ACTIONS(3249), 47, + [46261] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3155), 1, + anon_sym_LBRACK, + STATE(2282), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3157), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228353,7 +237034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228386,15 +237066,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40064] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3406), 1, - anon_sym_LBRACK, - ACTIONS(3408), 47, + [46324] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3151), 1, + anon_sym_LBRACK, + STATE(2283), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3153), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228406,7 +237092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228439,18 +237124,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40120] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_DOT, - ACTIONS(3410), 1, + [46387] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(3412), 46, + STATE(2284), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3141), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -228460,7 +237150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228493,15 +237182,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40178] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3273), 1, + [46450] = 14, + ACTIONS(497), 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(3275), 47, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(2285), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4936), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 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, + [46531] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3135), 1, + anon_sym_LBRACK, + STATE(2286), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3137), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228513,7 +237275,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228546,68 +237307,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2893), 24, - anon_sym_LBRACE, + [46594] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3029), 1, + anon_sym_LBRACK, + STATE(2287), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3031), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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(2895), 24, + sym_identifier, + anon_sym_AT_LBRACK, + [46657] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3013), 1, + anon_sym_LBRACK, + STATE(2288), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3015), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, + 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_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [40290] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3017), 47, + anon_sym_AT_LBRACK, + [46720] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3005), 1, + anon_sym_LBRACK, + STATE(2289), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3007), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228619,7 +237449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228652,15 +237481,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40346] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACK, - ACTIONS(3257), 47, + [46783] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2993), 1, + anon_sym_LBRACK, + STATE(2290), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2995), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228672,7 +237507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228705,15 +237539,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40402] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3243), 1, - anon_sym_LBRACK, - ACTIONS(3245), 47, + [46846] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3001), 1, + anon_sym_LBRACK, + STATE(2291), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3003), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228725,7 +237565,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228758,15 +237597,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40458] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3211), 1, - anon_sym_LBRACK, - ACTIONS(3213), 47, + [46909] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2989), 1, + anon_sym_LBRACK, + STATE(2292), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2991), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228778,7 +237623,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228811,15 +237655,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40514] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3203), 1, - anon_sym_LBRACK, - ACTIONS(3205), 47, + [46972] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2985), 1, + anon_sym_LBRACK, + STATE(2293), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2987), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228831,7 +237681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228864,15 +237713,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40570] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LBRACK, - ACTIONS(3193), 47, + [47035] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2951), 1, + anon_sym_LBRACK, + STATE(2294), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2953), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228884,7 +237739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228917,15 +237771,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40626] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2999), 1, - anon_sym_LBRACK, - ACTIONS(3001), 47, + [47098] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2997), 1, + anon_sym_LBRACK, + STATE(2295), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228937,7 +237797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -228970,15 +237829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40682] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 47, + [47161] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2981), 1, + anon_sym_LBRACK, + STATE(2296), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2983), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228990,7 +237855,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229023,15 +237887,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40738] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3446), 1, - anon_sym_LBRACK, - ACTIONS(3448), 47, + [47224] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2943), 1, + anon_sym_LBRACK, + STATE(2297), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2945), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229043,7 +237913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229076,15 +237945,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40794] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3175), 1, - anon_sym_LBRACK, - ACTIONS(3177), 47, + [47287] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2939), 1, + anon_sym_LBRACK, + STATE(2298), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2941), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229096,7 +237971,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229129,15 +238003,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40850] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3430), 1, - anon_sym_LBRACK, - ACTIONS(3432), 47, + [47350] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2911), 1, + anon_sym_LBRACK, + STATE(2299), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2913), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229149,7 +238029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229182,15 +238061,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40906] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2991), 1, - anon_sym_LBRACK, - ACTIONS(2993), 47, + [47413] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2907), 1, + anon_sym_LBRACK, + STATE(2300), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2909), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229202,7 +238087,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229235,15 +238119,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40962] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(3382), 47, + [47476] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3037), 1, + anon_sym_LBRACK, + STATE(2301), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3039), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229255,7 +238145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229288,15 +238177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41018] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 47, + [47539] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3045), 1, + anon_sym_LBRACK, + STATE(2302), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3047), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229308,7 +238203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229341,89 +238235,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41074] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_QMARK, - ACTIONS(4898), 1, - anon_sym_BANG, - ACTIONS(4922), 1, - anon_sym_as, - ACTIONS(4930), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4932), 1, - anon_sym_DASH_DASH, - ACTIONS(4936), 1, - anon_sym_AMP_AMP, - ACTIONS(4938), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4940), 1, - anon_sym_or, - ACTIONS(4942), 1, - anon_sym_is, - ACTIONS(4944), 1, - anon_sym_BANGis, - ACTIONS(4946), 1, - anon_sym_in, - ACTIONS(4948), 1, - anon_sym_BANGin, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, + [47602] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3147), 1, + anon_sym_LBRACK, + STATE(2303), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4900), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4924), 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(4928), 6, + 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, - ACTIONS(4926), 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(1861), 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_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, - [41172] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_LBRACK, - ACTIONS(3307), 47, + [47665] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3417), 1, + anon_sym_LBRACK, + STATE(2304), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3419), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229435,7 +238319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229468,15 +238351,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41228] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2909), 1, - anon_sym_LBRACK, - ACTIONS(2911), 47, + [47728] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3053), 1, + anon_sym_LBRACK, + STATE(2305), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3055), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229488,7 +238377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229521,15 +238409,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41284] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 47, + [47791] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3295), 1, + anon_sym_LBRACK, + STATE(2306), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3297), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229541,7 +238435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229574,70 +238467,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 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(4966), 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, - [41396] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2897), 1, - anon_sym_LBRACK, - ACTIONS(2899), 47, + [47854] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2835), 1, + anon_sym_DOT, + ACTIONS(3147), 1, + anon_sym_LBRACK, + STATE(2307), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -229647,7 +238494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229680,15 +238526,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41452] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(3428), 47, + [47919] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3307), 1, + anon_sym_LBRACK, + ACTIONS(4986), 1, + anon_sym_BANG, + STATE(2308), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3309), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229700,7 +238554,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229714,7 +238567,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, @@ -229733,68 +238585,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2538), 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(4970), 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, - [41564] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3316), 1, - anon_sym_LBRACK, - ACTIONS(3318), 47, + [47984] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3021), 1, + anon_sym_LBRACK, + STATE(2309), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3023), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229806,7 +238611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229839,15 +238643,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41620] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3320), 1, - anon_sym_LBRACK, - ACTIONS(3322), 47, + [48047] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2977), 1, + anon_sym_LBRACK, + STATE(2310), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2979), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229859,7 +238669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229892,15 +238701,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41676] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3207), 1, - anon_sym_LBRACK, - ACTIONS(3209), 47, + [48110] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3421), 1, + anon_sym_LBRACK, + STATE(2311), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3423), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229912,7 +238727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229945,15 +238759,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41732] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3394), 1, - anon_sym_LBRACK, - ACTIONS(3396), 47, + [48173] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3369), 1, + anon_sym_LBRACK, + STATE(2312), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229965,7 +238785,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -229998,15 +238817,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41788] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3131), 1, - anon_sym_LBRACK, - ACTIONS(3133), 47, + [48236] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(2313), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2757), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230018,7 +238843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -230051,15 +238875,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41844] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_LBRACK, - ACTIONS(2727), 47, + [48299] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3321), 1, + anon_sym_LBRACK, + STATE(2314), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230071,7 +238901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -230104,15 +238933,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41900] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3442), 1, - anon_sym_LBRACK, - ACTIONS(3444), 47, + [48362] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3333), 1, + anon_sym_LBRACK, + STATE(2315), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3335), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230124,7 +238959,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -230157,68 +238991,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1952), 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(4972), 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, - [42012] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3402), 1, - anon_sym_LBRACK, - ACTIONS(3404), 47, + [48425] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3385), 1, + anon_sym_LBRACK, + STATE(2316), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3387), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -230230,7 +239017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -230263,127 +239049,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42068] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3438), 1, + [48488] = 18, + ACTIONS(497), 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(3440), 47, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4994), 1, + anon_sym_in, + ACTIONS(4996), 1, + anon_sym_BANGin, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(2317), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4990), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + ACTIONS(4988), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 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_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, + [48576] = 19, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4888), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4994), 1, + anon_sym_in, + ACTIONS(4996), 1, + anon_sym_BANGin, + ACTIONS(4998), 1, + anon_sym_AMP_AMP, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(2318), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4990), 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, + ACTIONS(4988), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 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_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, + [48666] = 26, + ACTIONS(497), 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(4938), 1, + anon_sym_as, + ACTIONS(4944), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4946), 1, + anon_sym_DASH_DASH, + ACTIONS(4954), 1, + anon_sym_or, + ACTIONS(4956), 1, + anon_sym_is, + ACTIONS(4958), 1, + anon_sym_BANGis, + ACTIONS(4994), 1, + anon_sym_in, + ACTIONS(4996), 1, + anon_sym_BANGin, + ACTIONS(4998), 1, + anon_sym_AMP_AMP, + ACTIONS(5000), 1, + anon_sym_PIPE_PIPE, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(2319), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4990), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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, + ACTIONS(3758), 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(4988), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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, + [48770] = 26, + ACTIONS(497), 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(4938), 1, + anon_sym_as, + ACTIONS(4944), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4946), 1, + anon_sym_DASH_DASH, + ACTIONS(4954), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4956), 1, anon_sym_is, + ACTIONS(4958), 1, anon_sym_BANGis, + ACTIONS(4994), 1, anon_sym_in, + ACTIONS(4996), 1, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42124] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3281), 1, - anon_sym_LBRACK, - ACTIONS(3283), 47, + ACTIONS(4998), 1, + anon_sym_AMP_AMP, + ACTIONS(5000), 1, + anon_sym_PIPE_PIPE, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(2320), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4990), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + ACTIONS(1931), 8, 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(4988), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [48874] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - anon_sym___global, + 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(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + STATE(2321), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1903), 9, + anon_sym_SLASH, 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(1901), 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_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + 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, 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, - [42180] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [48958] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(3003), 24, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + STATE(2322), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1915), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1913), 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, 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, anon_sym_CARET, @@ -230392,51 +239475,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + anon_sym_or, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3005), 24, - anon_sym_DOT, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [49042] = 26, + ACTIONS(497), 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(4938), 1, anon_sym_as, + ACTIONS(4944), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4946), 1, + anon_sym_DASH_DASH, + ACTIONS(4954), 1, + anon_sym_or, + ACTIONS(4956), 1, + anon_sym_is, + ACTIONS(4958), 1, + anon_sym_BANGis, + ACTIONS(4994), 1, + anon_sym_in, + ACTIONS(4996), 1, + anon_sym_BANGin, + ACTIONS(4998), 1, + anon_sym_AMP_AMP, + ACTIONS(5000), 1, + anon_sym_PIPE_PIPE, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(2323), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4990), 4, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4992), 6, anon_sym_LT, anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1937), 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(4988), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, 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, - [42236] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3267), 1, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [49146] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3239), 1, anon_sym_LBRACK, - ACTIONS(4974), 1, - anon_sym_BANG, - ACTIONS(3269), 46, + ACTIONS(2757), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2324), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 44, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, @@ -230444,7 +239587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -230452,12 +239594,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_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, @@ -230476,11 +239618,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42294] = 4, + [49210] = 26, + ACTIONS(497), 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(4938), 1, + anon_sym_as, + ACTIONS(4944), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4946), 1, + anon_sym_DASH_DASH, + ACTIONS(4954), 1, + anon_sym_or, + ACTIONS(4956), 1, + anon_sym_is, + ACTIONS(4958), 1, + anon_sym_BANGis, + ACTIONS(4994), 1, + anon_sym_in, + ACTIONS(4996), 1, + anon_sym_BANGin, + ACTIONS(4998), 1, + anon_sym_AMP_AMP, + ACTIONS(5000), 1, + anon_sym_PIPE_PIPE, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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(2325), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4990), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + ACTIONS(3760), 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(4988), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [49314] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4980), 1, - anon_sym_volatile, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2326), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4978), 22, anon_sym_LBRACE, anon_sym_LPAREN, @@ -230530,46 +239753,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [42352] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3027), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [49376] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2327), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 13, + anon_sym_SLASH, anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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___global, - 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_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + 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, @@ -230577,34 +239802,64 @@ 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, - sym_identifier, - anon_sym_AT_LBRACK, - [42408] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3410), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [49438] = 15, + ACTIONS(497), 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(3412), 47, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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, + sym_block_comment, + ACTIONS(4990), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4988), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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), 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___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, @@ -230612,70 +239867,58 @@ static const uint16_t ts_small_parse_table[] = { 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, - [42464] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3414), 1, - anon_sym_LBRACK, - ACTIONS(3416), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [49520] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2329), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2829), 13, + anon_sym_SLASH, anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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(2827), 34, + anon_sym_SEMI, anon_sym_as, + 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_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_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + 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, @@ -230683,108 +239926,64 @@ 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, - sym_identifier, - anon_sym_AT_LBRACK, - [42520] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [49582] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(4888), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4890), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4922), 1, - anon_sym_as, - ACTIONS(4930), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4932), 1, - anon_sym_DASH_DASH, - ACTIONS(4936), 1, - anon_sym_AMP_AMP, - ACTIONS(4938), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4940), 1, - anon_sym_or, - ACTIONS(4942), 1, - anon_sym_is, - ACTIONS(4944), 1, - anon_sym_BANGis, - ACTIONS(4946), 1, - anon_sym_in, - ACTIONS(4948), 1, - anon_sym_BANGin, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, + STATE(2309), 1, sym_argument_list, - STATE(4180), 1, + STATE(2310), 1, + sym_or_block, + STATE(4294), 1, sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(4884), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4900), 2, + ACTIONS(4894), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4924), 4, + STATE(2330), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4990), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4928), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4926), 8, - anon_sym_STAR, + ACTIONS(4988), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 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, - [42618] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3011), 1, - anon_sym_LBRACK, - ACTIONS(3013), 47, + ACTIONS(1875), 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___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, @@ -230792,43 +239991,36 @@ static const uint16_t ts_small_parse_table[] = { 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, - [42674] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACK, - ACTIONS(3362), 47, + [49664] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2745), 1, + anon_sym_LBRACK, + ACTIONS(2757), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2331), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 44, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, @@ -230836,7 +240028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -230844,7 +240035,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_pub, anon_sym_mut, anon_sym_PLUS_PLUS, @@ -230869,58 +240059,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42730] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + [49728] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(4888), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4890), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(4892), 1, anon_sym_BANG, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, + STATE(2309), 1, sym_argument_list, - STATE(4180), 1, + STATE(2310), 1, + sym_or_block, + STATE(4294), 1, sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(4884), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4900), 2, + ACTIONS(4894), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4924), 4, + STATE(2332), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4990), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4926), 8, - anon_sym_STAR, + ACTIONS(4988), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2067), 25, + ACTIONS(1879), 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___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_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -230931,82 +240126,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [42806] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACK, - ACTIONS(3253), 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, + [49810] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2333), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5020), 22, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, 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, + [49872] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + STATE(2334), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 9, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1877), 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_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + 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, 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, - [42862] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2653), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [49956] = 14, + ACTIONS(497), 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(2651), 47, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2309), 1, + sym_argument_list, + STATE(2310), 1, + sym_or_block, + STATE(4294), 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), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 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___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, @@ -231014,136 +240306,142 @@ static const uint16_t ts_small_parse_table[] = { 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, - [42918] = 16, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + [50036] = 29, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(4888), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4890), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(4892), 1, anon_sym_BANG, + ACTIONS(4894), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4938), 1, + anon_sym_as, + ACTIONS(4944), 1, + anon_sym_PLUS_PLUS, ACTIONS(4946), 1, - anon_sym_in, + anon_sym_DASH_DASH, ACTIONS(4948), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_AMP_AMP, + ACTIONS(4952), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4954), 1, + anon_sym_or, + ACTIONS(4956), 1, + anon_sym_is, + ACTIONS(4958), 1, + anon_sym_BANGis, + ACTIONS(4960), 1, + anon_sym_in, + ACTIONS(4962), 1, anon_sym_BANGin, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, + ACTIONS(4964), 1, + anon_sym_AT_LBRACK, + STATE(2309), 1, sym_argument_list, - STATE(4180), 1, + STATE(2310), 1, + sym_or_block, + STATE(3664), 1, + sym_attribute, + STATE(4294), 1, sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(4884), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4900), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4924), 4, + STATE(2336), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4940), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4928), 6, + ACTIONS(5022), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4942), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4926), 8, - anon_sym_STAR, + ACTIONS(4936), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 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, - [43000] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3263), 1, - anon_sym_LBRACK, - ACTIONS(3265), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [50145] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5024), 1, + anon_sym_else, + STATE(2424), 1, + sym_else_branch, + STATE(2337), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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(2447), 31, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + 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_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_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + 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, @@ -231155,101 +240453,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43056] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_LBRACK, - ACTIONS(2985), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50210] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5024), 1, + anon_sym_else, + STATE(2415), 1, + sym_else_branch, + STATE(2338), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2457), 13, + anon_sym_SLASH, 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_COLON, 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, - [43112] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3364), 1, - anon_sym_LBRACK, - ACTIONS(3366), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2455), 31, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + 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_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_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + 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, @@ -231261,48 +240511,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43168] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2979), 1, - anon_sym_LBRACK, - ACTIONS(2981), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50275] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_DOLLARelse, + STATE(2339), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2765), 13, + anon_sym_SLASH, 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_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2763), 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_pub, - anon_sym_mut, + 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, @@ -231314,62 +240567,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43224] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50337] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5034), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(5036), 1, anon_sym_BANG, - STATE(2281), 1, + STATE(2643), 1, sym_or_block, - STATE(2282), 1, + STATE(2644), 1, sym_argument_list, - STATE(4180), 1, + STATE(4127), 1, sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4900), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4924), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4926), 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(1865), 25, + STATE(2340), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1903), 34, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_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, @@ -231377,29 +240632,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43300] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3418), 1, + [50413] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, anon_sym_LBRACK, - ACTIONS(3420), 47, + STATE(2341), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 43, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, 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, @@ -231408,8 +240667,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -231431,28 +240688,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [43356] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3450), 1, + [50475] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(3452), 47, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2342), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1915), 34, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, 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, @@ -231460,14 +240736,8 @@ 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, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -231477,35 +240747,37 @@ 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, - sym_identifier, - anon_sym_AT_LBRACK, - [43412] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3434), 1, + [50551] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2745), 1, anon_sym_LBRACK, - ACTIONS(3436), 47, + ACTIONS(2757), 1, + anon_sym_LBRACE, + STATE(2343), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 43, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, 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, @@ -231514,8 +240786,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -231537,95 +240807,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [43468] = 17, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + [50613] = 28, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5034), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(5036), 1, anon_sym_BANG, - ACTIONS(4936), 1, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5044), 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(4946), 1, + 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(4948), 1, + ACTIONS(5066), 1, anon_sym_BANGin, - STATE(2281), 1, + STATE(2643), 1, sym_or_block, - STATE(2282), 1, + STATE(2644), 1, sym_argument_list, - STATE(4180), 1, + STATE(3570), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4127), 1, sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4900), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4924), 4, + STATE(2344), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1725), 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(4928), 6, + 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(4926), 8, - anon_sym_STAR, + ACTIONS(5040), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 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_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - sym_identifier, - anon_sym_AT_LBRACK, - [43552] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3346), 1, + [50719] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(3348), 47, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2345), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 34, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, 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, @@ -231633,14 +240933,8 @@ 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, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -231650,107 +240944,53 @@ 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, - sym_identifier, - anon_sym_AT_LBRACK, - [43608] = 3, + [50795] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2889), 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(2891), 24, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2467), 1, + sym_type_parameters, + STATE(2346), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 13, + anon_sym_SLASH, 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_COLON, 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, - [43664] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3374), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2741), 31, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + 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_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_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + 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, @@ -231762,101 +241002,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43720] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACK, - ACTIONS(2915), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50857] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5068), 1, + anon_sym_DOLLARelse, + STATE(2347), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2821), 13, + anon_sym_SLASH, 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_COLON, 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, - [43776] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(3392), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2819), 31, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + 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_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_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + 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, @@ -231868,101 +241058,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43832] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3386), 1, - anon_sym_LBRACK, - ACTIONS(3388), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50919] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2348), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3253), 13, + anon_sym_SLASH, 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_COLON, 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, - [43888] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3422), 1, - anon_sym_LBRACK, - ACTIONS(3424), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3251), 31, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + 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_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_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + 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, @@ -231974,187 +241112,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43944] = 27, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2727), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50978] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2349), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3125), 13, + anon_sym_SLASH, anon_sym_DOT, - ACTIONS(3410), 1, - anon_sym_LBRACK, - ACTIONS(3454), 1, - sym_identifier, - ACTIONS(3458), 1, - anon_sym_fn, - ACTIONS(3460), 1, - anon_sym_STAR, - ACTIONS(3462), 1, - anon_sym_struct, - ACTIONS(3464), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3466), 1, anon_sym_BANG, - ACTIONS(3468), 1, anon_sym_LBRACK2, - ACTIONS(3470), 1, anon_sym_AMP, - ACTIONS(3472), 1, - anon_sym_shared, - ACTIONS(3474), 1, - anon_sym_map_LBRACK, - ACTIONS(3476), 1, - anon_sym_chan, - ACTIONS(3478), 1, - anon_sym_thread, - ACTIONS(3480), 1, - anon_sym_atomic, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_LT2, - STATE(3419), 1, - sym_plain_type, - STATE(3442), 1, - sym_signature, - STATE(3785), 1, - sym_generic_parameters, - STATE(4436), 1, - sym_reference_expression, - STATE(2481), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3380), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3437), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(3412), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3444), 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, - [44048] = 12, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + anon_sym_GT_GT, + ACTIONS(3123), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_QMARK, - ACTIONS(4898), 1, - anon_sym_BANG, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4900), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4926), 8, + anon_sym_RPAREN, 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), 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_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, - sym_identifier, - anon_sym_AT_LBRACK, - [44122] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3350), 1, - anon_sym_LBRACK, - ACTIONS(3352), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [51037] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2350), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3035), 13, + anon_sym_SLASH, 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_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3033), 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_pub, - anon_sym_mut, + 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, @@ -232166,60 +241220,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44178] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [51096] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5034), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(5036), 1, anon_sym_BANG, - STATE(2281), 1, + STATE(2643), 1, sym_or_block, - STATE(2282), 1, + STATE(2644), 1, sym_argument_list, - STATE(4180), 1, + STATE(4127), 1, sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4900), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4924), 4, + STATE(2351), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5072), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4926), 8, - anon_sym_STAR, + ACTIONS(5070), 8, anon_sym_SLASH, + anon_sym_STAR, 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, + ACTIONS(1875), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, 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, @@ -232229,284 +241286,426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44254] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + [51175] = 19, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5034), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(5036), 1, anon_sym_BANG, - STATE(2281), 1, + ACTIONS(5076), 1, + anon_sym_AMP_AMP, + ACTIONS(5078), 1, + anon_sym_in, + ACTIONS(5080), 1, + anon_sym_BANGin, + STATE(2643), 1, sym_or_block, - STATE(2282), 1, + STATE(2644), 1, sym_argument_list, - STATE(4180), 1, + STATE(4127), 1, sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4900), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4986), 4, + STATE(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5072), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4988), 8, - anon_sym_STAR, + 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(5070), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 24, + ACTIONS(1879), 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_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, - [44329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4992), 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(4990), 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, - [44384] = 17, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + [51262] = 18, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5034), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(5036), 1, anon_sym_BANG, - ACTIONS(4996), 1, - anon_sym_AMP_AMP, - ACTIONS(4998), 1, + ACTIONS(5078), 1, anon_sym_in, - ACTIONS(5000), 1, + ACTIONS(5080), 1, anon_sym_BANGin, - STATE(2281), 1, + STATE(2643), 1, sym_or_block, - STATE(2282), 1, + STATE(2644), 1, sym_argument_list, - STATE(4180), 1, + STATE(4127), 1, sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4900), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4986), 4, + STATE(2353), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5072), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4994), 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(4988), 8, - anon_sym_STAR, + ACTIONS(5070), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 15, + ACTIONS(1879), 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_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, - [44467] = 3, + [51347] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4978), 22, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2354), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3039), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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(3037), 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, + [51406] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2355), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2909), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, + anon_sym_AMP, + anon_sym_GT_GT, + 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, + 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, + [51465] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2356), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2913), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, 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_GT_GT, + ACTIONS(2911), 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, + [51524] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + ACTIONS(5042), 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(5082), 1, + anon_sym_is, + ACTIONS(5084), 1, + anon_sym_BANGis, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, 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, - [44522] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + anon_sym_QMARK_DOT, + ACTIONS(5038), 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(1919), 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(5040), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [51625] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5034), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(5036), 1, anon_sym_BANG, - STATE(2281), 1, + STATE(2643), 1, sym_or_block, - STATE(2282), 1, + STATE(2644), 1, sym_argument_list, - STATE(4180), 1, + STATE(4127), 1, sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4900), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4986), 4, + STATE(2358), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5072), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4988), 8, - anon_sym_STAR, + ACTIONS(5070), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1865), 24, + ACTIONS(1879), 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, @@ -232514,7 +241713,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_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -232524,108 +241722,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [44597] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + [51704] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(5010), 1, anon_sym_BANG, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4900), 2, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(4986), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4988), 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(2067), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5088), 1, anon_sym_as, + ACTIONS(5090), 1, + anon_sym_LBRACE, + ACTIONS(5092), 1, 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, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, anon_sym_DASH_DASH, + ACTIONS(5106), 1, + anon_sym_CARET, + ACTIONS(5108), 1, anon_sym_AMP_AMP, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5118), 1, anon_sym_in, + ACTIONS(5120), 1, anon_sym_BANGin, - sym_identifier, - [44672] = 12, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + STATE(1780), 1, + sym_block, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(3947), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2359), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5096), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [51821] = 14, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5034), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(5036), 1, anon_sym_BANG, - STATE(2281), 1, + STATE(2643), 1, sym_or_block, - STATE(2282), 1, + STATE(2644), 1, sym_argument_list, - STATE(4180), 1, + STATE(4127), 1, sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4900), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4988), 8, - anon_sym_STAR, + STATE(2360), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5070), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 28, + ACTIONS(1879), 25, 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, @@ -232636,7 +241858,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_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -232647,47 +241868,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [44745] = 14, + [51898] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2361), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3179), 13, + anon_sym_SLASH, 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(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(1881), 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, - ACTIONS(1941), 27, + ACTIONS(3177), 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, @@ -232695,6 +241903,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_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -232705,263 +241914,109 @@ 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, - [44822] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_QMARK, - ACTIONS(4898), 1, - anon_sym_BANG, - ACTIONS(4922), 1, - anon_sym_as, - ACTIONS(4930), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4932), 1, - anon_sym_DASH_DASH, - ACTIONS(4940), 1, - anon_sym_or, - ACTIONS(4942), 1, - anon_sym_is, - ACTIONS(4944), 1, - anon_sym_BANGis, - ACTIONS(4996), 1, - anon_sym_AMP_AMP, - ACTIONS(4998), 1, - anon_sym_in, - ACTIONS(5000), 1, - anon_sym_BANGin, - ACTIONS(5018), 1, - anon_sym_PIPE_PIPE, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, + [51957] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2362), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2941), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4900), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4994), 6, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3762), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2939), 31, anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4988), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, 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, - [44919] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_QMARK, - ACTIONS(4898), 1, - anon_sym_BANG, - ACTIONS(4922), 1, - anon_sym_as, - ACTIONS(4930), 1, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4932), 1, anon_sym_DASH_DASH, - ACTIONS(4940), 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(4942), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4944), 1, anon_sym_BANGis, - ACTIONS(4996), 1, - anon_sym_AMP_AMP, - ACTIONS(4998), 1, anon_sym_in, - ACTIONS(5000), 1, anon_sym_BANGin, - ACTIONS(5018), 1, - anon_sym_PIPE_PIPE, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [52016] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2363), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2987), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4900), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4994), 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, - 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(4988), 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, - [45016] = 16, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4898), 1, anon_sym_BANG, - ACTIONS(4998), 1, - anon_sym_in, - ACTIONS(5000), 1, - anon_sym_BANGin, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4900), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4994), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4988), 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), 16, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2985), 31, 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, - [45097] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3199), 1, - anon_sym_LBRACK, - ACTIONS(2651), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3201), 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_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_pub, - anon_sym_mut, + 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, @@ -232973,48 +242028,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [45154] = 14, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [52075] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2364), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3419), 13, + anon_sym_SLASH, 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(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(1869), 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, - ACTIONS(1867), 27, + ACTIONS(3417), 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, @@ -233022,6 +242065,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_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -233032,125 +242076,96 @@ 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, - [45231] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_QMARK, - ACTIONS(4898), 1, - anon_sym_BANG, - ACTIONS(4922), 1, - anon_sym_as, - ACTIONS(4930), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4932), 1, - anon_sym_DASH_DASH, - ACTIONS(4940), 1, - anon_sym_or, - ACTIONS(4942), 1, - anon_sym_is, - ACTIONS(4944), 1, - anon_sym_BANGis, - ACTIONS(4996), 1, - anon_sym_AMP_AMP, - ACTIONS(4998), 1, - anon_sym_in, - ACTIONS(5000), 1, - anon_sym_BANGin, - ACTIONS(5018), 1, - anon_sym_PIPE_PIPE, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, + [52134] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2365), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2991), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4900), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4994), 6, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1849), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2989), 31, anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4988), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + 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, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [45328] = 14, - ACTIONS(3), 1, - sym_comment, - 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(1853), 9, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [52193] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2366), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2995), 13, + anon_sym_SLASH, + 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(1851), 27, + ACTIONS(2993), 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, @@ -233158,6 +242173,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_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -233168,94 +242184,111 @@ 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, - [45405] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, + [52252] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4894), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(4898), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(4922), 1, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(4930), 1, + ACTIONS(5092), 1, + anon_sym_COMMA, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(4932), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - ACTIONS(4940), 1, + ACTIONS(5106), 1, + anon_sym_CARET, + ACTIONS(5108), 1, + anon_sym_AMP_AMP, + ACTIONS(5110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(4942), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(4944), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(4996), 1, - anon_sym_AMP_AMP, - ACTIONS(4998), 1, + ACTIONS(5118), 1, anon_sym_in, - ACTIONS(5000), 1, + ACTIONS(5120), 1, anon_sym_BANGin, - ACTIONS(5018), 1, - anon_sym_PIPE_PIPE, - STATE(2281), 1, + ACTIONS(5122), 1, + anon_sym_LBRACE, + STATE(2398), 1, + sym_block, + STATE(2412), 1, sym_or_block, - STATE(2282), 1, + STATE(2466), 1, sym_argument_list, - STATE(4180), 1, + STATE(3947), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(4890), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4900), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4986), 4, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2367), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4994), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1861), 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(4988), 8, + ACTIONS(5096), 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, - [45502] = 3, + [52369] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2685), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2368), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3047), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -233264,12 +242297,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2683), 34, + ACTIONS(3045), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -233291,23 +242323,26 @@ 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, - [45557] = 3, + [52428] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2369), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3355), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -233316,12 +242351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2647), 34, + ACTIONS(3353), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -233343,54 +242377,53 @@ 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, - [45612] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2647), 1, - anon_sym_LBRACK, - ACTIONS(2651), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2649), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + [52487] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2370), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 13, + anon_sym_SLASH, 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(2831), 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_pub, - anon_sym_mut, + 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, @@ -233402,21 +242435,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [45669] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_else, - STATE(2329), 1, - sym_else_branch, - ACTIONS(2505), 13, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [52546] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + ACTIONS(5042), 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(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2371), 2, + sym_line_comment, + sym_block_comment, + 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(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(5040), 8, anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [52647] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2372), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -233425,7 +242534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2503), 31, + ACTIONS(3147), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233457,19 +242566,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [45727] = 5, + [52706] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_else, - STATE(2327), 1, - sym_else_branch, - ACTIONS(2635), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2373), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3055), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -233478,7 +242588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2633), 31, + ACTIONS(3053), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233510,120 +242620,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [45785] = 27, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_LPAREN, - ACTIONS(4894), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_QMARK, - ACTIONS(4898), 1, - anon_sym_BANG, - ACTIONS(4900), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4922), 1, - anon_sym_as, - ACTIONS(4930), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4932), 1, - anon_sym_DASH_DASH, - ACTIONS(4934), 1, - anon_sym_LBRACK2, - ACTIONS(4936), 1, - anon_sym_AMP_AMP, - ACTIONS(4938), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4940), 1, - anon_sym_or, - ACTIONS(4942), 1, - anon_sym_is, - ACTIONS(4944), 1, - anon_sym_BANGis, - ACTIONS(4946), 1, - anon_sym_in, - ACTIONS(4948), 1, - anon_sym_BANGin, - ACTIONS(4950), 1, - anon_sym_AT_LBRACK, - STATE(2281), 1, - sym_or_block, - STATE(2282), 1, - sym_argument_list, - STATE(3647), 1, - sym_attribute, - STATE(4180), 1, - sym_type_parameters, - ACTIONS(4890), 2, + [52765] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2374), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2945), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5022), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4928), 6, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4926), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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, - [45887] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2651), 1, - anon_sym_LBRACE, - ACTIONS(3199), 1, - anon_sym_LBRACK, - ACTIONS(3201), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2943), 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_DOT_DOT_DOT, + 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, @@ -233635,142 +242672,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [45942] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2647), 1, - anon_sym_LBRACK, - ACTIONS(2651), 1, - anon_sym_LBRACE, - ACTIONS(2649), 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_COLON_EQ, + anon_sym_DOT_DOT, + [52824] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 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_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + 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_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(5016), 1, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [45997] = 26, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5028), 1, + ACTIONS(5092), 1, anon_sym_COMMA, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - ACTIONS(5050), 1, + ACTIONS(5106), 1, + anon_sym_CARET, + ACTIONS(5108), 1, anon_sym_AMP_AMP, - ACTIONS(5052), 1, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, - ACTIONS(5054), 1, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5056), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5058), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5060), 1, + ACTIONS(5118), 1, anon_sym_in, - ACTIONS(5062), 1, + ACTIONS(5120), 1, anon_sym_BANGin, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, + ACTIONS(5124), 1, + anon_sym_LBRACE, + STATE(995), 1, + sym_block, + STATE(2412), 1, sym_or_block, - STATE(3518), 1, + STATE(2466), 1, + sym_argument_list, + STATE(3947), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4386), 1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1719), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5032), 4, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2375), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5036), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5034), 8, + ACTIONS(5096), 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, - [46096] = 4, + [52941] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5064), 1, - anon_sym_DOLLARelse, - ACTIONS(2643), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2376), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3007), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -233779,7 +242779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2641), 31, + ACTIONS(3005), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233811,133 +242811,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46151] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, + [53000] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2377), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3399), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5046), 1, anon_sym_BANG, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1853), 34, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3397), 31, 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_LPAREN, + 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_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, - [46220] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53059] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5044), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5046), 1, + ACTIONS(5010), 1, anon_sym_BANG, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(1869), 34, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5088), 1, anon_sym_as, + ACTIONS(5092), 1, 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, anon_sym_DASH_DASH, + ACTIONS(5106), 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(5108), 1, anon_sym_AMP_AMP, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5118), 1, anon_sym_in, + ACTIONS(5120), 1, anon_sym_BANGin, - [46289] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2446), 1, + ACTIONS(5126), 1, + anon_sym_LBRACE, + STATE(1151), 1, + sym_block, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(3947), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(2715), 13, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2378), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5096), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [53176] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2379), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3031), 13, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -233946,7 +242970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2713), 31, + ACTIONS(3029), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233978,17 +243002,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46344] = 4, + [53235] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5066), 1, - anon_sym_DOLLARelse, - ACTIONS(2873), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2380), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2953), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -233997,7 +243024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2871), 31, + ACTIONS(2951), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234029,73 +243056,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46399] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, + [53294] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2381), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3043), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5046), 1, anon_sym_BANG, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1881), 34, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3041), 31, 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_LPAREN, + 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_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, - [46468] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53353] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2382), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3051), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234104,7 +243132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3430), 31, + ACTIONS(3049), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234136,15 +243164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46520] = 3, + [53412] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2383), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3395), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234153,7 +243186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3089), 31, + ACTIONS(3393), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234185,15 +243218,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46572] = 3, + [53471] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2384), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3391), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234202,7 +243240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 31, + ACTIONS(3389), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234234,15 +243272,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46624] = 3, + [53530] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3095), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2385), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3137), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234251,7 +243294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3093), 31, + ACTIONS(3135), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234283,15 +243326,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3291), 13, + [53589] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2386), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3141), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234300,7 +243348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3289), 31, + ACTIONS(3139), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234332,24 +243380,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46728] = 3, + [53648] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3287), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5128), 1, + anon_sym_BANG, + STATE(2387), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3309), 12, + anon_sym_SLASH, 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(3285), 31, + ACTIONS(3307), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234381,61 +243435,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46780] = 16, - ACTIONS(495), 1, - sym_comment, + [53709] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(5044), 1, + ACTIONS(5034), 1, anon_sym_QMARK, - ACTIONS(5046), 1, + ACTIONS(5036), 1, anon_sym_BANG, - ACTIONS(5074), 1, - anon_sym_in, - ACTIONS(5076), 1, - anon_sym_BANGin, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, + STATE(2643), 1, sym_or_block, - STATE(4386), 1, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5048), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5068), 4, + STATE(2388), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5072), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5072), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, ACTIONS(5070), 8, - anon_sym_STAR, anon_sym_SLASH, + anon_sym_STAR, 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), 13, + ACTIONS(1871), 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, @@ -234443,85 +243497,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - [46858] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_as, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - ACTIONS(5050), 1, - anon_sym_AMP_AMP, - ACTIONS(5052), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5054), 1, - anon_sym_or, - ACTIONS(5056), 1, - anon_sym_is, - ACTIONS(5058), 1, - anon_sym_BANGis, - ACTIONS(5060), 1, anon_sym_in, - ACTIONS(5062), 1, anon_sym_BANGin, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5032), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1861), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5036), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5034), 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, - [46952] = 3, + [53788] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3087), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2389), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3423), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234530,7 +243521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3085), 31, + ACTIONS(3421), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234562,16 +243553,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47004] = 4, + [53847] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3313), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2390), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3153), 13, + anon_sym_SLASH, anon_sym_DOT, - ACTIONS(3311), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234580,7 +243575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 31, + ACTIONS(3151), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234612,15 +243607,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47058] = 3, + [53906] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2391), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2757), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234629,7 +243629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3011), 31, + ACTIONS(2759), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234661,85 +243661,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47110] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_as, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - ACTIONS(5050), 1, - anon_sym_AMP_AMP, - ACTIONS(5052), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5054), 1, - anon_sym_or, - ACTIONS(5056), 1, - anon_sym_is, - ACTIONS(5058), 1, - anon_sym_BANGis, - ACTIONS(5060), 1, - anon_sym_in, - ACTIONS(5062), 1, - anon_sym_BANGin, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, + [53965] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2392), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3157), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5032), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1849), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5036), 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(3155), 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(5034), 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, - [47204] = 3, + 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, + [54024] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3103), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2393), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234748,7 +243737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3101), 31, + ACTIONS(3369), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234780,15 +243769,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47256] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3416), 13, + [54083] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2394), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3027), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234797,7 +243791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3414), 31, + ACTIONS(3025), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234829,15 +243823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47308] = 3, + [54142] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3344), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2395), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3367), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234846,7 +243845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3342), 31, + ACTIONS(3365), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234878,42 +243877,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47360] = 3, + [54201] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + ACTIONS(5042), 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(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2396), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1931), 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(5040), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [54302] = 34, ACTIONS(3), 1, - sym_comment, - ACTIONS(3083), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, + anon_sym_as, + ACTIONS(5092), 1, + anon_sym_COMMA, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5106), 1, + anon_sym_CARET, + ACTIONS(5108), 1, + anon_sym_AMP_AMP, + ACTIONS(5110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5118), 1, + anon_sym_in, + ACTIONS(5120), 1, + anon_sym_BANGin, + ACTIONS(5130), 1, + anon_sym_LBRACE, + STATE(2181), 1, + sym_block, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(3947), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2397), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5096), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [54419] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2455), 1, + anon_sym_LBRACK, + ACTIONS(5132), 1, + anon_sym_else, + STATE(2596), 1, + sym_else_branch, + STATE(2398), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2457), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SLASH, + 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_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, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3081), 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, + [54482] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2447), 1, + anon_sym_LBRACK, + ACTIONS(5132), 1, + anon_sym_else, + STATE(2595), 1, + sym_else_branch, + STATE(2399), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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_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, @@ -234925,17 +244147,20 @@ 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, - [47412] = 3, + [54545] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2400), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3363), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234944,7 +244169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3059), 31, + ACTIONS(3361), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234976,15 +244201,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47464] = 3, + [54604] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3245), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2401), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3191), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -234993,7 +244223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3243), 31, + ACTIONS(3189), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235025,15 +244255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47516] = 3, + [54663] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3412), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2402), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -235042,7 +244277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3410), 31, + ACTIONS(3321), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235074,15 +244309,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47568] = 3, + [54722] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3257), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2403), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3195), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -235091,7 +244331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3255), 31, + ACTIONS(3193), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235123,15 +244363,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47620] = 3, + [54781] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3378), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2404), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3387), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -235140,7 +244385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3376), 31, + ACTIONS(3385), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235172,15 +244417,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47672] = 3, + [54840] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2405), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3297), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -235189,7 +244439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3127), 31, + ACTIONS(3295), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235221,93 +244471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47724] = 32, + [54899] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 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(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_COMMA, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, - anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5110), 1, - anon_sym_in, - ACTIONS(5112), 1, - anon_sym_BANGin, - STATE(1289), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(3896), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2406), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3187), 13, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5092), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [47834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 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, @@ -235316,7 +244493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3051), 31, + ACTIONS(3185), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235348,15 +244525,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47886] = 3, + [54958] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2407), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3351), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -235365,7 +244547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3047), 31, + ACTIONS(3349), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235397,15 +244579,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47938] = 3, + [55017] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2408), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3347), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -235414,7 +244601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3139), 31, + ACTIONS(3345), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235446,61 +244633,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47990] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_as, + [55076] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5044), 1, + ACTIONS(5034), 1, anon_sym_QMARK, - ACTIONS(5046), 1, + ACTIONS(5036), 1, anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5050), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5052), 1, + anon_sym_DASH_DASH, ACTIONS(5054), 1, - anon_sym_or, + anon_sym_AMP_AMP, ACTIONS(5056), 1, - anon_sym_is, + anon_sym_PIPE_PIPE, ACTIONS(5058), 1, + anon_sym_or, + ACTIONS(5060), 1, + anon_sym_is, + ACTIONS(5062), 1, anon_sym_BANGis, - ACTIONS(5074), 1, + ACTIONS(5064), 1, anon_sym_in, - ACTIONS(5076), 1, + ACTIONS(5066), 1, anon_sym_BANGin, - ACTIONS(5114), 1, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2409), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1937), 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(5040), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [55177] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + ACTIONS(5042), 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(5116), 1, + ACTIONS(5078), 1, + anon_sym_in, + ACTIONS(5080), 1, + anon_sym_BANGin, + ACTIONS(5134), 1, anon_sym_PIPE_PIPE, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, + STATE(2643), 1, sym_or_block, - STATE(4386), 1, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5048), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5068), 4, + STATE(2410), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5072), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1849), 5, + ACTIONS(1931), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5072), 6, + ACTIONS(5074), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -235508,23 +244775,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, ACTIONS(5070), 8, - anon_sym_STAR, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [48084] = 3, + [55278] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2411), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3331), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -235533,7 +244805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3143), 31, + ACTIONS(3329), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235565,15 +244837,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48136] = 3, + [55337] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2412), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2979), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -235582,7 +244859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2983), 31, + ACTIONS(2977), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235614,15 +244891,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48188] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 13, + [55396] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2413), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3133), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -235631,7 +244913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3015), 31, + ACTIONS(3131), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235663,15 +244945,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48240] = 3, + [55455] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2414), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3221), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -235680,7 +244967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2725), 31, + ACTIONS(3219), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235712,15 +244999,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48292] = 3, + [55514] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2415), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3199), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -235729,7 +245021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2979), 31, + ACTIONS(3197), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235761,325 +245053,416 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48344] = 13, - ACTIONS(495), 1, - sym_comment, + [55573] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(5044), 1, + ACTIONS(5034), 1, anon_sym_QMARK, - ACTIONS(5046), 1, + ACTIONS(5036), 1, anon_sym_BANG, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, + ACTIONS(5042), 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_in, + ACTIONS(5080), 1, + anon_sym_BANGin, + ACTIONS(5134), 1, + anon_sym_PIPE_PIPE, + STATE(2643), 1, sym_or_block, - STATE(4386), 1, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5048), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5068), 4, + STATE(2416), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5072), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5070), 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(2067), 21, + ACTIONS(1937), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_as, 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(5070), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [55674] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, + anon_sym_as, + ACTIONS(5092), 1, + anon_sym_COMMA, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, anon_sym_DASH_DASH, + ACTIONS(5106), 1, + anon_sym_CARET, + ACTIONS(5108), 1, anon_sym_AMP_AMP, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5118), 1, anon_sym_in, + ACTIONS(5120), 1, anon_sym_BANGin, - [48416] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, + ACTIONS(5136), 1, + anon_sym_LBRACE, + STATE(2412), 1, sym_or_block, - STATE(4386), 1, + STATE(2466), 1, + sym_argument_list, + STATE(2525), 1, + sym_block, + STATE(3947), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5068), 4, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2417), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5070), 8, + ACTIONS(5100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5096), 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(1865), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [55791] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, 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, + ACTIONS(5092), 1, + anon_sym_COMMA, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, anon_sym_DASH_DASH, + ACTIONS(5106), 1, + anon_sym_CARET, + ACTIONS(5108), 1, anon_sym_AMP_AMP, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5118), 1, anon_sym_in, + ACTIONS(5120), 1, anon_sym_BANGin, - [48488] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_as, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - ACTIONS(5054), 1, - anon_sym_or, - ACTIONS(5056), 1, - anon_sym_is, - ACTIONS(5058), 1, - anon_sym_BANGis, - ACTIONS(5074), 1, - anon_sym_in, - ACTIONS(5076), 1, - anon_sym_BANGin, - ACTIONS(5114), 1, - anon_sym_AMP_AMP, - ACTIONS(5116), 1, - anon_sym_PIPE_PIPE, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, + ACTIONS(5138), 1, + anon_sym_LBRACE, + STATE(1294), 1, + sym_block, + STATE(2412), 1, sym_or_block, - STATE(4386), 1, + STATE(2466), 1, + sym_argument_list, + STATE(3947), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5068), 4, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2418), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1861), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(5072), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5070), 8, + ACTIONS(5096), 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, - [48582] = 3, + [55908] = 34, ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 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_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(3171), 31, - anon_sym_SEMI, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5092), 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(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, anon_sym_DASH_DASH, + ACTIONS(5106), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5108), 1, anon_sym_AMP_AMP, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5118), 1, anon_sym_in, + ACTIONS(5120), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48634] = 17, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - ACTIONS(5074), 1, - anon_sym_in, - ACTIONS(5076), 1, - anon_sym_BANGin, - ACTIONS(5114), 1, - anon_sym_AMP_AMP, - STATE(2595), 1, + ACTIONS(5140), 1, + anon_sym_LBRACE, + STATE(1947), 1, + sym_block, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, sym_argument_list, - STATE(2596), 1, + STATE(3947), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2419), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5096), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [56025] = 14, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + STATE(2643), 1, sym_or_block, - STATE(4386), 1, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5048), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5068), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5072), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5070), 8, - anon_sym_STAR, + STATE(2420), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5040), 8, anon_sym_SLASH, + anon_sym_STAR, 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), 12, + ACTIONS(1879), 25, 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, - [48714] = 4, + anon_sym_in, + anon_sym_BANGin, + [56102] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5118), 1, - anon_sym_BANG, - ACTIONS(3269), 12, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2421), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2983), 13, + anon_sym_SLASH, 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(3267), 31, + ACTIONS(2981), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236111,15 +245494,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48768] = 3, + [56161] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2422), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3411), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -236128,7 +245516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3183), 31, + ACTIONS(3409), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236160,74 +245548,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48820] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5068), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5070), 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, - [48892] = 3, + [56220] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2423), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -236236,7 +245570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3195), 31, + ACTIONS(2997), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236268,151 +245602,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48944] = 12, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5070), 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), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - 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, - [49014] = 32, + [56279] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 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(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_COMMA, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, - anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5110), 1, - anon_sym_in, - ACTIONS(5112), 1, - anon_sym_BANGin, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(992), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(3896), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2424), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3203), 13, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5092), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [49124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 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, @@ -236421,7 +245624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2913), 31, + ACTIONS(3201), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236453,15 +245656,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49176] = 3, + [56338] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3275), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2425), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3003), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -236470,7 +245678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 31, + ACTIONS(3001), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236502,15 +245710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49228] = 3, + [56397] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3424), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2426), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3207), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -236519,7 +245732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3422), 31, + ACTIONS(3205), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236551,93 +245764,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49280] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_COLON_EQ, - ACTIONS(5004), 1, + [56456] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5006), 1, + ACTIONS(5032), 1, anon_sym_LBRACK, - ACTIONS(5008), 1, + ACTIONS(5034), 1, anon_sym_QMARK, - ACTIONS(5010), 1, + ACTIONS(5036), 1, anon_sym_BANG, - ACTIONS(5012), 1, - anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_COMMA, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, - anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5110), 1, - anon_sym_in, - ACTIONS(5112), 1, - anon_sym_BANGin, - ACTIONS(5122), 1, - anon_sym_LBRACE, - STATE(2162), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2643), 1, sym_or_block, - STATE(3896), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, sym_type_parameters, - ACTIONS(5014), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 3, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2427), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, + anon_sym_CARET, + ACTIONS(5040), 8, anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5092), 4, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 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, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [49390] = 3, + 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, + [56535] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2428), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3015), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -236646,7 +245850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3211), 31, + ACTIONS(3013), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236678,134 +245882,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49442] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3217), 1, - anon_sym_COLON, - ACTIONS(3215), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(3219), 12, + [56594] = 18, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + ACTIONS(5064), 1, + anon_sym_in, + ACTIONS(5066), 1, + anon_sym_BANGin, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2429), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(5048), 6, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3222), 26, - 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, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5040), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1879), 13, + 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + [56679] = 19, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + ACTIONS(5054), 1, + anon_sym_AMP_AMP, + ACTIONS(5064), 1, anon_sym_in, + ACTIONS(5066), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - [49498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 13, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2430), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(5048), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5040), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3203), 31, - anon_sym_SEMI, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - anon_sym_LBRACE, 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, + [56766] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2431), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5040), 8, + anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1875), 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_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, - [49550] = 5, + [56845] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON, - ACTIONS(3225), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(3229), 12, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2432), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3059), 13, + anon_sym_SLASH, 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(3232), 26, + ACTIONS(3057), 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, @@ -236813,6 +246117,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, @@ -236829,93 +246134,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [49606] = 32, + anon_sym_DOT_DOT, + [56904] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 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(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_COMMA, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, - anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5110), 1, - anon_sym_in, - ACTIONS(5112), 1, - anon_sym_BANGin, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(2315), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(3896), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2433), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 13, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5092), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [49716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3237), 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, @@ -236924,7 +246157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3235), 31, + ACTIONS(3341), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236956,15 +246189,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49768] = 3, + [56963] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2434), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3129), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -236973,7 +246211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3239), 31, + ACTIONS(3127), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237005,15 +246243,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3279), 13, + [57022] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2435), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3213), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237022,7 +246265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3277), 31, + ACTIONS(3211), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237054,15 +246297,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 13, + [57081] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2436), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3257), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237071,7 +246319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3293), 31, + ACTIONS(3255), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237103,15 +246351,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49924] = 3, + [57140] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2437), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3261), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237120,7 +246373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 31, + ACTIONS(3259), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237152,15 +246405,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 13, + [57199] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2438), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3265), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237169,7 +246427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3301), 31, + ACTIONS(3263), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237201,15 +246459,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50028] = 3, + [57258] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2439), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3403), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237218,7 +246481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3191), 31, + ACTIONS(3401), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237250,15 +246513,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50080] = 3, + [57317] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2440), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3229), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237267,7 +246535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2905), 31, + ACTIONS(3227), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237299,97 +246567,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50132] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2633), 1, - anon_sym_LBRACK, - ACTIONS(5126), 1, - anon_sym_else, - STATE(2523), 1, - sym_else_branch, - ACTIONS(2635), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [57376] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2441), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3245), 13, + anon_sym_SLASH, 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_COLON, 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, - [50188] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(5126), 1, - anon_sym_else, - STATE(2516), 1, - sym_else_branch, - ACTIONS(2505), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3243), 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, @@ -237401,15 +246619,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50244] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3307), 13, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [57435] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2442), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3249), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237418,7 +246643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3305), 31, + ACTIONS(3247), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237450,15 +246675,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50296] = 3, + [57494] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2651), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2443), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3319), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237467,7 +246697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2653), 31, + ACTIONS(3317), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237499,15 +246729,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3318), 13, + [57553] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5040), 8, anon_sym_SLASH, + anon_sym_STAR, + 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_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, + [57632] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2445), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3339), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237516,7 +246815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3316), 31, + ACTIONS(3337), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237548,93 +246847,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50400] = 32, + [57691] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_COLON_EQ, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2446), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2975), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2973), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5082), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5094), 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(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5098), 1, anon_sym_CARET, - ACTIONS(5100), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5102), 1, anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5106), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5110), 1, anon_sym_in, - ACTIONS(5112), 1, anon_sym_BANGin, - ACTIONS(5128), 1, - anon_sym_LBRACE, - STATE(1816), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(3896), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5092), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [50510] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [57750] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2447), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3327), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237643,7 +246923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3320), 31, + ACTIONS(3325), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237675,15 +246955,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50562] = 3, + [57809] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2448), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3407), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237692,7 +246977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3179), 31, + ACTIONS(3405), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237722,15 +247007,69 @@ 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, - [50614] = 32, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [57868] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2827), 1, + anon_sym_LBRACK, + STATE(2449), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2829), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [57927] = 34, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, anon_sym_COLON_EQ, - ACTIONS(4751), 1, - anon_sym_LBRACE, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -237743,74 +247082,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5092), 1, anon_sym_COMMA, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - ACTIONS(5098), 1, + ACTIONS(5106), 1, anon_sym_CARET, - ACTIONS(5100), 1, + ACTIONS(5108), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5110), 1, + ACTIONS(5118), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5120), 1, anon_sym_BANGin, - STATE(1654), 1, + ACTIONS(5142), 1, + anon_sym_LBRACE, + STATE(1886), 1, sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(3896), 1, + STATE(2466), 1, + sym_argument_list, + STATE(3947), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5098), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2450), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5096), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [50724] = 3, + [58044] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3433), 1, anon_sym_DOT, + STATE(2451), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 12, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237819,7 +247169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3175), 31, + ACTIONS(3429), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237851,73 +247201,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50776] = 12, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5034), 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), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - 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, - [50846] = 3, + [58105] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3400), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2452), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3415), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -237926,7 +247223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3398), 31, + ACTIONS(3413), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237958,230 +247255,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50898] = 32, + [58164] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 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(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_COMMA, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, - anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5110), 1, - anon_sym_in, - ACTIONS(5112), 1, - anon_sym_BANGin, - ACTIONS(5130), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3269), 1, + anon_sym_COLON, + STATE(2453), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3267), 5, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(389), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(3896), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(3271), 12, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 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(5092), 4, + ACTIONS(3274), 26, + 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(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [51008] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 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(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_COMMA, - ACTIONS(5094), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5098), 1, anon_sym_CARET, - ACTIONS(5100), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5102), 1, anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5106), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5110), 1, anon_sym_in, - ACTIONS(5112), 1, anon_sym_BANGin, - ACTIONS(5132), 1, + anon_sym_COLON_EQ, + [58227] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3279), 1, + anon_sym_COLON, + STATE(2454), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3277), 5, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1870), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(3896), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(3281), 12, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5092), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [51118] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5046), 1, anon_sym_BANG, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5032), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5034), 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, + ACTIONS(3284), 26, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + 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, - [51190] = 3, + anon_sym_COLON_EQ, + [58290] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3362), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2455), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -238190,7 +247389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3360), 31, + ACTIONS(3436), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238222,15 +247421,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51242] = 3, + [58349] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3366), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2456), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -238239,7 +247443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3364), 31, + ACTIONS(3429), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238271,135 +247475,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51294] = 16, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - ACTIONS(5060), 1, - anon_sym_in, - ACTIONS(5062), 1, - anon_sym_BANGin, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, + [58408] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2457), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5032), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5036), 6, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5034), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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(1881), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3440), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, 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, - [51372] = 17, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - ACTIONS(5050), 1, - anon_sym_AMP_AMP, - ACTIONS(5060), 1, - anon_sym_in, - ACTIONS(5062), 1, - anon_sym_BANGin, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5032), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5036), 6, - anon_sym_LT, - anon_sym_GT, + 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(5034), 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(1881), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [51452] = 32, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [58467] = 34, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, anon_sym_COLON_EQ, ACTIONS(5004), 1, anon_sym_LPAREN, @@ -238413,103 +247548,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5092), 1, anon_sym_COMMA, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - ACTIONS(5098), 1, + ACTIONS(5106), 1, anon_sym_CARET, - ACTIONS(5100), 1, + ACTIONS(5108), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5110), 1, + ACTIONS(5118), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5120), 1, anon_sym_BANGin, - ACTIONS(5134), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(2386), 1, + STATE(361), 1, sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(3896), 1, + STATE(2466), 1, + sym_argument_list, + STATE(3947), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5098), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2458), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5096), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [51562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3396), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + [58584] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2745), 1, + anon_sym_LBRACK, + STATE(2459), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, 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(3394), 31, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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_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, @@ -238517,70 +247660,102 @@ 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, - [51614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 13, + [58643] = 27, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + ACTIONS(5042), 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(5146), 1, + anon_sym_COMMA, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2460), 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_SLASH, + anon_sym_CARET, + ACTIONS(5048), 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(3372), 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(5040), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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, - [51666] = 3, + [58746] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3356), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2461), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3237), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -238589,7 +247764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3354), 31, + ACTIONS(3235), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238621,15 +247796,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51718] = 3, + [58805] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2462), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -238638,7 +247818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2999), 31, + ACTIONS(2741), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238670,15 +247850,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51770] = 3, + [58864] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3382), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2463), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -238687,7 +247872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3380), 31, + ACTIONS(3357), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238719,15 +247904,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51822] = 3, + [58923] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2464), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -238736,7 +247926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3055), 31, + ACTIONS(3313), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238768,74 +247958,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51874] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, + [58982] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2465), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5032), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5034), 8, + 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(3287), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + 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, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2067), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + 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, + [59041] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2466), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3023), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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(3021), 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, - [51946] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [59100] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2467), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3427), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -238844,7 +248088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2713), 31, + ACTIONS(3425), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238876,15 +248120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51998] = 3, + [59159] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2468), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3011), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -238893,7 +248142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2995), 31, + ACTIONS(3009), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238925,15 +248174,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52050] = 3, + [59218] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2469), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -238942,7 +248196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2991), 31, + ACTIONS(3291), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238974,15 +248228,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52102] = 3, + [59277] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2470), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2949), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -238991,7 +248250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2987), 31, + ACTIONS(2947), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239023,10 +248282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52154] = 32, + [59336] = 34, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, anon_sym_COLON_EQ, ACTIONS(5004), 1, anon_sym_LPAREN, @@ -239040,195 +248301,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5092), 1, anon_sym_COMMA, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - ACTIONS(5098), 1, + ACTIONS(5106), 1, anon_sym_CARET, - ACTIONS(5100), 1, + ACTIONS(5108), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5110), 1, + ACTIONS(5118), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5120), 1, anon_sym_BANGin, - ACTIONS(5136), 1, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(1150), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(3896), 1, + STATE(2466), 1, + sym_argument_list, + STATE(2817), 1, + sym_block, + STATE(3947), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5098), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2471), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5096), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [52264] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2683), 1, + [59453] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(4753), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(2685), 43, - 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(5088), 1, anon_sym_as, + ACTIONS(5092), 1, 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, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + ACTIONS(5106), 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(5108), 1, anon_sym_AMP_AMP, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5118), 1, anon_sym_in, + ACTIONS(5120), 1, anon_sym_BANGin, - [52316] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_as, - ACTIONS(5030), 1, + STATE(1663), 1, + sym_block, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(3947), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2472), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5096), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [59570] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5044), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5046), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5050), 1, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5092), 1, + anon_sym_COMMA, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5106), 1, + anon_sym_CARET, + ACTIONS(5108), 1, anon_sym_AMP_AMP, - ACTIONS(5052), 1, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, - ACTIONS(5054), 1, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5056), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5058), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5060), 1, + ACTIONS(5118), 1, anon_sym_in, - ACTIONS(5062), 1, + ACTIONS(5120), 1, anon_sym_BANGin, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, + ACTIONS(5150), 1, + anon_sym_LBRACE, + STATE(2338), 1, + sym_block, + STATE(2412), 1, sym_or_block, - STATE(4386), 1, + STATE(2466), 1, + sym_argument_list, + STATE(3947), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5032), 4, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2473), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1761), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5036), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5034), 8, + ACTIONS(5096), 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, - [52410] = 3, + [59687] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3189), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2835), 1, anon_sym_DOT, + STATE(2474), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 12, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -239237,7 +248554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3187), 31, + ACTIONS(3147), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239269,86 +248586,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52462] = 25, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, + [59748] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2475), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3233), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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(3231), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5030), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5038), 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, - ACTIONS(5040), 1, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, anon_sym_DASH_DASH, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - ACTIONS(5050), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5052), 1, anon_sym_PIPE_PIPE, - ACTIONS(5054), 1, anon_sym_or, - ACTIONS(5056), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5058), 1, anon_sym_BANGis, - ACTIONS(5060), 1, anon_sym_in, - ACTIONS(5062), 1, anon_sym_BANGin, - ACTIONS(5138), 1, - anon_sym_COMMA, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [59807] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2476), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3225), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3562), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5032), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5036), 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(3223), 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(5034), 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, - [52558] = 3, + 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, + [59866] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3408), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2477), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3183), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -239357,7 +248716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3406), 31, + ACTIONS(3181), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239389,15 +248748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52610] = 3, + [59925] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2478), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3375), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -239406,7 +248770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3446), 31, + ACTIONS(3373), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239438,15 +248802,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52662] = 3, + [59984] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3209), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2479), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3335), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -239455,7 +248824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3207), 31, + ACTIONS(3333), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239487,15 +248856,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52714] = 3, + [60043] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2480), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3217), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, @@ -239504,7 +248878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3438), 31, + ACTIONS(3215), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239536,38 +248910,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52766] = 3, + [60102] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(3147), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2481), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 12, + anon_sym_SLASH, 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(2909), 31, + ACTIONS(2831), 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, 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, @@ -239583,125 +248964,525 @@ 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, - [52818] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5030), 1, + [60164] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5152), 1, + anon_sym_DOT, + ACTIONS(5154), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, + ACTIONS(5156), 1, anon_sym_LBRACK, - ACTIONS(5044), 1, + ACTIONS(5158), 1, anon_sym_QMARK, - ACTIONS(5046), 1, + ACTIONS(5160), 1, anon_sym_BANG, - STATE(2595), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK2, + ACTIONS(5164), 1, + anon_sym_QMARK_DOT, + ACTIONS(5166), 1, + anon_sym_POUND_LBRACK, + STATE(2810), 1, + sym_or_block, + STATE(2811), 1, sym_argument_list, - STATE(2596), 1, + STATE(4187), 1, + sym_type_parameters, + STATE(2482), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1877), 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, + [60244] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + ACTIONS(5042), 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_in, + ACTIONS(5080), 1, + anon_sym_BANGin, + ACTIONS(5134), 1, + anon_sym_PIPE_PIPE, + STATE(2643), 1, sym_or_block, - STATE(4386), 1, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5028), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5048), 2, + ACTIONS(5038), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5032), 4, + STATE(2483), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3558), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5072), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5034), 8, - anon_sym_STAR, + 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(5070), 8, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1865), 21, + [60344] = 25, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3147), 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(3446), 1, + sym_plain_type, + STATE(4442), 1, + sym_reference_expression, + STATE(2484), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3451), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(3149), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3452), 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, + [60442] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + ACTIONS(5042), 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_in, + ACTIONS(5080), 1, + anon_sym_BANGin, + ACTIONS(5134), 1, + anon_sym_PIPE_PIPE, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2485), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3582), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + ACTIONS(5072), 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(5070), 8, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [60542] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, + anon_sym_QMARK, + ACTIONS(5036), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5050), 1, anon_sym_PLUS_PLUS, + ACTIONS(5052), 1, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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_in, + ACTIONS(5080), 1, anon_sym_BANGin, - [52890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3283), 13, + ACTIONS(5134), 1, + anon_sym_PIPE_PIPE, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2486), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3586), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + ACTIONS(5072), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(5074), 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(3281), 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(5070), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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, - [52942] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2647), 1, - anon_sym_LBRACK, - ACTIONS(2649), 43, + [60642] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + 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(3472), 1, + sym_plain_type, + STATE(4442), 1, + sym_reference_expression, + STATE(2487), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3451), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(623), 9, + 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_AT_LBRACK, + STATE(3452), 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, + [60736] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + 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(3467), 1, + sym_plain_type, + STATE(4442), 1, + sym_reference_expression, + STATE(2488), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3451), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(571), 9, + 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_AT_LBRACK, + STATE(3452), 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, + [60830] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 1, + anon_sym_LBRACK, + ACTIONS(3149), 1, + anon_sym_LBRACE, + STATE(2489), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -239712,7 +249493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -239736,112 +249516,108 @@ 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, - [52994] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_COLON_EQ, - ACTIONS(5004), 1, + [60890] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, + sym_identifier, + ACTIONS(3446), 1, anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + 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(5010), 1, + ACTIONS(3456), 1, anon_sym_BANG, - ACTIONS(5012), 1, + ACTIONS(3458), 1, anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_COMMA, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, - anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5110), 1, - anon_sym_in, - ACTIONS(5112), 1, - anon_sym_BANGin, - ACTIONS(5140), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(2620), 1, - sym_block, - STATE(3896), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, - anon_sym_SLASH, + ACTIONS(3460), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5092), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [53104] = 3, + 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(3456), 1, + sym_plain_type, + STATE(4442), 1, + sym_reference_expression, + STATE(2490), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3451), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(627), 9, + 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_AT_LBRACK, + STATE(3452), 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, + [60984] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2903), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2491), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 12, + anon_sym_SLASH, 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(2901), 31, + ACTIONS(2745), 29, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -239852,6 +249628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -239867,436 +249644,208 @@ 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, - [53156] = 3, + [61044] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + 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(3346), 31, - anon_sym_SEMI, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 1, 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, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 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(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 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(3350), 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, + ACTIONS(5178), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5180), 1, anon_sym_AMP_AMP, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5184), 1, anon_sym_in, + ACTIONS(5186), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2899), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + STATE(2492), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2897), 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, - [53312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 13, - anon_sym_DOT, + ACTIONS(5170), 3, 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(3386), 31, + ACTIONS(1929), 4, 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_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5176), 4, 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(5172), 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, - anon_sym_DOT_DOT, - [53364] = 3, + [61154] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + 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(3390), 31, - anon_sym_SEMI, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 1, 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, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 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(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53416] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3428), 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(3426), 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, + ACTIONS(5178), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5180), 1, anon_sym_AMP_AMP, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5184), 1, anon_sym_in, + ACTIONS(5186), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3340), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + STATE(2493), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3338), 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, - [53520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3436), 13, - anon_sym_DOT, + ACTIONS(5170), 3, 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(3434), 31, + ACTIONS(1935), 4, 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_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5176), 4, 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(5172), 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, - anon_sym_DOT_DOT, - [53572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3452), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + [61264] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2745), 1, + anon_sym_LBRACK, + ACTIONS(2757), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2494), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, 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(3450), 31, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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_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, @@ -240308,137 +249857,117 @@ 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, - [53624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3099), 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, + [61324] = 26, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5032), 1, + anon_sym_LBRACK, + ACTIONS(5034), 1, anon_sym_QMARK, + ACTIONS(5036), 1, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3097), 31, - anon_sym_SEMI, + ACTIONS(5042), 1, 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, + ACTIONS(5050), 1, anon_sym_PLUS_PLUS, + ACTIONS(5052), 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(5058), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5060), 1, anon_sym_is, + ACTIONS(5062), 1, anon_sym_BANGis, + ACTIONS(5076), 1, + anon_sym_AMP_AMP, + ACTIONS(5078), 1, anon_sym_in, + ACTIONS(5080), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3420), 13, + ACTIONS(5134), 1, + anon_sym_PIPE_PIPE, + STATE(2643), 1, + sym_or_block, + STATE(2644), 1, + sym_argument_list, + STATE(4127), 1, + sym_type_parameters, + ACTIONS(5028), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2495), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3578), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5072), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(5074), 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(3418), 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(5070), 8, + anon_sym_SLASH, + anon_sym_STAR, + 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, - [53728] = 3, + [61424] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3133), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(2496), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 13, + anon_sym_SLASH, 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(3131), 31, + anon_sym_DOT_DOT, + ACTIONS(2831), 28, 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_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -240456,43 +249985,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3444), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + [61484] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2819), 1, + anon_sym_LBRACK, + ACTIONS(5188), 1, + anon_sym_DOLLARelse, + STATE(2497), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2821), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, 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(3442), 31, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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_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, @@ -240504,44 +250039,49 @@ 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, - [53832] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3265), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + [61544] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2741), 1, + anon_sym_LBRACK, + STATE(2633), 1, + sym_type_parameters, + STATE(2498), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, 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(3263), 31, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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_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, @@ -240553,44 +250093,49 @@ 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, - [53884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3370), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + [61604] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3239), 1, + anon_sym_LBRACK, + ACTIONS(2757), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2499), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, 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(3368), 31, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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_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, @@ -240602,192 +250147,257 @@ 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, - [53936] = 3, + [61664] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(3404), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + 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(5178), 1, + anon_sym_CARET, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(1871), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2500), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3402), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1869), 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_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_COLON_EQ, anon_sym_DOT_DOT, - [53988] = 3, + [61752] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + 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(5178), 1, + anon_sym_CARET, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(1875), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2501), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3251), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1873), 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_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_COLON_EQ, anon_sym_DOT_DOT, - [54040] = 3, + [61840] = 24, ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + 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(5178), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5174), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2502), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3025), 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(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, 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(5172), 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(1877), 11, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_COLON, + 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_COLON_EQ, anon_sym_DOT_DOT, - [54092] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_DOT, - ACTIONS(3412), 12, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + [61936] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2763), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + anon_sym_DOLLARelse, + STATE(2503), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2765), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, 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(3410), 31, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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_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, @@ -240799,83 +250409,81 @@ 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, - [54146] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_as, - ACTIONS(5030), 1, + [61996] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5044), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5046), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5050), 1, - anon_sym_AMP_AMP, - ACTIONS(5052), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5054), 1, - anon_sym_or, - ACTIONS(5060), 1, - anon_sym_in, - ACTIONS(5062), 1, - anon_sym_BANGin, - ACTIONS(5142), 1, - anon_sym_is, - ACTIONS(5144), 1, - anon_sym_BANGis, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5032), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(1933), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5036), 6, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(1879), 2, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5034), 8, - anon_sym_STAR, + STATE(2504), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5172), 5, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [54240] = 32, + ACTIONS(1877), 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, + [62084] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_COLON_EQ, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, + anon_sym_DOT, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -240886,74 +250494,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + STATE(2505), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1879), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5172), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 19, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5082), 1, - anon_sym_COMMA, - ACTIONS(5094), 1, + 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, - ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5098), 1, anon_sym_CARET, - ACTIONS(5100), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5106), 1, anon_sym_is, - ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5110), 1, anon_sym_in, - ACTIONS(5112), 1, anon_sym_BANGin, - ACTIONS(5146), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(2672), 1, - sym_block, - STATE(3896), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5092), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [54350] = 32, + anon_sym_DOT_DOT, + [62168] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_COLON_EQ, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, + anon_sym_DOT, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -240964,150 +250560,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_COMMA, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, - ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5110), 1, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - ACTIONS(5148), 1, - anon_sym_LBRACE, - STATE(1740), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(3896), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2506), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [54460] = 3, + ACTIONS(1877), 12, + anon_sym_SEMI, + anon_sym_as, + 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_DOT_DOT, + [62262] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5152), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + 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(5198), 1, + anon_sym_CARET, + STATE(2810), 1, + sym_or_block, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, + sym_type_parameters, + STATE(2507), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1871), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5192), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3334), 31, - anon_sym_SEMI, + ACTIONS(5194), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5196), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1869), 17, 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_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, - [54512] = 3, + [62350] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(3332), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(2810), 1, + sym_or_block, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, + sym_type_parameters, + STATE(2508), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1915), 9, + anon_sym_SLASH, 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(3330), 31, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1913), 23, 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_CARET, @@ -241117,405 +250742,492 @@ 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, - [54564] = 3, + [62430] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(3328), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5152), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + 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(5198), 1, + anon_sym_CARET, + STATE(2810), 1, + sym_or_block, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, + sym_type_parameters, + STATE(2509), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1875), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5192), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3326), 31, - anon_sym_SEMI, + ACTIONS(5194), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5196), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1873), 17, 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_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, - [54616] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(3412), 1, - anon_sym_LBRACE, - ACTIONS(2727), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [62518] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5152), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + 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(5198), 1, + anon_sym_CARET, + STATE(2810), 1, + sym_or_block, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, + sym_type_parameters, + STATE(2510), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5194), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5196), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 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, + [62606] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1937), 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(5198), 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(5200), 1, + anon_sym_as, + ACTIONS(5206), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5208), 1, + anon_sym_DASH_DASH, + 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, - [54669] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3410), 2, + STATE(2810), 1, + sym_or_block, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, + sym_type_parameters, + ACTIONS(5202), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2511), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1935), 3, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(2727), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_DOT_DOT_DOT, + 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(2725), 27, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5194), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5204), 4, 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, + ACTIONS(5196), 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, + [62718] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1931), 1, anon_sym_DOT_DOT, - [54724] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_as, - ACTIONS(5030), 1, + ACTIONS(5152), 1, + anon_sym_DOT, + ACTIONS(5154), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, + ACTIONS(5156), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5044), 1, + ACTIONS(5158), 1, anon_sym_QMARK, - ACTIONS(5046), 1, + ACTIONS(5160), 1, anon_sym_BANG, - ACTIONS(5054), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK2, + ACTIONS(5164), 1, + anon_sym_QMARK_DOT, + ACTIONS(5166), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5198), 1, + anon_sym_CARET, + ACTIONS(5200), 1, + anon_sym_as, + ACTIONS(5206), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5208), 1, + anon_sym_DASH_DASH, + ACTIONS(5210), 1, + anon_sym_AMP_AMP, + ACTIONS(5212), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5214), 1, anon_sym_or, - ACTIONS(5056), 1, + ACTIONS(5216), 1, anon_sym_is, - ACTIONS(5058), 1, + ACTIONS(5218), 1, anon_sym_BANGis, - ACTIONS(5074), 1, + ACTIONS(5220), 1, anon_sym_in, - ACTIONS(5076), 1, + ACTIONS(5222), 1, anon_sym_BANGin, - ACTIONS(5114), 1, - anon_sym_AMP_AMP, - ACTIONS(5116), 1, - anon_sym_PIPE_PIPE, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, + STATE(2810), 1, sym_or_block, - STATE(4386), 1, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3584), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5068), 4, + ACTIONS(5202), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2512), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1929), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5194), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5072), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5204), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5070), 8, + ACTIONS(5196), 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, - [54817] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_as, - ACTIONS(5030), 1, + [62830] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1879), 1, + anon_sym_DOT_DOT, + ACTIONS(5152), 1, + anon_sym_DOT, + ACTIONS(5154), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, + ACTIONS(5156), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5044), 1, + ACTIONS(5158), 1, anon_sym_QMARK, - ACTIONS(5046), 1, + ACTIONS(5160), 1, anon_sym_BANG, - ACTIONS(5054), 1, - anon_sym_or, - ACTIONS(5056), 1, - anon_sym_is, - ACTIONS(5058), 1, - anon_sym_BANGis, - ACTIONS(5074), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK2, + ACTIONS(5164), 1, + anon_sym_QMARK_DOT, + ACTIONS(5166), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5198), 1, + anon_sym_CARET, + ACTIONS(5220), 1, anon_sym_in, - ACTIONS(5076), 1, - anon_sym_BANGin, - ACTIONS(5114), 1, - anon_sym_AMP_AMP, - ACTIONS(5116), 1, - anon_sym_PIPE_PIPE, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, + ACTIONS(5222), 1, + anon_sym_BANGin, + STATE(2810), 1, sym_or_block, - STATE(4386), 1, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3588), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(5068), 4, + ACTIONS(5202), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2513), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5194), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5072), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5204), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5070), 8, + ACTIONS(5196), 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, - [54910] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, + ACTIONS(1877), 11, anon_sym_as, - ACTIONS(5030), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, anon_sym_DASH_DASH, - ACTIONS(5044), 1, - anon_sym_QMARK, - ACTIONS(5046), 1, - anon_sym_BANG, - ACTIONS(5054), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5056), 1, anon_sym_is, - ACTIONS(5058), 1, anon_sym_BANGis, - ACTIONS(5074), 1, + [62926] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1879), 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(5198), 1, + anon_sym_CARET, + ACTIONS(5210), 1, + anon_sym_AMP_AMP, + ACTIONS(5220), 1, anon_sym_in, - ACTIONS(5076), 1, + ACTIONS(5222), 1, anon_sym_BANGin, - ACTIONS(5114), 1, - anon_sym_AMP_AMP, - ACTIONS(5116), 1, - anon_sym_PIPE_PIPE, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, + STATE(2810), 1, sym_or_block, - STATE(4386), 1, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3596), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(5068), 4, + ACTIONS(5202), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2514), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5194), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5072), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5204), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5070), 8, + ACTIONS(5196), 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, - [55003] = 14, + ACTIONS(1877), 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, + [63024] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5152), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(5154), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5156), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5158), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5160), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5162), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(5164), 1, + anon_sym_QMARK_DOT, + ACTIONS(5166), 1, anon_sym_POUND_LBRACK, - STATE(2801), 1, + STATE(2810), 1, sym_or_block, - STATE(2802), 1, + STATE(2811), 1, sym_argument_list, - STATE(4133), 1, + STATE(4187), 1, sym_type_parameters, - ACTIONS(1869), 9, + STATE(2515), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1903), 9, + anon_sym_SLASH, 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(1867), 23, + ACTIONS(1901), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241539,121 +251251,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55076] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_as, - ACTIONS(5030), 1, + [63104] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5152), 1, + anon_sym_DOT, + ACTIONS(5154), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, + ACTIONS(5156), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5044), 1, + ACTIONS(5158), 1, anon_sym_QMARK, - ACTIONS(5046), 1, + ACTIONS(5160), 1, anon_sym_BANG, - ACTIONS(5054), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK2, + ACTIONS(5164), 1, + anon_sym_QMARK_DOT, + ACTIONS(5166), 1, + anon_sym_POUND_LBRACK, + STATE(2810), 1, + sym_or_block, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, + sym_type_parameters, + STATE(2516), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5192), 3, + anon_sym_SLASH, + anon_sym_AMP, + 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), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(1877), 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, - ACTIONS(5056), 1, anon_sym_is, - ACTIONS(5058), 1, anon_sym_BANGis, - ACTIONS(5074), 1, anon_sym_in, - ACTIONS(5076), 1, anon_sym_BANGin, - ACTIONS(5114), 1, - anon_sym_AMP_AMP, - ACTIONS(5116), 1, - anon_sym_PIPE_PIPE, - STATE(2595), 1, - sym_argument_list, - STATE(2596), 1, - sym_or_block, - STATE(4386), 1, - sym_type_parameters, - ACTIONS(5024), 2, + [63188] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2517), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 12, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5048), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3592), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5068), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5072), 6, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3239), 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, - ACTIONS(5070), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, + 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, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55169] = 18, + 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, + [63248] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, - anon_sym_DOT, - ACTIONS(5152), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5154), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5156), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5158), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5160), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5172), 1, + ACTIONS(5106), 1, anon_sym_CARET, - STATE(2801), 1, + STATE(2412), 1, sym_or_block, - STATE(2802), 1, + STATE(2466), 1, sym_argument_list, - STATE(4133), 1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(1881), 3, + ACTIONS(1879), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5170), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2518), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5168), 5, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 17, + ACTIONS(1877), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241661,7 +251427,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_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -241671,49 +251436,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55250] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, + anon_sym_COLON_EQ, + [63333] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3057), 1, + anon_sym_LBRACK, + STATE(2519), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3059), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5152), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5154), 1, - anon_sym_LBRACK, - ACTIONS(5156), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5160), 1, anon_sym_LBRACK2, - ACTIONS(5162), 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(5164), 1, anon_sym_POUND_LBRACK, - STATE(2801), 1, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [63390] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5106), 1, + anon_sym_CARET, + STATE(2412), 1, sym_or_block, - STATE(2802), 1, + STATE(2466), 1, sym_argument_list, - STATE(4133), 1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5170), 3, + ACTIONS(1875), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2520), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5168), 5, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1881), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(1941), 18, + ACTIONS(1873), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241721,10 +251545,8 @@ 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_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -241732,43 +251554,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55327] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2727), 13, + anon_sym_COLON_EQ, + [63475] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2947), 1, + anon_sym_LBRACK, + STATE(2521), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2949), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_SLASH, + 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_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_DOT_DOT, - ACTIONS(2725), 28, + 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, + [63532] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3247), 1, + anon_sym_LBRACK, + STATE(2522), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3249), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, 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_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_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, @@ -241780,73 +251659,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [55380] = 16, + [63589] = 33, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5152), 1, anon_sym_DOT, - ACTIONS(5004), 1, + ACTIONS(5154), 1, anon_sym_LPAREN, - ACTIONS(5006), 1, + ACTIONS(5156), 1, anon_sym_LBRACK, - ACTIONS(5008), 1, + ACTIONS(5158), 1, anon_sym_QMARK, - ACTIONS(5010), 1, + ACTIONS(5160), 1, anon_sym_BANG, - ACTIONS(5012), 1, + ACTIONS(5162), 1, anon_sym_LBRACK2, - ACTIONS(5014), 1, + ACTIONS(5164), 1, anon_sym_QMARK_DOT, - ACTIONS(5016), 1, + ACTIONS(5166), 1, anon_sym_POUND_LBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5200), 1, + anon_sym_as, + ACTIONS(5206), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5208), 1, + anon_sym_DASH_DASH, + ACTIONS(5214), 1, + anon_sym_or, + ACTIONS(5216), 1, + anon_sym_is, + ACTIONS(5218), 1, + anon_sym_BANGis, + ACTIONS(5226), 1, + anon_sym_LBRACE, + ACTIONS(5236), 1, + anon_sym_DOT_DOT_DOT, + 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(5248), 1, + anon_sym_DOT_DOT, + STATE(2810), 1, sym_or_block, - STATE(4084), 1, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, sym_type_parameters, - ACTIONS(5176), 3, + ACTIONS(5232), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2523), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1881), 5, + ACTIONS(5228), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5174), 5, + ACTIONS(5234), 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, - ACTIONS(1941), 19, - 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_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_DOT_DOT, - [55457] = 18, + [63702] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -241857,59 +251754,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5014), 1, - anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5180), 1, + ACTIONS(5106), 1, anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(1881), 2, + ACTIONS(1871), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2524), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 5, + ACTIONS(5096), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 18, - anon_sym_SEMI, + ACTIONS(1869), 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, + [63787] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5250), 1, + anon_sym_else, + STATE(2716), 1, + sym_else_branch, + STATE(2525), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2457), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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(2455), 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_RBRACK, - anon_sym_COLON, + 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_DOT_DOT, - [55538] = 21, + [63848] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -241920,62 +251874,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5014), 1, - anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5180), 1, + ACTIONS(5106), 1, anon_sym_CARET, - ACTIONS(5186), 1, + ACTIONS(5108), 1, + anon_sym_AMP_AMP, + ACTIONS(5118), 1, anon_sym_in, - ACTIONS(5188), 1, + ACTIONS(5120), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5182), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2526), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5096), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 12, - anon_sym_SEMI, + ACTIONS(1877), 10, anon_sym_as, - anon_sym_RBRACK, - anon_sym_COLON, + 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_DOT_DOT, - [55625] = 22, + anon_sym_COLON_EQ, + [63941] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -241986,454 +251944,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5014), 1, - anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5180), 1, + ACTIONS(5106), 1, anon_sym_CARET, - ACTIONS(5186), 1, + ACTIONS(5118), 1, anon_sym_in, - ACTIONS(5188), 1, + ACTIONS(5120), 1, anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5182), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2527), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5096), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 11, - anon_sym_SEMI, + ACTIONS(1877), 11, anon_sym_as, - anon_sym_RBRACK, - anon_sym_COLON, + 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_DOT_DOT, - [55714] = 18, + anon_sym_COLON_EQ, + [64032] = 32, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1937), 1, + anon_sym_DOT_DOT, + ACTIONS(5152), 1, anon_sym_DOT, - ACTIONS(5004), 1, + ACTIONS(5154), 1, anon_sym_LPAREN, - ACTIONS(5006), 1, + ACTIONS(5156), 1, anon_sym_LBRACK, - ACTIONS(5008), 1, + ACTIONS(5158), 1, anon_sym_QMARK, - ACTIONS(5010), 1, + ACTIONS(5160), 1, anon_sym_BANG, - ACTIONS(5012), 1, + ACTIONS(5162), 1, anon_sym_LBRACK2, - ACTIONS(5014), 1, + ACTIONS(5164), 1, anon_sym_QMARK_DOT, - ACTIONS(5016), 1, + ACTIONS(5166), 1, anon_sym_POUND_LBRACK, - ACTIONS(5180), 1, + ACTIONS(5200), 1, + anon_sym_as, + ACTIONS(5206), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5208), 1, + anon_sym_DASH_DASH, + ACTIONS(5214), 1, + anon_sym_or, + ACTIONS(5216), 1, + anon_sym_is, + ACTIONS(5218), 1, + anon_sym_BANGis, + ACTIONS(5238), 1, anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + 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(2810), 1, sym_or_block, - STATE(4084), 1, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, sym_type_parameters, - ACTIONS(1865), 2, + ACTIONS(1935), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5232), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2528), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5228), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 5, + ACTIONS(5234), 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, - ACTIONS(1863), 18, + [64143] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3401), 1, + anon_sym_LBRACK, + STATE(2529), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3403), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, 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_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_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, 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, - [55795] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, + [64200] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3397), 1, + anon_sym_LBRACK, + STATE(2530), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3399), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5004), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5014), 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(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, anon_sym_is, - ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, + [64257] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3393), 1, + anon_sym_LBRACK, + STATE(2531), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3395), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, + 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(1847), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5184), 4, + 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, - ACTIONS(5174), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [55898] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_DOT, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5014), 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(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, anon_sym_is, - ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, + [64314] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3369), 1, + anon_sym_LBRACK, + STATE(2532), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, + 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(1859), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5184), 4, + 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, - ACTIONS(5174), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56001] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_DOT_DOT, - ACTIONS(5150), 1, - anon_sym_DOT, - ACTIONS(5152), 1, - anon_sym_LPAREN, - ACTIONS(5154), 1, - anon_sym_LBRACK, - ACTIONS(5156), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5160), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5172), 1, anon_sym_CARET, - ACTIONS(5198), 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(5200), 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(5202), 1, anon_sym_BANGin, - STATE(2801), 1, - sym_or_block, - STATE(2802), 1, - sym_argument_list, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5166), 3, + [64371] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2533), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2829), 13, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5170), 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(2827), 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, - ACTIONS(5168), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1941), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, 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, - [56092] = 23, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2727), 1, - anon_sym_DOT, - ACTIONS(3410), 1, - anon_sym_LBRACK, - ACTIONS(3454), 1, - sym_identifier, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3458), 1, - anon_sym_fn, - ACTIONS(3460), 1, - anon_sym_STAR, - ACTIONS(3462), 1, - anon_sym_struct, - ACTIONS(3464), 1, - anon_sym_QMARK, - ACTIONS(3466), 1, - anon_sym_BANG, - ACTIONS(3468), 1, - anon_sym_LBRACK2, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3472), 1, - anon_sym_shared, - ACTIONS(3474), 1, - anon_sym_map_LBRACK, - ACTIONS(3476), 1, - anon_sym_chan, - ACTIONS(3478), 1, - anon_sym_thread, - ACTIONS(3480), 1, - anon_sym_atomic, - STATE(3419), 1, - sym_plain_type, - STATE(4436), 1, - sym_reference_expression, - STATE(3380), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3437), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(3412), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3444), 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, - [56183] = 18, + anon_sym_in, + anon_sym_BANGin, + [64428] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5152), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(5154), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5156), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5158), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5160), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5162), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(5164), 1, + anon_sym_QMARK_DOT, + ACTIONS(5166), 1, anon_sym_POUND_LBRACK, - ACTIONS(5172), 1, + ACTIONS(5238), 1, anon_sym_CARET, - STATE(2801), 1, + STATE(2810), 1, sym_or_block, - STATE(2802), 1, + STATE(2811), 1, sym_argument_list, - STATE(4133), 1, + STATE(4187), 1, sym_type_parameters, - ACTIONS(1865), 3, + STATE(2534), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1875), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT_DOT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5170), 3, + ACTIONS(5224), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5168), 5, + ACTIONS(5228), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5230), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1863), 17, + ACTIONS(1873), 16, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -242448,576 +252404,666 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56264] = 21, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3454), 1, - sym_identifier, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3458), 1, - anon_sym_fn, - ACTIONS(3460), 1, - anon_sym_STAR, - ACTIONS(3462), 1, - anon_sym_struct, - ACTIONS(3464), 1, - anon_sym_QMARK, - ACTIONS(3466), 1, - anon_sym_BANG, - ACTIONS(3468), 1, - anon_sym_LBRACK2, - ACTIONS(3470), 1, - anon_sym_AMP, - ACTIONS(3472), 1, - anon_sym_shared, - ACTIONS(3474), 1, - anon_sym_map_LBRACK, - ACTIONS(3476), 1, - anon_sym_chan, - ACTIONS(3478), 1, - anon_sym_thread, - ACTIONS(3480), 1, - anon_sym_atomic, - STATE(3435), 1, - sym_plain_type, - STATE(4436), 1, - sym_reference_expression, - STATE(3380), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3437), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(623), 9, - 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_AT_LBRACK, - STATE(3444), 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, - [56351] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - anon_sym_DOT_DOT, - ACTIONS(5150), 1, - anon_sym_DOT, - ACTIONS(5152), 1, + [64515] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_SEMI, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5154), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5156), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5158), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5160), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5172), 1, - anon_sym_CARET, - ACTIONS(5198), 1, - anon_sym_AMP_AMP, - ACTIONS(5200), 1, - anon_sym_in, - ACTIONS(5202), 1, - anon_sym_BANGin, - ACTIONS(5204), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5206), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5208), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5214), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5216), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - STATE(2801), 1, + ACTIONS(5254), 1, + anon_sym_COMMA, + ACTIONS(5264), 1, + anon_sym_CARET, + ACTIONS(5266), 1, + anon_sym_AMP_AMP, + ACTIONS(5268), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5270), 1, + anon_sym_in, + ACTIONS(5272), 1, + anon_sym_BANGin, + STATE(2412), 1, sym_or_block, - STATE(2802), 1, + STATE(2466), 1, sym_argument_list, - STATE(4133), 1, + STATE(4070), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5260), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1847), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5170), 3, + STATE(2535), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5252), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5256), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5168), 5, + ACTIONS(5258), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [64626] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3389), 1, + anon_sym_LBRACK, + STATE(2536), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3391), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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, - [56456] = 30, + 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, + [64683] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1879), 1, anon_sym_DOT_DOT, - ACTIONS(5150), 1, - anon_sym_DOT, ACTIONS(5152), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(5154), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5156), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5158), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5160), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5162), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(5164), 1, + anon_sym_QMARK_DOT, + ACTIONS(5166), 1, anon_sym_POUND_LBRACK, - ACTIONS(5172), 1, + ACTIONS(5238), 1, anon_sym_CARET, - ACTIONS(5198), 1, + ACTIONS(5240), 1, anon_sym_AMP_AMP, - ACTIONS(5200), 1, + ACTIONS(5244), 1, anon_sym_in, - ACTIONS(5202), 1, + ACTIONS(5246), 1, anon_sym_BANGin, - ACTIONS(5204), 1, - anon_sym_as, - ACTIONS(5206), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5208), 1, - anon_sym_DASH_DASH, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, - anon_sym_or, - ACTIONS(5214), 1, - anon_sym_is, - ACTIONS(5216), 1, - anon_sym_BANGis, - STATE(2801), 1, + STATE(2810), 1, sym_or_block, - STATE(2802), 1, + STATE(2811), 1, sym_argument_list, - STATE(4133), 1, + STATE(4187), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5232), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1859), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5170), 3, + STATE(2537), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5228), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5168), 5, + ACTIONS(5230), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56561] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, + ACTIONS(1877), 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, + [64780] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3263), 1, + anon_sym_LBRACK, + STATE(2538), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3265), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5152), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5154), 1, - anon_sym_LBRACK, - ACTIONS(5156), 1, - anon_sym_QMARK, - ACTIONS(5158), 1, - anon_sym_BANG, - ACTIONS(5160), 1, - anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5172), 1, - anon_sym_CARET, - STATE(2801), 1, - sym_or_block, - STATE(2802), 1, - sym_argument_list, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(2067), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5170), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5168), 5, 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_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(2065), 17, + 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, + [64837] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3259), 1, + anon_sym_LBRACK, + STATE(2539), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3261), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_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, - [56642] = 21, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3454), 1, - sym_identifier, - ACTIONS(3456), 1, + [64894] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3255), 1, + anon_sym_LBRACK, + STATE(2540), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3257), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3458), 1, - anon_sym_fn, - ACTIONS(3460), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(3462), 1, - anon_sym_struct, - ACTIONS(3464), 1, + 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(3466), 1, anon_sym_BANG, - ACTIONS(3468), 1, anon_sym_LBRACK2, - ACTIONS(3470), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3472), 1, - anon_sym_shared, - ACTIONS(3474), 1, - anon_sym_map_LBRACK, - ACTIONS(3476), 1, - anon_sym_chan, - ACTIONS(3478), 1, - anon_sym_thread, - ACTIONS(3480), 1, - anon_sym_atomic, - STATE(3423), 1, - sym_plain_type, - STATE(4436), 1, - sym_reference_expression, - STATE(3380), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3437), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(619), 9, + 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, + [64951] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3025), 1, + anon_sym_LBRACK, + STATE(2541), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3027), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_AT_LBRACK, - STATE(3444), 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, - [56729] = 21, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3454), 1, - sym_identifier, - ACTIONS(3456), 1, anon_sym_LPAREN, - ACTIONS(3458), 1, - anon_sym_fn, - ACTIONS(3460), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(3462), 1, - anon_sym_struct, - ACTIONS(3464), 1, + 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(3466), 1, anon_sym_BANG, - ACTIONS(3468), 1, anon_sym_LBRACK2, - ACTIONS(3470), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3472), 1, - anon_sym_shared, - ACTIONS(3474), 1, - anon_sym_map_LBRACK, - ACTIONS(3476), 1, - anon_sym_chan, - ACTIONS(3478), 1, - anon_sym_thread, - ACTIONS(3480), 1, - anon_sym_atomic, - STATE(3422), 1, - sym_plain_type, - STATE(4436), 1, - sym_reference_expression, - STATE(3380), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3437), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(585), 9, + 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, + [65008] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3357), 1, + anon_sym_LBRACK, + STATE(2542), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 41, 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_AT_LBRACK, - STATE(3444), 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, - [56816] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5152), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5154), 1, - anon_sym_LBRACK, - ACTIONS(5156), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5160), 1, anon_sym_LBRACK2, - ACTIONS(5162), 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(5164), 1, anon_sym_POUND_LBRACK, - STATE(2801), 1, - sym_or_block, - STATE(2802), 1, - sym_argument_list, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(1853), 9, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [65065] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3409), 1, + anon_sym_LBRACK, + STATE(2543), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3411), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_SLASH, + 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_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_DOT_DOT, - ACTIONS(1851), 23, + 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, + [65122] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3131), 1, + anon_sym_LBRACK, + STATE(2544), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3133), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_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_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, - [56889] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_DOT, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, + [65179] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3421), 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(5180), 1, - anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(2067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, + STATE(2545), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3423), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, + 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(5174), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2065), 18, - anon_sym_SEMI, - anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, 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, - [56970] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3201), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + [65236] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_LBRACK, + STATE(2546), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3035), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, 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(3199), 29, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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_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, @@ -243029,44 +253075,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [57023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2649), 12, + [65293] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3041), 1, + anon_sym_LBRACK, + STATE(2547), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3043), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + 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_SLASH, + 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_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(2647), 29, + 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, + [65350] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_LBRACK, + STATE(2548), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3367), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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_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, @@ -243078,18 +253179,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [57076] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2641), 1, + [65407] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3361), 1, anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_DOLLARelse, - ACTIONS(2643), 41, + STATE(2549), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3363), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243100,7 +253204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243128,65 +253231,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57129] = 22, + [65464] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_DOT_DOT, - ACTIONS(5150), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5152), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(5154), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5156), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5158), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5160), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5162), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(5164), 1, + anon_sym_QMARK_DOT, + ACTIONS(5166), 1, anon_sym_POUND_LBRACK, - ACTIONS(5172), 1, + ACTIONS(5238), 1, anon_sym_CARET, - ACTIONS(5200), 1, - anon_sym_in, - ACTIONS(5202), 1, - anon_sym_BANGin, - STATE(2801), 1, + STATE(2810), 1, sym_or_block, - STATE(2802), 1, + STATE(2811), 1, sym_argument_list, - STATE(4133), 1, + STATE(4187), 1, sym_type_parameters, - ACTIONS(5194), 2, + STATE(2550), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1871), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5170), 3, + anon_sym_DOT_DOT, + ACTIONS(5224), 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(5168), 5, + ACTIONS(5228), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5230), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 11, + ACTIONS(1869), 16, 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, @@ -243195,17 +253296,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - [57218] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2713), 1, + anon_sym_in, + anon_sym_BANGin, + [65551] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - STATE(2597), 1, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5106), 1, + anon_sym_CARET, + ACTIONS(5108), 1, + anon_sym_AMP_AMP, + ACTIONS(5110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5118), 1, + anon_sym_in, + ACTIONS(5120), 1, + anon_sym_BANGin, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(2715), 41, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2551), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1935), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5096), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [65658] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3349), 1, + anon_sym_LBRACK, + STATE(2552), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3351), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243216,7 +253400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243244,28 +253427,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57271] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2647), 1, + [65715] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3345), 1, anon_sym_LBRACK, - ACTIONS(2651), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2649), 40, + STATE(2553), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3347), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, 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, @@ -243293,17 +253479,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57324] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2871), 1, + [65772] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1879), 1, + anon_sym_DOT_DOT, + ACTIONS(5152), 1, + anon_sym_DOT, + ACTIONS(5154), 1, + anon_sym_LPAREN, + ACTIONS(5156), 1, anon_sym_LBRACK, - ACTIONS(5220), 1, - anon_sym_DOLLARelse, - ACTIONS(2873), 41, + 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(5238), 1, + anon_sym_CARET, + ACTIONS(5244), 1, + anon_sym_in, + ACTIONS(5246), 1, + anon_sym_BANGin, + STATE(2810), 1, + sym_or_block, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, + sym_type_parameters, + ACTIONS(5232), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2554), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5228), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5234), 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, + ACTIONS(1877), 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, + [65867] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3341), 1, + anon_sym_LBRACK, + STATE(2555), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243314,7 +253575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243342,28 +253602,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57377] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3199), 1, + [65924] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(2651), 2, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5106), 1, + anon_sym_CARET, + ACTIONS(5108), 1, + anon_sym_AMP_AMP, + ACTIONS(5110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5118), 1, + anon_sym_in, + ACTIONS(5120), 1, + anon_sym_BANGin, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2556), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1929), 3, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3201), 40, + anon_sym_COLON_EQ, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5096), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [66031] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3317), 1, + anon_sym_LBRACK, + STATE(2557), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3319), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, 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, @@ -243391,74 +253731,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57430] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, + [66088] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3337), 1, + anon_sym_LBRACK, + STATE(2558), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3339), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5152), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5154), 1, - anon_sym_LBRACK, - ACTIONS(5156), 1, - anon_sym_QMARK, - ACTIONS(5158), 1, - anon_sym_BANG, - ACTIONS(5160), 1, - anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - STATE(2801), 1, - sym_or_block, - STATE(2802), 1, - sym_argument_list, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(1881), 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(1941), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, 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_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, - [57503] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3360), 1, + [66145] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3325), 1, anon_sym_LBRACK, - ACTIONS(3362), 41, + STATE(2559), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3327), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243469,7 +253808,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243497,17 +253835,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57553] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3267), 1, + [66202] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3373), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_BANG, - ACTIONS(3269), 40, + STATE(2560), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3375), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243518,7 +253860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243529,6 +253870,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, @@ -243545,15 +253887,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57605] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3342), 1, + [66259] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3291), 1, anon_sym_LBRACK, - ACTIONS(3344), 41, + STATE(2561), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243564,7 +253912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243592,15 +253939,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57655] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3011), 1, + [66316] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3287), 1, anon_sym_LBRACK, - ACTIONS(3013), 41, + STATE(2562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243611,7 +253964,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243639,15 +253991,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57705] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3047), 1, + [66373] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5264), 1, + anon_sym_CARET, + ACTIONS(5266), 1, + anon_sym_AMP_AMP, + ACTIONS(5268), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5270), 1, + anon_sym_in, + ACTIONS(5272), 1, + anon_sym_BANGin, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2563), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3550), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5252), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5256), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5258), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [66480] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3251), 1, anon_sym_LBRACK, - ACTIONS(3049), 41, + STATE(2564), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3253), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243658,7 +254093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243686,15 +254120,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57755] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3051), 1, + [66537] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3313), 1, anon_sym_LBRACK, - ACTIONS(3053), 41, + STATE(2565), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243705,7 +254145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243733,18 +254172,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57805] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_DOT, - ACTIONS(3410), 1, + [66594] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3413), 1, anon_sym_LBRACK, - ACTIONS(3412), 40, + STATE(2566), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3415), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -243753,7 +254197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243781,15 +254224,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57857] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3055), 1, + [66651] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3057), 41, + STATE(2567), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2757), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243800,7 +254249,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243828,15 +254276,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57907] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3059), 1, + [66708] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3177), 1, anon_sym_LBRACK, - ACTIONS(3061), 41, + STATE(2568), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3179), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243847,7 +254301,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -243875,44 +254328,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57957] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_DOT_DOT, - ACTIONS(3225), 5, + [66765] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3243), 1, + anon_sym_LBRACK, + STATE(2569), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3245), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(3229), 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_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3232), 24, - anon_sym_as, - anon_sym_LPAREN, 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_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, @@ -243924,44 +254380,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58011] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3217), 1, - anon_sym_DOT_DOT, - ACTIONS(3215), 5, + [66822] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3353), 1, + anon_sym_LBRACK, + STATE(2570), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3355), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(3219), 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_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3222), 24, - anon_sym_as, - anon_sym_LPAREN, 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_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, @@ -243973,15 +254432,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58065] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2983), 1, + [66879] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3219), 1, anon_sym_LBRACK, - ACTIONS(2985), 41, + STATE(2571), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3221), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -243992,7 +254457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244020,15 +254484,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58115] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3081), 1, + [66936] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1931), 1, + anon_sym_DOT_DOT, + ACTIONS(5152), 1, + anon_sym_DOT, + ACTIONS(5154), 1, + anon_sym_LPAREN, + ACTIONS(5156), 1, anon_sym_LBRACK, - ACTIONS(3083), 41, + 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(5200), 1, + anon_sym_as, + ACTIONS(5206), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5208), 1, + anon_sym_DASH_DASH, + ACTIONS(5214), 1, + anon_sym_or, + ACTIONS(5216), 1, + anon_sym_is, + ACTIONS(5218), 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(2810), 1, + sym_or_block, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, + sym_type_parameters, + ACTIONS(1929), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5232), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2572), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5228), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5234), 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, + [67047] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3211), 1, + anon_sym_LBRACK, + STATE(2573), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3213), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -244039,7 +254588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244067,64 +254615,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58165] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2979), 1, - anon_sym_LBRACK, - ACTIONS(2981), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [67104] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5152), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + 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(5238), 1, + anon_sym_CARET, + STATE(2810), 1, + sym_or_block, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, + sym_type_parameters, + STATE(2574), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5224), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5228), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5230), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 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_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, - [58215] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2651), 1, - anon_sym_LBRACE, - ACTIONS(3199), 1, + [67191] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3205), 1, anon_sym_LBRACK, - ACTIONS(3201), 40, + STATE(2575), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3207), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -244134,7 +254707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244162,15 +254734,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58267] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3376), 1, + [67248] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(3378), 41, + STATE(2576), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3129), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -244181,7 +254759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244209,89 +254786,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58317] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_SEMI, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5224), 1, - anon_sym_COMMA, - ACTIONS(5236), 1, - anon_sym_CARET, - ACTIONS(5238), 1, - anon_sym_AMP_AMP, - ACTIONS(5240), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5242), 1, - anon_sym_in, - ACTIONS(5244), 1, - anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4017), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5232), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5226), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5230), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5228), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [58421] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3354), 1, + [67305] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3123), 1, anon_sym_LBRACK, - ACTIONS(3356), 41, + STATE(2577), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3125), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -244302,7 +254811,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244330,15 +254838,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58471] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3085), 1, + [67362] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3181), 1, anon_sym_LBRACK, - ACTIONS(3087), 41, + STATE(2578), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3183), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -244349,7 +254863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244377,15 +254890,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58521] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3203), 1, + [67419] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(3205), 41, + STATE(2579), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3195), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -244396,7 +254915,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244424,109 +254942,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58571] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3398), 1, - anon_sym_LBRACK, - ACTIONS(3400), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [67476] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5152), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5154), 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(5156), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, anon_sym_QMARK, + ACTIONS(5160), 1, anon_sym_BANG, + ACTIONS(5162), 1, anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(5164), 1, + anon_sym_QMARK_DOT, + ACTIONS(5166), 1, + anon_sym_POUND_LBRACK, + STATE(2810), 1, + sym_or_block, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, + sym_type_parameters, + STATE(2580), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, + anon_sym_SLASH, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5230), 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, - [58621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 13, - anon_sym_DOT, + ACTIONS(1879), 6, 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(2647), 29, + ACTIONS(1877), 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, - [58671] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3093), 1, + [67559] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, anon_sym_LBRACK, - ACTIONS(3095), 41, + STATE(2581), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3217), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -244537,7 +255032,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244565,73 +255059,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2685), 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(2683), 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, - [58771] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3101), 1, + [67616] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3284), 1, anon_sym_LBRACK, - ACTIONS(3103), 41, + STATE(2582), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3279), 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(3281), 35, + anon_sym_SLASH, + 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, @@ -244659,26 +255112,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58821] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3127), 1, + [67675] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3274), 1, anon_sym_LBRACK, - ACTIONS(3129), 41, + STATE(2583), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3269), 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(3271), 35, + anon_sym_SLASH, + 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, @@ -244706,15 +255165,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58871] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3139), 1, + [67734] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3141), 41, + STATE(2584), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3225), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -244725,7 +255190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244753,15 +255217,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58921] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2913), 1, + [67791] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2915), 41, + STATE(2585), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3051), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -244772,7 +255242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244800,89 +255269,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58971] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3171), 1, + [67848] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(3173), 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(5088), 1, anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5264), 1, + anon_sym_CARET, + ACTIONS(5266), 1, + anon_sym_AMP_AMP, + ACTIONS(5268), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5270), 1, + anon_sym_in, + ACTIONS(5272), 1, + anon_sym_BANGin, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2586), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1929), 3, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COLON_EQ, + ACTIONS(5252), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5256), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5262), 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(5258), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [67955] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2587), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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, - 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, - [59021] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_LBRACK, - ACTIONS(3091), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2745), 29, 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_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, @@ -244890,20 +255392,29 @@ 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, - [59071] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3422), 1, + [68012] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, anon_sym_LBRACK, - ACTIONS(3424), 41, + STATE(2588), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -244913,7 +255424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244941,15 +255451,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59121] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3195), 1, + [68071] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, anon_sym_LBRACK, - ACTIONS(3197), 41, + STATE(2589), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3233), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -244960,7 +255476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -244988,62 +255503,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59171] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3235), 1, + [68128] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(3237), 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(5088), 1, anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5264), 1, + anon_sym_CARET, + ACTIONS(5266), 1, + anon_sym_AMP_AMP, + ACTIONS(5268), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5270), 1, + anon_sym_in, + ACTIONS(5272), 1, + anon_sym_BANGin, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2590), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1935), 3, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COLON_EQ, + ACTIONS(5252), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5256), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5262), 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(5258), 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, - [59221] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3187), 1, + [68235] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3405), 1, anon_sym_LBRACK, - ACTIONS(3189), 41, + STATE(2591), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3407), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245054,7 +255605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245082,15 +255632,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59271] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3239), 1, + [68292] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2741), 1, anon_sym_LBRACK, - ACTIONS(3241), 41, + STATE(2592), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245101,7 +255657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245129,15 +255684,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59321] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2905), 1, + [68349] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3235), 1, anon_sym_LBRACK, - ACTIONS(2907), 41, + STATE(2593), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3237), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245148,7 +255709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245176,15 +255736,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59371] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3406), 1, + [68406] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(3408), 41, + STATE(2594), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3229), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245195,7 +255761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245223,15 +255788,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59421] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3277), 1, + [68463] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3201), 1, anon_sym_LBRACK, - ACTIONS(3279), 41, + STATE(2595), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3203), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245242,7 +255813,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245270,15 +255840,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59471] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3293), 1, + [68520] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3197), 1, anon_sym_LBRACK, - ACTIONS(3295), 41, + STATE(2596), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3199), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245289,7 +255865,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245317,15 +255892,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59521] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3297), 1, + [68577] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3189), 1, anon_sym_LBRACK, - ACTIONS(3299), 41, + STATE(2597), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3191), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245336,7 +255917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245364,109 +255944,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59571] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3446), 1, + [68634] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(3448), 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, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(2598), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5252), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1879), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + ACTIONS(5258), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 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_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, - [59621] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3338), 1, + anon_sym_COLON_EQ, + [68715] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(3340), 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(5264), 1, + anon_sym_CARET, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(1879), 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(2599), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5252), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5256), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5258), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 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_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, - [59671] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3301), 1, + anon_sym_COLON_EQ, + [68800] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3307), 1, anon_sym_LBRACK, - ACTIONS(3303), 41, + ACTIONS(5274), 1, + anon_sym_BANG, + STATE(2600), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3309), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245477,7 +256101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245488,7 +256111,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, @@ -245505,89 +256127,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59721] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_LBRACK, - ACTIONS(3336), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [68859] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5250), 1, + anon_sym_else, + STATE(2717), 1, + sym_else_branch, + STATE(2601), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 13, + anon_sym_SLASH, 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, - [59771] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3330), 1, - anon_sym_LBRACK, - ACTIONS(3332), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2447), 27, 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_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, @@ -245599,15 +256181,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59821] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3305), 1, + [68920] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3333), 1, anon_sym_LBRACK, - ACTIONS(3307), 41, + STATE(2602), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3335), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245618,7 +256206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245646,15 +256233,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59871] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3316), 1, + [68977] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3185), 1, anon_sym_LBRACK, - ACTIONS(3318), 41, + STATE(2603), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3187), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245665,7 +256258,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245693,15 +256285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59921] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3320), 1, + [69034] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3329), 1, anon_sym_LBRACK, - ACTIONS(3322), 41, + STATE(2604), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3331), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245712,7 +256310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245740,15 +256337,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59971] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3430), 1, + [69091] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3009), 1, anon_sym_LBRACK, - ACTIONS(3432), 41, + STATE(2605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3011), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245759,7 +256362,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245787,15 +256389,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60021] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3364), 1, + [69148] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3155), 1, anon_sym_LBRACK, - ACTIONS(3366), 41, + STATE(2606), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3157), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245806,7 +256414,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245834,15 +256441,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60071] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3326), 1, + [69205] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3321), 1, anon_sym_LBRACK, - ACTIONS(3328), 41, + STATE(2607), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245853,7 +256466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245881,15 +256493,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60121] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3207), 1, + [69262] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(3209), 41, + STATE(2608), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3153), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245900,7 +256518,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245928,15 +256545,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60171] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3438), 1, + [69319] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(3440), 41, + STATE(2609), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3141), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245947,7 +256570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -245975,15 +256597,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60221] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3372), 1, + [69376] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3135), 1, anon_sym_LBRACK, - ACTIONS(3374), 41, + STATE(2610), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3137), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -245994,7 +256622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246022,15 +256649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60271] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3442), 1, + [69433] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2973), 1, anon_sym_LBRACK, - ACTIONS(3444), 41, + STATE(2611), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2975), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246041,7 +256674,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246069,15 +256701,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60321] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3402), 1, + [69490] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3295), 1, anon_sym_LBRACK, - ACTIONS(3404), 41, + STATE(2612), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3297), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246088,7 +256726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246116,15 +256753,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60371] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3380), 1, + [69547] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3029), 1, anon_sym_LBRACK, - ACTIONS(3382), 41, + STATE(2613), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3031), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246135,7 +256778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246163,61 +256805,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60421] = 18, + [69604] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, - anon_sym_DOT, - ACTIONS(5152), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5154), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5156), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5158), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5160), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5252), 1, - anon_sym_CARET, - STATE(2801), 1, + STATE(2412), 1, sym_or_block, - STATE(2802), 1, + STATE(2466), 1, sym_argument_list, - STATE(4133), 1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(2067), 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, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2614), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5248), 5, + ACTIONS(1879), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5096), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2065), 16, + ACTIONS(1877), 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, @@ -246225,15 +256868,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60501] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3131), 1, - anon_sym_LBRACK, - ACTIONS(3133), 41, + anon_sym_COLON_EQ, + [69685] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3417), 1, + anon_sym_LBRACK, + STATE(2615), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3419), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246244,7 +256894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246272,332 +256921,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60551] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, + [69742] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3440), 1, + anon_sym_LBRACK, + STATE(2616), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5152), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5154), 1, - anon_sym_LBRACK, - ACTIONS(5156), 1, - anon_sym_QMARK, - ACTIONS(5158), 1, - anon_sym_BANG, - ACTIONS(5160), 1, - anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5252), 1, - anon_sym_CARET, - STATE(2801), 1, - sym_or_block, - STATE(2802), 1, - sym_argument_list, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(1865), 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(1863), 16, - anon_sym_as, - anon_sym_LBRACE, + 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_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, - [60631] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_DOT_DOT, - ACTIONS(5150), 1, + [69799] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3013), 1, + anon_sym_LBRACK, + STATE(2617), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3015), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5152), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5154), 1, - anon_sym_LBRACK, - ACTIONS(5156), 1, - anon_sym_QMARK, - ACTIONS(5158), 1, - anon_sym_BANG, - ACTIONS(5160), 1, - anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5252), 1, - anon_sym_CARET, - ACTIONS(5258), 1, - anon_sym_AMP_AMP, - ACTIONS(5260), 1, - anon_sym_in, - ACTIONS(5262), 1, - anon_sym_BANGin, - STATE(2801), 1, - sym_or_block, - STATE(2802), 1, - sym_argument_list, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(5254), 2, - anon_sym_LT, - anon_sym_GT, - 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(5256), 4, + 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, - ACTIONS(5248), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1941), 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, - [60721] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_DOT_DOT, - ACTIONS(5150), 1, - anon_sym_DOT, - ACTIONS(5152), 1, - anon_sym_LPAREN, - ACTIONS(5154), 1, - anon_sym_LBRACK, - ACTIONS(5156), 1, anon_sym_QMARK, - ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5160), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5260), 1, - anon_sym_in, - ACTIONS(5262), 1, - anon_sym_BANGin, - STATE(2801), 1, - sym_or_block, - STATE(2802), 1, - sym_argument_list, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(5254), 2, - anon_sym_LT, - anon_sym_GT, - 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(5256), 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, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 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_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [60809] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, + anon_sym_in, + anon_sym_BANGin, + [69856] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3147), 1, + anon_sym_LBRACK, + STATE(2618), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5152), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5154), 1, - anon_sym_LBRACK, - ACTIONS(5156), 1, - anon_sym_QMARK, - ACTIONS(5158), 1, - anon_sym_BANG, - ACTIONS(5160), 1, - anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5252), 1, - anon_sym_CARET, - STATE(2801), 1, - sym_or_block, - STATE(2802), 1, - sym_argument_list, - STATE(4133), 1, - sym_type_parameters, - 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(1941), 16, - anon_sym_as, - anon_sym_LBRACE, + 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_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, - [60889] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, - anon_sym_DOT, - ACTIONS(5152), 1, - anon_sym_LPAREN, - ACTIONS(5154), 1, + [69913] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3001), 1, anon_sym_LBRACK, - ACTIONS(5156), 1, - anon_sym_QMARK, - ACTIONS(5158), 1, - anon_sym_BANG, - ACTIONS(5160), 1, - anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - STATE(2801), 1, - sym_or_block, - STATE(2802), 1, - sym_argument_list, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(5250), 3, + STATE(2619), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3003), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, 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(1881), 6, + 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_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(1941), 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_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, - [60965] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3281), 1, + [69970] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3053), 1, anon_sym_LBRACK, - ACTIONS(3283), 41, + STATE(2620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3055), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246608,7 +257154,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246636,15 +257181,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61015] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3015), 1, + [70027] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3385), 1, anon_sym_LBRACK, - ACTIONS(3017), 41, + STATE(2621), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3387), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246655,7 +257206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246683,15 +257233,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61065] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3414), 1, + [70084] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3005), 1, anon_sym_LBRACK, - ACTIONS(3416), 41, + STATE(2622), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3007), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246702,7 +257258,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246730,15 +257285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61115] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3410), 1, + [70141] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3429), 1, anon_sym_LBRACK, - ACTIONS(3412), 41, + STATE(2623), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246749,7 +257310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246771,21 +257331,245 @@ 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_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [70198] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 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(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5106), 1, + anon_sym_CARET, + ACTIONS(5108), 1, + anon_sym_AMP_AMP, + ACTIONS(5110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5118), 1, + anon_sym_in, + ACTIONS(5120), 1, + anon_sym_BANGin, + ACTIONS(5276), 1, + anon_sym_COMMA, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(3866), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2624), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5096), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [70309] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5264), 1, + anon_sym_CARET, + ACTIONS(5270), 1, + anon_sym_in, + ACTIONS(5272), 1, + anon_sym_BANGin, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2625), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5252), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5256), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5258), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 11, + 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, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [70400] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5264), 1, + anon_sym_CARET, + ACTIONS(5266), 1, + anon_sym_AMP_AMP, + ACTIONS(5270), 1, + anon_sym_in, + ACTIONS(5272), 1, + anon_sym_BANGin, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5260), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2626), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5252), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5256), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5258), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 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_in, - anon_sym_BANGin, - [61165] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2999), 1, - anon_sym_LBRACK, - ACTIONS(3001), 41, + anon_sym_COLON_EQ, + [70493] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2997), 1, + anon_sym_LBRACK, + STATE(2627), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246796,7 +257580,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246824,15 +257607,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61215] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3346), 1, + [70550] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3348), 41, + STATE(2628), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2995), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246843,7 +257632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246871,15 +257659,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61265] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3175), 1, + [70607] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2989), 1, anon_sym_LBRACK, - ACTIONS(3177), 41, + STATE(2629), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2991), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246890,7 +257684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246918,15 +257711,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61315] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3350), 1, + [70664] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(3352), 41, + STATE(2630), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2987), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -246937,7 +257736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -246965,78 +257763,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61365] = 17, + [70721] = 7, ACTIONS(3), 1, - sym_comment, - 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(5236), 1, - anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(2067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5014), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3269), 1, + anon_sym_DOT_DOT, + STATE(2631), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3267), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(3271), 12, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5226), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5230), 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(5228), 5, + ACTIONS(3274), 24, + 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(2065), 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_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, - [61443] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3386), 1, + [70782] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3429), 1, anon_sym_LBRACK, - ACTIONS(3388), 41, + ACTIONS(3433), 1, + anon_sym_DOT, + STATE(2632), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -247045,7 +257843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -247073,15 +257870,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61493] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3179), 1, + [70841] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3425), 1, anon_sym_LBRACK, - ACTIONS(3181), 41, + STATE(2633), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3427), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -247092,7 +257895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -247120,159 +257922,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61543] = 28, + [70898] = 7, ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5236), 1, - anon_sym_CARET, - ACTIONS(5238), 1, - anon_sym_AMP_AMP, - ACTIONS(5240), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5242), 1, - anon_sym_in, - ACTIONS(5244), 1, - anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5232), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1847), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3279), 1, + anon_sym_DOT_DOT, + STATE(2634), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3277), 5, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_COLON_EQ, - ACTIONS(5226), 3, + ACTIONS(3281), 12, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5230), 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(5234), 4, + ACTIONS(3284), 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, - ACTIONS(5228), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [61643] = 28, - ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5236), 1, anon_sym_CARET, - ACTIONS(5238), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5240), 1, anon_sym_PIPE_PIPE, - ACTIONS(5242), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5244), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5232), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1859), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5226), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5230), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5228), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [61743] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3191), 1, + [70959] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2981), 1, anon_sym_LBRACK, - ACTIONS(3193), 41, + STATE(2635), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2983), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -247283,7 +258001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -247311,15 +258028,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61793] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2713), 1, + [71016] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(2715), 41, + STATE(2636), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2953), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -247330,7 +258053,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -247358,76 +258080,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61843] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, + [71073] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2943), 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(5236), 1, - anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(1865), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5014), 2, + STATE(2637), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2945), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5226), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5230), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5228), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1863), 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, - [61921] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3394), 1, + [71130] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2831), 1, anon_sym_LBRACK, - ACTIONS(3396), 41, + STATE(2638), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -247438,7 +258157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -247466,9 +258184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61971] = 21, + [71187] = 19, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -247481,112 +258201,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5236), 1, + ACTIONS(5264), 1, anon_sym_CARET, - ACTIONS(5238), 1, - anon_sym_AMP_AMP, - ACTIONS(5242), 1, - anon_sym_in, - ACTIONS(5244), 1, - anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, + ACTIONS(1875), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5232), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5226), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5230), 3, + STATE(2639), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5252), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5228), 5, + ACTIONS(5256), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 10, + ACTIONS(1873), 17, 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, - [62057] = 20, - ACTIONS(3), 1, - sym_comment, - 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(5236), 1, - anon_sym_CARET, - ACTIONS(5242), 1, - anon_sym_in, - ACTIONS(5244), 1, - anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5232), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5226), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5230), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5228), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1941), 11, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -247594,10 +258247,14 @@ 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_COLON_EQ, - [62141] = 17, + [71272] = 19, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -247610,35 +258267,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5236), 1, + ACTIONS(5264), 1, anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(1881), 2, + ACTIONS(1871), 2, anon_sym_LT, anon_sym_GT, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5226), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5230), 3, + STATE(2640), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5252), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5228), 5, + ACTIONS(5256), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 17, + ACTIONS(1869), 17, anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, @@ -247656,77 +258316,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [62219] = 15, - ACTIONS(3), 1, - sym_comment, - 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(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5230), 3, + [71357] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2939), 1, + anon_sym_LBRACK, + STATE(2641), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2941), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1881), 5, + 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_LT, - anon_sym_GT, - ACTIONS(5228), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1941), 18, - 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, - [62293] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3309), 1, + [71414] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3436), 1, anon_sym_LBRACK, - ACTIONS(3313), 1, - anon_sym_DOT, - ACTIONS(3311), 40, + STATE(2642), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -247735,7 +258393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -247763,15 +258420,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62345] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3211), 1, + [71471] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2977), 1, anon_sym_LBRACK, - ACTIONS(3213), 41, + STATE(2643), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2979), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -247782,7 +258445,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -247810,90 +258472,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62395] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, - anon_sym_DOT, - ACTIONS(5152), 1, - anon_sym_LPAREN, - ACTIONS(5154), 1, + [71528] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3021), 1, anon_sym_LBRACK, - ACTIONS(5156), 1, - anon_sym_QMARK, - ACTIONS(5158), 1, - anon_sym_BANG, - ACTIONS(5160), 1, - anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5204), 1, + STATE(2644), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3023), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(5206), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5208), 1, - anon_sym_DASH_DASH, - ACTIONS(5212), 1, - anon_sym_or, - ACTIONS(5214), 1, - anon_sym_is, - ACTIONS(5216), 1, - anon_sym_BANGis, - ACTIONS(5252), 1, - anon_sym_CARET, - ACTIONS(5258), 1, - anon_sym_AMP_AMP, - ACTIONS(5260), 1, - anon_sym_in, - ACTIONS(5262), 1, - anon_sym_BANGin, - ACTIONS(5264), 1, - anon_sym_LBRACE, - ACTIONS(5266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5268), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5270), 1, - anon_sym_DOT_DOT, - STATE(2801), 1, - sym_or_block, - STATE(2802), 1, - sym_argument_list, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(5254), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5246), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5250), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5256), 4, + 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, - ACTIONS(5248), 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, - [62501] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3183), 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, + [71585] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2911), 1, anon_sym_LBRACK, - ACTIONS(3185), 41, + STATE(2645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2913), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -247904,7 +258549,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -247932,15 +258576,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62551] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3289), 1, + [71642] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2907), 1, anon_sym_LBRACK, - ACTIONS(3291), 41, + STATE(2646), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2909), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -247951,7 +258601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -247979,15 +258628,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62601] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2995), 1, + [71699] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3037), 1, anon_sym_LBRACK, - ACTIONS(2997), 41, + STATE(2647), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3039), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SLASH, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -247998,7 +258653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -248026,77 +258680,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62651] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, + [71756] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3045), 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(5098), 1, - anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(2067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5014), 2, + STATE(2648), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3047), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5084), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2065), 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, - [62729] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2991), 1, + [71813] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2745), 1, anon_sym_LBRACK, - ACTIONS(2993), 41, + ACTIONS(2757), 1, + anon_sym_LBRACE, + STATE(2649), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -248106,7 +258758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -248134,70 +258785,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62779] = 17, - ACTIONS(3), 1, - sym_comment, - 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(5098), 1, - anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(1865), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5014), 2, + [71872] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2835), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5084), 3, + ACTIONS(3147), 1, + anon_sym_LBRACK, + STATE(2650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1863), 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, - [62857] = 21, + [71931] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -248210,231 +258855,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5098), 1, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5264), 1, anon_sym_CARET, - ACTIONS(5100), 1, + ACTIONS(5266), 1, anon_sym_AMP_AMP, - ACTIONS(5110), 1, + ACTIONS(5268), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5270), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5272), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5278), 1, + anon_sym_is, + ACTIONS(5280), 1, + anon_sym_BANGis, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, + ACTIONS(1917), 2, + anon_sym_SEMI, + anon_sym_COMMA, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5260), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5252), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, + ACTIONS(5256), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 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, - [62943] = 20, + [72037] = 31, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5098), 1, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5284), 1, + anon_sym_LBRACE, + ACTIONS(5294), 1, + anon_sym_QMARK, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5110), 1, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(1163), 1, + sym_block, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1941), 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, - [63027] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3285), 1, - anon_sym_LBRACK, - ACTIONS(3287), 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(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5292), 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(5288), 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, - [63077] = 17, + [72145] = 31, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5098), 1, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5306), 1, + anon_sym_QMARK, + STATE(1954), 1, + sym_block, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(1881), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2653), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5086), 5, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 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, - ACTIONS(1941), 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, - [63155] = 15, + [72253] = 32, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, + anon_sym_DOT, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -248445,412 +259085,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1881), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1941), 18, + ACTIONS(5088), 1, 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, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, anon_sym_in, + ACTIONS(5186), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - [63229] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3390), 1, - anon_sym_LBRACK, - ACTIONS(3392), 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(5308), 1, + anon_sym_RBRACK, + ACTIONS(5310), 1, + anon_sym_DOT_DOT, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5174), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2654), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5176), 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(5172), 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, - [63279] = 30, + [72363] = 32, ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, - anon_sym_DOT_DOT, - ACTIONS(5150), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(5152), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5154), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5156), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5158), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5160), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5204), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5206), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5208), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - ACTIONS(5212), 1, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5214), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5216), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5252), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5258), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5260), 1, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5262), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - ACTIONS(5268), 1, - anon_sym_PIPE_PIPE, - STATE(2801), 1, + ACTIONS(5310), 1, + anon_sym_DOT_DOT, + ACTIONS(5312), 1, + anon_sym_RBRACK, + STATE(2412), 1, sym_or_block, - STATE(2802), 1, + STATE(2466), 1, sym_argument_list, - STATE(4133), 1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(1859), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5254), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5246), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5250), 3, + STATE(2655), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5256), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5248), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [63383] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3434), 1, - anon_sym_LBRACK, - ACTIONS(3436), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [72473] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5004), 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(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_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(5014), 1, anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63433] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3450), 1, - anon_sym_LBRACK, - ACTIONS(3452), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5088), 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, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, anon_sym_in, + ACTIONS(5186), 1, anon_sym_BANGin, - [63483] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3368), 1, - anon_sym_LBRACK, - ACTIONS(3370), 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(5310), 1, + anon_sym_DOT_DOT, + ACTIONS(5314), 1, + anon_sym_RBRACK, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5174), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5176), 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(5172), 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, + [72583] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, anon_sym_in, + ACTIONS(5304), 1, anon_sym_BANGin, - [63533] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2647), 1, - anon_sym_LBRACK, - ACTIONS(2651), 1, + ACTIONS(5316), 1, anon_sym_LBRACE, - ACTIONS(2649), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(5318), 1, + anon_sym_QMARK, + STATE(408), 1, + sym_block, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2657), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5292), 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(5288), 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, + [72691] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, anon_sym_in, + ACTIONS(5186), 1, anon_sym_BANGin, - [63585] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_LBRACK, - ACTIONS(3145), 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(5310), 1, + anon_sym_DOT_DOT, + ACTIONS(5320), 1, + anon_sym_RBRACK, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5174), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5176), 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(5172), 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, - [63635] = 28, + [72801] = 32, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, + anon_sym_DOT, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -248861,147 +259474,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, - anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5110), 1, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5310), 1, + anon_sym_DOT_DOT, + ACTIONS(5322), 1, + anon_sym_RBRACK, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1847), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [63735] = 28, + [72911] = 31, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, - anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5110), 1, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5324), 1, + anon_sym_LBRACE, + ACTIONS(5326), 1, + anon_sym_QMARK, + STATE(1309), 1, + sym_block, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1859), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [63835] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3418), 1, + [73019] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3284), 1, anon_sym_LBRACK, - ACTIONS(3420), 41, + STATE(2661), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -249011,7 +259636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -249039,11 +259663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63885] = 30, + [73075] = 32, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_LBRACE, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, + anon_sym_DOT, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -249054,75 +259680,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, - anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5110), 1, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - ACTIONS(5272), 1, - anon_sym_COMMA, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5310), 1, + anon_sym_DOT_DOT, + ACTIONS(5328), 1, + anon_sym_RBRACK, + STATE(2412), 1, sym_or_block, - STATE(3869), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2662), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [63989] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2987), 1, + [73185] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3274), 1, anon_sym_LBRACK, - ACTIONS(2989), 41, + STATE(2663), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3271), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -249132,7 +259765,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, @@ -249160,302 +259792,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64039] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2909), 1, - anon_sym_LBRACK, - ACTIONS(2911), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [73241] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5310), 1, + anon_sym_DOT_DOT, + ACTIONS(5330), 1, + anon_sym_RBRACK, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5174), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2664), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5176), 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(5172), 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, - [64089] = 28, + [73351] = 31, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5236), 1, + ACTIONS(5122), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5238), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5240), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5242), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5244), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5332), 1, + anon_sym_QMARK, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(2503), 1, + sym_block, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5232), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3554), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5226), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5230), 3, + STATE(2665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5234), 4, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5228), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [64189] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3263), 1, + [73459] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(3265), 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(5088), 1, anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5106), 1, + anon_sym_CARET, + ACTIONS(5108), 1, + anon_sym_AMP_AMP, + ACTIONS(5110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5118), 1, + anon_sym_in, + ACTIONS(5120), 1, + anon_sym_BANGin, + ACTIONS(5278), 1, + anon_sym_is, + ACTIONS(5280), 1, + anon_sym_BANGis, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(1917), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2666), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5100), 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(5096), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + [73565] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 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, + ACTIONS(4779), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4781), 1, + anon_sym_as, + ACTIONS(4787), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4789), 1, + anon_sym_DASH_DASH, + ACTIONS(4791), 1, anon_sym_AMP_AMP, + ACTIONS(4793), 1, anon_sym_PIPE_PIPE, + ACTIONS(4795), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4797), 1, anon_sym_is, + ACTIONS(4799), 1, anon_sym_BANGis, + ACTIONS(4801), 1, anon_sym_in, + ACTIONS(4803), 1, anon_sym_BANGin, - [64239] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5336), 1, + anon_sym_COLON, + ACTIONS(5338), 1, + anon_sym_CARET, + ACTIONS(5340), 1, + anon_sym_LT_DASH, + STATE(2109), 1, + sym_argument_list, + STATE(2110), 1, + sym_or_block, + STATE(4378), 1, + sym_type_parameters, + ACTIONS(4765), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(4783), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4763), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4769), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4785), 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(5334), 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, - [64289] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2653), 1, - anon_sym_LBRACK, - ACTIONS(2651), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [73673] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5344), 1, + anon_sym_QMARK, + ACTIONS(5342), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(2668), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 10, + anon_sym_SLASH, 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, - [64339] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACK, - ACTIONS(3253), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3429), 27, 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_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, @@ -249467,231 +260153,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64389] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3273), 1, + anon_sym_COLON_EQ, + [73735] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(3275), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 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, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, anon_sym_in, + ACTIONS(5304), 1, anon_sym_BANGin, - [64439] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2897), 1, - anon_sym_LBRACK, - ACTIONS(2899), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5346), 1, + anon_sym_LBRACE, + ACTIONS(5348), 1, + anon_sym_QMARK, + STATE(2200), 1, + sym_block, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5292), 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(5288), 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, + [73843] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, anon_sym_in, + ACTIONS(5186), 1, anon_sym_BANGin, - [64489] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3247), 1, - anon_sym_LBRACK, - ACTIONS(3249), 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(5310), 1, + anon_sym_DOT_DOT, + ACTIONS(5350), 1, + anon_sym_RBRACK, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5174), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2670), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5176), 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(5172), 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, - [64539] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3232), 1, - anon_sym_LBRACK, - ACTIONS(3227), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3229), 35, + [73953] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5352), 1, + anon_sym_DOLLARelse, + STATE(2671), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2821), 13, + anon_sym_SLASH, 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, - [64591] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(3428), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2819), 27, 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_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, @@ -249703,208 +260361,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64641] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_LBRACK, - ACTIONS(2727), 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, + [74011] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 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(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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5106), 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(5108), 1, anon_sym_AMP_AMP, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5118), 1, anon_sym_in, + ACTIONS(5120), 1, anon_sym_BANGin, - [64691] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3222), 1, - anon_sym_LBRACK, - ACTIONS(3217), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3219), 35, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5354), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2672), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5100), 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(5096), 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, + [74117] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, anon_sym_in, + ACTIONS(5304), 1, anon_sym_BANGin, - [64743] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3027), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5356), 1, + anon_sym_QMARK, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(2675), 1, + sym_block, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, 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_QMARK_DOT, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, + STATE(2673), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 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(5288), 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, + [74225] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, anon_sym_in, + ACTIONS(5304), 1, anon_sym_BANGin, - [64793] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACK, - ACTIONS(3257), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5358), 1, + anon_sym_LBRACE, + ACTIONS(5360), 1, + anon_sym_QMARK, + STATE(1019), 1, + sym_block, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2674), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5292), 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(5288), 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, - [64843] = 5, + [74333] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5274), 1, - anon_sym_else, - STATE(2682), 1, - sym_else_branch, - ACTIONS(2635), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5362), 1, + anon_sym_DOLLARelse, + STATE(2675), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2765), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -249913,7 +260615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2633), 27, + ACTIONS(2763), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -249941,19 +260643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64897] = 5, + [74391] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5274), 1, - anon_sym_else, - STATE(2683), 1, - sym_else_branch, - ACTIONS(2505), 13, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, + anon_sym_LBRACE, + STATE(2676), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -249961,20 +260667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2503), 27, + ACTIONS(2831), 28, + anon_sym_SEMI, + anon_sym_DOT, 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_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -249990,250 +260695,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64951] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3243), 1, + anon_sym_COLON_EQ, + [74451] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(3245), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 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, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5150), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, anon_sym_in, + ACTIONS(5304), 1, anon_sym_BANGin, - [65001] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3097), 1, - anon_sym_LBRACK, - ACTIONS(3099), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5364), 1, + anon_sym_QMARK, + STATE(2339), 1, + sym_block, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2677), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5292), 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(5288), 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, - [65051] = 30, + [74559] = 32, ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - anon_sym_DOT_DOT, - ACTIONS(5150), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(5152), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5154), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5156), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5158), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5160), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5204), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5206), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5208), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - ACTIONS(5212), 1, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5214), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5216), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5252), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5258), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5260), 1, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5262), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - ACTIONS(5268), 1, - anon_sym_PIPE_PIPE, - STATE(2801), 1, + ACTIONS(5310), 1, + anon_sym_DOT_DOT, + ACTIONS(5366), 1, + anon_sym_RBRACK, + STATE(2412), 1, sym_or_block, - STATE(2802), 1, + STATE(2466), 1, sym_argument_list, - STATE(4133), 1, + STATE(4351), 1, sym_type_parameters, - ACTIONS(1847), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5254), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5246), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5250), 3, + STATE(2678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5256), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5248), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65155] = 30, + [74669] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 13, + anon_sym_SLASH, anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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(3239), 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, + [74725] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5180), 1, + ACTIONS(5148), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5276), 1, - anon_sym_RBRACK, - ACTIONS(5278), 1, - anon_sym_DOT_DOT, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5368), 1, + anon_sym_QMARK, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(2882), 1, + sym_block, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5182), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2680), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65258] = 30, + [74833] = 32, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5002), 1, anon_sym_DOT, ACTIONS(5004), 1, @@ -250250,136 +261000,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5180), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5278), 1, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5310), 1, anon_sym_DOT_DOT, - ACTIONS(5280), 1, + ACTIONS(5370), 1, anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5182), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2681), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65361] = 30, + [74943] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 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(5012), 1, anon_sym_LBRACK2, - ACTIONS(5014), 1, - anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5180), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5278), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5372), 1, + anon_sym_QMARK, + STATE(1670), 1, + sym_block, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5182), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2682), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65464] = 28, + [75051] = 32, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5002), 1, + anon_sym_DOT, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -250390,230 +261151,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, - anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5110), 1, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5310), 1, + anon_sym_DOT_DOT, + ACTIONS(5374), 1, + anon_sym_RBRACK, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(3554), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2683), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65563] = 29, + [75161] = 32, ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, - anon_sym_LBRACE, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5294), 1, - anon_sym_QMARK, - ACTIONS(5296), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - STATE(1696), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5310), 1, + anon_sym_DOT_DOT, + ACTIONS(5376), 1, + anon_sym_RBRACK, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65664] = 29, + [75271] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5146), 1, - anon_sym_LBRACE, - ACTIONS(5296), 1, + ACTIONS(5264), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5266), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5268), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5270), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5272), 1, anon_sym_BANGin, - ACTIONS(5306), 1, - anon_sym_QMARK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5378), 1, + anon_sym_is, + ACTIONS(5380), 1, + anon_sym_BANGis, + STATE(2412), 1, sym_or_block, - STATE(2870), 1, - sym_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, + ACTIONS(1917), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5260), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2685), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5252), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5256), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65765] = 6, + [75377] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2764), 1, + sym_type_parameters, + STATE(2686), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 13, + anon_sym_SLASH, anon_sym_DOT, - ACTIONS(5310), 1, - anon_sym_QMARK, - ACTIONS(5308), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(3311), 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(3309), 27, + anon_sym_DOT_DOT, + ACTIONS(2741), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -250624,6 +261401,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, @@ -250640,240 +261418,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [65820] = 30, + [75435] = 32, ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5152), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(5154), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5156), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5158), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5160), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5162), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(5164), 1, + anon_sym_QMARK_DOT, + ACTIONS(5166), 1, anon_sym_POUND_LBRACK, - ACTIONS(5172), 1, - anon_sym_CARET, ACTIONS(5198), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5200), 1, - anon_sym_in, - ACTIONS(5202), 1, - anon_sym_BANGin, - ACTIONS(5204), 1, anon_sym_as, ACTIONS(5206), 1, anon_sym_PLUS_PLUS, ACTIONS(5208), 1, anon_sym_DASH_DASH, ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, - anon_sym_or, - ACTIONS(5214), 1, - anon_sym_is, - ACTIONS(5216), 1, - anon_sym_BANGis, - ACTIONS(5312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5314), 1, - anon_sym_DOT_DOT, - STATE(2801), 1, - sym_or_block, - STATE(2802), 1, - sym_argument_list, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5170), 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(5168), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [65923] = 29, - ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5296), 1, - anon_sym_CARET, - ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5212), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, - anon_sym_in, - ACTIONS(5304), 1, - anon_sym_BANGin, - ACTIONS(5316), 1, - anon_sym_LBRACE, - ACTIONS(5318), 1, - anon_sym_QMARK, - STATE(2171), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5286), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [66024] = 30, - ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, + ACTIONS(5214), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5216), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5218), 1, anon_sym_BANGis, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, + ACTIONS(5220), 1, anon_sym_in, - ACTIONS(5188), 1, + ACTIONS(5222), 1, anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5278), 1, + ACTIONS(5382), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5384), 1, anon_sym_DOT_DOT, - ACTIONS(5320), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2810), 1, sym_or_block, - STATE(4084), 1, + STATE(2811), 1, + sym_argument_list, + STATE(4187), 1, sym_type_parameters, - ACTIONS(5182), 2, + ACTIONS(5202), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2687), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5192), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5194), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5204), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5196), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66127] = 6, + [75545] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5386), 1, anon_sym_LBRACE, - ACTIONS(5324), 1, + ACTIONS(5388), 1, anon_sym_COMMA, - STATE(3893), 1, + STATE(3980), 1, aux_sym_match_expression_list_repeat1, - ACTIONS(3287), 13, + STATE(2688), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -250882,7 +261524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3285), 25, + ACTIONS(3440), 25, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -250908,259 +261550,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66182] = 29, + [75607] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, - anon_sym_or, + anon_sym_DASH_DASH, ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5134), 1, - anon_sym_LBRACE, - ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5108), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5118), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5120), 1, anon_sym_BANGin, - ACTIONS(5326), 1, - anon_sym_QMARK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(2487), 1, - sym_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, + ACTIONS(3550), 2, + anon_sym_LBRACE, + anon_sym_COMMA, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5098), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5100), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5096), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66283] = 30, + [75713] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5180), 1, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5278), 1, - anon_sym_DOT_DOT, - ACTIONS(5328), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5390), 1, + anon_sym_QMARK, + STATE(1949), 1, + sym_block, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5182), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2690), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66386] = 30, + [75821] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5090), 1, + anon_sym_LBRACE, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5180), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5278), 1, - anon_sym_DOT_DOT, - ACTIONS(5330), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5392), 1, + anon_sym_QMARK, + STATE(1807), 1, + sym_block, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5182), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2691), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66489] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3232), 1, - anon_sym_LBRACK, - ACTIONS(3229), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + [75929] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2692), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 13, + anon_sym_SLASH, 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(2745), 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_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, @@ -251172,156 +261830,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66538] = 30, + anon_sym_COLON_EQ, + [75985] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2693), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2941), 13, + anon_sym_SLASH, anon_sym_DOT, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5278), 1, - anon_sym_DOT_DOT, - ACTIONS(5332), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, - anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5184), 4, + anon_sym_DOT_DOT, + ACTIONS(2939), 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(5174), 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, - [66641] = 29, + 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, + [76040] = 30, ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4789), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4791), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(4793), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(4795), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(4797), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(4813), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(4821), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(4823), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(4825), 1, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(4827), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5336), 1, - anon_sym_COLON, - ACTIONS(5338), 1, - anon_sym_CARET, - ACTIONS(5340), 1, - anon_sym_LT_DASH, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, + ACTIONS(5394), 1, + anon_sym_LBRACE, + STATE(2412), 1, sym_or_block, - STATE(4215), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(4785), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4807), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4803), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4805), 3, + STATE(2694), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4809), 4, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5334), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66742] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_DOT, + [76145] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -251332,140 +261971,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5014), 1, - anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5180), 1, + ACTIONS(5398), 1, + anon_sym_RPAREN, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5278), 1, - anon_sym_DOT_DOT, - ACTIONS(5342), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5414), 1, + anon_sym_in, + ACTIONS(5416), 1, + anon_sym_BANGin, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5182), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2695), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5400), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66845] = 28, + [76250] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2696), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3321), 27, anon_sym_as, - ACTIONS(5094), 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(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5236), 1, anon_sym_CARET, - ACTIONS(5238), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5240), 1, anon_sym_PIPE_PIPE, - ACTIONS(5242), 1, - anon_sym_in, - ACTIONS(5244), 1, - anon_sym_BANGin, - ACTIONS(5344), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5346), 1, anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(1931), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(5014), 2, + anon_sym_in, + anon_sym_BANGin, + [76305] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2697), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2757), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5232), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5226), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5230), 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(5234), 4, + anon_sym_DOT_DOT, + ACTIONS(2759), 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(5228), 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, - [66944] = 30, + 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, + [76360] = 30, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -251476,67 +262146,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5014), 1, - anon_sym_QMARK_DOT, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5180), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5278), 1, - anon_sym_DOT_DOT, - ACTIONS(5348), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5418), 1, + anon_sym_LBRACE, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(5182), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2698), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67047] = 28, + [76465] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -251549,65 +262223,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5236), 1, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5238), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5240), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5242), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5244), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5350), 1, - anon_sym_is, - ACTIONS(5352), 1, - anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5354), 1, + anon_sym_LBRACE, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(1931), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5232), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5226), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5230), 3, + STATE(2699), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5234), 4, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5228), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67146] = 28, + [76570] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1929), 1, + anon_sym_LBRACE, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -251620,74 +262300,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - ACTIONS(5098), 1, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5100), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5102), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5110), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5344), 1, - anon_sym_is, - ACTIONS(5346), 1, - anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(1931), 2, - anon_sym_LBRACE, - anon_sym_COMMA, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2700), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67245] = 5, + [76675] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(3410), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 2, anon_sym_LBRACE, - ACTIONS(2727), 11, + anon_sym_COMMA, + STATE(2701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -251695,22 +262379,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2725), 28, - anon_sym_SEMI, + ACTIONS(3239), 27, 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_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, @@ -251723,177 +262407,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [67298] = 28, + [76732] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2702), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3055), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3053), 27, anon_sym_as, - ACTIONS(5094), 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(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5098), 1, anon_sym_CARET, - ACTIONS(5100), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5102), 1, anon_sym_PIPE_PIPE, - ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5106), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5110), 1, anon_sym_in, - ACTIONS(5112), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + [76787] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2703), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3047), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5354), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5088), 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(5092), 4, + anon_sym_DOT_DOT, + ACTIONS(3045), 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(5086), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67397] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(5010), 1, - anon_sym_BANG, - ACTIONS(5012), 1, - anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5298), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5356), 1, - anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_QMARK, - STATE(1015), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + [76842] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2704), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2987), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5288), 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(5292), 4, + anon_sym_DOT_DOT, + ACTIONS(2985), 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(5286), 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, - [67498] = 29, + 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, + [76897] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1935), 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(5012), 1, anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5128), 1, - anon_sym_LBRACE, ACTIONS(5296), 1, anon_sym_CARET, ACTIONS(5298), 1, @@ -251904,15 +262598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5360), 1, - anon_sym_QMARK, - STATE(1942), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, @@ -251920,49 +262610,129 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2705), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67599] = 29, + [77002] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_RPAREN, + ACTIONS(5424), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5426), 1, + anon_sym_mut, + ACTIONS(5428), 1, + anon_sym_BANG, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5434), 1, + anon_sym_shared, + STATE(3071), 1, + sym_mutability_modifiers, + STATE(3926), 1, + sym_type_parameter_declaration, + STATE(3927), 1, + sym_parameter_declaration, + STATE(4311), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2706), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [77103] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, ACTIONS(5296), 1, anon_sym_CARET, @@ -251974,17 +262744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5362), 1, + ACTIONS(5436), 1, anon_sym_LBRACE, - ACTIONS(5364), 1, - anon_sym_QMARK, - STATE(1310), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, @@ -251992,36 +262758,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67700] = 4, + [77208] = 5, ACTIONS(3), 1, - sym_comment, - STATE(2724), 1, - sym_type_parameters, - ACTIONS(2715), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2708), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3031), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -252030,7 +262802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2713), 27, + ACTIONS(3029), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252058,17 +262830,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67751] = 4, + [77263] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5366), 1, - anon_sym_DOLLARelse, - ACTIONS(2643), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2709), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3257), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -252077,7 +262852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2641), 27, + ACTIONS(3255), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252105,15 +262880,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67802] = 3, + [77318] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2710), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3261), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -252122,7 +262902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2647), 28, + ACTIONS(3259), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252150,162 +262930,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [67851] = 29, + [77373] = 5, ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5296), 1, - anon_sym_CARET, - ACTIONS(5298), 1, - anon_sym_AMP_AMP, - ACTIONS(5300), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, - anon_sym_in, - ACTIONS(5304), 1, - anon_sym_BANGin, - ACTIONS(5368), 1, - anon_sym_QMARK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(2653), 1, - sym_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3265), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5288), 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(5292), 4, + anon_sym_DOT_DOT, + ACTIONS(3263), 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(5286), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67952] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(5010), 1, - anon_sym_BANG, - ACTIONS(5012), 1, - anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5148), 1, - anon_sym_LBRACE, - ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5298), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5370), 1, - anon_sym_QMARK, - STATE(1809), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5286), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68053] = 4, + [77428] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5372), 1, - anon_sym_DOLLARelse, - ACTIONS(2873), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3153), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -252314,7 +263002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2871), 27, + ACTIONS(3151), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252342,41 +263030,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68104] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3222), 1, - anon_sym_LBRACK, - ACTIONS(3219), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + [77483] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2713), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3157), 13, + anon_sym_SLASH, 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(3155), 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, @@ -252388,159 +263080,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68153] = 29, + [77538] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5296), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5376), 1, - anon_sym_QMARK, - STATE(393), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5438), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2714), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68254] = 29, + [77643] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5132), 1, - anon_sym_LBRACE, - ACTIONS(5296), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5378), 1, - anon_sym_QMARK, - STATE(1940), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5440), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2715), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68355] = 3, + [77748] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3201), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3199), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -252549,7 +263252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3199), 28, + ACTIONS(3197), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252577,384 +263280,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [68404] = 30, + [77803] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2717), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3203), 13, + anon_sym_SLASH, anon_sym_DOT, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5278), 1, - anon_sym_DOT_DOT, - ACTIONS(5380), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, - anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5184), 4, + anon_sym_DOT_DOT, + ACTIONS(3201), 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(5174), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68507] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_DOT, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, + anon_sym_DOT_DOT_DOT, 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5278), 1, - anon_sym_DOT_DOT, - ACTIONS(5382), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5184), 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, - [68610] = 30, - ACTIONS(3), 1, - sym_comment, - 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, anon_sym_is, - ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5278), 1, - anon_sym_DOT_DOT, - ACTIONS(5384), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5184), 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, - [68713] = 29, + [77858] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, 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(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5296), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5386), 1, - anon_sym_LBRACE, - ACTIONS(5388), 1, - anon_sym_QMARK, - STATE(1157), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5442), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2718), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68814] = 29, + [77963] = 5, ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5296), 1, - anon_sym_CARET, - ACTIONS(5298), 1, - anon_sym_AMP_AMP, - ACTIONS(5300), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, - anon_sym_in, - ACTIONS(5304), 1, - anon_sym_BANGin, - ACTIONS(5390), 1, - anon_sym_QMARK, - STATE(2320), 1, - sym_block, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2719), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3207), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5288), 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(5292), 4, + anon_sym_DOT_DOT, + ACTIONS(3205), 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(5286), 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, - [68915] = 5, + 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, + [78018] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3313), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2720), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3213), 13, + anon_sym_SLASH, anon_sym_DOT, - ACTIONS(3951), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -252962,8 +263476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + anon_sym_DOT_DOT, + ACTIONS(3211), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -252971,6 +263488,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, @@ -252987,16 +263505,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [68967] = 3, + [78073] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2721), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3221), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -253005,7 +263527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3446), 27, + ACTIONS(3219), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253033,9 +263555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69015] = 28, + [78128] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -253048,202 +263572,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5392), 1, - anon_sym_RPAREN, - ACTIONS(5404), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5444), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69113] = 28, + [78233] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2723), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3436), 27, anon_sym_as, - ACTIONS(5094), 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(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5406), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5414), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + [78288] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2724), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 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(5402), 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(5396), 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, - [69211] = 17, - ACTIONS(3), 1, - sym_comment, - 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(5404), 1, - anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(2067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5014), 2, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [78343] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2725), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3403), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 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(5396), 5, + anon_sym_DOT_DOT, + ACTIONS(3401), 27, + anon_sym_as, + anon_sym_LBRACE, + 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(2065), 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, - [69287] = 5, + [78398] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5416), 1, - anon_sym_else, - STATE(2897), 1, - sym_else_branch, - ACTIONS(2635), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2726), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3391), 13, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -253251,9 +263801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2633), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3389), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -253261,12 +263813,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, @@ -253279,15 +263830,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69339] = 3, + [78453] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3279), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2727), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -253296,7 +263852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3277), 27, + ACTIONS(3287), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253324,142 +263880,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69387] = 17, + [78508] = 5, ACTIONS(3), 1, - sym_comment, - 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(5404), 1, - anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(1865), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5014), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2728), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 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(5396), 5, + anon_sym_DOT_DOT, + ACTIONS(3291), 27, + anon_sym_as, + anon_sym_LBRACE, + 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(1863), 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, - [69463] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5418), 1, - sym_identifier, - ACTIONS(5420), 1, - anon_sym_RPAREN, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5424), 1, - anon_sym_mut, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5428), 1, - anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, - ACTIONS(5432), 1, - anon_sym_shared, - STATE(3017), 1, - sym_mutability_modifiers, - STATE(3891), 1, - sym_type_parameter_declaration, - STATE(3892), 1, - sym_parameter_declaration, - STATE(4183), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [69557] = 3, + [78563] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2729), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3327), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -253468,7 +263952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3015), 27, + ACTIONS(3325), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253496,9 +263980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69605] = 28, + [78618] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -253511,138 +263997,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5434), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5446), 1, + anon_sym_LBRACE, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2730), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69703] = 26, + [78723] = 30, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5418), 1, - sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5424), 1, - anon_sym_mut, - ACTIONS(5426), 1, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, - ACTIONS(5432), 1, - anon_sym_shared, - ACTIONS(5436), 1, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5408), 1, + anon_sym_CARET, + ACTIONS(5410), 1, + anon_sym_AMP_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5414), 1, + anon_sym_in, + ACTIONS(5416), 1, + anon_sym_BANGin, + ACTIONS(5448), 1, anon_sym_RPAREN, - STATE(3017), 1, - sym_mutability_modifiers, - STATE(3922), 1, - sym_parameter_declaration, - STATE(3925), 1, - sym_type_parameter_declaration, - STATE(4183), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [69797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 13, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5404), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2731), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5400), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5406), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5402), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [78828] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2732), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3339), 13, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -253651,7 +264152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3055), 27, + ACTIONS(3337), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253679,15 +264180,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69845] = 3, + [78883] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2733), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -253696,7 +264202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3059), 27, + ACTIONS(3341), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253710,92 +264216,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69893] = 21, - ACTIONS(3), 1, - sym_comment, - 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(5404), 1, - anon_sym_CARET, - ACTIONS(5406), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_in, - ACTIONS(5412), 1, - anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5402), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5396), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 8, - 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_is, anon_sym_BANGis, - [69977] = 3, + anon_sym_in, + anon_sym_BANGin, + [78938] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3347), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -253804,7 +264252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3089), 27, + ACTIONS(3345), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253832,15 +264280,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70025] = 3, + [78993] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3095), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2735), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3351), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -253849,7 +264302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3093), 27, + ACTIONS(3349), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253877,15 +264330,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70073] = 3, + [79048] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3103), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2736), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3363), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -253894,7 +264352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3101), 27, + ACTIONS(3361), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253922,15 +264380,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70121] = 3, + [79103] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2737), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3367), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -253939,7 +264402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3127), 27, + ACTIONS(3365), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253967,15 +264430,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70169] = 3, + [79158] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2738), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3253), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -253984,7 +264452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3139), 27, + ACTIONS(3251), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254012,213 +264480,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70217] = 28, + [79213] = 5, ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_SEMI, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2739), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3395), 13, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 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, - [70315] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5404), 1, - anon_sym_CARET, - ACTIONS(5410), 1, - anon_sym_in, - ACTIONS(5412), 1, - anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, - anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + anon_sym_DOT_DOT, + ACTIONS(3393), 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(5396), 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(1941), 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_is, - anon_sym_BANGis, - [70397] = 28, - ACTIONS(3), 1, - sym_comment, - 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_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, anon_sym_is, - ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5404), 1, - anon_sym_CARET, - ACTIONS(5406), 1, - anon_sym_AMP_AMP, - ACTIONS(5408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5440), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + [79268] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2740), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3399), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 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(5402), 4, + 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, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 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, - [70495] = 28, + 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, + [79323] = 30, ACTIONS(3), 1, - sym_comment, - ACTIONS(3582), 1, - anon_sym_LBRACE, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -254231,62 +264597,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5296), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5450), 1, + anon_sym_SEMI, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2741), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70593] = 28, + [79428] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -254299,207 +264672,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5296), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5442), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5452), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2742), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5286), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3237), 13, - anon_sym_DOT, + ACTIONS(5400), 3, 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(3235), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5406), 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, - [70739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 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(3239), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5402), 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, - [70787] = 26, + [79533] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5418), 1, + ACTIONS(5420), 1, sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(5424), 1, - anon_sym_mut, + anon_sym_DOT_DOT_DOT, ACTIONS(5426), 1, - anon_sym_BANG, + anon_sym_mut, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5434), 1, anon_sym_shared, - ACTIONS(5444), 1, + ACTIONS(5454), 1, anon_sym_RPAREN, - STATE(3017), 1, + STATE(3071), 1, sym_mutability_modifiers, - STATE(4001), 1, + STATE(3884), 1, sym_parameter_declaration, - STATE(4002), 1, + STATE(3885), 1, sym_type_parameter_declaration, - STATE(4183), 1, + STATE(4311), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2743), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -254512,9 +264803,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [70881] = 28, + [79634] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -254527,205 +264820,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5446), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5456), 1, + anon_sym_LBRACE, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2744), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70979] = 3, + [79739] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 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_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3293), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + 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(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, anon_sym_LPAREN, + ACTIONS(3618), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5424), 1, 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, - [71027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 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(5426), 1, + anon_sym_mut, + ACTIONS(5428), 1, anon_sym_BANG, + ACTIONS(5430), 1, anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3297), 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, - [71075] = 3, + ACTIONS(5434), 1, + anon_sym_shared, + ACTIONS(5458), 1, + anon_sym_RPAREN, + STATE(3071), 1, + sym_mutability_modifiers, + STATE(4005), 1, + sym_parameter_declaration, + STATE(4006), 1, + sym_type_parameter_declaration, + STATE(4311), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2745), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [79840] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2746), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2975), 13, 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(3301), 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, - [71123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3307), 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, @@ -254734,7 +264973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3305), 27, + ACTIONS(2973), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254762,15 +265001,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71171] = 3, + [79895] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3318), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2747), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -254779,7 +265023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3316), 27, + ACTIONS(2741), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254807,15 +265051,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71219] = 3, + [79950] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2748), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -254824,7 +265073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3320), 27, + ACTIONS(2831), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254852,9 +265101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71267] = 28, + [80005] = 19, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -254867,207 +265118,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5406), 1, - anon_sym_AMP_AMP, - ACTIONS(5408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, - anon_sym_in, - ACTIONS(5412), 1, - anon_sym_BANGin, - ACTIONS(5448), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, + ACTIONS(1871), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5396), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3366), 13, - anon_sym_DOT, + ACTIONS(5286), 3, 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(3364), 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, - [71413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 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(3372), 27, + ACTIONS(1869), 15, 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, - [71461] = 26, + [80088] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5418), 1, + ACTIONS(5420), 1, sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(5424), 1, - anon_sym_mut, + anon_sym_DOT_DOT_DOT, ACTIONS(5426), 1, - anon_sym_BANG, + anon_sym_mut, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5434), 1, anon_sym_shared, - ACTIONS(5450), 1, + ACTIONS(5460), 1, anon_sym_RPAREN, - STATE(3017), 1, + STATE(3071), 1, sym_mutability_modifiers, - STATE(4030), 1, - sym_parameter_declaration, - STATE(4032), 1, + STATE(4078), 1, sym_type_parameter_declaration, - STATE(4183), 1, + STATE(4079), 1, + sym_parameter_declaration, + STATE(4311), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2750), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -255080,85 +265238,20 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [71555] = 28, - ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5452), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, + [80189] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2751), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3249), 13, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5184), 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, - [71653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3396), 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, @@ -255167,7 +265260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3394), 27, + ACTIONS(3247), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255195,15 +265288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71701] = 3, + [80244] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2752), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2949), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -255212,7 +265310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2713), 27, + ACTIONS(2947), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255240,15 +265338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71749] = 3, + [80299] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2753), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3245), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -255257,7 +265360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2725), 27, + ACTIONS(3243), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255285,15 +265388,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71797] = 3, + [80354] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2754), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3191), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -255302,7 +265410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3195), 27, + ACTIONS(3189), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255330,99 +265438,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71845] = 3, + [80409] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 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_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3183), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + 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(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, anon_sym_LPAREN, + ACTIONS(3618), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5424), 1, 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, - [71893] = 3, - ACTIONS(3), 1, - sym_comment, - 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, + ACTIONS(5426), 1, + anon_sym_mut, + ACTIONS(5428), 1, anon_sym_BANG, + ACTIONS(5430), 1, anon_sym_LBRACK2, + ACTIONS(5432), 1, 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, - 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, - [71941] = 28, + ACTIONS(5434), 1, + anon_sym_shared, + ACTIONS(5462), 1, + sym_identifier, + ACTIONS(5464), 1, + anon_sym_RPAREN, + STATE(3040), 1, + sym_mutability_modifiers, + STATE(3973), 1, + sym_type_parameter_declaration, + STATE(3978), 1, + sym_parameter_declaration, + STATE(4311), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2755), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [80510] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -255435,70 +265528,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5180), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5454), 1, - anon_sym_SEMI, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5466), 1, + anon_sym_LBRACE, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5182), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72039] = 3, + [80615] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2757), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3011), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -255507,7 +265608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3171), 27, + ACTIONS(3009), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255535,9 +265636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72087] = 17, + [80670] = 19, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -255550,37 +265653,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5404), 1, + ACTIONS(5296), 1, anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(1881), 2, + ACTIONS(1875), 2, anon_sym_LT, anon_sym_GT, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2758), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5396), 5, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 15, + ACTIONS(1873), 15, anon_sym_as, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -255594,85 +265700,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72163] = 28, + [80753] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3187), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3185), 27, anon_sym_as, - ACTIONS(5094), 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(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5406), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5456), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + [80808] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2760), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3027), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 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(5402), 4, + anon_sym_DOT_DOT, + ACTIONS(3025), 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(5396), 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, - [72261] = 3, + 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, + [80863] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3356), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2761), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3035), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -255681,7 +265822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3354), 27, + ACTIONS(3033), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255709,140 +265850,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72309] = 26, + [80918] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5418), 1, - sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5424), 1, - anon_sym_mut, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5428), 1, - anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, - ACTIONS(5432), 1, - anon_sym_shared, - ACTIONS(5458), 1, - anon_sym_RPAREN, - STATE(3017), 1, - sym_mutability_modifiers, - STATE(3980), 1, - sym_type_parameter_declaration, - STATE(3981), 1, - sym_parameter_declaration, - STATE(4183), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [72403] = 15, - ACTIONS(3), 1, - sym_comment, - 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(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5398), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2762), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3043), 13, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1881), 5, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 5, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3041), 27, + anon_sym_as, + anon_sym_LBRACE, + 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(1941), 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, - [72475] = 3, + [80973] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3340), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2763), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3051), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -255851,7 +265922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3338), 27, + ACTIONS(3049), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255879,15 +265950,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72523] = 3, + [81028] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3427), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -255896,7 +265972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3334), 27, + ACTIONS(3425), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255924,15 +266000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72571] = 3, + [81083] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3332), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2765), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3141), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -255941,7 +266022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3330), 27, + ACTIONS(3139), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255969,15 +266050,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72619] = 3, + [81138] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3328), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3137), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -255986,7 +266072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3326), 27, + ACTIONS(3135), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256014,15 +266100,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72667] = 3, + [81193] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3370), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2767), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3133), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256031,7 +266122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3368), 27, + ACTIONS(3131), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256059,155 +266150,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72715] = 28, + [81248] = 5, ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5296), 1, - anon_sym_CARET, - ACTIONS(5298), 1, - anon_sym_AMP_AMP, - ACTIONS(5300), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, - anon_sym_in, - ACTIONS(5304), 1, - anon_sym_BANGin, - ACTIONS(5460), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2768), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3007), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5288), 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(5292), 4, + anon_sym_DOT_DOT, + ACTIONS(3005), 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(5286), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [72813] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, + anon_sym_DOT_DOT_DOT, 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5406), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5462), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + [81303] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2769), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3179), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 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(5402), 4, + anon_sym_DOT_DOT, + ACTIONS(3177), 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(5396), 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, - [72911] = 3, + 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, + [81358] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3275), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2770), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3183), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256216,7 +266272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3273), 27, + ACTIONS(3181), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256244,15 +266300,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72959] = 3, + [81413] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3257), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2771), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3195), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256261,7 +266322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3255), 27, + ACTIONS(3193), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256289,15 +266350,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73007] = 3, + [81468] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3245), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2772), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3217), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256306,7 +266372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3243), 27, + ACTIONS(3215), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256334,15 +266400,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73055] = 3, + [81523] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2773), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3225), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256351,7 +266422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3211), 27, + ACTIONS(3223), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256379,15 +266450,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73103] = 3, + [81578] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2774), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2995), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256396,7 +266472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3203), 27, + ACTIONS(2993), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256424,15 +266500,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73151] = 3, + [81633] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2775), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3233), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256441,7 +266522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3191), 27, + ACTIONS(3231), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256469,83 +266550,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73199] = 26, + [81688] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5418), 1, - sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5424), 1, - anon_sym_mut, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5428), 1, - anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, - ACTIONS(5432), 1, - anon_sym_shared, - ACTIONS(5464), 1, - anon_sym_RPAREN, - STATE(3017), 1, - sym_mutability_modifiers, - STATE(3856), 1, - sym_parameter_declaration, - STATE(3857), 1, - sym_type_parameter_declaration, - STATE(4183), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [73293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2776), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2991), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256554,7 +266572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3179), 27, + ACTIONS(2989), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256582,83 +266600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73341] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5418), 1, - sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5424), 1, - anon_sym_mut, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5428), 1, - anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, - ACTIONS(5432), 1, - anon_sym_shared, - ACTIONS(5466), 1, - anon_sym_RPAREN, - STATE(3017), 1, - sym_mutability_modifiers, - STATE(3873), 1, - sym_type_parameter_declaration, - STATE(3874), 1, - sym_parameter_declaration, - STATE(4183), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [73435] = 3, + [81743] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2777), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3237), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256667,7 +266622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3175), 27, + ACTIONS(3235), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256695,18 +266650,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73483] = 5, + [81798] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5416), 1, - anon_sym_else, - STATE(2895), 1, - sym_else_branch, - ACTIONS(2505), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3433), 1, + anon_sym_DOT, + STATE(2778), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 12, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256714,9 +266672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2503), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3429), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -256724,12 +266684,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, @@ -256742,15 +266701,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73535] = 3, + [81855] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3087), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2779), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2953), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256759,7 +266723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3085), 27, + ACTIONS(2951), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256787,9 +266751,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73583] = 28, + [81910] = 23, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -256802,70 +266768,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5468), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2780), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73681] = 3, + ACTIONS(1877), 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, + [82001] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3362), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2781), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2945), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256874,7 +266841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3360), 27, + ACTIONS(2943), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256902,15 +266869,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73729] = 3, + [82056] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3412), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2782), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256919,7 +266891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3410), 27, + ACTIONS(3147), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256947,15 +266919,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73777] = 3, + [82111] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3416), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2783), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3419), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -256964,7 +266941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3414), 27, + ACTIONS(3417), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256992,15 +266969,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73825] = 3, + [82166] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2784), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3297), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257009,7 +266991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3011), 27, + ACTIONS(3295), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257037,15 +267019,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73873] = 3, + [82221] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3083), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5296), 1, + anon_sym_CARET, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2785), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5292), 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, + ACTIONS(1877), 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, + [82310] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2786), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2913), 13, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257054,7 +267108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3081), 27, + ACTIONS(2911), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257082,15 +267136,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73921] = 3, + [82365] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3404), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2787), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3331), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257099,7 +267158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3402), 27, + ACTIONS(3329), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257127,15 +267186,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73969] = 3, + [82420] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2788), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3335), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257144,7 +267208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2983), 27, + ACTIONS(3333), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257172,15 +267236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74017] = 3, + [82475] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2789), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3229), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257189,7 +267258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2979), 27, + ACTIONS(3227), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257217,15 +267286,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74065] = 3, + [82530] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2790), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3355), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + 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, + 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, + [82585] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2791), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3415), 13, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257234,7 +267358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3143), 27, + ACTIONS(3413), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257262,15 +267386,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74113] = 3, + [82640] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2909), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257279,7 +267408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2913), 27, + ACTIONS(2907), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257307,15 +267436,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74161] = 3, + [82695] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3424), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3039), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257324,7 +267458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3422), 27, + ACTIONS(3037), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257352,15 +267486,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74209] = 3, + [82750] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2794), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3375), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257369,7 +267508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3051), 27, + ACTIONS(3373), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257397,9 +267536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74257] = 28, + [82805] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -257412,17 +267553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, ACTIONS(5296), 1, anon_sym_CARET, @@ -257434,13 +267575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5470), 1, + ACTIONS(5468), 1, anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, @@ -257448,79 +267589,41 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74355] = 3, + [82910] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2796), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 11, 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(2905), 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, - [74403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 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, @@ -257528,11 +267631,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3047), 27, + ACTIONS(2745), 29, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257540,11 +267641,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, @@ -257553,89 +267655,26 @@ 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, - [74451] = 28, + [82965] = 5, ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5336), 1, - anon_sym_COLON, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2797), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3411), 13, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5184), 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, - [74549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 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, @@ -257644,7 +267683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3430), 27, + ACTIONS(3409), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257672,17 +267711,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74597] = 4, + [83020] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3201), 11, + STATE(2798), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257690,9 +267733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3199), 27, + ACTIONS(3239), 28, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257701,11 +267746,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, @@ -257718,16 +267761,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74647] = 4, + anon_sym_COLON_EQ, + [83077] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, anon_sym_LBRACE, - ACTIONS(2649), 11, + STATE(2799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257735,7 +267784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2647), 28, + ACTIONS(2745), 28, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -257764,24 +267813,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [74697] = 3, + [83134] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5470), 1, + anon_sym_BANG, + STATE(2800), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3309), 12, + anon_sym_SLASH, 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(2999), 27, + ACTIONS(3307), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257809,15 +267864,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74745] = 3, + [83191] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3444), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2801), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3423), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -257826,7 +267886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3442), 27, + ACTIONS(3421), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257854,9 +267914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74793] = 28, + [83246] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -257869,154 +267931,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5416), 1, anon_sym_BANGin, ACTIONS(5472), 1, anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2802), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74891] = 3, + [83351] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 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_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5296), 1, + anon_sym_CARET, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(1879), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2803), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2995), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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, - [74939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3408), 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(3406), 27, + ACTIONS(1877), 15, 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, - [74987] = 28, + [83434] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -258029,70 +268070,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5304), 1, anon_sym_BANGin, ACTIONS(5474), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + anon_sym_LBRACE, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75085] = 3, + [83539] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2805), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -258101,7 +268150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2991), 27, + ACTIONS(3369), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258129,54 +268178,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75133] = 3, + [83594] = 30, ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1917), 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(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5278), 1, + anon_sym_is, + ACTIONS(5280), 1, + anon_sym_BANGis, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2806), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5292), 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, + [83699] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2987), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(1879), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 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, - [75181] = 28, + [83778] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -258189,17 +268332,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, ACTIONS(5296), 1, anon_sym_CARET, @@ -258213,11 +268356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, ACTIONS(5476), 1, anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, @@ -258225,36 +268368,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2808), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75279] = 4, + [83883] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(2649), 11, + STATE(2809), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -258262,7 +268413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2647), 27, + ACTIONS(2745), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -258290,85 +268441,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75329] = 28, + [83940] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_RPAREN, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5404), 1, - anon_sym_CARET, - ACTIONS(5406), 1, - anon_sym_AMP_AMP, - ACTIONS(5408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, - anon_sym_in, - ACTIONS(5412), 1, - anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2810), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2979), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 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(5402), 4, + anon_sym_DOT_DOT, + ACTIONS(2977), 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(5396), 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, - [75427] = 3, + 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, + [83995] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3023), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -258377,7 +268513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2909), 27, + ACTIONS(3021), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258405,15 +268541,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75475] = 3, + [84050] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2903), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2812), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2983), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -258422,7 +268563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2901), 27, + ACTIONS(2981), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258450,15 +268591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75523] = 3, + [84105] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2899), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2813), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -258467,7 +268613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2897), 27, + ACTIONS(2997), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258495,18 +268641,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75571] = 4, + [84160] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5478), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3287), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3003), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -258515,8 +268663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3285), 25, + ACTIONS(3001), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258541,85 +268691,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75621] = 28, + [84215] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4789), 1, - anon_sym_LBRACK, - ACTIONS(4791), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5478), 1, + anon_sym_else, + STATE(2926), 1, + sym_else_branch, + STATE(2815), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(4797), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2447), 27, + anon_sym_DOT, anon_sym_as, - ACTIONS(4811), 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_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(4813), 1, anon_sym_DASH_DASH, - ACTIONS(4815), 1, + anon_sym_CARET, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, anon_sym_or, - ACTIONS(4821), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4823), 1, anon_sym_BANGis, - ACTIONS(4825), 1, anon_sym_in, - ACTIONS(4827), 1, anon_sym_BANGin, - ACTIONS(5338), 1, - anon_sym_CARET, - ACTIONS(5340), 1, - anon_sym_LT_DASH, - STATE(2074), 1, - sym_argument_list, - STATE(2075), 1, - sym_or_block, - STATE(4215), 1, - sym_type_parameters, - ACTIONS(4785), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4807), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4803), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4805), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4809), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5334), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [75719] = 3, + [84274] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3428), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3015), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -258628,7 +268765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3426), 27, + ACTIONS(3013), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258656,15 +268793,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75767] = 3, + [84329] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3099), 13, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5478), 1, + anon_sym_else, + STATE(2925), 1, + sym_else_branch, + STATE(2817), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2457), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -258672,11 +268817,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3097), 27, + ACTIONS(2455), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258684,11 +268827,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, @@ -258701,15 +268845,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75815] = 3, + [84388] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3133), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3059), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -258718,7 +268867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3131), 27, + ACTIONS(3057), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258746,14 +268895,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75863] = 3, + [84443] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2819), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3125), 13, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -258761,9 +268916,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2647), 29, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3123), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258771,12 +268928,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, @@ -258785,22 +268941,24 @@ 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, - [75911] = 4, + [84498] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 1, - anon_sym_LBRACE, - ACTIONS(3201), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3129), 13, + anon_sym_SLASH, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -258808,10 +268966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3199), 28, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3127), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -258820,6 +268978,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, @@ -258836,10 +268995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [75961] = 15, + [84553] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -258852,51 +269012,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5408), 1, + anon_sym_CARET, + ACTIONS(5410), 1, + anon_sym_AMP_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5414), 1, + anon_sym_in, + ACTIONS(5416), 1, + anon_sym_BANGin, + ACTIONS(5480), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5288), 3, + ACTIONS(5404), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1881), 5, + ACTIONS(5400), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5286), 5, + ACTIONS(5406), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 16, + [84658] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5408), 1, + anon_sym_CARET, + ACTIONS(5410), 1, + anon_sym_AMP_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5414), 1, anon_sym_in, + ACTIONS(5416), 1, anon_sym_BANGin, - [76033] = 17, + ACTIONS(5482), 1, + anon_sym_RPAREN, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5404), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5402), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [84763] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -258909,53 +269162,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, ACTIONS(5296), 1, anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5484), 1, + anon_sym_LBRACE, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(1881), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2823), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 5, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 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, - ACTIONS(1941), 15, + [84868] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2829), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2827), 29, + anon_sym_DOT, 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_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_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76109] = 28, + [84923] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -258968,17 +269287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, ACTIONS(5296), 1, anon_sym_CARET, @@ -258990,13 +269309,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5480), 1, + ACTIONS(5486), 1, anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, @@ -259004,81 +269323,189 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, + STATE(2825), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5288), 3, + ACTIONS(5292), 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, + [85028] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2826), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3387), 13, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + anon_sym_DOT_DOT, + ACTIONS(3385), 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(5286), 5, + 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, + [85083] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2827), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3319), 13, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + 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(3317), 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, - [76207] = 26, + 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, + [85138] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5418), 1, + ACTIONS(5420), 1, sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(5424), 1, - anon_sym_mut, + anon_sym_DOT_DOT_DOT, ACTIONS(5426), 1, - anon_sym_BANG, + anon_sym_mut, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5434), 1, anon_sym_shared, - ACTIONS(5482), 1, + ACTIONS(5488), 1, anon_sym_RPAREN, - STATE(3017), 1, + STATE(3071), 1, sym_mutability_modifiers, - STATE(3902), 1, - sym_parameter_declaration, - STATE(3903), 1, + STATE(3867), 1, sym_type_parameter_declaration, - STATE(4183), 1, + STATE(3878), 1, + sym_parameter_declaration, + STATE(4311), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2828), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -259091,25 +269518,80 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [76301] = 4, + [85239] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5484), 1, - anon_sym_BANG, - ACTIONS(3269), 12, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_COMMA, + STATE(2829), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + 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, + [85296] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2830), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3407), 13, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, 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(3267), 27, + ACTIONS(3405), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259137,9 +269619,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76351] = 28, + [85351] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -259152,64 +269636,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - ACTIONS(5486), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5490), 1, + anon_sym_SEMI, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2831), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76449] = 20, + [85456] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -259222,56 +269711,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5296), 1, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5302), 1, + ACTIONS(5410), 1, + anon_sym_AMP_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5492), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2832), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 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, - [76531] = 21, + [85561] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -259284,63 +269786,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5296), 1, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5302), 1, + ACTIONS(5412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5494), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2833), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1941), 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, - [76615] = 3, + [85666] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3189), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2834), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -259349,7 +269866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3187), 27, + ACTIONS(3429), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259377,9 +269894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76663] = 28, + [85721] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -259392,64 +269911,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - ACTIONS(5488), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5496), 1, + anon_sym_RBRACK, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2835), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76761] = 17, + [85826] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -259462,127 +269986,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5296), 1, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5114), 1, + anon_sym_is, + ACTIONS(5116), 1, + anon_sym_BANGis, + ACTIONS(5408), 1, anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5410), 1, + anon_sym_AMP_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5414), 1, + anon_sym_in, + ACTIONS(5416), 1, + anon_sym_BANGin, + ACTIONS(5498), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, - ACTIONS(1865), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + ACTIONS(5404), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2836), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1863), 15, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 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, - [76837] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5402), 5, anon_sym_STAR, - ACTIONS(5418), 1, - sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5424), 1, - anon_sym_mut, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5428), 1, - anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, - ACTIONS(5432), 1, - anon_sym_shared, - ACTIONS(5490), 1, - anon_sym_RPAREN, - STATE(3017), 1, - sym_mutability_modifiers, - STATE(4006), 1, - sym_type_parameter_declaration, - STATE(4009), 1, - sym_parameter_declaration, - STATE(4183), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [76931] = 3, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [85931] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2837), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -259591,7 +270066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3025), 27, + ACTIONS(3357), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259619,144 +270094,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76979] = 17, - ACTIONS(3), 1, - sym_comment, - 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(5296), 1, - anon_sym_CARET, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(2067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5286), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2065), 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, - [77055] = 28, + [85986] = 5, ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5404), 1, - anon_sym_CARET, - ACTIONS(5406), 1, - anon_sym_AMP_AMP, - ACTIONS(5408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, - anon_sym_in, - ACTIONS(5412), 1, - anon_sym_BANGin, - ACTIONS(5492), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2838), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 13, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5402), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5396), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [77153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 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, @@ -259765,7 +270116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3251), 27, + ACTIONS(3313), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259793,11 +270144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77201] = 28, + [86041] = 30, ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LBRACE, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -259810,185 +270161,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5296), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5500), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5286), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [77299] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 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(5012), 1, - anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5296), 1, - anon_sym_CARET, - ACTIONS(5298), 1, - anon_sym_AMP_AMP, - ACTIONS(5300), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, - anon_sym_in, - ACTIONS(5304), 1, - anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5284), 3, + ACTIONS(5400), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5288), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77397] = 26, + [86146] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5418), 1, + ACTIONS(5420), 1, sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(5424), 1, - anon_sym_mut, + anon_sym_DOT_DOT_DOT, ACTIONS(5426), 1, - anon_sym_BANG, + anon_sym_mut, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5434), 1, anon_sym_shared, - ACTIONS(5494), 1, + ACTIONS(5502), 1, anon_sym_RPAREN, - STATE(3017), 1, + STATE(3071), 1, sym_mutability_modifiers, - STATE(4003), 1, + STATE(4058), 1, sym_type_parameter_declaration, - STATE(4074), 1, + STATE(4059), 1, sym_parameter_declaration, - STATE(4183), 1, + STATE(4311), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2840), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -260001,130 +270292,97 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [77491] = 28, + [86247] = 30, ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 1, anon_sym_LPAREN, - ACTIONS(5006), 1, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(5008), 1, + ACTIONS(4773), 1, anon_sym_QMARK, - ACTIONS(5010), 1, + ACTIONS(4775), 1, anon_sym_BANG, - ACTIONS(5012), 1, + ACTIONS(4777), 1, anon_sym_LBRACK2, - ACTIONS(5016), 1, + ACTIONS(4779), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(4781), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(4787), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, + ACTIONS(4789), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, + ACTIONS(4791), 1, + anon_sym_AMP_AMP, + ACTIONS(4793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4795), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(4797), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(4799), 1, anon_sym_BANGis, - ACTIONS(5296), 1, - anon_sym_CARET, - ACTIONS(5298), 1, - anon_sym_AMP_AMP, - ACTIONS(5300), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(4801), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(4803), 1, anon_sym_BANGin, - ACTIONS(5354), 1, - anon_sym_LBRACE, - STATE(2439), 1, + ACTIONS(5338), 1, + anon_sym_CARET, + ACTIONS(5340), 1, + anon_sym_LT_DASH, + STATE(2109), 1, sym_argument_list, - STATE(2440), 1, + STATE(2110), 1, sym_or_block, - STATE(4084), 1, + STATE(4378), 1, sym_type_parameters, - ACTIONS(5014), 2, + ACTIONS(4765), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(4783), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2841), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4763), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5286), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [77589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2685), 11, + ACTIONS(4769), 3, 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(2683), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(4785), 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(5334), 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_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77637] = 3, + [86352] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3452), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_COMMA, + STATE(2842), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -260133,10 +270391,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3450), 27, + ACTIONS(3239), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260161,64 +270418,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77685] = 3, + [86409] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(3436), 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_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5424), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5426), 1, + anon_sym_mut, + ACTIONS(5428), 1, anon_sym_BANG, + ACTIONS(5430), 1, anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3434), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5434), 1, + anon_sym_shared, + ACTIONS(5504), 1, + anon_sym_RPAREN, + STATE(3071), 1, + sym_mutability_modifiers, + STATE(3972), 1, + sym_type_parameter_declaration, + STATE(3987), 1, + sym_parameter_declaration, + STATE(4311), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2843), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [86510] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, anon_sym_LPAREN, + ACTIONS(3618), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5424), 1, 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, - [77733] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 3, + ACTIONS(5426), 1, + anon_sym_mut, + ACTIONS(5428), 1, + anon_sym_BANG, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5434), 1, + anon_sym_shared, + ACTIONS(5506), 1, + anon_sym_RPAREN, + STATE(3071), 1, + sym_mutability_modifiers, + STATE(4100), 1, + sym_type_parameter_declaration, + STATE(4101), 1, + sym_parameter_declaration, + STATE(4311), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2844), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [86611] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2845), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2838), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2727), 13, + ACTIONS(2833), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -260227,7 +270590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2725), 24, + ACTIONS(2831), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -260252,18 +270615,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77783] = 4, + [86668] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3201), 13, + STATE(2846), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 13, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -260272,7 +270640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3199), 25, + ACTIONS(3239), 25, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -260298,189 +270666,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77833] = 3, + [86725] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 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_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5424), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5426), 1, + anon_sym_mut, + ACTIONS(5428), 1, anon_sym_BANG, + ACTIONS(5430), 1, anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3390), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5434), 1, + anon_sym_shared, + ACTIONS(5508), 1, + anon_sym_RPAREN, + STATE(3071), 1, + sym_mutability_modifiers, + STATE(3996), 1, + sym_parameter_declaration, + STATE(3998), 1, + sym_type_parameter_declaration, + STATE(4311), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2847), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [86826] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 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(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5408), 1, + anon_sym_CARET, + ACTIONS(5410), 1, + anon_sym_AMP_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5414), 1, anon_sym_in, + ACTIONS(5416), 1, anon_sym_BANGin, - [77881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 13, + ACTIONS(5510), 1, + anon_sym_RPAREN, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_QMARK_DOT, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + STATE(2848), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3386), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 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(5402), 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, - [77929] = 3, + [86931] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 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_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5424), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5426), 1, + anon_sym_mut, + ACTIONS(5428), 1, anon_sym_BANG, + ACTIONS(5430), 1, anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3350), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5434), 1, + anon_sym_shared, + ACTIONS(5508), 1, + anon_sym_RPAREN, + STATE(3071), 1, + sym_mutability_modifiers, + STATE(3986), 1, + sym_plain_type, + STATE(3996), 1, + sym_parameter_declaration, + STATE(3998), 1, + sym_type_parameter_declaration, + STATE(4652), 1, + sym_reference_expression, + STATE(2849), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [87032] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 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(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5408), 1, + anon_sym_CARET, + ACTIONS(5410), 1, + anon_sym_AMP_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5414), 1, anon_sym_in, + ACTIONS(5416), 1, anon_sym_BANGin, - [77977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 13, + ACTIONS(5512), 1, + anon_sym_RPAREN, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_QMARK_DOT, + ACTIONS(5404), 2, 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(3346), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_GT, + STATE(2850), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 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(5402), 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, - [78025] = 28, + [87137] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -260493,110 +270979,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5496), 1, + ACTIONS(5514), 1, anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2851), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5396), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2649), 13, - anon_sym_DOT, + ACTIONS(5400), 3, 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(2647), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5406), 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(5402), 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, - [78173] = 28, + [87242] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -260609,366 +271054,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5296), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5498), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5516), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2852), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78271] = 26, + [87347] = 30, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5424), 1, - anon_sym_mut, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5428), 1, - anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, - ACTIONS(5432), 1, - anon_sym_shared, - ACTIONS(5436), 1, - anon_sym_RPAREN, - ACTIONS(5500), 1, - sym_identifier, - STATE(3041), 1, - sym_mutability_modifiers, - STATE(3922), 1, - sym_parameter_declaration, - STATE(3925), 1, - sym_type_parameter_declaration, - STATE(4183), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [78365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3382), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + 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(3380), 27, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 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(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 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(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3283), 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(3281), 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(5178), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5180), 1, anon_sym_AMP_AMP, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5184), 1, anon_sym_in, + ACTIONS(5186), 1, anon_sym_BANGin, - [78461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 13, + ACTIONS(5518), 1, + anon_sym_RBRACK, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_QMARK_DOT, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + STATE(2853), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3438), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 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(5172), 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, - [78509] = 3, + [87452] = 30, ACTIONS(3), 1, - sym_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, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 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(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 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(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5408), 1, + anon_sym_CARET, + ACTIONS(5410), 1, + anon_sym_AMP_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5414), 1, anon_sym_in, + ACTIONS(5416), 1, anon_sym_BANGin, - [78557] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3410), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2727), 12, + ACTIONS(5520), 1, + anon_sym_RPAREN, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_QMARK_DOT, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + STATE(2854), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2725), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 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_CARET, + ACTIONS(5402), 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, - [78609] = 4, + [87557] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2855), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2747), 13, + anon_sym_SLASH, anon_sym_DOT, - ACTIONS(3412), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -260977,10 +271287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3410), 27, + ACTIONS(2745), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261005,9 +271313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78659] = 28, + [87614] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1935), 1, + anon_sym_RPAREN, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -261020,109 +271332,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5296), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78757] = 3, + [87719] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(3209), 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_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3207), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + 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(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, anon_sym_LPAREN, + ACTIONS(3618), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5424), 1, 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, - [78805] = 28, + ACTIONS(5426), 1, + anon_sym_mut, + ACTIONS(5428), 1, + anon_sym_BANG, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5434), 1, + anon_sym_shared, + ACTIONS(5522), 1, + anon_sym_RPAREN, + STATE(3071), 1, + sym_mutability_modifiers, + STATE(4042), 1, + sym_parameter_declaration, + STATE(4043), 1, + sym_type_parameter_declaration, + STATE(4311), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2857), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [87820] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -261135,66 +271478,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5296), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5524), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2858), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78903] = 28, + [87925] = 30, ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - anon_sym_RPAREN, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -261207,132 +271553,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5526), 1, + anon_sym_RPAREN, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2859), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79001] = 28, + [88030] = 6, ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5506), 1, - anon_sym_RBRACK, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5528), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 13, + anon_sym_SLASH, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5182), 2, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, - anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5184), 4, + anon_sym_DOT_DOT, + ACTIONS(3440), 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, - ACTIONS(5174), 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, - [79099] = 28, + 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, + [88087] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1929), 1, + anon_sym_RPAREN, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -261345,72 +271681,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5508), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2861), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79197] = 4, + [88192] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3147), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3201), 13, + STATE(2862), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 12, + anon_sym_SLASH, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -261418,10 +271764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3199), 26, + ACTIONS(2831), 24, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261429,8 +271773,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, anon_sym_CARET, @@ -261446,15 +271788,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79247] = 3, + anon_sym_DOT_DOT, + [88251] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3287), 13, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2835), 1, anon_sym_DOT, + STATE(2863), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 12, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -261463,7 +271812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3285), 27, + ACTIONS(3147), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261491,9 +271840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79295] = 28, + [88308] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -261506,17 +271857,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, ACTIONS(5296), 1, anon_sym_CARET, @@ -261528,13 +271879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5510), 1, + ACTIONS(5530), 1, anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, @@ -261542,196 +271893,89 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2864), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5286), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79393] = 28, - ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5404), 1, - anon_sym_CARET, - ACTIONS(5406), 1, - anon_sym_AMP_AMP, - ACTIONS(5408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, - anon_sym_in, - ACTIONS(5412), 1, - anon_sym_BANGin, - ACTIONS(5512), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2651), 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(2653), 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, - [79539] = 26, + [88413] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5418), 1, + ACTIONS(5420), 1, sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(5424), 1, - anon_sym_mut, + anon_sym_DOT_DOT_DOT, ACTIONS(5426), 1, - anon_sym_BANG, + anon_sym_mut, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5434), 1, anon_sym_shared, - ACTIONS(5514), 1, + ACTIONS(5532), 1, anon_sym_RPAREN, - STATE(3017), 1, + STATE(3071), 1, sym_mutability_modifiers, - STATE(3930), 1, + STATE(3943), 1, sym_parameter_declaration, - STATE(3931), 1, + STATE(3944), 1, sym_type_parameter_declaration, - STATE(4183), 1, + STATE(4311), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2865), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -261744,167 +271988,86 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [79633] = 26, + [88514] = 30, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5418), 1, - sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5424), 1, - anon_sym_mut, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5428), 1, - anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, - ACTIONS(5432), 1, - anon_sym_shared, - ACTIONS(5516), 1, - anon_sym_RPAREN, - STATE(3017), 1, - sym_mutability_modifiers, - STATE(4010), 1, - sym_type_parameter_declaration, - STATE(4015), 1, - sym_parameter_declaration, - STATE(4183), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [79727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3265), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + 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(3263), 27, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 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(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 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(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, anon_sym_in, + ACTIONS(5304), 1, anon_sym_BANGin, - [79775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3400), 13, + ACTIONS(5534), 1, + anon_sym_LBRACE, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + STATE(2866), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3398), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 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, - [79823] = 28, + [88619] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -261917,64 +272080,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5296), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - ACTIONS(5518), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5336), 1, + anon_sym_COLON, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2867), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79921] = 28, + [88724] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -261987,117 +272155,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5520), 1, + ACTIONS(5536), 1, anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, + STATE(2868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5400), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5398), 3, + ACTIONS(5406), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5402), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [88829] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3433), 1, + anon_sym_DOT, + STATE(2869), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3941), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(3431), 11, anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(3429), 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, - ACTIONS(5396), 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, - [80019] = 26, + 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, + [88888] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5418), 1, + ACTIONS(5420), 1, sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(5424), 1, - anon_sym_mut, + anon_sym_DOT_DOT_DOT, ACTIONS(5426), 1, - anon_sym_BANG, + anon_sym_mut, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5434), 1, anon_sym_shared, - ACTIONS(5522), 1, + ACTIONS(5464), 1, anon_sym_RPAREN, - STATE(3017), 1, + STATE(3071), 1, sym_mutability_modifiers, - STATE(4057), 1, + STATE(3973), 1, sym_type_parameter_declaration, - STATE(4059), 1, + STATE(3978), 1, sym_parameter_declaration, - STATE(4183), 1, + STATE(4311), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2870), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -262110,9 +272338,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [80113] = 28, + [88989] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -262125,64 +272355,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5524), 1, + ACTIONS(5538), 1, anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2871), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80211] = 28, + [89094] = 17, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -262195,64 +272430,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2872), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1879), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5402), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 16, anon_sym_as, - ACTIONS(5094), 1, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5526), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + [89173] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5408), 1, + anon_sym_CARET, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, + ACTIONS(1871), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2873), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80309] = 28, + ACTIONS(1869), 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, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [89256] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -262265,64 +272556,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5412), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5528), 1, + ACTIONS(5540), 1, anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2874), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80407] = 28, + [89361] = 19, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -262335,117 +272631,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5404), 1, - anon_sym_CARET, - ACTIONS(5406), 1, - anon_sym_AMP_AMP, ACTIONS(5408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, - anon_sym_in, - ACTIONS(5412), 1, - anon_sym_BANGin, - ACTIONS(5530), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + anon_sym_CARET, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, + ACTIONS(1875), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2875), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80505] = 26, + ACTIONS(1873), 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, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [89444] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5418), 1, + ACTIONS(5420), 1, sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(5424), 1, - anon_sym_mut, + anon_sym_DOT_DOT_DOT, ACTIONS(5426), 1, - anon_sym_BANG, + anon_sym_mut, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, + ACTIONS(5434), 1, + anon_sym_shared, + ACTIONS(5542), 1, + anon_sym_RPAREN, + STATE(3071), 1, + sym_mutability_modifiers, + STATE(3865), 1, + sym_type_parameter_declaration, + STATE(3875), 1, + sym_parameter_declaration, + STATE(4311), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2876), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [89545] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5424), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5426), 1, + anon_sym_mut, + ACTIONS(5428), 1, + anon_sym_BANG, + ACTIONS(5430), 1, + anon_sym_LBRACK2, ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5434), 1, anon_sym_shared, - ACTIONS(5532), 1, + ACTIONS(5544), 1, anon_sym_RPAREN, - STATE(3017), 1, + STATE(3071), 1, sym_mutability_modifiers, - STATE(3842), 1, + STATE(4057), 1, sym_parameter_declaration, - STATE(3843), 1, + STATE(4064), 1, sym_type_parameter_declaration, - STATE(4053), 1, + STATE(4311), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2877), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -262458,9 +272824,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [80599] = 28, + [89646] = 23, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -262473,247 +272841,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5296), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5410), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5534), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5292), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5286), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [80697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3420), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5404), 2, 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(3418), 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, - [80745] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 1, - anon_sym_COMMA, - ACTIONS(2649), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + STATE(2878), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 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(2647), 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, - [80795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3344), 13, - anon_sym_DOT, + ACTIONS(5400), 3, 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(3342), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5406), 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_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5402), 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(1877), 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, - anon_sym_in, - anon_sym_BANGin, - [80843] = 3, + [89737] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 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_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5408), 1, + anon_sym_CARET, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(1879), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2879), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3247), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 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, - [80891] = 28, + [89820] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, - anon_sym_LBRACE, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -262726,62 +272973,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5296), 1, + ACTIONS(5408), 1, anon_sym_CARET, - ACTIONS(5298), 1, - anon_sym_AMP_AMP, - ACTIONS(5300), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - ACTIONS(5344), 1, - anon_sym_is, - ACTIONS(5346), 1, - anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2880), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80989] = 28, + ACTIONS(1877), 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_is, + anon_sym_BANGis, + [89909] = 30, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3576), 1, + anon_sym_LBRACE, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -262794,71 +273042,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5536), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2881), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5282), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81087] = 4, + [90014] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3313), 1, - anon_sym_DOT, - ACTIONS(3311), 12, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5546), 1, + anon_sym_DOLLARelse, + STATE(2882), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2765), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -262866,11 +273120,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3309), 27, + ACTIONS(2763), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -262878,11 +273130,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, @@ -262895,9 +273148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81137] = 28, + [90070] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -262910,134 +273165,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - ACTIONS(5538), 1, - anon_sym_RPAREN, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5548), 1, + anon_sym_is, + ACTIONS(5550), 1, + anon_sym_BANGis, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2883), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81235] = 28, + [90172] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4711), 1, + anon_sym_as, + ACTIONS(4717), 1, anon_sym_LPAREN, - ACTIONS(5006), 1, + ACTIONS(4725), 1, anon_sym_LBRACK, - ACTIONS(5008), 1, + ACTIONS(4727), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4729), 1, + anon_sym_DASH_DASH, + ACTIONS(4731), 1, anon_sym_QMARK, - ACTIONS(5010), 1, + ACTIONS(4733), 1, anon_sym_BANG, - ACTIONS(5012), 1, + ACTIONS(4735), 1, anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, + ACTIONS(4737), 1, + anon_sym_AMP_AMP, + ACTIONS(4739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4741), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(4743), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4745), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(4747), 1, anon_sym_BANGis, - ACTIONS(5296), 1, - anon_sym_CARET, - ACTIONS(5298), 1, - anon_sym_AMP_AMP, - ACTIONS(5300), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(4749), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(4751), 1, anon_sym_BANGin, - ACTIONS(5540), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5554), 1, + anon_sym_CARET, + STATE(2008), 1, sym_or_block, - STATE(4084), 1, + STATE(2078), 1, + sym_argument_list, + STATE(4274), 1, sym_type_parameters, - ACTIONS(5014), 2, + ACTIONS(4709), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(4721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5288), 3, + STATE(2884), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4707), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(4719), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4723), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5286), 5, + ACTIONS(5552), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81333] = 28, + [90274] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -263050,117 +273311,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5296), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5298), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5300), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5302), 1, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5304), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - ACTIONS(5542), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + ACTIONS(5556), 1, + anon_sym_is, + ACTIONS(5558), 1, + anon_sym_BANGis, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5290), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5284), 3, + STATE(2885), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5288), 3, + ACTIONS(5176), 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, + [90376] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4857), 1, + anon_sym_LBRACE, + ACTIONS(5560), 1, + anon_sym_COMMA, + STATE(4055), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(2886), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 11, anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5292), 4, + ACTIONS(3440), 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, - ACTIONS(5286), 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, - [81431] = 26, + 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, + [90436] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(567), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(615), 1, + anon_sym_LBRACK2, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5418), 1, - sym_identifier, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5424), 1, - anon_sym_mut, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, + anon_sym_BANG, ACTIONS(5432), 1, - anon_sym_shared, - ACTIONS(5532), 1, - anon_sym_RPAREN, - STATE(3017), 1, - sym_mutability_modifiers, - STATE(3842), 1, - sym_parameter_declaration, - STATE(3843), 1, - sym_type_parameter_declaration, - STATE(4183), 1, + anon_sym_AMP, + ACTIONS(5562), 1, + anon_sym_DOT_DOT_DOT, + STATE(4336), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2887), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + ACTIONS(3147), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -263173,9 +273488,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81525] = 27, + [90530] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -263188,127 +273505,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5180), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5544), 1, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5564), 1, anon_sym_is, - ACTIONS(5546), 1, + ACTIONS(5566), 1, anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5182), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2888), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81620] = 24, + [90632] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(575), 1, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(579), 1, - anon_sym_shared, - ACTIONS(2727), 1, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5568), 1, + anon_sym_is, + ACTIONS(5570), 1, + anon_sym_BANGis, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5430), 1, + anon_sym_QMARK_DOT, + ACTIONS(5174), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2889), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, anon_sym_AMP, - ACTIONS(5548), 1, - anon_sym_DOT_DOT_DOT, - STATE(4317), 1, - sym_plain_type, - STATE(4320), 1, - sym__plain_type_without_special, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(3410), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2406), 3, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [81709] = 27, + anon_sym_GT_GT, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 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, + [90734] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -263321,112 +273651,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5180), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5550), 1, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5378), 1, anon_sym_is, - ACTIONS(5552), 1, + ACTIONS(5380), 1, anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5182), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2890), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81804] = 24, + [90836] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_LBRACK2, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(2727), 1, + ACTIONS(2833), 1, anon_sym_DOT, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5430), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5554), 1, + ACTIONS(5572), 1, anon_sym_DOT_DOT_DOT, - STATE(4154), 1, - sym_plain_type, - STATE(4155), 1, + STATE(4177), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4178), 1, + sym_plain_type, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2891), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(3410), 3, + ACTIONS(3147), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2406), 3, + STATE(2446), 3, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -263439,56 +273777,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81893] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(3410), 1, - anon_sym_LBRACE, - ACTIONS(5556), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(2727), 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(2725), 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, - [81946] = 27, + [90932] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -263501,107 +273794,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5180), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5558), 1, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5574), 1, anon_sym_is, - ACTIONS(5560), 1, + ACTIONS(5576), 1, anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5182), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2892), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82041] = 4, + [91034] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(3960), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(3958), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(3962), 25, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5088), 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, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, anon_sym_DASH_DASH, + ACTIONS(5106), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5108), 1, anon_sym_AMP_AMP, + ACTIONS(5110), 1, anon_sym_PIPE_PIPE, + ACTIONS(5112), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5114), 1, anon_sym_is, + ACTIONS(5116), 1, anon_sym_BANGis, + ACTIONS(5118), 1, anon_sym_in, + ACTIONS(5120), 1, anon_sym_BANGin, - anon_sym_DOT_DOT, - [82090] = 27, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5098), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2893), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5086), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5094), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5100), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5096), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [91136] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -263614,62 +273940,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5098), 1, - anon_sym_CARET, - ACTIONS(5100), 1, - anon_sym_AMP_AMP, ACTIONS(5102), 1, - anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5110), 1, + ACTIONS(5408), 1, + anon_sym_CARET, + ACTIONS(5410), 1, + anon_sym_AMP_AMP, + ACTIONS(5412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5414), 1, anon_sym_in, - ACTIONS(5112), 1, + ACTIONS(5416), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5090), 2, + ACTIONS(5404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5088), 3, + STATE(2894), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 4, + ACTIONS(5400), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(5402), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82185] = 27, + [91238] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -263682,73 +274013,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5180), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5562), 1, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5578), 1, anon_sym_is, - ACTIONS(5564), 1, + ACTIONS(5580), 1, anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5182), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2895), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82280] = 6, + [91340] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 1, - anon_sym_LBRACE, - ACTIONS(5566), 1, - anon_sym_COMMA, - STATE(3940), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(3287), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2896), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -263756,9 +274089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3284), 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, @@ -263782,14 +274118,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82333] = 3, + [91394] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(3219), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(5088), 1, + anon_sym_as, + ACTIONS(5102), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_or, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5582), 1, + anon_sym_is, + ACTIONS(5584), 1, + anon_sym_BANGis, + STATE(2412), 1, + sym_or_block, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5174), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2897), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5176), 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, + [91496] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2898), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3271), 11, anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -263797,7 +274211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3222), 28, + ACTIONS(3274), 28, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -263826,77 +274240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82380] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4707), 1, - anon_sym_as, - ACTIONS(4713), 1, - anon_sym_LPAREN, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4725), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4727), 1, - anon_sym_DASH_DASH, - ACTIONS(4729), 1, - anon_sym_QMARK, - ACTIONS(4731), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_LBRACK2, - ACTIONS(4735), 1, - anon_sym_AMP_AMP, - ACTIONS(4737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4739), 1, - anon_sym_or, - ACTIONS(4741), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4743), 1, - anon_sym_is, - ACTIONS(4745), 1, - anon_sym_BANGis, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(5570), 1, - anon_sym_CARET, - STATE(2123), 1, - sym_argument_list, - STATE(2125), 1, - sym_or_block, - STATE(4315), 1, - sym_type_parameters, - ACTIONS(4705), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4719), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4715), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4717), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4721), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5568), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82475] = 27, + [91550] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -263909,62 +274257,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5180), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5572), 1, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5586), 1, anon_sym_is, - ACTIONS(5574), 1, + ACTIONS(5588), 1, anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5182), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2899), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5172), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [91652] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3948), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(2900), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 12, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3357), 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_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, - [82570] = 27, + 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, + [91708] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(615), 1, + anon_sym_LBRACK2, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5428), 1, + anon_sym_BANG, + ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5572), 1, + anon_sym_DOT_DOT_DOT, + STATE(4178), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2901), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(3147), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [91802] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -263977,62 +274449,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5106), 1, + ACTIONS(5114), 1, anon_sym_is, - ACTIONS(5108), 1, + ACTIONS(5116), 1, anon_sym_BANGis, - ACTIONS(5404), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5406), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5408), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5184), 1, anon_sym_in, - ACTIONS(5412), 1, + ACTIONS(5186), 1, anon_sym_BANGin, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5394), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5398), 3, + STATE(2902), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 4, + ACTIONS(5170), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5396), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82665] = 27, + [91904] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(615), 1, + anon_sym_LBRACK2, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5428), 1, + anon_sym_BANG, + ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5562), 1, + anon_sym_DOT_DOT_DOT, + STATE(4335), 1, + sym__plain_type_without_special, + STATE(4336), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2903), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(3147), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2446), 3, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [92000] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -264045,133 +274592,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5180), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5576), 1, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5590), 1, anon_sym_is, - ACTIONS(5578), 1, + ACTIONS(5592), 1, anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5182), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2904), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82760] = 23, + [92102] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5594), 1, + anon_sym_DOLLARelse, + STATE(2905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2821), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(575), 1, + anon_sym_BANG, anon_sym_LBRACK2, - ACTIONS(579), 1, - anon_sym_shared, - ACTIONS(2727), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2819), 27, anon_sym_DOT, - ACTIONS(3630), 1, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5430), 1, - anon_sym_AMP, - ACTIONS(5554), 1, - anon_sym_DOT_DOT_DOT, - STATE(4154), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(3410), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [82847] = 4, + 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, + [92158] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(5580), 1, - anon_sym_DOLLARelse, - ACTIONS(2643), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2838), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, + anon_sym_LBRACE, + ACTIONS(5596), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + STATE(2906), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -264179,7 +274725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2641), 27, + ACTIONS(2831), 24, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264189,12 +274735,9 @@ 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_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, @@ -264207,9 +274750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82896] = 27, + [92218] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -264222,62 +274767,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5180), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5582), 1, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5598), 1, anon_sym_is, - ACTIONS(5584), 1, + ACTIONS(5600), 1, anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5182), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82991] = 27, + [92320] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -264290,62 +274840,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5180), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5350), 1, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5602), 1, anon_sym_is, - ACTIONS(5352), 1, + ACTIONS(5604), 1, anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5182), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2908), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83086] = 27, + [92422] = 29, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5004), 1, anon_sym_LPAREN, ACTIONS(5006), 1, @@ -264358,179 +274913,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + ACTIONS(5088), 1, anon_sym_as, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, ACTIONS(5104), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, anon_sym_or, - ACTIONS(5180), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5192), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5586), 1, + ACTIONS(5184), 1, + anon_sym_in, + ACTIONS(5186), 1, + anon_sym_BANGin, + ACTIONS(5606), 1, anon_sym_is, - ACTIONS(5588), 1, + ACTIONS(5608), 1, anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, + STATE(2412), 1, sym_or_block, - STATE(4084), 1, + STATE(2466), 1, + sym_argument_list, + STATE(4351), 1, sym_type_parameters, ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5182), 2, + ACTIONS(5174), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 3, + STATE(2909), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5168), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5178), 3, + ACTIONS(5170), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + ACTIONS(5176), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5174), 5, + ACTIONS(5172), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83181] = 27, + [92524] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - ACTIONS(5006), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1956), 1, + sym_block, + STATE(2910), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5016), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5078), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2997), 26, + anon_sym_DOT, anon_sym_as, - ACTIONS(5094), 1, + 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_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5590), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5592), 1, anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, + anon_sym_in, + anon_sym_BANGin, + [92579] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(419), 1, + sym_block, + STATE(2911), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5184), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2997), 26, + anon_sym_DOT, + 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, - ACTIONS(5174), 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, - [83276] = 23, + 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, + [92634] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(575), 1, - anon_sym_LBRACK2, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(2727), 1, - anon_sym_DOT, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5428), 1, anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5548), 1, - anon_sym_DOT_DOT_DOT, - STATE(4317), 1, + STATE(2476), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2912), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(3410), 3, + ACTIONS(621), 4, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2406), 4, + anon_sym_RBRACK, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -264543,16 +275133,19 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83363] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5594), 1, - anon_sym_DOLLARelse, - ACTIONS(2873), 11, + [92723] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2913), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3265), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -264560,7 +275153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2871), 27, + ACTIONS(3263), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264588,150 +275181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83412] = 27, - ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5596), 1, - anon_sym_is, - ACTIONS(5598), 1, - anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5184), 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, - [83507] = 27, + [92776] = 5, ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5106), 1, - anon_sym_is, - ACTIONS(5108), 1, - anon_sym_BANGis, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2914), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3261), 11, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5184), 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, - [83602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3229), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -264739,12 +275201,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3232), 28, - anon_sym_SEMI, + ACTIONS(3259), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -264753,9 +275212,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, @@ -264768,150 +275229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83649] = 27, - ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5600), 1, - anon_sym_is, - ACTIONS(5602), 1, - anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5184), 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, - [83744] = 27, + [92829] = 5, ACTIONS(3), 1, - sym_comment, - 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(5078), 1, - anon_sym_as, - ACTIONS(5094), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5096), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_or, - ACTIONS(5180), 1, - anon_sym_CARET, - ACTIONS(5186), 1, - anon_sym_in, - ACTIONS(5188), 1, - anon_sym_BANGin, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(5192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_is, - ACTIONS(5606), 1, - anon_sym_BANGis, - STATE(2439), 1, - sym_argument_list, - STATE(2440), 1, - sym_or_block, - STATE(4084), 1, - sym_type_parameters, - ACTIONS(5014), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5182), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2915), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3257), 11, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5178), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5184), 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, - [83839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3103), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -264919,7 +275249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3101), 27, + ACTIONS(3255), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264947,14 +275277,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83885] = 3, + [92882] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3265), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2916), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3387), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -264962,7 +275297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3263), 27, + ACTIONS(3385), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264990,14 +275325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83931] = 3, + [92935] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3318), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2917), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265005,7 +275345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3316), 27, + ACTIONS(3321), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265033,14 +275373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83977] = 3, + [92988] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3307), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2918), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2757), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265048,7 +275393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3305), 27, + ACTIONS(2759), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265076,14 +275421,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84023] = 3, + [93041] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1018), 1, + sym_block, + STATE(2919), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265091,9 +275443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3301), 27, + ACTIONS(2997), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265102,11 +275455,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, @@ -265119,14 +275470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84069] = 3, + [93096] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2920), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3055), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265134,7 +275490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3015), 27, + ACTIONS(3053), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265162,14 +275518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84115] = 3, + [93149] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2921), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3047), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265177,7 +275538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3293), 27, + ACTIONS(3045), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265205,14 +275566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84161] = 3, + [93202] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2922), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3031), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265220,7 +275586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3239), 27, + ACTIONS(3029), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265248,14 +275614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84207] = 3, + [93255] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3237), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2923), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3153), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265263,7 +275634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3235), 27, + ACTIONS(3151), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265291,14 +275662,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84253] = 3, + [93308] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2924), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3157), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265306,7 +275682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3139), 27, + ACTIONS(3155), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265334,14 +275710,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84299] = 3, + [93361] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2925), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3199), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265349,7 +275730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3127), 27, + ACTIONS(3197), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265377,16 +275758,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84345] = 4, + [93414] = 5, ACTIONS(3), 1, - sym_comment, - STATE(1791), 1, - sym_block, - ACTIONS(3388), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2926), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3203), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265394,10 +275778,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(3201), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265406,9 +275789,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, @@ -265421,58 +275806,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84393] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2491), 1, - sym_block, - ACTIONS(3388), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + [93467] = 23, + ACTIONS(497), 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, - anon_sym_GT_GT, - ACTIONS(3386), 26, - anon_sym_DOT, - 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_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, - [84441] = 3, + 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(1706), 1, + sym_plain_type, + STATE(4442), 1, + sym_reference_expression, + STATE(2927), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 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(1709), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1701), 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, + [93556] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3095), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2928), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3207), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265480,7 +275892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3093), 27, + ACTIONS(3205), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265508,16 +275920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84487] = 4, + [93609] = 5, ACTIONS(3), 1, - sym_comment, - STATE(432), 1, - sym_block, - ACTIONS(3388), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2929), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3213), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265525,10 +275940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(3211), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265537,9 +275951,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, @@ -265552,14 +275968,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84535] = 3, + [93662] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1299), 1, + sym_block, + STATE(2930), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265567,9 +275990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3089), 27, + ACTIONS(2997), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265578,11 +276002,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, @@ -265595,14 +276017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84581] = 3, + [93717] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2931), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265610,7 +276037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3059), 27, + ACTIONS(3436), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265638,14 +276065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84627] = 3, + [93770] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2932), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3339), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265653,7 +276085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3320), 27, + ACTIONS(3337), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265681,14 +276113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84673] = 3, + [93823] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2933), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265696,7 +276133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3055), 27, + ACTIONS(3440), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265724,14 +276161,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84719] = 3, + [93876] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3444), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4896), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2934), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265739,7 +276184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3442), 27, + ACTIONS(3440), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265750,11 +276195,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, @@ -265767,14 +276210,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84765] = 3, + [93931] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3366), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2905), 1, + sym_block, + STATE(2935), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265782,9 +276232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3364), 27, + ACTIONS(2997), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265793,11 +276244,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, @@ -265810,55 +276259,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84811] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + [93986] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(579), 1, - anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3658), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3664), 1, + anon_sym_struct, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5612), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5614), 1, + anon_sym_QMARK, + ACTIONS(5616), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5618), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5620), 1, anon_sym_AMP, - STATE(2408), 1, + 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(1678), 1, sym_plain_type, - STATE(4626), 1, + STATE(4442), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2936), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(621), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2406), 4, + ACTIONS(623), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -265871,14 +276325,21 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [84893] = 3, + [94075] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3404), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2497), 1, + sym_block, + STATE(2937), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265886,9 +276347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3402), 27, + ACTIONS(2997), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265897,11 +276359,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, @@ -265914,58 +276374,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84939] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + [94130] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(3658), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3664), 1, + anon_sym_struct, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5612), 1, anon_sym_STAR, - ACTIONS(5422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5424), 1, - anon_sym_mut, - ACTIONS(5426), 1, + ACTIONS(5614), 1, + anon_sym_QMARK, + ACTIONS(5616), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5618), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5620), 1, anon_sym_AMP, - ACTIONS(5432), 1, + ACTIONS(5622), 1, anon_sym_shared, - STATE(3019), 1, - sym_mutability_modifiers, - STATE(4183), 1, + 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(1684), 1, sym_plain_type, - STATE(4312), 1, - sym_type_parameter_declaration, - STATE(4626), 1, + STATE(4442), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2938), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + ACTIONS(571), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -265978,14 +276440,19 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [85027] = 3, + [94219] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2651), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2939), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3221), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -265993,7 +276460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2653), 27, + ACTIONS(3219), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266021,16 +276488,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85073] = 4, + [94272] = 6, ACTIONS(3), 1, - sym_comment, - STATE(1947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2671), 1, sym_block, - ACTIONS(3388), 11, + STATE(2940), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266038,7 +276510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(2997), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -266065,14 +276537,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85121] = 3, + [94327] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3420), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1952), 1, + sym_block, + STATE(2941), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266080,9 +276559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3418), 27, + ACTIONS(2997), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266091,11 +276571,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, @@ -266108,14 +276586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85167] = 3, + [94382] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2942), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266123,7 +276606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3372), 27, + ACTIONS(3287), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266151,16 +276634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85213] = 4, + [94435] = 5, ACTIONS(3), 1, - sym_comment, - STATE(1299), 1, - sym_block, - ACTIONS(3388), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2943), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3399), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266168,10 +276654,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(3397), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266180,9 +276665,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, @@ -266195,14 +276682,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85261] = 3, + [94488] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2944), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3395), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266210,7 +276702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 27, + ACTIONS(3393), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266238,14 +276730,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85307] = 3, + [94541] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5424), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5426), 1, + anon_sym_mut, + ACTIONS(5428), 1, + anon_sym_BANG, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5434), 1, + anon_sym_shared, + STATE(3050), 1, + sym_mutability_modifiers, + STATE(4184), 1, + sym_type_parameter_declaration, + STATE(4311), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2945), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [94636] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2189), 1, + sym_block, + STATE(2946), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266253,9 +276821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3446), 27, + ACTIONS(2997), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266264,11 +276833,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, @@ -266281,14 +276848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85353] = 3, + [94691] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3408), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2947), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3229), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266296,7 +276868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3406), 27, + ACTIONS(3227), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266324,16 +276896,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85399] = 4, + [94744] = 6, ACTIONS(3), 1, - sym_comment, - STATE(1679), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2347), 1, sym_block, - ACTIONS(3388), 11, + STATE(2948), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266341,7 +276918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(2997), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -266368,14 +276945,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85447] = 3, + [94799] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5428), 1, + anon_sym_BANG, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + anon_sym_AMP, + STATE(2468), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2949), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(625), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [94888] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1166), 1, + sym_block, + STATE(2950), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266383,9 +277033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3143), 27, + ACTIONS(2997), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266394,11 +277045,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, @@ -266411,16 +277060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85493] = 4, + [94943] = 5, ACTIONS(3), 1, - sym_comment, - STATE(2180), 1, - sym_block, - ACTIONS(3388), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2951), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266428,10 +277080,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(3341), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266440,9 +277091,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, @@ -266455,77 +277108,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85541] = 21, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3454), 1, - sym_identifier, - ACTIONS(3668), 1, - anon_sym_LPAREN, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, - anon_sym_fn, - ACTIONS(5610), 1, - anon_sym_STAR, - ACTIONS(5612), 1, - anon_sym_QMARK, - ACTIONS(5614), 1, - anon_sym_BANG, - ACTIONS(5616), 1, - anon_sym_LBRACK2, - ACTIONS(5618), 1, - anon_sym_AMP, - ACTIONS(5620), 1, - anon_sym_shared, - ACTIONS(5622), 1, - anon_sym_map_LBRACK, - ACTIONS(5624), 1, - anon_sym_chan, - ACTIONS(5626), 1, - anon_sym_thread, - ACTIONS(5628), 1, - anon_sym_atomic, - STATE(1694), 1, - sym_plain_type, - STATE(4436), 1, - sym_reference_expression, - STATE(3380), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(585), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1687), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1686), 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, - [85623] = 4, + [94996] = 6, ACTIONS(3), 1, - sym_comment, - STATE(1939), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1813), 1, sym_block, - ACTIONS(3388), 11, + STATE(2952), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266533,7 +277130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(2997), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -266560,14 +277157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85671] = 3, + [95051] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3189), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2953), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266575,7 +277177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3187), 27, + ACTIONS(3291), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266603,75 +277205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85717] = 21, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3454), 1, - sym_identifier, - ACTIONS(3668), 1, - anon_sym_LPAREN, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, - anon_sym_fn, - ACTIONS(5610), 1, - anon_sym_STAR, - ACTIONS(5612), 1, - anon_sym_QMARK, - ACTIONS(5614), 1, - anon_sym_BANG, - ACTIONS(5616), 1, - anon_sym_LBRACK2, - ACTIONS(5618), 1, - anon_sym_AMP, - ACTIONS(5620), 1, - anon_sym_shared, - ACTIONS(5622), 1, - anon_sym_map_LBRACK, - ACTIONS(5624), 1, - anon_sym_chan, - ACTIONS(5626), 1, - anon_sym_thread, - ACTIONS(5628), 1, - anon_sym_atomic, - STATE(1667), 1, - sym_plain_type, - STATE(4436), 1, - sym_reference_expression, - STATE(3380), 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(1687), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1686), 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, - [85799] = 3, + [95104] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3291), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2954), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3367), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266679,7 +277225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3289), 27, + ACTIONS(3365), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266707,16 +277253,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85845] = 4, + [95157] = 6, ACTIONS(3), 1, - sym_comment, - STATE(2876), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1673), 1, sym_block, - ACTIONS(3388), 11, + STATE(2955), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266724,7 +277275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(2997), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -266751,14 +277302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85893] = 3, + [95212] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3287), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2956), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3363), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266766,7 +277322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 27, + ACTIONS(3361), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266794,55 +277350,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85939] = 21, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3454), 1, + [95265] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3668), 1, - anon_sym_LPAREN, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(5610), 1, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5612), 1, - anon_sym_QMARK, - ACTIONS(5614), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5616), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5618), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5620), 1, - anon_sym_shared, - ACTIONS(5622), 1, - anon_sym_map_LBRACK, - ACTIONS(5624), 1, - anon_sym_chan, - ACTIONS(5626), 1, - anon_sym_thread, - ACTIONS(5628), 1, - anon_sym_atomic, - STATE(1665), 1, + STATE(2361), 1, sym_plain_type, - STATE(4436), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3380), 2, + STATE(2957), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(623), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1687), 4, + ACTIONS(567), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -266855,16 +277416,19 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [86021] = 4, + [95354] = 5, ACTIONS(3), 1, - sym_comment, - STATE(1006), 1, - sym_block, - ACTIONS(3388), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2958), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3351), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266872,10 +277436,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(3349), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266884,9 +277447,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, @@ -266899,16 +277464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86069] = 4, + [95407] = 5, ACTIONS(3), 1, - sym_comment, - STATE(1161), 1, - sym_block, - ACTIONS(3388), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2959), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3347), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266916,10 +277484,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(3345), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266928,9 +277495,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, @@ -266943,16 +277512,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86117] = 4, + [95460] = 6, ACTIONS(3), 1, - sym_comment, - STATE(2324), 1, - sym_block, - ACTIONS(3388), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5632), 1, + anon_sym_RBRACK, + STATE(2960), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -266960,10 +277534,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(3313), 25, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266987,17 +277560,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86165] = 4, + [95514] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4902), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3287), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5634), 1, + anon_sym_RPAREN, + STATE(2961), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267005,7 +277582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267031,16 +277608,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86213] = 4, + [95568] = 6, ACTIONS(3), 1, - sym_comment, - STATE(2657), 1, - sym_block, - ACTIONS(3388), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5636), 1, + anon_sym_RBRACK, + STATE(2962), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267048,10 +277630,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(3313), 25, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267075,138 +277656,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86261] = 21, + [95622] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5636), 1, + anon_sym_RBRACK, + STATE(2963), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(579), 1, - anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, anon_sym_AMP, - STATE(2345), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(617), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [86343] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(579), 1, - anon_sym_shared, - ACTIONS(3630), 1, + anon_sym_GT_GT, + ACTIONS(3429), 25, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5426), 1, + 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, + [95676] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5636), 1, + anon_sym_RBRACK, + STATE(2964), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, anon_sym_AMP, - STATE(2384), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(581), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [86425] = 4, + anon_sym_GT_GT, + ACTIONS(3429), 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, + [95732] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5630), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5638), 1, anon_sym_RPAREN, - ACTIONS(3311), 11, + STATE(2965), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267214,7 +277775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267240,16 +277801,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86472] = 4, + [95786] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5632), 1, - anon_sym_RBRACK, - ACTIONS(3249), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5638), 1, + anon_sym_RPAREN, + STATE(2966), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267257,8 +277825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267283,18 +277850,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86519] = 5, + [95842] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5634), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5640), 1, + anon_sym_RBRACK, + STATE(2967), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267302,7 +277872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267327,18 +277898,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86568] = 5, + [95896] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5636), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5640), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(2968), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267346,7 +277920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3313), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267371,18 +277946,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86617] = 5, + [95950] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, - ACTIONS(5638), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, + ACTIONS(5642), 1, + anon_sym_RPAREN, + STATE(2969), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267390,7 +277970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267415,59 +277995,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86666] = 4, + [96006] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5640), 1, - anon_sym_RBRACK, - ACTIONS(3249), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5642), 1, + anon_sym_RPAREN, + STATE(2970), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, 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(3247), 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, - [86713] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5638), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267475,7 +278017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267501,59 +278043,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86760] = 4, + [96060] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5636), 1, - anon_sym_RBRACK, - ACTIONS(3311), 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(3309), 25, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, 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, - [86807] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5636), 1, + ACTIONS(5644), 1, anon_sym_RBRACK, - ACTIONS(3249), 11, + STATE(2971), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267561,8 +278067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267587,16 +278092,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86854] = 4, + [96116] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5642), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5646), 1, anon_sym_RBRACK, - ACTIONS(3249), 11, + STATE(2972), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267604,8 +278116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267630,16 +278141,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86901] = 4, + [96172] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5642), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5646), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(2973), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267647,7 +278163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267673,16 +278189,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86948] = 4, + [96226] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5644), 1, anon_sym_RBRACK, - ACTIONS(3249), 11, + STATE(2974), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267690,7 +278211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267716,60 +278237,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86995] = 5, + [96280] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5644), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + STATE(2975), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, 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(3309), 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, - [87044] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5646), 1, - anon_sym_RBRACK, - ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267777,7 +278259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, + ACTIONS(3313), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267803,16 +278285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87091] = 4, + [96334] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5646), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(2976), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267820,7 +278307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3313), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267846,60 +278333,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87138] = 5, + [96388] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, ACTIONS(5648), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RBRACK, + STATE(2977), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, 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(3309), 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, - [87187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5648), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267907,8 +278357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267933,60 +278382,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87234] = 5, + [96444] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5650), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + STATE(2978), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, 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(3309), 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, - [87283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5652), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -267994,7 +278404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3313), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268020,18 +278430,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87330] = 5, + [96498] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, - ACTIONS(5630), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, + ACTIONS(5652), 1, + anon_sym_RBRACK, + STATE(2979), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268039,7 +278454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268064,18 +278479,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87379] = 5, + [96554] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5652), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5654), 1, + anon_sym_RBRACK, + STATE(2980), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268083,7 +278501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268108,16 +278527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87428] = 4, + [96608] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5650), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(2981), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268125,7 +278549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268151,16 +278575,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87475] = 4, + [96662] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5650), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5648), 1, anon_sym_RBRACK, - ACTIONS(3249), 11, + STATE(2982), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268168,7 +278597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268194,16 +278623,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87522] = 4, + [96716] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5644), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5656), 1, + anon_sym_RPAREN, + STATE(2983), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268211,8 +278647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268237,18 +278672,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87569] = 5, + [96772] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5654), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5656), 1, + anon_sym_RPAREN, + STATE(2984), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268256,7 +278694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268281,16 +278720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87618] = 4, + [96826] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5644), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5652), 1, anon_sym_RBRACK, - ACTIONS(3249), 11, + STATE(2985), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268298,7 +278742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268324,16 +278768,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87665] = 4, + [96880] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5656), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5652), 1, + anon_sym_RBRACK, + STATE(2986), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268341,7 +278790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3313), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268367,16 +278816,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87712] = 4, + [96934] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5634), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5648), 1, + anon_sym_RBRACK, + STATE(2987), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268384,7 +278838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3313), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268410,18 +278864,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87759] = 5, + [96988] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5658), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, + anon_sym_RBRACK, + STATE(2988), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268429,7 +278886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3313), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268454,16 +278912,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87808] = 4, + [97042] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5658), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, + anon_sym_RBRACK, + STATE(2989), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268471,7 +278934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268497,16 +278960,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87855] = 4, + [97096] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5660), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5634), 1, anon_sym_RPAREN, - ACTIONS(3311), 11, + STATE(2990), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268514,8 +278984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268540,16 +279009,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87902] = 4, + [97152] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5662), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5660), 1, anon_sym_RPAREN, - ACTIONS(3311), 11, + STATE(2991), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268557,8 +279033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268583,18 +279058,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87949] = 5, + [97208] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5656), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5660), 1, anon_sym_RPAREN, - ACTIONS(3311), 11, + STATE(2992), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268602,7 +279080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268627,18 +279106,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87998] = 5, + [97262] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5660), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5662), 1, anon_sym_RPAREN, - ACTIONS(3311), 11, + STATE(2993), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268646,7 +279128,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268671,18 +279154,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88047] = 5, + [97316] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, - ACTIONS(5664), 1, + ACTIONS(5662), 1, anon_sym_RPAREN, - ACTIONS(3311), 11, + STATE(2994), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268690,7 +279178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268715,16 +279203,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88096] = 4, + [97372] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5650), 1, anon_sym_RBRACK, - ACTIONS(3249), 11, + STATE(2995), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268732,8 +279227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268758,16 +279252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88143] = 4, + [97428] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5664), 1, + anon_sym_RPAREN, + STATE(2996), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268775,8 +279276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268801,16 +279301,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88190] = 4, + [97484] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5664), 1, anon_sym_RPAREN, - ACTIONS(3311), 11, + STATE(2997), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268818,7 +279323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268844,16 +279349,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88237] = 4, + [97538] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5668), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5666), 1, anon_sym_RBRACK, - ACTIONS(3249), 11, + STATE(2998), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268861,8 +279373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268887,16 +279398,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88284] = 4, + [97594] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5640), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5654), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(2999), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268904,8 +279422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268930,18 +279447,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88331] = 5, + [97650] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5670), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5666), 1, + anon_sym_RBRACK, + STATE(3000), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268949,7 +279469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268974,16 +279495,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88380] = 4, + [97704] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5670), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5666), 1, + anon_sym_RBRACK, + STATE(3001), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -268991,7 +279517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3313), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269017,18 +279543,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88427] = 5, + [97758] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, - ACTIONS(5646), 1, + ACTIONS(5668), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3002), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269036,7 +279567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269061,16 +279592,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88476] = 4, + [97814] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5668), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5658), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3003), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269078,8 +279616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269104,16 +279641,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88523] = 4, + [97870] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_RPAREN, - ACTIONS(3287), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5668), 1, + anon_sym_RBRACK, + STATE(3004), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269121,7 +279663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269147,18 +279689,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88570] = 5, + [97924] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, - ACTIONS(5666), 1, + ACTIONS(5670), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3005), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269166,7 +279713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269191,18 +279738,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88619] = 5, + [97980] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5642), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5670), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3006), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269210,7 +279760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269235,18 +279786,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88668] = 5, + [98034] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, - ACTIONS(5640), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, + ACTIONS(5672), 1, + anon_sym_RPAREN, + STATE(3007), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269254,7 +279810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269279,16 +279835,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88717] = 4, + [98090] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5674), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5672), 1, + anon_sym_RPAREN, + STATE(3008), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269296,7 +279857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269322,18 +279883,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88764] = 5, + [98144] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5674), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5670), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3009), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269341,7 +279905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3313), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269366,18 +279931,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88813] = 5, + [98198] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5662), 1, - anon_sym_RPAREN, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5674), 1, + anon_sym_RBRACK, + STATE(3010), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269385,7 +279953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3313), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269410,18 +279979,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88862] = 5, + [98252] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5676), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5668), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3011), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269429,7 +280001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3313), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269454,16 +280027,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88911] = 4, + [98306] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5678), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5676), 1, + anon_sym_RPAREN, + STATE(3012), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269471,7 +280049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3440), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269497,16 +280075,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88958] = 4, + [98360] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5678), 1, - anon_sym_RBRACK, - ACTIONS(3249), 11, + anon_sym_RPAREN, + STATE(3013), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269514,7 +280097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, + ACTIONS(3440), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269540,16 +280123,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89005] = 4, + [98414] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5654), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5674), 1, anon_sym_RBRACK, - ACTIONS(3249), 11, + STATE(3014), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269557,7 +280145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269583,16 +280171,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89052] = 4, + [98468] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5632), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5674), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3015), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269600,8 +280195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269626,18 +280220,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89099] = 5, + [98524] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, - ACTIONS(5678), 1, + ACTIONS(5632), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3016), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269645,7 +280244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269670,18 +280269,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89148] = 5, + [98580] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, - ACTIONS(5632), 1, + ACTIONS(5640), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3017), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269689,7 +280293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269714,16 +280318,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89197] = 4, + [98636] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5680), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5632), 1, anon_sym_RBRACK, - ACTIONS(3249), 11, + STATE(3018), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269731,7 +280340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269757,16 +280366,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89244] = 4, + [98690] = 7, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, ACTIONS(5680), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, + anon_sym_RPAREN, + STATE(3019), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269774,8 +280390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269800,18 +280415,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89291] = 5, + [98746] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5680), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, + anon_sym_RPAREN, + STATE(3020), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269819,7 +280437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269844,16 +280463,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89340] = 4, + [98800] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5682), 1, - anon_sym_RPAREN, - ACTIONS(3287), 11, + anon_sym_RBRACK, + STATE(3021), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269861,7 +280485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3313), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269887,16 +280511,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89387] = 4, + [98854] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5684), 1, - anon_sym_RPAREN, - ACTIONS(3287), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5682), 1, + anon_sym_RBRACK, + STATE(3022), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269904,7 +280533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269930,16 +280559,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89434] = 4, + [98908] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5674), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5682), 1, anon_sym_RBRACK, - ACTIONS(3249), 11, + STATE(3023), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269947,8 +280583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269973,16 +280608,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89481] = 4, + [98964] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5686), 1, - anon_sym_RBRACK, - ACTIONS(3249), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5684), 1, + anon_sym_RPAREN, + STATE(3024), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -269990,7 +280630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270016,16 +280656,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89528] = 4, + [99018] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5686), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, + anon_sym_DOT, + ACTIONS(5684), 1, + anon_sym_RPAREN, + STATE(3025), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -270033,8 +280680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, - anon_sym_DOT, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270059,18 +280705,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89575] = 5, + [99074] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, ACTIONS(5686), 1, - anon_sym_RBRACK, - ACTIONS(3311), 11, + anon_sym_RPAREN, + STATE(3026), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -270078,7 +280729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270103,18 +280754,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89624] = 5, + [99130] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(5688), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5686), 1, anon_sym_RPAREN, - ACTIONS(3311), 11, + STATE(3027), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -270122,7 +280776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270147,16 +280802,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89673] = 4, + [99184] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5688), 1, anon_sym_RPAREN, - ACTIONS(3311), 11, + STATE(3028), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -270164,7 +280824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3440), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270190,16 +280850,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89720] = 4, + [99238] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5690), 1, anon_sym_RPAREN, - ACTIONS(3311), 11, + STATE(3029), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -270207,7 +280872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270233,18 +280898,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89767] = 5, + [99292] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, ACTIONS(5690), 1, anon_sym_RPAREN, - ACTIONS(3311), 11, + STATE(3030), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -270252,7 +280922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270277,18 +280947,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89816] = 5, + [99348] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_DOT, - ACTIONS(5668), 1, + ACTIONS(5692), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3031), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -270296,7 +280971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 24, + ACTIONS(3429), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270321,16 +280996,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89865] = 4, + [99404] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5654), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3032), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -270338,7 +281018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3313), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270364,16 +281044,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89912] = 4, + [99458] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5676), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5692), 1, anon_sym_RBRACK, - ACTIONS(3249), 11, + STATE(3033), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -270381,7 +281066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3247), 25, + ACTIONS(3313), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270407,16 +281092,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89959] = 4, + [99512] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5676), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5692), 1, anon_sym_RBRACK, - ACTIONS(3311), 11, + STATE(3034), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 11, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -270424,7 +281114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 25, + ACTIONS(3429), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270450,54 +281140,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90006] = 22, + [99566] = 24, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3642), 1, - anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5692), 1, - anon_sym_LPAREN, ACTIONS(5694), 1, - anon_sym_EQ, + anon_sym_LPAREN, ACTIONS(5696), 1, - anon_sym_STAR, + anon_sym_EQ, ACTIONS(5698), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5700), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5702), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5704), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5706), 1, + anon_sym_AMP, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1536), 1, + STATE(3788), 1, sym_plain_type, - STATE(1537), 1, + STATE(3789), 1, sym__global_var_value, - STATE(4563), 1, + STATE(4442), 1, sym_reference_expression, - STATE(1435), 2, + STATE(3035), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270510,54 +281205,59 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90088] = 22, + [99655] = 24, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(5620), 1, + ACTIONS(3636), 1, + anon_sym_struct, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(5624), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(5626), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(5628), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5708), 1, - anon_sym_LPAREN, ACTIONS(5710), 1, - anon_sym_EQ, + anon_sym_LPAREN, ACTIONS(5712), 1, - anon_sym_STAR, + anon_sym_EQ, ACTIONS(5714), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5716), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5718), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5720), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5722), 1, + anon_sym_AMP, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(3778), 1, + STATE(1612), 1, sym__global_var_value, - STATE(3781), 1, + STATE(1613), 1, sym_plain_type, - STATE(4436), 1, + STATE(4594), 1, sym_reference_expression, - STATE(3380), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3036), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270570,52 +281270,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90170] = 21, + [99744] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5726), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3037), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270628,52 +281333,183 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90249] = 21, + [99830] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5428), 1, anon_sym_BANG, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5728), 1, + anon_sym_RPAREN, + STATE(3874), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(3038), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [99916] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, ACTIONS(5428), 1, + anon_sym_BANG, + ACTIONS(5430), 1, anon_sym_LBRACK2, + ACTIONS(5432), 1, + anon_sym_AMP, + ACTIONS(5572), 1, + anon_sym_DOT_DOT_DOT, + STATE(4178), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(3039), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [100002] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5428), 1, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5726), 1, - anon_sym_RPAREN, - STATE(4005), 1, + ACTIONS(5730), 1, + sym_identifier, + ACTIONS(5732), 1, + anon_sym_DOT_DOT_DOT, + STATE(4328), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3040), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270686,52 +281522,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90328] = 21, + [100088] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1437), 1, + STATE(1453), 1, sym_plain_type, - STATE(1570), 1, + STATE(1567), 1, sym__type_union_list, - STATE(4563), 1, + STATE(4594), 1, sym_reference_expression, - STATE(1435), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(3041), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270744,52 +281585,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90407] = 21, + [100174] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5728), 1, + ACTIONS(5734), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3042), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270802,52 +281648,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90486] = 21, + [100260] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5730), 1, + ACTIONS(5736), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3043), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270860,52 +281711,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90565] = 21, + [100346] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5732), 1, + ACTIONS(5738), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3044), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270918,52 +281774,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90644] = 21, + [100432] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5554), 1, - anon_sym_DOT_DOT_DOT, - STATE(4154), 1, + ACTIONS(5740), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3045), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270976,52 +281837,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90723] = 21, + [100518] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1437), 1, + STATE(1453), 1, sym_plain_type, - STATE(1583), 1, + STATE(1528), 1, sym__type_union_list, - STATE(4563), 1, + STATE(4594), 1, sym_reference_expression, - STATE(1435), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(3046), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271034,52 +281900,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90802] = 21, + [100604] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(567), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5734), 1, - sym_identifier, - ACTIONS(5736), 1, - anon_sym_DOT_DOT_DOT, - STATE(4162), 1, + ACTIONS(5742), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3047), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271092,52 +281963,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90881] = 21, + [100690] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5738), 1, + ACTIONS(5744), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3048), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271150,52 +282026,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90960] = 21, + [100776] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5736), 1, - anon_sym_DOT_DOT_DOT, - STATE(4162), 1, + ACTIONS(5746), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3049), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271208,52 +282089,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91039] = 21, + [100862] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5740), 1, - anon_sym_RPAREN, - STATE(4005), 1, + ACTIONS(5732), 1, + anon_sym_DOT_DOT_DOT, + STATE(4328), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3050), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271266,52 +282152,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91118] = 21, + [100948] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5742), 1, - anon_sym_RPAREN, - STATE(4005), 1, + ACTIONS(5562), 1, + anon_sym_DOT_DOT_DOT, + STATE(4336), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3051), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271324,52 +282215,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91197] = 21, + [101034] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5744), 1, + ACTIONS(5748), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3052), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271382,52 +282278,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91276] = 21, + [101120] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5750), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3053), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271440,52 +282341,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91355] = 21, + [101206] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1437), 1, + STATE(1453), 1, sym_plain_type, - STATE(1592), 1, + STATE(1576), 1, sym__type_union_list, - STATE(4563), 1, + STATE(4594), 1, sym_reference_expression, - STATE(1435), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(3054), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271498,52 +282404,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91434] = 21, + [101292] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5748), 1, + ACTIONS(5752), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3055), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271556,52 +282467,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91513] = 21, + [101378] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(579), 1, - anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5428), 1, - anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, - ACTIONS(5750), 1, - anon_sym_RPAREN, - STATE(4005), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2394), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3056), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + ACTIONS(4589), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4591), 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(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271614,39 +282517,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91592] = 8, + [101438] = 23, ACTIONS(3), 1, - sym_comment, - STATE(2438), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(4599), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(4601), 8, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, anon_sym_LPAREN, + ACTIONS(3618), 1, anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, + ACTIONS(5428), 1, anon_sym_BANG, + ACTIONS(5430), 1, anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - anon_sym_map_LBRACK, - STATE(2413), 12, + ACTIONS(5754), 1, + anon_sym_RPAREN, + STATE(3874), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(3057), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271659,52 +282580,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91645] = 21, + [101524] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5752), 1, + ACTIONS(5756), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3058), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271717,52 +282643,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91724] = 21, + [101610] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5754), 1, + ACTIONS(5758), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3059), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271775,52 +282706,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91803] = 21, + [101696] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5760), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3060), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271833,52 +282769,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91882] = 21, + [101782] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5762), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3061), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271891,52 +282832,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91961] = 21, + [101868] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5760), 1, + ACTIONS(5764), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3062), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271949,52 +282895,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92040] = 21, + [101954] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5762), 1, + ACTIONS(5766), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3063), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272007,52 +282958,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92119] = 21, + [102040] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5768), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3064), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272065,52 +283021,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92198] = 21, + [102126] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5766), 1, + ACTIONS(5770), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3065), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272123,52 +283084,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92277] = 21, + [102212] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3630), 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(3632), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5716), 1, + anon_sym_QMARK, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5768), 1, - anon_sym_RPAREN, - STATE(4005), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1453), 1, sym_plain_type, - STATE(4626), 1, + STATE(1540), 1, + sym__type_union_list, + STATE(4594), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3066), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272181,52 +283147,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92356] = 21, + [102298] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5770), 1, + ACTIONS(5772), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3067), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272239,52 +283210,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92435] = 21, + [102384] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5772), 1, + ACTIONS(5774), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3068), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272297,52 +283273,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92514] = 21, + [102470] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5548), 1, - anon_sym_DOT_DOT_DOT, - STATE(4317), 1, + ACTIONS(5776), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3069), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272355,52 +283336,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92593] = 21, + [102556] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5774), 1, + ACTIONS(5778), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3070), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272413,52 +283399,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92672] = 21, + [102642] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5736), 1, + ACTIONS(5732), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5776), 1, + ACTIONS(5780), 1, sym_identifier, - STATE(4162), 1, + STATE(4328), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3071), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272471,52 +283462,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92751] = 21, + [102728] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5778), 1, + ACTIONS(5782), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3072), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272529,52 +283525,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92830] = 21, + [102814] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5780), 1, + ACTIONS(5784), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3073), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272587,52 +283588,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92909] = 21, + [102900] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5782), 1, + ACTIONS(5786), 1, anon_sym_RPAREN, - STATE(4005), 1, + STATE(3874), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3074), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272645,52 +283651,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92988] = 21, + [102986] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5692), 1, - anon_sym_LPAREN, - ACTIONS(5696), 1, - anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5794), 1, anon_sym_AMP, - ACTIONS(5706), 1, - anon_sym_map_LBRACK, - STATE(1437), 1, + STATE(2777), 1, sym_plain_type, - STATE(1528), 1, - sym__type_union_list, - STATE(4563), 1, + STATE(4574), 1, sym_reference_expression, - STATE(1435), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(3075), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272703,52 +283712,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93067] = 21, + [103069] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, ACTIONS(579), 1, + anon_sym_struct, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(593), 1, + anon_sym_chan, + ACTIONS(595), 1, + anon_sym_thread, + ACTIONS(597), 1, + anon_sym_atomic, + ACTIONS(5796), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5798), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5800), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5806), 1, anon_sym_AMP, - ACTIONS(5784), 1, - anon_sym_RPAREN, - STATE(4005), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(644), 1, sym_plain_type, - STATE(4626), 1, + STATE(4521), 1, sym_reference_expression, - STATE(3605), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3076), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272761,50 +283773,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93146] = 20, + [103152] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(1685), 1, + anon_sym_struct, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(4013), 1, - anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5810), 1, + anon_sym_LPAREN, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(2357), 1, + ACTIONS(5822), 1, + anon_sym_map_LBRACK, + STATE(1118), 1, sym_plain_type, - STATE(4626), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3077), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272817,50 +283834,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93222] = 20, + [103235] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(4084), 1, - anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5794), 1, - anon_sym_LPAREN, - ACTIONS(5796), 1, - anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(2538), 1, + STATE(2382), 1, sym_plain_type, - STATE(4445), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2489), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3078), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272873,50 +283895,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93298] = 20, + [103318] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3490), 1, - anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5808), 1, - anon_sym_LPAREN, - ACTIONS(5810), 1, - anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(1273), 1, + STATE(2480), 1, sym_plain_type, - STATE(4466), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1162), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3079), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272929,50 +283956,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93374] = 20, + [103401] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, - sym_identifier, - ACTIONS(3788), 1, - anon_sym_LPAREN, - ACTIONS(3790), 1, - anon_sym_fn, - ACTIONS(3794), 1, - anon_sym_struct, - ACTIONS(3804), 1, - anon_sym_shared, - ACTIONS(3806), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5822), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5824), 1, - anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(1981), 1, - sym_plain_type, - STATE(4487), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1946), 2, + STATE(4746), 1, + sym_plain_type, + STATE(3080), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272985,29 +284017,31 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93450] = 20, + [103484] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, - sym_identifier, - ACTIONS(3788), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3794), 1, - anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3806), 1, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5822), 1, - anon_sym_STAR, ACTIONS(5824), 1, anon_sym_QMARK, ACTIONS(5826), 1, @@ -273016,19 +284050,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5830), 1, anon_sym_AMP, - STATE(1977), 1, + STATE(2475), 1, sym_plain_type, - STATE(4487), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1946), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(3081), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273041,29 +284078,31 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93526] = 20, + [103567] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, - sym_identifier, - ACTIONS(3788), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3794), 1, - anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3806), 1, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5822), 1, - anon_sym_STAR, ACTIONS(5824), 1, anon_sym_QMARK, ACTIONS(5826), 1, @@ -273072,19 +284111,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5830), 1, anon_sym_AMP, - STATE(1956), 1, + STATE(2394), 1, sym_plain_type, - STATE(4487), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1946), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(3082), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273097,50 +284139,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93602] = 20, + [103650] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3989), 1, - anon_sym_chan, - ACTIONS(3991), 1, - anon_sym_thread, - ACTIONS(3993), 1, - anon_sym_atomic, - ACTIONS(5832), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5834), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5836), 1, - anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_map_LBRACK, - STATE(2236), 1, + STATE(4563), 1, sym_plain_type, - STATE(4525), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2176), 2, + STATE(3083), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273153,50 +284200,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93678] = 20, + [103733] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(4559), 1, anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3794), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3806), 1, + ACTIONS(4577), 1, anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5822), 1, - anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5794), 1, anon_sym_AMP, - STATE(1983), 1, + STATE(2790), 1, sym_plain_type, - STATE(4487), 1, + STATE(4574), 1, sym_reference_expression, - STATE(1946), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(3084), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273209,50 +284261,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93754] = 20, + [103816] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5820), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(1226), 1, + STATE(2628), 1, sym_plain_type, - STATE(4466), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1162), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3085), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273265,50 +284322,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93830] = 20, + [103899] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(3788), 1, - anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(3794), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3806), 1, - anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5822), 1, + ACTIONS(5832), 1, + anon_sym_LPAREN, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(2045), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2629), 1, sym_plain_type, STATE(4487), 1, sym_reference_expression, - STATE(1946), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(3086), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273321,50 +284383,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93906] = 20, + [103982] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, - sym_identifier, - ACTIONS(3788), 1, - anon_sym_LPAREN, - ACTIONS(3790), 1, - anon_sym_fn, - ACTIONS(3794), 1, - anon_sym_struct, - ACTIONS(3804), 1, - anon_sym_shared, - ACTIONS(3806), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5822), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5824), 1, - anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(2047), 1, + STATE(3981), 1, sym_plain_type, - STATE(4487), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1946), 2, + STATE(3087), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273377,50 +284444,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93982] = 20, + [104065] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4028), 1, + STATE(4635), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3088), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273433,50 +284505,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94058] = 20, + [104148] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(579), 1, + anon_sym_struct, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(4013), 1, - anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5796), 1, + anon_sym_LPAREN, + ACTIONS(5798), 1, + anon_sym_STAR, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(2376), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(696), 1, sym_plain_type, - STATE(4626), 1, + STATE(4521), 1, sym_reference_expression, - STATE(2323), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3089), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273489,50 +284566,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94134] = 20, + [104231] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(3602), 1, - anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(3606), 1, - anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3620), 1, - anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5832), 1, + anon_sym_LPAREN, + ACTIONS(5834), 1, + anon_sym_STAR, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(1326), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2637), 1, sym_plain_type, - STATE(4409), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1307), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3090), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273545,50 +284627,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94210] = 20, + [104314] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3756), 1, - anon_sym_chan, - ACTIONS(3758), 1, - anon_sym_thread, - ACTIONS(3760), 1, - anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5858), 1, - anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_map_LBRACK, - STATE(1913), 1, + STATE(2350), 1, sym_plain_type, - STATE(4508), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1797), 2, + STATE(3091), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273601,50 +284688,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94286] = 20, + [104397] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(607), 1, - anon_sym_chan, - ACTIONS(609), 1, - anon_sym_thread, - ACTIONS(611), 1, - anon_sym_atomic, - ACTIONS(5868), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5880), 1, - anon_sym_map_LBRACK, - STATE(466), 1, + STATE(2381), 1, sym_plain_type, - STATE(4484), 1, + STATE(4652), 1, sym_reference_expression, - STATE(404), 2, + STATE(3092), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273657,50 +284749,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94362] = 20, + [104480] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3756), 1, - anon_sym_chan, - ACTIONS(3758), 1, - anon_sym_thread, - ACTIONS(3760), 1, - anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5858), 1, - anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_map_LBRACK, - STATE(1912), 1, + STATE(4558), 1, sym_plain_type, - STATE(4508), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1797), 2, + STATE(3093), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273713,50 +284810,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94438] = 20, + [104563] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5858), 1, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5856), 1, anon_sym_AMP, - ACTIONS(5866), 1, + ACTIONS(5858), 1, anon_sym_map_LBRACK, - STATE(1909), 1, + STATE(1944), 1, sym_plain_type, - STATE(4508), 1, + STATE(4549), 1, sym_reference_expression, - STATE(1797), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(3094), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273769,50 +284871,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94514] = 20, + [104646] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5868), 1, + ACTIONS(5796), 1, anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(5798), 1, anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5806), 1, anon_sym_AMP, - ACTIONS(5880), 1, + ACTIONS(5808), 1, anon_sym_map_LBRACK, - STATE(456), 1, + STATE(697), 1, sym_plain_type, - STATE(4484), 1, + STATE(4521), 1, sym_reference_expression, - STATE(404), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3095), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273825,50 +284932,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94590] = 20, + [104729] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5854), 1, - anon_sym_LPAREN, - ACTIONS(5856), 1, - anon_sym_STAR, - ACTIONS(5858), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5794), 1, anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_map_LBRACK, - STATE(1900), 1, + STATE(2788), 1, sym_plain_type, - STATE(4508), 1, + STATE(4574), 1, sym_reference_expression, - STATE(1797), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(3096), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273881,50 +284993,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94666] = 20, + [104812] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(1685), 1, + anon_sym_struct, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(4013), 1, - anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5810), 1, + anon_sym_LPAREN, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(2431), 1, + ACTIONS(5822), 1, + anon_sym_map_LBRACK, + STATE(1058), 1, sym_plain_type, - STATE(4626), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3097), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273937,50 +285054,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94742] = 20, + [104895] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3756), 1, - anon_sym_chan, - ACTIONS(3758), 1, - anon_sym_thread, - ACTIONS(3760), 1, - anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5858), 1, - anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_map_LBRACK, - STATE(1893), 1, + STATE(3897), 1, sym_plain_type, - STATE(4508), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1797), 2, + STATE(3098), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273993,50 +285115,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94818] = 20, + [104978] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4626), 1, - sym_reference_expression, - STATE(4712), 1, + STATE(4607), 1, sym_plain_type, - STATE(3605), 2, + STATE(4652), 1, + sym_reference_expression, + STATE(3099), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274049,50 +285176,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94894] = 20, + [105061] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4018), 1, + STATE(2461), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3100), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274105,50 +285237,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94970] = 20, + [105144] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(4001), 1, + ACTIONS(3987), 1, anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(4013), 1, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5830), 1, anon_sym_AMP, - STATE(2415), 1, + STATE(2350), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2323), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3101), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274161,50 +285298,177 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95046] = 20, + [105227] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3999), 1, + 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(4001), 1, + anon_sym_chan, + ACTIONS(4003), 1, + anon_sym_thread, + ACTIONS(4005), 1, + anon_sym_atomic, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, + anon_sym_BANG, + ACTIONS(5828), 1, + anon_sym_LBRACK2, + ACTIONS(5830), 1, + anon_sym_AMP, + STATE(2479), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2346), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3102), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [105310] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, + anon_sym_fn, + ACTIONS(3987), 1, anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(4013), 1, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5826), 1, + anon_sym_BANG, + ACTIONS(5828), 1, + anon_sym_LBRACK2, + ACTIONS(5830), 1, + anon_sym_AMP, + STATE(2369), 1, + sym_plain_type, + STATE(4652), 1, + sym_reference_expression, + STATE(2346), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3103), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2462), 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, + [105393] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(2414), 1, + STATE(4638), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2323), 2, + STATE(3104), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274217,29 +285481,31 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95122] = 20, + [105476] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, - sym_identifier, - ACTIONS(3788), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3794), 1, - anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3806), 1, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5822), 1, - anon_sym_STAR, ACTIONS(5824), 1, anon_sym_QMARK, ACTIONS(5826), 1, @@ -274248,19 +285514,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5830), 1, anon_sym_AMP, - STATE(1976), 1, + STATE(2461), 1, sym_plain_type, - STATE(4487), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1946), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(3105), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274273,50 +285542,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95198] = 20, + [105559] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(4098), 1, - anon_sym_chan, - ACTIONS(4100), 1, - anon_sym_thread, - ACTIONS(4102), 1, - anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5798), 1, - anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(2658), 1, + STATE(2382), 1, sym_plain_type, - STATE(4445), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2489), 2, + STATE(3106), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274329,50 +285603,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95274] = 20, + [105642] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3688), 1, - anon_sym_chan, - ACTIONS(3690), 1, - anon_sym_thread, - ACTIONS(3692), 1, - anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5884), 1, - anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_map_LBRACK, - STATE(1661), 1, + STATE(3917), 1, sym_plain_type, - STATE(4460), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1688), 2, + STATE(3107), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274385,50 +285664,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95350] = 20, + [105725] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(4084), 1, - anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5794), 1, - anon_sym_LPAREN, - ACTIONS(5796), 1, - anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(2639), 1, + STATE(2374), 1, sym_plain_type, - STATE(4445), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2489), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3108), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274441,50 +285725,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95426] = 20, + [105808] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5868), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5868), 1, anon_sym_AMP, - ACTIONS(5880), 1, + ACTIONS(5870), 1, anon_sym_map_LBRACK, - STATE(467), 1, + STATE(1711), 1, sym_plain_type, - STATE(4484), 1, + STATE(4591), 1, sym_reference_expression, - STATE(404), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3109), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274497,50 +285786,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95502] = 20, + [105891] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3742), 1, - anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5854), 1, - anon_sym_LPAREN, - ACTIONS(5856), 1, - anon_sym_STAR, - ACTIONS(5858), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_map_LBRACK, - STATE(1917), 1, + STATE(2381), 1, sym_plain_type, - STATE(4508), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1797), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(3110), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274553,50 +285847,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95578] = 20, + [105974] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3630), 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(3632), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5862), 1, + anon_sym_QMARK, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5868), 1, anon_sym_AMP, - STATE(3899), 1, + ACTIONS(5870), 1, + anon_sym_map_LBRACK, + STATE(1697), 1, sym_plain_type, - STATE(4626), 1, + STATE(4591), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3111), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274609,50 +285908,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95654] = 20, + [106057] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(1615), 1, - anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5894), 1, - anon_sym_LPAREN, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5906), 1, - anon_sym_map_LBRACK, - STATE(1018), 1, + STATE(2365), 1, sym_plain_type, - STATE(4403), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1014), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3112), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274665,50 +285969,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95730] = 20, + [106140] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 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(85), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(87), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(89), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(579), 1, - anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5830), 1, anon_sym_AMP, - STATE(3958), 1, + STATE(2366), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3113), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274721,50 +286030,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95806] = 20, + [106223] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5868), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5870), 1, anon_sym_map_LBRACK, - STATE(1660), 1, + STATE(1724), 1, sym_plain_type, - STATE(4460), 1, + STATE(4591), 1, sym_reference_expression, - STATE(1688), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3114), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274777,50 +286091,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95882] = 20, + [106306] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5868), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5870), 1, anon_sym_map_LBRACK, - STATE(1659), 1, + STATE(1700), 1, sym_plain_type, - STATE(4460), 1, + STATE(4591), 1, sym_reference_expression, - STATE(1688), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3115), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274833,50 +286152,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95958] = 20, + [106389] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5894), 1, - anon_sym_LPAREN, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5794), 1, anon_sym_AMP, - ACTIONS(5906), 1, - anon_sym_map_LBRACK, - STATE(1077), 1, + STATE(2760), 1, sym_plain_type, - STATE(4403), 1, + STATE(4574), 1, sym_reference_expression, - STATE(1014), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3116), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274889,50 +286213,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96034] = 20, + [106472] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(4559), 1, anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3794), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3806), 1, + ACTIONS(4577), 1, anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5822), 1, - anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5794), 1, anon_sym_AMP, - STATE(1950), 1, + STATE(2775), 1, sym_plain_type, - STATE(4487), 1, + STATE(4574), 1, sym_reference_expression, - STATE(1946), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(3117), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274945,50 +286274,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96110] = 20, + [106555] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5708), 1, - anon_sym_LPAREN, - ACTIONS(5882), 1, - anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5794), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_map_LBRACK, - STATE(1695), 1, + STATE(2772), 1, sym_plain_type, - STATE(4460), 1, + STATE(4574), 1, sym_reference_expression, - STATE(1688), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3118), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275001,50 +286335,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96186] = 20, + [106638] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3602), 1, + ACTIONS(4559), 1, anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3606), 1, + ACTIONS(4563), 1, anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(4577), 1, anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5794), 1, anon_sym_AMP, - STATE(1332), 1, + STATE(2763), 1, sym_plain_type, - STATE(4409), 1, + STATE(4574), 1, sym_reference_expression, - STATE(1307), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3119), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275057,50 +286396,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96262] = 20, + [106721] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3504), 1, - anon_sym_chan, - ACTIONS(3506), 1, - anon_sym_thread, - ACTIONS(3508), 1, - anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5812), 1, - anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(1244), 1, + STATE(4441), 1, sym_plain_type, - STATE(4466), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1162), 2, + STATE(3120), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275113,50 +286457,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96338] = 20, + [106804] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, - sym_identifier, - ACTIONS(3788), 1, - anon_sym_LPAREN, - ACTIONS(3790), 1, - anon_sym_fn, - ACTIONS(3794), 1, - anon_sym_struct, - ACTIONS(3804), 1, - anon_sym_shared, - ACTIONS(3806), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5822), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5824), 1, - anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(1960), 1, + STATE(4432), 1, sym_plain_type, - STATE(4487), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1946), 2, + STATE(3121), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275169,50 +286518,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96414] = 20, + [106887] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5868), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5870), 1, anon_sym_map_LBRACK, - STATE(1672), 1, + STATE(1699), 1, sym_plain_type, - STATE(4460), 1, + STATE(4591), 1, sym_reference_expression, - STATE(1688), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3122), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275225,50 +286579,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96490] = 20, + [106970] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4044), 1, + STATE(2479), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3123), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275281,50 +286640,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96566] = 20, + [107053] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3688), 1, - anon_sym_chan, - ACTIONS(3690), 1, - anon_sym_thread, - ACTIONS(3692), 1, - anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5884), 1, - anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_map_LBRACK, - STATE(1662), 1, + STATE(4196), 1, sym_plain_type, - STATE(4460), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1688), 2, + STATE(3124), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275337,50 +286701,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96642] = 20, + [107136] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3630), 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(3632), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5862), 1, + anon_sym_QMARK, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5868), 1, anon_sym_AMP, - STATE(4067), 1, + ACTIONS(5870), 1, + anon_sym_map_LBRACK, + STATE(1674), 1, sym_plain_type, - STATE(4626), 1, + STATE(4591), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3125), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275393,29 +286762,31 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96718] = 20, + [107219] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, - sym_identifier, - ACTIONS(3788), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3794), 1, - anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3806), 1, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5822), 1, - anon_sym_STAR, ACTIONS(5824), 1, anon_sym_QMARK, ACTIONS(5826), 1, @@ -275424,19 +286795,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5830), 1, anon_sym_AMP, - STATE(2109), 1, + STATE(2896), 1, sym_plain_type, - STATE(4487), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1946), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(3126), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275449,50 +286823,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96794] = 20, + [107302] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3756), 1, - anon_sym_chan, - ACTIONS(3758), 1, - anon_sym_thread, - ACTIONS(3760), 1, - anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5858), 1, - anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_map_LBRACK, - STATE(1883), 1, + STATE(4180), 1, sym_plain_type, - STATE(4508), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1797), 2, + STATE(3127), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275505,50 +286884,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96870] = 20, + [107385] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3742), 1, - anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5854), 1, - anon_sym_LPAREN, - ACTIONS(5856), 1, - anon_sym_STAR, - ACTIONS(5858), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_map_LBRACK, - STATE(1882), 1, + STATE(2898), 1, sym_plain_type, - STATE(4508), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1797), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(3128), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275561,50 +286945,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96946] = 20, + [107468] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5868), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5868), 1, anon_sym_AMP, - ACTIONS(5880), 1, + ACTIONS(5870), 1, anon_sym_map_LBRACK, - STATE(677), 1, + STATE(1698), 1, sym_plain_type, - STATE(4484), 1, + STATE(4591), 1, sym_reference_expression, - STATE(404), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3129), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275617,50 +287006,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97022] = 20, + [107551] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5868), 1, - anon_sym_LPAREN, - ACTIONS(5870), 1, - anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5794), 1, anon_sym_AMP, - ACTIONS(5880), 1, - anon_sym_map_LBRACK, - STATE(678), 1, + STATE(2762), 1, sym_plain_type, - STATE(4484), 1, + STATE(4574), 1, sym_reference_expression, - STATE(404), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3130), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275673,50 +287067,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97098] = 20, + [107634] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5868), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5870), 1, anon_sym_map_LBRACK, - STATE(1715), 1, + STATE(1676), 1, sym_plain_type, - STATE(4460), 1, + STATE(4591), 1, sym_reference_expression, - STATE(1688), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3131), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275729,50 +287128,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97174] = 20, + [107717] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5708), 1, - anon_sym_LPAREN, - ACTIONS(5882), 1, - anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5794), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_map_LBRACK, - STATE(1673), 1, + STATE(2761), 1, sym_plain_type, - STATE(4460), 1, + STATE(4574), 1, sym_reference_expression, - STATE(1688), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3132), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275785,50 +287189,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97250] = 20, + [107800] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5856), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5858), 1, anon_sym_map_LBRACK, - STATE(1716), 1, + STATE(1920), 1, sym_plain_type, - STATE(4460), 1, + STATE(4549), 1, sym_reference_expression, - STATE(1688), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3133), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275841,50 +287250,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97326] = 20, + [107883] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5708), 1, - anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5880), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_map_LBRACK, - STATE(1676), 1, + STATE(2061), 1, sym_plain_type, - STATE(4460), 1, + STATE(4528), 1, sym_reference_expression, - STATE(1688), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3134), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275897,50 +287311,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97402] = 20, + [107966] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(3664), 1, + anon_sym_struct, + ACTIONS(5610), 1, anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(4013), 1, - anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, + anon_sym_STAR, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(2374), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(1697), 1, sym_plain_type, - STATE(4626), 1, + STATE(4442), 1, sym_reference_expression, - STATE(2323), 2, + STATE(3135), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275953,50 +287372,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97478] = 20, + [108049] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5856), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5858), 1, anon_sym_map_LBRACK, - STATE(1700), 1, + STATE(1911), 1, sym_plain_type, - STATE(4460), 1, + STATE(4549), 1, sym_reference_expression, - STATE(1688), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3136), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276009,50 +287433,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97554] = 20, + [108132] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, - sym_identifier, - ACTIONS(3999), 1, - anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, - anon_sym_shared, - ACTIONS(4013), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5786), 1, - anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(2454), 1, + STATE(4485), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2323), 2, + STATE(3137), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276065,50 +287494,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97630] = 20, + [108215] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(3664), 1, + anon_sym_struct, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(4013), 1, - anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5860), 1, + anon_sym_STAR, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5868), 1, anon_sym_AMP, - STATE(2455), 1, + ACTIONS(5870), 1, + anon_sym_map_LBRACK, + STATE(1679), 1, sym_plain_type, - STATE(4626), 1, + STATE(4591), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3138), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276121,50 +287555,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97706] = 20, + [108298] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3630), 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(3632), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5862), 1, + anon_sym_QMARK, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5868), 1, anon_sym_AMP, - STATE(4322), 1, + ACTIONS(5870), 1, + anon_sym_map_LBRACK, + STATE(1687), 1, sym_plain_type, - STATE(4626), 1, + STATE(4591), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3139), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276177,50 +287616,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97782] = 20, + [108381] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(3664), 1, + anon_sym_struct, + ACTIONS(5610), 1, anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(4013), 1, - anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, + anon_sym_STAR, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(2456), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(1688), 1, sym_plain_type, - STATE(4626), 1, + STATE(4442), 1, sym_reference_expression, - STATE(2323), 2, + STATE(3140), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276233,50 +287677,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97858] = 20, + [108464] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3642), 1, - anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, - anon_sym_STAR, ACTIONS(5698), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5700), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5702), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5704), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5706), 1, + anon_sym_AMP, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1498), 1, + STATE(1687), 1, sym_plain_type, - STATE(4563), 1, + STATE(4442), 1, sym_reference_expression, - STATE(1435), 2, + STATE(3141), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276289,50 +287738,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97934] = 20, + [108547] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3630), 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(3632), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5862), 1, + anon_sym_QMARK, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5868), 1, anon_sym_AMP, - STATE(2456), 1, + ACTIONS(5870), 1, + anon_sym_map_LBRACK, + STATE(1688), 1, sym_plain_type, - STATE(4626), 1, + STATE(4591), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3142), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276345,50 +287799,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98010] = 20, + [108630] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3788), 1, - anon_sym_LPAREN, - ACTIONS(3790), 1, - anon_sym_fn, - ACTIONS(3794), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3806), 1, - anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5822), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(2117), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(1679), 1, sym_plain_type, - STATE(4487), 1, + STATE(4442), 1, sym_reference_expression, - STATE(1946), 2, + STATE(3143), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276401,50 +287860,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98086] = 20, + [108713] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3646), 1, - anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5692), 1, - anon_sym_LPAREN, - ACTIONS(5696), 1, - anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5706), 1, - anon_sym_map_LBRACK, - STATE(1478), 1, + STATE(2453), 1, sym_plain_type, - STATE(4563), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1435), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(3144), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276457,50 +287921,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98162] = 20, + [108796] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(593), 1, - anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5868), 1, - anon_sym_LPAREN, - ACTIONS(5870), 1, - anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5880), 1, - anon_sym_map_LBRACK, - STATE(459), 1, + STATE(2454), 1, sym_plain_type, - STATE(4484), 1, + STATE(4652), 1, sym_reference_expression, - STATE(404), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3145), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276513,50 +287982,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98238] = 20, + [108879] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, - sym_identifier, - ACTIONS(3788), 1, - anon_sym_LPAREN, - ACTIONS(3790), 1, - anon_sym_fn, - ACTIONS(3794), 1, - anon_sym_struct, - ACTIONS(3804), 1, - anon_sym_shared, - ACTIONS(3806), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5822), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5824), 1, - anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(2118), 1, + STATE(3959), 1, sym_plain_type, - STATE(4487), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1946), 2, + STATE(3146), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276569,50 +288043,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98314] = 20, + [108962] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(4591), 1, - anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5908), 1, + ACTIONS(5796), 1, + anon_sym_LPAREN, + ACTIONS(5798), 1, + anon_sym_STAR, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(2721), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(509), 1, sym_plain_type, - STATE(4533), 1, + STATE(4521), 1, sym_reference_expression, - STATE(2652), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(3147), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276625,50 +288104,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98390] = 20, + [109045] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5868), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5892), 1, anon_sym_AMP, - ACTIONS(5880), 1, + ACTIONS(5894), 1, anon_sym_map_LBRACK, - STATE(653), 1, + STATE(1221), 1, sym_plain_type, - STATE(4484), 1, + STATE(4507), 1, sym_reference_expression, - STATE(404), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3148), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276681,50 +288165,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98466] = 20, + [109128] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(4591), 1, - anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5908), 1, + ACTIONS(5882), 1, + anon_sym_LPAREN, + ACTIONS(5884), 1, + anon_sym_STAR, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5892), 1, anon_sym_AMP, - STATE(2722), 1, + ACTIONS(5894), 1, + anon_sym_map_LBRACK, + STATE(1214), 1, sym_plain_type, - STATE(4533), 1, + STATE(4507), 1, sym_reference_expression, - STATE(2652), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(3149), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276737,50 +288226,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98542] = 20, + [109211] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3642), 1, - anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, - anon_sym_STAR, ACTIONS(5698), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5700), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5702), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5704), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5706), 1, + anon_sym_AMP, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1508), 1, + STATE(1676), 1, sym_plain_type, - STATE(4563), 1, + STATE(4442), 1, sym_reference_expression, - STATE(1435), 2, + STATE(3150), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276793,50 +288287,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98618] = 20, + [109294] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(5626), 1, + anon_sym_chan, + ACTIONS(5628), 1, + anon_sym_thread, + ACTIONS(5630), 1, + anon_sym_atomic, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5700), 1, + anon_sym_QMARK, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(4056), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(1698), 1, sym_plain_type, - STATE(4626), 1, + STATE(4442), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3151), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276849,50 +288348,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98694] = 20, + [109377] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5892), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5894), 1, anon_sym_map_LBRACK, - STATE(1506), 1, + STATE(1212), 1, sym_plain_type, - STATE(4563), 1, + STATE(4507), 1, sym_reference_expression, - STATE(1435), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(3152), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276905,50 +288409,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98770] = 20, + [109460] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5808), 1, - anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(1175), 1, + STATE(2161), 1, sym_plain_type, - STATE(4466), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3153), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276961,50 +288470,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98846] = 20, + [109543] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3504), 1, - anon_sym_chan, - ACTIONS(3506), 1, - anon_sym_thread, - ACTIONS(3508), 1, - anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5812), 1, - anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(1179), 1, + STATE(4082), 1, sym_plain_type, - STATE(4466), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1162), 2, + STATE(3154), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277017,50 +288531,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98922] = 20, + [109626] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5794), 1, - anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(2614), 1, + STATE(2162), 1, sym_plain_type, - STATE(4445), 1, + STATE(4480), 1, sym_reference_expression, - STATE(2489), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3155), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277073,50 +288592,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98998] = 20, + [109709] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5794), 1, - anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(2617), 1, + STATE(2167), 1, sym_plain_type, - STATE(4445), 1, + STATE(4480), 1, sym_reference_expression, - STATE(2489), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3156), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277129,50 +288653,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99074] = 20, + [109792] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(4591), 1, - anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5908), 1, + ACTIONS(5846), 1, + anon_sym_LPAREN, + ACTIONS(5848), 1, + anon_sym_STAR, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5856), 1, anon_sym_AMP, - STATE(2723), 1, + ACTIONS(5858), 1, + anon_sym_map_LBRACK, + STATE(1860), 1, sym_plain_type, - STATE(4533), 1, + STATE(4549), 1, sym_reference_expression, - STATE(2652), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(3157), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277185,50 +288714,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99150] = 20, + [109875] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, ACTIONS(579), 1, + anon_sym_struct, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(593), 1, + anon_sym_chan, + ACTIONS(595), 1, + anon_sym_thread, + ACTIONS(597), 1, + anon_sym_atomic, + ACTIONS(5796), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5798), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5800), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(4626), 1, - sym_reference_expression, - STATE(4630), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(788), 1, sym_plain_type, - STATE(3605), 2, + STATE(4521), 1, + sym_reference_expression, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3158), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277241,50 +288775,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99226] = 20, + [109958] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5856), 1, anon_sym_AMP, - ACTIONS(5820), 1, + ACTIONS(5858), 1, anon_sym_map_LBRACK, - STATE(1194), 1, + STATE(1906), 1, sym_plain_type, - STATE(4466), 1, + STATE(4549), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3159), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277297,50 +288836,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99302] = 20, + [110041] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, ACTIONS(579), 1, + anon_sym_struct, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(593), 1, + anon_sym_chan, + ACTIONS(595), 1, + anon_sym_thread, + ACTIONS(597), 1, + anon_sym_atomic, + ACTIONS(5796), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5798), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5800), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(2455), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(771), 1, sym_plain_type, - STATE(4626), 1, + STATE(4521), 1, sym_reference_expression, - STATE(3605), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3160), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277353,50 +288897,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99378] = 20, + [110124] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5794), 1, - anon_sym_LPAREN, ACTIONS(5796), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5798), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5800), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5802), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5804), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5808), 1, anon_sym_map_LBRACK, - STATE(2521), 1, + STATE(656), 1, sym_plain_type, - STATE(4445), 1, + STATE(4521), 1, sym_reference_expression, - STATE(2489), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3161), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277409,50 +288958,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99454] = 20, + [110207] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4589), 1, + STATE(4550), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3162), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277465,50 +289019,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99530] = 20, + [110290] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5808), 1, - anon_sym_LPAREN, ACTIONS(5810), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5812), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5814), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5816), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5818), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5820), 1, + anon_sym_AMP, + ACTIONS(5822), 1, anon_sym_map_LBRACK, - STATE(1185), 1, + STATE(1111), 1, sym_plain_type, STATE(4466), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3163), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277521,50 +289080,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99606] = 20, + [110373] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3989), 1, - anon_sym_chan, - ACTIONS(3991), 1, - anon_sym_thread, - ACTIONS(3993), 1, - anon_sym_atomic, - ACTIONS(5832), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5834), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5836), 1, - anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_map_LBRACK, - STATE(2287), 1, + STATE(4556), 1, sym_plain_type, - STATE(4525), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2176), 2, + STATE(3164), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277577,50 +289141,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99682] = 20, + [110456] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5832), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(5834), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5856), 1, anon_sym_AMP, - ACTIONS(5844), 1, + ACTIONS(5858), 1, anon_sym_map_LBRACK, - STATE(2278), 1, + STATE(1896), 1, sym_plain_type, - STATE(4525), 1, + STATE(4549), 1, sym_reference_expression, - STATE(2176), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3165), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277633,50 +289202,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99758] = 20, + [110539] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(3734), 1, + anon_sym_struct, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(4013), 1, - anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5846), 1, + anon_sym_LPAREN, + ACTIONS(5848), 1, + anon_sym_STAR, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5856), 1, anon_sym_AMP, - STATE(2375), 1, + ACTIONS(5858), 1, + anon_sym_map_LBRACK, + STATE(1868), 1, sym_plain_type, - STATE(4626), 1, + STATE(4549), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3166), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277689,50 +289263,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99834] = 20, + [110622] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5832), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(5834), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5856), 1, anon_sym_AMP, - ACTIONS(5844), 1, + ACTIONS(5858), 1, anon_sym_map_LBRACK, - STATE(2238), 1, + STATE(1865), 1, sym_plain_type, - STATE(4525), 1, + STATE(4549), 1, sym_reference_expression, - STATE(2176), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3167), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277745,50 +289324,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99910] = 20, + [110705] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5832), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(5834), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5856), 1, anon_sym_AMP, - ACTIONS(5844), 1, + ACTIONS(5858), 1, anon_sym_map_LBRACK, - STATE(2202), 1, + STATE(1861), 1, sym_plain_type, - STATE(4525), 1, + STATE(4549), 1, sym_reference_expression, - STATE(2176), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3168), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277801,50 +289385,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99986] = 20, + [110788] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(5918), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5920), 1, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5922), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5924), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5926), 1, + ACTIONS(5856), 1, anon_sym_AMP, - ACTIONS(5928), 1, + ACTIONS(5858), 1, anon_sym_map_LBRACK, - STATE(3434), 1, + STATE(1867), 1, sym_plain_type, - STATE(4436), 1, + STATE(4549), 1, sym_reference_expression, - STATE(3380), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3437), 4, + STATE(3169), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3444), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277857,50 +289446,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100062] = 20, + [110871] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5858), 1, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5856), 1, anon_sym_AMP, - ACTIONS(5866), 1, + ACTIONS(5858), 1, anon_sym_map_LBRACK, - STATE(1847), 1, + STATE(1866), 1, sym_plain_type, - STATE(4508), 1, + STATE(4549), 1, sym_reference_expression, - STATE(1797), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(3170), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277913,50 +289507,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100138] = 20, + [110954] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(3833), 1, + anon_sym_struct, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(4013), 1, + ACTIONS(3845), 1, anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5872), 1, + anon_sym_STAR, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5880), 1, anon_sym_AMP, - STATE(2393), 1, + STATE(2072), 1, sym_plain_type, - STATE(4626), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3171), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277969,50 +289568,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100214] = 20, + [111037] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5808), 1, - anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5880), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(1228), 1, + STATE(2069), 1, sym_plain_type, - STATE(4466), 1, + STATE(4528), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3172), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278025,50 +289629,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100290] = 20, + [111120] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(4573), 1, + ACTIONS(3827), 1, anon_sym_LPAREN, - ACTIONS(4575), 1, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(4591), 1, + ACTIONS(3845), 1, anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5908), 1, + ACTIONS(5872), 1, + anon_sym_STAR, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5880), 1, anon_sym_AMP, - STATE(2731), 1, + STATE(2048), 1, sym_plain_type, - STATE(4533), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2652), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(3173), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278081,50 +289690,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100366] = 20, + [111203] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(4591), 1, - anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5908), 1, + ACTIONS(5810), 1, + anon_sym_LPAREN, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(2734), 1, + ACTIONS(5822), 1, + anon_sym_map_LBRACK, + STATE(1113), 1, sym_plain_type, - STATE(4533), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2652), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(3174), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278137,50 +289751,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100442] = 20, + [111286] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, - sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, - anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, - anon_sym_struct, - ACTIONS(4589), 1, - anon_sym_shared, - ACTIONS(4591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5908), 1, - anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(2504), 1, + STATE(3874), 1, sym_plain_type, - STATE(4533), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2652), 2, + STATE(3175), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278193,50 +289812,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100518] = 20, + [111369] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, - sym_identifier, - ACTIONS(3999), 1, - anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, - anon_sym_shared, - ACTIONS(4013), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5786), 1, - anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(2438), 1, + STATE(3945), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2323), 2, + STATE(3176), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278249,50 +289873,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100594] = 20, + [111452] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, - sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, - anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, - anon_sym_struct, - ACTIONS(4589), 1, - anon_sym_shared, - ACTIONS(4591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5908), 1, - anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(2720), 1, + STATE(2480), 1, sym_plain_type, - STATE(4533), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2652), 2, + STATE(3177), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278305,50 +289934,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100670] = 20, + [111535] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5832), 1, - anon_sym_LPAREN, - ACTIONS(5834), 1, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5880), 1, anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_map_LBRACK, - STATE(2233), 1, + STATE(2047), 1, sym_plain_type, - STATE(4525), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2176), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3178), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278361,50 +289995,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100746] = 20, + [111618] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3602), 1, + ACTIONS(3790), 1, anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(3606), 1, - anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3808), 1, anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(1395), 1, + STATE(2091), 1, sym_plain_type, - STATE(4409), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1307), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3179), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278417,50 +290056,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100822] = 20, + [111701] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5692), 1, - anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5706), 1, - anon_sym_map_LBRACK, - STATE(1504), 1, + STATE(2089), 1, sym_plain_type, - STATE(4563), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1435), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(3180), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278473,106 +290117,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100898] = 20, + [111784] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5428), 1, - anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, - STATE(3990), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [100974] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, + ACTIONS(4577), 1, anon_sym_map_LBRACK, - ACTIONS(85), 1, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(87), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(579), 1, - anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(4583), 1, + anon_sym_atomic, + ACTIONS(5788), 1, + anon_sym_QMARK, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5794), 1, anon_sym_AMP, - STATE(2369), 1, + STATE(2634), 1, sym_plain_type, - STATE(4626), 1, + STATE(4574), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3181), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278585,50 +290178,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101050] = 20, + [111867] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(4573), 1, + ACTIONS(4559), 1, anon_sym_LPAREN, - ACTIONS(4575), 1, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(4577), 1, + ACTIONS(4563), 1, anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(4591), 1, + ACTIONS(4577), 1, anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5908), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5794), 1, anon_sym_AMP, - STATE(2736), 1, + STATE(2631), 1, sym_plain_type, - STATE(4533), 1, + STATE(4574), 1, sym_reference_expression, - STATE(2652), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(3182), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278641,50 +290239,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101126] = 20, + [111950] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3756), 1, - anon_sym_chan, - ACTIONS(3758), 1, - anon_sym_thread, - ACTIONS(3760), 1, - anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5858), 1, - anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_map_LBRACK, - STATE(1892), 1, + STATE(2475), 1, sym_plain_type, - STATE(4508), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1797), 2, + STATE(3183), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278697,50 +290300,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101202] = 20, + [112033] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5832), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5834), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5844), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(2205), 1, + STATE(2235), 1, sym_plain_type, - STATE(4525), 1, + STATE(4566), 1, sym_reference_expression, - STATE(2176), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3184), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278753,50 +290361,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101278] = 20, + [112116] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5820), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(1199), 1, + STATE(2233), 1, sym_plain_type, - STATE(4466), 1, + STATE(4566), 1, sym_reference_expression, - STATE(1162), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3185), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278809,50 +290422,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101354] = 20, + [112199] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, - anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(4591), 1, - anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5908), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, + anon_sym_STAR, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(2749), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(1674), 1, sym_plain_type, - STATE(4533), 1, + STATE(4442), 1, sym_reference_expression, - STATE(2652), 2, + STATE(3186), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278865,50 +290483,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101430] = 20, + [112282] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, + anon_sym_chan, + ACTIONS(3849), 1, + anon_sym_thread, + ACTIONS(3851), 1, + anon_sym_atomic, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5874), 1, + anon_sym_QMARK, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5880), 1, anon_sym_AMP, - STATE(3999), 1, + STATE(2060), 1, sym_plain_type, - STATE(4626), 1, + STATE(4528), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3187), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278921,50 +290544,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101506] = 20, + [112365] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3504), 1, - anon_sym_chan, - ACTIONS(3506), 1, - anon_sym_thread, - ACTIONS(3508), 1, - anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5812), 1, - anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(1193), 1, + STATE(2394), 1, sym_plain_type, - STATE(4466), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1162), 2, + STATE(3188), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278977,50 +290605,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101582] = 20, + [112448] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(4591), 1, - anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5908), 1, + ACTIONS(5846), 1, + anon_sym_LPAREN, + ACTIONS(5848), 1, + anon_sym_STAR, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5856), 1, anon_sym_AMP, - STATE(2747), 1, + ACTIONS(5858), 1, + anon_sym_map_LBRACK, + STATE(1852), 1, sym_plain_type, - STATE(4533), 1, + STATE(4549), 1, sym_reference_expression, - STATE(2652), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(3189), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279033,50 +290666,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101658] = 20, + [112531] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5832), 1, - anon_sym_LPAREN, - ACTIONS(5834), 1, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5880), 1, anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_map_LBRACK, - STATE(2204), 1, + STATE(2056), 1, sym_plain_type, - STATE(4525), 1, + STATE(4528), 1, sym_reference_expression, - STATE(2176), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3190), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279089,50 +290727,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101734] = 20, + [112614] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3748), 1, + anon_sym_chan, + ACTIONS(3750), 1, + anon_sym_thread, + ACTIONS(3752), 1, + anon_sym_atomic, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5850), 1, + anon_sym_QMARK, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5856), 1, anon_sym_AMP, - STATE(4288), 1, + ACTIONS(5858), 1, + anon_sym_map_LBRACK, + STATE(1849), 1, sym_plain_type, - STATE(4626), 1, + STATE(4549), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3191), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279145,50 +290788,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101810] = 20, + [112697] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5832), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5834), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5892), 1, anon_sym_AMP, - ACTIONS(5844), 1, + ACTIONS(5894), 1, anon_sym_map_LBRACK, - STATE(2203), 1, + STATE(1292), 1, sym_plain_type, - STATE(4525), 1, + STATE(4507), 1, sym_reference_expression, - STATE(2176), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3192), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279201,50 +290849,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101886] = 20, + [112780] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3835), 1, + ACTIONS(3827), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3853), 1, + ACTIONS(3845), 1, anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5880), 1, anon_sym_AMP, - STATE(1997), 1, + STATE(2050), 1, sym_plain_type, - STATE(4424), 1, + STATE(4528), 1, sym_reference_expression, - STATE(1935), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3193), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279257,50 +290910,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101962] = 20, + [112863] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5916), 1, - anon_sym_LPAREN, - ACTIONS(5918), 1, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5920), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5922), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5924), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5926), 1, + ACTIONS(5880), 1, anon_sym_AMP, - ACTIONS(5928), 1, - anon_sym_map_LBRACK, - STATE(3429), 1, + STATE(2049), 1, sym_plain_type, - STATE(4436), 1, + STATE(4528), 1, sym_reference_expression, - STATE(3380), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3437), 4, + STATE(3194), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3444), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279313,50 +290971,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102038] = 20, + [112946] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5882), 1, + anon_sym_LPAREN, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5892), 1, anon_sym_AMP, - STATE(2148), 1, + ACTIONS(5894), 1, + anon_sym_map_LBRACK, + STATE(1288), 1, sym_plain_type, - STATE(4424), 1, + STATE(4507), 1, sym_reference_expression, - STATE(1935), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3195), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279369,50 +291032,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102114] = 20, + [113029] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3458), 1, - anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5918), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5920), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5922), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5924), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5926), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5928), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(3441), 1, + STATE(1699), 1, sym_plain_type, - STATE(4436), 1, + STATE(4442), 1, sym_reference_expression, - STATE(3380), 2, + STATE(3196), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3437), 4, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3444), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279425,50 +291093,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102190] = 20, + [113112] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3504), 1, - anon_sym_chan, - ACTIONS(3506), 1, - anon_sym_thread, - ACTIONS(3508), 1, - anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5812), 1, - anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(1264), 1, + STATE(4031), 1, sym_plain_type, - STATE(4466), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1162), 2, + STATE(3197), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279481,50 +291154,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102266] = 20, + [113195] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(4591), 1, - anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5908), 1, + ACTIONS(5796), 1, + anon_sym_LPAREN, + ACTIONS(5798), 1, + anon_sym_STAR, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(2762), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(852), 1, sym_plain_type, - STATE(4533), 1, + STATE(4521), 1, sym_reference_expression, - STATE(2652), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(3198), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279537,50 +291215,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102342] = 20, + [113278] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5796), 1, anon_sym_LPAREN, - ACTIONS(5918), 1, + ACTIONS(5798), 1, anon_sym_STAR, - ACTIONS(5920), 1, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5922), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5924), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5926), 1, + ACTIONS(5806), 1, anon_sym_AMP, - ACTIONS(5928), 1, + ACTIONS(5808), 1, anon_sym_map_LBRACK, - STATE(3430), 1, + STATE(845), 1, sym_plain_type, - STATE(4436), 1, + STATE(4521), 1, sym_reference_expression, - STATE(3380), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3437), 4, + STATE(3199), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3444), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279593,50 +291276,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102418] = 20, + [113361] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5882), 1, + anon_sym_LPAREN, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5892), 1, anon_sym_AMP, - STATE(2086), 1, + ACTIONS(5894), 1, + anon_sym_map_LBRACK, + STATE(1251), 1, sym_plain_type, - STATE(4424), 1, + STATE(4507), 1, sym_reference_expression, - STATE(1935), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3200), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279649,50 +291337,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102494] = 20, + [113444] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(4591), 1, - anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5908), 1, + ACTIONS(5796), 1, + anon_sym_LPAREN, + ACTIONS(5798), 1, + anon_sym_STAR, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5910), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5912), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5914), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(2765), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(501), 1, sym_plain_type, - STATE(4533), 1, + STATE(4521), 1, sym_reference_expression, - STATE(2652), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(3201), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279705,50 +291398,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102570] = 20, + [113527] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5892), 1, anon_sym_AMP, - ACTIONS(5820), 1, + ACTIONS(5894), 1, anon_sym_map_LBRACK, - STATE(1181), 1, + STATE(1287), 1, sym_plain_type, - STATE(4466), 1, + STATE(4507), 1, sym_reference_expression, STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3202), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279761,50 +291459,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102646] = 20, + [113610] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5808), 1, - anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5880), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(1183), 1, + STATE(1962), 1, sym_plain_type, - STATE(4466), 1, + STATE(4528), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3203), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279817,50 +291520,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102722] = 20, + [113693] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5892), 1, anon_sym_AMP, - ACTIONS(5820), 1, + ACTIONS(5894), 1, anon_sym_map_LBRACK, - STATE(1184), 1, + STATE(1186), 1, sym_plain_type, - STATE(4466), 1, + STATE(4507), 1, sym_reference_expression, STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3204), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279873,50 +291581,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102798] = 20, + [113776] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3835), 1, + ACTIONS(3827), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3853), 1, + ACTIONS(3845), 1, anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5880), 1, anon_sym_AMP, - STATE(2149), 1, + STATE(2074), 1, sym_plain_type, - STATE(4424), 1, + STATE(4528), 1, sym_reference_expression, - STATE(1935), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3205), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279929,50 +291642,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102874] = 20, + [113859] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5892), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5894), 1, anon_sym_map_LBRACK, - STATE(2537), 1, + STATE(1249), 1, sym_plain_type, - STATE(4445), 1, + STATE(4507), 1, sym_reference_expression, - STATE(2489), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3206), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279985,50 +291703,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102950] = 20, + [113942] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(4591), 1, - anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(3981), 1, anon_sym_atomic, + ACTIONS(5906), 1, + anon_sym_LPAREN, ACTIONS(5908), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5910), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5912), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5914), 1, + anon_sym_LBRACK2, + ACTIONS(5916), 1, anon_sym_AMP, - STATE(2771), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(2258), 1, sym_plain_type, - STATE(4533), 1, + STATE(4566), 1, sym_reference_expression, - STATE(2652), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2707), 4, + STATE(3207), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2708), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280041,50 +291764,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103026] = 20, + [114025] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3602), 1, - anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(3606), 1, - anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3620), 1, - anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5714), 1, + anon_sym_STAR, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(1382), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1488), 1, sym_plain_type, - STATE(4409), 1, + STATE(4594), 1, sym_reference_expression, - STATE(1307), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3208), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280097,50 +291825,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103102] = 20, + [114108] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(2507), 1, + STATE(2315), 1, sym_plain_type, - STATE(4445), 1, + STATE(4566), 1, sym_reference_expression, - STATE(2489), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3209), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280153,50 +291886,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103178] = 20, + [114191] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4314), 1, + STATE(3967), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3210), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280209,50 +291947,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103254] = 20, + [114274] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3602), 1, - anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3606), 1, - anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3620), 1, - anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5906), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, + anon_sym_STAR, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5916), 1, anon_sym_AMP, - STATE(1390), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(2203), 1, sym_plain_type, - STATE(4409), 1, + STATE(4566), 1, sym_reference_expression, - STATE(1307), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3211), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280265,50 +292008,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103330] = 20, + [114357] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, - sym_identifier, - ACTIONS(3602), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3606), 1, + ACTIONS(3987), 1, anon_sym_STAR, - ACTIONS(3608), 1, - anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5830), 1, anon_sym_AMP, - STATE(1391), 1, + STATE(2634), 1, sym_plain_type, - STATE(4409), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1307), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3212), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280321,106 +292069,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103406] = 20, + [114440] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, - anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, - ACTIONS(5428), 1, - anon_sym_LBRACK2, - ACTIONS(5430), 1, - anon_sym_AMP, - STATE(4566), 1, - sym_plain_type, - STATE(4626), 1, - sym_reference_expression, - STATE(3605), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2406), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2413), 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, - [103482] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3602), 1, - anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3606), 1, + ACTIONS(3987), 1, anon_sym_STAR, - ACTIONS(3608), 1, - anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5830), 1, anon_sym_AMP, - STATE(1325), 1, + STATE(2631), 1, sym_plain_type, - STATE(4409), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1307), 2, + STATE(2346), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3213), 2, + sym_line_comment, + sym_block_comment, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280433,50 +292130,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103558] = 20, + [114523] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5796), 1, + anon_sym_LPAREN, + ACTIONS(5798), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(2004), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(652), 1, sym_plain_type, - STATE(4424), 1, + STATE(4521), 1, sym_reference_expression, - STATE(1935), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3214), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280489,50 +292191,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103634] = 20, + [114606] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5906), 1, + anon_sym_LPAREN, + 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, - STATE(2005), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(2237), 1, sym_plain_type, - STATE(4424), 1, + STATE(4566), 1, sym_reference_expression, - STATE(1935), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3215), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280545,50 +292252,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103710] = 20, + [114689] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(607), 1, - anon_sym_chan, - ACTIONS(609), 1, - anon_sym_thread, - ACTIONS(611), 1, - anon_sym_atomic, - ACTIONS(5868), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5872), 1, - anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5880), 1, - anon_sym_map_LBRACK, - STATE(813), 1, + STATE(2369), 1, sym_plain_type, - STATE(4484), 1, + STATE(4652), 1, sym_reference_expression, - STATE(404), 2, + STATE(3216), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280601,50 +292313,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103786] = 20, + [114772] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3660), 1, - anon_sym_chan, - ACTIONS(3662), 1, - anon_sym_thread, - ACTIONS(3664), 1, - anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5698), 1, - anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5706), 1, - anon_sym_map_LBRACK, - STATE(1497), 1, + STATE(4221), 1, sym_plain_type, - STATE(4563), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1435), 2, + STATE(3217), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280657,27 +292374,31 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103862] = 20, + [114855] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5916), 1, - anon_sym_LPAREN, - ACTIONS(5918), 1, - anon_sym_STAR, ACTIONS(5920), 1, anon_sym_QMARK, ACTIONS(5922), 1, @@ -280686,21 +292407,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5928), 1, - anon_sym_map_LBRACK, - STATE(3439), 1, + STATE(1408), 1, sym_plain_type, - STATE(4436), 1, + STATE(4450), 1, sym_reference_expression, - STATE(3380), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3437), 4, + STATE(3218), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3444), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280713,50 +292435,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103938] = 20, + [114938] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3496), 1, + anon_sym_chan, + ACTIONS(3498), 1, + anon_sym_thread, + ACTIONS(3500), 1, + anon_sym_atomic, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5886), 1, + anon_sym_QMARK, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5892), 1, anon_sym_AMP, - STATE(4626), 1, - sym_reference_expression, - STATE(4642), 1, + ACTIONS(5894), 1, + anon_sym_map_LBRACK, + STATE(1245), 1, sym_plain_type, - STATE(3605), 2, + STATE(4507), 1, + sym_reference_expression, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3219), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280769,50 +292496,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104014] = 20, + [115021] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5868), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5880), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(654), 1, + STATE(2273), 1, sym_plain_type, - STATE(4484), 1, + STATE(4566), 1, sym_reference_expression, - STATE(404), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3220), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280825,50 +292557,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104090] = 20, + [115104] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5868), 1, - anon_sym_LPAREN, - ACTIONS(5870), 1, - anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5880), 1, - anon_sym_map_LBRACK, - STATE(672), 1, + STATE(1415), 1, sym_plain_type, - STATE(4484), 1, + STATE(4450), 1, sym_reference_expression, - STATE(404), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3221), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280881,50 +292618,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104166] = 20, + [115187] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5692), 1, - anon_sym_LPAREN, - ACTIONS(5696), 1, - anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5706), 1, - anon_sym_map_LBRACK, - STATE(1495), 1, + STATE(1416), 1, sym_plain_type, - STATE(4563), 1, + STATE(4450), 1, sym_reference_expression, - STATE(1435), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(3222), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280937,50 +292679,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104242] = 20, + [115270] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5892), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5894), 1, anon_sym_map_LBRACK, - STATE(2564), 1, + STATE(1246), 1, sym_plain_type, - STATE(4445), 1, + STATE(4507), 1, sym_reference_expression, - STATE(2489), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3223), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280993,50 +292740,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104318] = 20, + [115353] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5858), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5892), 1, anon_sym_AMP, - ACTIONS(5866), 1, + ACTIONS(5894), 1, anon_sym_map_LBRACK, - STATE(1846), 1, + STATE(1247), 1, sym_plain_type, - STATE(4508), 1, + STATE(4507), 1, sym_reference_expression, - STATE(1797), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(3224), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281049,50 +292801,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104394] = 20, + [115436] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(3602), 1, - anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(3606), 1, - anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(3620), 1, - anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5882), 1, + anon_sym_LPAREN, + ACTIONS(5884), 1, + anon_sym_STAR, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5892), 1, anon_sym_AMP, - STATE(1377), 1, + ACTIONS(5894), 1, + anon_sym_map_LBRACK, + STATE(1253), 1, sym_plain_type, - STATE(4409), 1, + STATE(4507), 1, sym_reference_expression, - STATE(1307), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3225), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281105,50 +292862,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104470] = 20, + [115519] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5892), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5894), 1, anon_sym_map_LBRACK, - STATE(1484), 1, + STATE(1254), 1, sym_plain_type, - STATE(4563), 1, + STATE(4507), 1, sym_reference_expression, - STATE(1435), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(3226), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281161,50 +292923,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104546] = 20, + [115602] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5892), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5894), 1, anon_sym_map_LBRACK, - STATE(2535), 1, + STATE(1274), 1, sym_plain_type, - STATE(4445), 1, + STATE(4507), 1, sym_reference_expression, - STATE(2489), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3227), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281217,50 +292984,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104622] = 20, + [115685] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3478), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3482), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3492), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3496), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3498), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3500), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5918), 1, + ACTIONS(5884), 1, anon_sym_STAR, - ACTIONS(5920), 1, + ACTIONS(5886), 1, anon_sym_QMARK, - ACTIONS(5922), 1, + ACTIONS(5888), 1, anon_sym_BANG, - ACTIONS(5924), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(5926), 1, + ACTIONS(5892), 1, anon_sym_AMP, - ACTIONS(5928), 1, + ACTIONS(5894), 1, anon_sym_map_LBRACK, - STATE(3443), 1, + STATE(1268), 1, sym_plain_type, - STATE(4436), 1, + STATE(4507), 1, sym_reference_expression, - STATE(3380), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3437), 4, + STATE(3228), 2, + sym_line_comment, + sym_block_comment, + STATE(1226), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3444), 12, + STATE(1229), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281273,50 +293045,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104698] = 20, + [115768] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(4080), 1, - anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(2568), 1, + STATE(1700), 1, sym_plain_type, - STATE(4445), 1, + STATE(4442), 1, sym_reference_expression, - STATE(2489), 2, + STATE(3229), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281329,50 +293106,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104774] = 20, + [115851] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5794), 1, - anon_sym_LPAREN, ACTIONS(5796), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5798), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5800), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5802), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5804), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5808), 1, anon_sym_map_LBRACK, - STATE(2513), 1, + STATE(528), 1, sym_plain_type, - STATE(4445), 1, + STATE(4521), 1, sym_reference_expression, - STATE(2489), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3230), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281385,50 +293167,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104850] = 20, + [115934] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5918), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5920), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5922), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5924), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5926), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5928), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(3424), 1, + STATE(2270), 1, sym_plain_type, - STATE(4436), 1, + STATE(4566), 1, sym_reference_expression, - STATE(3380), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3437), 4, + STATE(3231), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3444), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281441,50 +293228,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104926] = 20, + [116017] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(4098), 1, - anon_sym_chan, - ACTIONS(4100), 1, - anon_sym_thread, - ACTIONS(4102), 1, - anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5798), 1, - anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(2544), 1, + STATE(3966), 1, sym_plain_type, - STATE(4445), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2489), 2, + STATE(3232), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281497,50 +293289,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105002] = 20, + [116100] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5796), 1, anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(5798), 1, anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5806), 1, anon_sym_AMP, - ACTIONS(5906), 1, + ACTIONS(5808), 1, anon_sym_map_LBRACK, - STATE(1037), 1, + STATE(514), 1, sym_plain_type, - STATE(4403), 1, + STATE(4521), 1, sym_reference_expression, - STATE(1014), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3233), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281553,50 +293350,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105078] = 20, + [116183] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4007), 1, + STATE(3957), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3234), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281609,50 +293411,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105154] = 20, + [116266] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5894), 1, - anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5880), 1, anon_sym_AMP, - ACTIONS(5906), 1, - anon_sym_map_LBRACK, - STATE(1041), 1, + STATE(2145), 1, sym_plain_type, - STATE(4403), 1, + STATE(4528), 1, sym_reference_expression, - STATE(1014), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3235), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281665,50 +293472,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105230] = 20, + [116349] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3602), 1, - anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3606), 1, - anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3620), 1, - anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5906), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, + anon_sym_STAR, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5916), 1, anon_sym_AMP, - STATE(1375), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(2240), 1, sym_plain_type, - STATE(4409), 1, + STATE(4566), 1, sym_reference_expression, - STATE(1307), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3236), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281721,50 +293533,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105306] = 20, + [116432] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3835), 1, + ACTIONS(3827), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3853), 1, + ACTIONS(3845), 1, anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5880), 1, anon_sym_AMP, - STATE(2032), 1, + STATE(2152), 1, sym_plain_type, - STATE(4424), 1, + STATE(4528), 1, sym_reference_expression, - STATE(1935), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3237), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281777,50 +293594,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105382] = 20, + [116515] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3835), 1, + ACTIONS(3827), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3853), 1, + ACTIONS(3845), 1, anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5872), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5874), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5876), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5878), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5880), 1, anon_sym_AMP, - STATE(2093), 1, + STATE(2153), 1, sym_plain_type, - STATE(4424), 1, + STATE(4528), 1, sym_reference_expression, - STATE(1935), 2, + STATE(1951), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3238), 2, + sym_line_comment, + sym_block_comment, + STATE(2042), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(2043), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281833,50 +293655,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105458] = 20, + [116598] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5918), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5920), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5922), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5924), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5926), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5928), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(3431), 1, + STATE(2546), 1, sym_plain_type, - STATE(4436), 1, + STATE(4487), 1, sym_reference_expression, - STATE(3380), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3437), 4, + STATE(3239), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3444), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281889,50 +293716,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105534] = 20, + [116681] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5832), 1, + anon_sym_LPAREN, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(2077), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2661), 1, sym_plain_type, - STATE(4424), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1935), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3240), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281945,50 +293777,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105610] = 20, + [116764] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5832), 1, + anon_sym_LPAREN, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(2099), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2570), 1, sym_plain_type, - STATE(4424), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1935), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3241), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282001,50 +293838,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105686] = 20, + [116847] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5868), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5880), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(923), 1, + STATE(2602), 1, sym_plain_type, - STATE(4484), 1, + STATE(4487), 1, sym_reference_expression, - STATE(404), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3242), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282057,50 +293899,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105762] = 20, + [116930] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5868), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5880), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(925), 1, + STATE(2593), 1, sym_plain_type, - STATE(4484), 1, + STATE(4487), 1, sym_reference_expression, - STATE(404), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3243), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282113,50 +293960,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105838] = 20, + [117013] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(4112), 1, + anon_sym_chan, + ACTIONS(4114), 1, + anon_sym_thread, + ACTIONS(4116), 1, + anon_sym_atomic, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(4480), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2663), 1, sym_plain_type, - STATE(4626), 1, + STATE(4487), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3244), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282169,50 +294021,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105914] = 20, + [117096] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5906), 1, + anon_sym_LPAREN, + 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, - STATE(2140), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(2239), 1, sym_plain_type, - STATE(4424), 1, + STATE(4566), 1, sym_reference_expression, - STATE(1935), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3245), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282225,50 +294082,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105990] = 20, + [117179] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5918), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5920), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5922), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5924), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5926), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5928), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(3445), 1, + STATE(2238), 1, sym_plain_type, - STATE(4436), 1, + STATE(4566), 1, sym_reference_expression, - STATE(3380), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3437), 4, + STATE(3246), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3444), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282281,50 +294143,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106066] = 20, + [117262] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(4001), 1, + ACTIONS(3594), 1, anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(3596), 1, + anon_sym_struct, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(4013), 1, + ACTIONS(3608), 1, anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5926), 1, anon_sym_AMP, - STATE(2395), 1, + STATE(1361), 1, sym_plain_type, - STATE(4626), 1, + STATE(4450), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3247), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282337,50 +294204,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106142] = 20, + [117345] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 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(5920), 1, + anon_sym_QMARK, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5926), 1, anon_sym_AMP, - STATE(2454), 1, + STATE(1366), 1, sym_plain_type, - STATE(4626), 1, + STATE(4450), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3248), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282393,50 +294265,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106218] = 20, + [117428] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5796), 1, + anon_sym_LPAREN, + ACTIONS(5798), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(2021), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(480), 1, sym_plain_type, - STATE(4424), 1, + STATE(4521), 1, sym_reference_expression, - STATE(1935), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3249), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282449,50 +294326,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106294] = 20, + [117511] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(3602), 1, - anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(3606), 1, - anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3620), 1, - anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5832), 1, + anon_sym_LPAREN, + ACTIONS(5834), 1, + anon_sym_STAR, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(1399), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2541), 1, sym_plain_type, - STATE(4409), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1307), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3250), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282505,50 +294387,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106370] = 20, + [117594] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 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(5920), 1, + anon_sym_QMARK, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5926), 1, anon_sym_AMP, - STATE(4600), 1, + STATE(1367), 1, sym_plain_type, - STATE(4626), 1, + STATE(4450), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3251), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282561,50 +294448,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106446] = 20, + [117677] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(2134), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1477), 1, sym_plain_type, - STATE(4424), 1, + STATE(4594), 1, sym_reference_expression, - STATE(1935), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3252), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282617,50 +294509,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106522] = 20, + [117760] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5796), 1, + anon_sym_LPAREN, + ACTIONS(5798), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(2115), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(905), 1, sym_plain_type, - STATE(4424), 1, + STATE(4521), 1, sym_reference_expression, - STATE(1935), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3253), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282673,50 +294570,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106598] = 20, + [117843] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5796), 1, + anon_sym_LPAREN, + ACTIONS(5798), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(2042), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(904), 1, sym_plain_type, - STATE(4424), 1, + STATE(4521), 1, sym_reference_expression, - STATE(1935), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3254), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282729,50 +294631,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106674] = 20, + [117926] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 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(5920), 1, + anon_sym_QMARK, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5926), 1, anon_sym_AMP, - STATE(4401), 1, + STATE(1413), 1, sym_plain_type, - STATE(4626), 1, + STATE(4450), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3255), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282785,50 +294692,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106750] = 20, + [118009] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5868), 1, - anon_sym_LPAREN, - ACTIONS(5870), 1, - anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5880), 1, - anon_sym_map_LBRACK, - STATE(809), 1, + STATE(1410), 1, sym_plain_type, - STATE(4484), 1, + STATE(4450), 1, sym_reference_expression, - STATE(404), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3256), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282841,50 +294753,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106826] = 20, + [118092] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5794), 1, - anon_sym_LPAREN, - ACTIONS(5796), 1, - anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(2584), 1, + STATE(1360), 1, sym_plain_type, - STATE(4445), 1, + STATE(4450), 1, sym_reference_expression, - STATE(2489), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3257), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282897,50 +294814,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106902] = 20, + [118175] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(4098), 1, - anon_sym_chan, - ACTIONS(4100), 1, - anon_sym_thread, - ACTIONS(4102), 1, - anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5798), 1, - anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(2586), 1, + STATE(4033), 1, sym_plain_type, - STATE(4445), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2489), 2, + STATE(3258), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282953,50 +294875,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106978] = 20, + [118258] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(4084), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(4094), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(4098), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(4100), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(4102), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5794), 1, - anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(2608), 1, + STATE(2037), 1, sym_plain_type, - STATE(4445), 1, + STATE(4480), 1, sym_reference_expression, - STATE(2489), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2574), 4, + STATE(3259), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2572), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283009,50 +294936,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107054] = 20, + [118341] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4626), 1, - sym_reference_expression, - STATE(4643), 1, + STATE(3898), 1, sym_plain_type, - STATE(3605), 2, + STATE(4652), 1, + sym_reference_expression, + STATE(3260), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283065,50 +294997,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107130] = 20, + [118424] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5868), 1, - anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5880), 1, - anon_sym_map_LBRACK, - STATE(452), 1, + STATE(2038), 1, sym_plain_type, - STATE(4484), 1, + STATE(4480), 1, sym_reference_expression, - STATE(404), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3261), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283121,50 +295058,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107206] = 20, + [118507] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(579), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5796), 1, + anon_sym_LPAREN, + ACTIONS(5798), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(2034), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(458), 1, sym_plain_type, - STATE(4424), 1, + STATE(4521), 1, sym_reference_expression, - STATE(1935), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3262), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283177,50 +295119,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107282] = 20, + [118590] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5928), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5940), 1, anon_sym_map_LBRACK, - STATE(1712), 1, + STATE(3471), 1, sym_plain_type, - STATE(4460), 1, + STATE(4442), 1, sym_reference_expression, - STATE(1688), 2, + STATE(3263), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3451), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(3452), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283233,50 +295180,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107358] = 20, + [118673] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3466), 1, + anon_sym_chan, + ACTIONS(3468), 1, + anon_sym_thread, + ACTIONS(3470), 1, + anon_sym_atomic, + ACTIONS(5928), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5932), 1, + anon_sym_QMARK, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5938), 1, anon_sym_AMP, - STATE(2395), 1, + ACTIONS(5940), 1, + anon_sym_map_LBRACK, + STATE(3473), 1, sym_plain_type, - STATE(4626), 1, + STATE(4442), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3264), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3451), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(3452), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283289,22 +295241,24 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107434] = 20, + [118756] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(4116), 1, anon_sym_atomic, ACTIONS(5832), 1, anon_sym_LPAREN, @@ -283320,19 +295274,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(2198), 1, + STATE(2582), 1, sym_plain_type, - STATE(4525), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2176), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3265), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283345,22 +295302,24 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107510] = 20, + [118839] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(4116), 1, anon_sym_atomic, ACTIONS(5832), 1, anon_sym_LPAREN, @@ -283376,19 +295335,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(2197), 1, + STATE(2589), 1, sym_plain_type, - STATE(4525), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2176), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3266), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283401,50 +295363,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107586] = 20, + [118922] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5930), 1, + ACTIONS(5832), 1, + anon_sym_LPAREN, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(2009), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2583), 1, sym_plain_type, - STATE(4424), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1935), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3267), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283457,50 +295424,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107662] = 20, + [119005] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5906), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(1084), 1, + STATE(2581), 1, sym_plain_type, - STATE(4403), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1014), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3268), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283513,50 +295485,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107738] = 20, + [119088] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(5620), 1, + ACTIONS(3452), 1, + anon_sym_struct, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(5624), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(5626), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(5628), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5928), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5940), 1, anon_sym_map_LBRACK, - STATE(1661), 1, + STATE(3453), 1, sym_plain_type, - STATE(4436), 1, + STATE(4442), 1, sym_reference_expression, - STATE(3380), 2, + STATE(3269), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3451), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(3452), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283569,50 +295546,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107814] = 20, + [119171] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(569), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(575), 1, anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(579), 1, + anon_sym_struct, + ACTIONS(589), 1, anon_sym_shared, - ACTIONS(4013), 1, - anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(593), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(595), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(597), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5796), 1, + anon_sym_LPAREN, + ACTIONS(5798), 1, + anon_sym_STAR, + ACTIONS(5800), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5802), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5804), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5806), 1, anon_sym_AMP, - STATE(2504), 1, + ACTIONS(5808), 1, + anon_sym_map_LBRACK, + STATE(481), 1, sym_plain_type, - STATE(4626), 1, + STATE(4521), 1, sym_reference_expression, - STATE(2323), 2, + STATE(401), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3270), 2, + sym_line_comment, + sym_block_comment, + STATE(466), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(465), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283625,50 +295607,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107890] = 20, + [119254] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3660), 1, - anon_sym_chan, - ACTIONS(3662), 1, - anon_sym_thread, - ACTIONS(3664), 1, - anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5698), 1, - anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5706), 1, - anon_sym_map_LBRACK, - STATE(1452), 1, + STATE(4557), 1, sym_plain_type, - STATE(4563), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1435), 2, + STATE(3271), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283681,50 +295668,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107966] = 20, + [119337] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(5620), 1, + ACTIONS(3636), 1, + anon_sym_struct, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(5624), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(5626), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(5628), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, - anon_sym_STAR, ACTIONS(5714), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5716), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5718), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5720), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5722), 1, + anon_sym_AMP, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1660), 1, + STATE(1480), 1, sym_plain_type, - STATE(4436), 1, + STATE(4594), 1, sym_reference_expression, - STATE(3380), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3272), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283737,50 +295729,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108042] = 20, + [119420] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(5620), 1, + ACTIONS(3636), 1, + anon_sym_struct, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(5624), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(5626), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(5628), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, - anon_sym_STAR, ACTIONS(5714), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5716), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5718), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5720), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5722), 1, + anon_sym_AMP, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1659), 1, + STATE(1489), 1, sym_plain_type, - STATE(4436), 1, + STATE(4594), 1, sym_reference_expression, - STATE(3380), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3273), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283793,50 +295790,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108118] = 20, + [119503] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, - sym_identifier, - ACTIONS(3999), 1, - anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, - anon_sym_shared, - ACTIONS(4013), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5786), 1, - anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3618), 1, + anon_sym_STAR, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(2503), 1, + STATE(3888), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(2323), 2, + STATE(3274), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283849,50 +295851,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108194] = 20, + [119586] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3630), 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(3632), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5716), 1, + anon_sym_QMARK, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(3947), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1466), 1, sym_plain_type, - STATE(4626), 1, + STATE(4594), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3275), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283905,50 +295912,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108270] = 20, + [119669] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(4098), 1, + anon_sym_struct, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(4013), 1, - anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(4112), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(4114), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(4116), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5832), 1, + anon_sym_LPAREN, + ACTIONS(5834), 1, + anon_sym_STAR, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(2369), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2585), 1, sym_plain_type, - STATE(4626), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2323), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3276), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283961,50 +295973,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108346] = 20, + [119752] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(4094), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(4098), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(4108), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(4112), 1, + anon_sym_chan, + ACTIONS(4114), 1, + anon_sym_thread, + ACTIONS(4116), 1, + anon_sym_atomic, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(3885), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2547), 1, sym_plain_type, - STATE(4626), 1, + STATE(4487), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2498), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3277), 2, + sym_line_comment, + sym_block_comment, + STATE(2611), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2592), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284017,25 +296034,29 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108422] = 20, + [119835] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5894), 1, - anon_sym_LPAREN, ACTIONS(5896), 1, anon_sym_STAR, ACTIONS(5898), 1, @@ -284046,21 +296067,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5906), 1, - anon_sym_map_LBRACK, - STATE(1040), 1, + STATE(1994), 1, sym_plain_type, - STATE(4403), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1014), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3278), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284073,25 +296095,29 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108498] = 20, + [119918] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5894), 1, - anon_sym_LPAREN, ACTIONS(5896), 1, anon_sym_STAR, ACTIONS(5898), 1, @@ -284102,21 +296128,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5906), 1, - anon_sym_map_LBRACK, - STATE(1026), 1, + STATE(2026), 1, sym_plain_type, - STATE(4403), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1014), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3279), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284129,50 +296156,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108574] = 20, + [120001] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, + anon_sym_chan, + ACTIONS(3812), 1, + anon_sym_thread, + ACTIONS(3814), 1, + anon_sym_atomic, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5898), 1, + anon_sym_QMARK, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(3845), 1, + STATE(2020), 1, sym_plain_type, - STATE(4626), 1, + STATE(4480), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3280), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284185,50 +296217,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108650] = 20, + [120084] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5868), 1, - anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5880), 1, - anon_sym_map_LBRACK, - STATE(810), 1, + STATE(2010), 1, sym_plain_type, - STATE(4484), 1, + STATE(4480), 1, sym_reference_expression, - STATE(404), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3281), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284241,50 +296278,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108726] = 20, + [120167] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5868), 1, - anon_sym_LPAREN, - ACTIONS(5870), 1, - anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5794), 1, anon_sym_AMP, - ACTIONS(5880), 1, - anon_sym_map_LBRACK, - STATE(812), 1, + STATE(2774), 1, sym_plain_type, - STATE(4484), 1, + STATE(4574), 1, sym_reference_expression, - STATE(404), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3282), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284297,50 +296339,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108802] = 20, + [120250] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, - sym_identifier, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, - anon_sym_fn, - ACTIONS(5620), 1, - anon_sym_shared, - ACTIONS(5624), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(5626), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(5628), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5714), 1, - anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5722), 1, - anon_sym_map_LBRACK, - STATE(1672), 1, + STATE(4049), 1, sym_plain_type, - STATE(4436), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3380), 2, + STATE(3283), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284353,50 +296400,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108878] = 20, + [120333] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3756), 1, - anon_sym_chan, - ACTIONS(3758), 1, - anon_sym_thread, - ACTIONS(3760), 1, - anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5858), 1, - anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_map_LBRACK, - STATE(1865), 1, + STATE(4641), 1, sym_plain_type, - STATE(4508), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1797), 2, + STATE(3284), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284409,50 +296461,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108954] = 20, + [120416] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5868), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5870), 1, anon_sym_map_LBRACK, - STATE(1782), 1, + STATE(1730), 1, sym_plain_type, - STATE(4460), 1, + STATE(4591), 1, sym_reference_expression, - STATE(1688), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3285), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284465,50 +296522,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109030] = 20, + [120499] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5708), 1, - anon_sym_LPAREN, - ACTIONS(5882), 1, - anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5794), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_map_LBRACK, - STATE(1779), 1, + STATE(2776), 1, sym_plain_type, - STATE(4460), 1, + STATE(4574), 1, sym_reference_expression, - STATE(1688), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3286), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284521,50 +296583,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109106] = 20, + [120582] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(5620), 1, + ACTIONS(3636), 1, + anon_sym_struct, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(5624), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(5626), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(5628), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, - anon_sym_STAR, ACTIONS(5714), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5716), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5718), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5720), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5722), 1, + anon_sym_AMP, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1662), 1, + STATE(1476), 1, sym_plain_type, - STATE(4436), 1, + STATE(4594), 1, sym_reference_expression, - STATE(3380), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3287), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284577,50 +296644,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109182] = 20, + [120665] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5692), 1, - anon_sym_LPAREN, - ACTIONS(5696), 1, - anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5790), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5792), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5794), 1, anon_sym_AMP, - ACTIONS(5706), 1, - anon_sym_map_LBRACK, - STATE(1494), 1, + STATE(2781), 1, sym_plain_type, - STATE(4563), 1, + STATE(4574), 1, sym_reference_expression, - STATE(1435), 2, + STATE(2686), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(3288), 2, + sym_line_comment, + sym_block_comment, + STATE(2746), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(2747), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284633,50 +296705,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109258] = 20, + [120748] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(2438), 1, + STATE(4062), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3289), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284689,50 +296766,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109334] = 20, + [120831] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3630), 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(3632), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5716), 1, + anon_sym_QMARK, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(2357), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1478), 1, sym_plain_type, - STATE(4626), 1, + STATE(4594), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3290), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284745,50 +296827,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109410] = 20, + [120914] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3788), 1, - anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3794), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3806), 1, - anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5822), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5868), 1, anon_sym_AMP, - STATE(2143), 1, + ACTIONS(5870), 1, + anon_sym_map_LBRACK, + STATE(1729), 1, sym_plain_type, - STATE(4487), 1, + STATE(4591), 1, sym_reference_expression, - STATE(1946), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(3291), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284801,50 +296888,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109486] = 20, + [120997] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3748), 1, + anon_sym_chan, + ACTIONS(3750), 1, + anon_sym_thread, + ACTIONS(3752), 1, + anon_sym_atomic, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5850), 1, + anon_sym_QMARK, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5856), 1, anon_sym_AMP, - STATE(3972), 1, + ACTIONS(5858), 1, + anon_sym_map_LBRACK, + STATE(1863), 1, sym_plain_type, - STATE(4626), 1, + STATE(4549), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3292), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284857,50 +296949,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109562] = 20, + [121080] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3788), 1, - anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(3794), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(3804), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3806), 1, - anon_sym_map_LBRACK, - ACTIONS(3808), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(3810), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(3812), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5822), 1, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(2146), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1493), 1, sym_plain_type, - STATE(4487), 1, + STATE(4594), 1, sym_reference_expression, - STATE(1946), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2017), 4, + STATE(3293), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2006), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284913,50 +297010,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109638] = 20, + [121163] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3602), 1, + ACTIONS(3790), 1, anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(3606), 1, - anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3808), 1, anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(1400), 1, + STATE(1993), 1, sym_plain_type, - STATE(4409), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1307), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3294), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284969,50 +297071,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109714] = 20, + [121246] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 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(5920), 1, + anon_sym_QMARK, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5926), 1, anon_sym_AMP, - STATE(4149), 1, + STATE(1372), 1, sym_plain_type, - STATE(4626), 1, + STATE(4450), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3295), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285025,25 +297132,29 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109790] = 20, + [121329] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5894), 1, - anon_sym_LPAREN, ACTIONS(5896), 1, anon_sym_STAR, ACTIONS(5898), 1, @@ -285054,21 +297165,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5906), 1, - anon_sym_map_LBRACK, - STATE(1059), 1, + STATE(2009), 1, sym_plain_type, - STATE(4403), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1014), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3296), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285081,50 +297193,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109866] = 20, + [121412] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, - sym_identifier, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, - anon_sym_fn, - ACTIONS(5620), 1, - anon_sym_shared, - ACTIONS(5624), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(5626), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(5628), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5714), 1, - anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5722), 1, - anon_sym_map_LBRACK, - STATE(1695), 1, + STATE(4338), 1, sym_plain_type, - STATE(4436), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3380), 2, + STATE(3297), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285137,50 +297254,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109942] = 20, + [121495] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, + anon_sym_chan, + ACTIONS(3812), 1, + anon_sym_thread, + ACTIONS(3814), 1, + anon_sym_atomic, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5898), 1, + anon_sym_QMARK, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(2393), 1, + STATE(2006), 1, sym_plain_type, - STATE(4626), 1, + STATE(4480), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3298), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285193,50 +297315,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110018] = 20, + [121578] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, + anon_sym_chan, + ACTIONS(3812), 1, + anon_sym_thread, + ACTIONS(3814), 1, + anon_sym_atomic, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5898), 1, + anon_sym_QMARK, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(4626), 1, - sym_reference_expression, - STATE(4709), 1, + STATE(1996), 1, sym_plain_type, - STATE(3605), 2, + STATE(4480), 1, + sym_reference_expression, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3299), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285249,50 +297376,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110094] = 20, + [121661] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, + anon_sym_chan, + ACTIONS(3812), 1, + anon_sym_thread, + ACTIONS(3814), 1, + anon_sym_atomic, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5898), 1, + anon_sym_QMARK, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(4507), 1, + STATE(1995), 1, sym_plain_type, - STATE(4626), 1, + STATE(4480), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3300), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285305,50 +297437,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110170] = 20, + [121744] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(5928), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5858), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5866), 1, + ACTIONS(5940), 1, anon_sym_map_LBRACK, - STATE(1818), 1, + STATE(3459), 1, sym_plain_type, - STATE(4508), 1, + STATE(4442), 1, sym_reference_expression, - STATE(1797), 2, + STATE(3301), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(3451), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(3452), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285361,27 +297498,27 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110246] = 20, + [121827] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3835), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(3841), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(3851), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(3853), 1, - anon_sym_map_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(3857), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(3859), 1, + ACTIONS(3470), 1, anon_sym_atomic, + ACTIONS(5928), 1, + anon_sym_LPAREN, ACTIONS(5930), 1, anon_sym_STAR, ACTIONS(5932), 1, @@ -285392,19 +297529,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5938), 1, anon_sym_AMP, - STATE(2010), 1, + ACTIONS(5940), 1, + anon_sym_map_LBRACK, + STATE(3460), 1, sym_plain_type, - STATE(4424), 1, + STATE(4442), 1, sym_reference_expression, - STATE(1935), 2, + STATE(3302), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1951), 4, + STATE(3451), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2079), 12, + STATE(3452), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285417,50 +297559,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110322] = 20, + [121910] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + 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(601), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3756), 1, - anon_sym_chan, - ACTIONS(3758), 1, - anon_sym_thread, - ACTIONS(3760), 1, - anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5858), 1, - anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5866), 1, - anon_sym_map_LBRACK, - STATE(1867), 1, + STATE(4081), 1, sym_plain_type, - STATE(4508), 1, + STATE(4652), 1, sym_reference_expression, - STATE(1797), 2, + STATE(3303), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285473,50 +297620,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110398] = 20, + [121993] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5868), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5868), 1, anon_sym_AMP, - ACTIONS(5880), 1, + ACTIONS(5870), 1, anon_sym_map_LBRACK, - STATE(867), 1, + STATE(1742), 1, sym_plain_type, - STATE(4484), 1, + STATE(4591), 1, sym_reference_expression, - STATE(404), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3304), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285529,50 +297681,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110474] = 20, + [122076] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(589), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(593), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(603), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(607), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(609), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(611), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5868), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5870), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5872), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5874), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5876), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5878), 1, + ACTIONS(5868), 1, anon_sym_AMP, - ACTIONS(5880), 1, + ACTIONS(5870), 1, anon_sym_map_LBRACK, - STATE(854), 1, + STATE(1743), 1, sym_plain_type, - STATE(4484), 1, + STATE(4591), 1, sym_reference_expression, - STATE(404), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(879), 4, + STATE(3305), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(878), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285585,50 +297742,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110550] = 20, + [122159] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(1699), 1, + anon_sym_chan, + ACTIONS(1701), 1, + anon_sym_thread, + ACTIONS(1703), 1, + anon_sym_atomic, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5814), 1, + anon_sym_QMARK, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(2375), 1, + ACTIONS(5822), 1, + anon_sym_map_LBRACK, + STATE(1053), 1, sym_plain_type, - STATE(4626), 1, + STATE(4466), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3306), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285641,50 +297803,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110626] = 20, + [122242] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, - anon_sym_STAR, - ACTIONS(5426), 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(5920), 1, + anon_sym_QMARK, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5926), 1, anon_sym_AMP, - STATE(3858), 1, + STATE(1375), 1, sym_plain_type, - STATE(4626), 1, + STATE(4450), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3307), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285697,50 +297864,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110702] = 20, + [122325] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(3642), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(3646), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(3656), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(3660), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(3662), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(3664), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5822), 1, anon_sym_map_LBRACK, - STATE(1456), 1, + STATE(1100), 1, sym_plain_type, - STATE(4563), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1435), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(3308), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1449), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285753,50 +297925,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110778] = 20, + [122408] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(5848), 1, anon_sym_STAR, - ACTIONS(5858), 1, + ACTIONS(5850), 1, anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5852), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5854), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5856), 1, anon_sym_AMP, - ACTIONS(5866), 1, + ACTIONS(5858), 1, anon_sym_map_LBRACK, - STATE(1827), 1, + STATE(1872), 1, sym_plain_type, - STATE(4508), 1, + STATE(4549), 1, sym_reference_expression, - STATE(1797), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(3309), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285809,50 +297986,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110854] = 20, + [122491] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5854), 1, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5858), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5860), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5862), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5864), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5866), 1, + ACTIONS(5822), 1, anon_sym_map_LBRACK, - STATE(1828), 1, + STATE(1032), 1, sym_plain_type, - STATE(4508), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1797), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1930), 4, + STATE(3310), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1928), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285865,50 +298047,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110930] = 20, + [122574] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3602), 1, - anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3606), 1, - anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3620), 1, - anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(3752), 1, anon_sym_atomic, ACTIONS(5846), 1, - anon_sym_QMARK, + anon_sym_LPAREN, ACTIONS(5848), 1, - anon_sym_BANG, + anon_sym_STAR, ACTIONS(5850), 1, - anon_sym_LBRACK2, + anon_sym_QMARK, ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(5854), 1, + anon_sym_LBRACK2, + ACTIONS(5856), 1, anon_sym_AMP, - STATE(1369), 1, + ACTIONS(5858), 1, + anon_sym_map_LBRACK, + STATE(1873), 1, sym_plain_type, - STATE(4409), 1, + STATE(4549), 1, sym_reference_expression, - STATE(1307), 2, + STATE(1802), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3311), 2, + sym_line_comment, + sym_block_comment, + STATE(1828), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(1893), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285921,50 +298108,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111006] = 20, + [122657] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(5620), 1, + ACTIONS(1685), 1, + anon_sym_struct, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(5624), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(5626), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(5628), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5822), 1, anon_sym_map_LBRACK, - STATE(1673), 1, + STATE(1069), 1, sym_plain_type, - STATE(4436), 1, + STATE(4466), 1, sym_reference_expression, - STATE(3380), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3312), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285977,50 +298169,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111082] = 20, + [122740] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5928), 1, anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5906), 1, + ACTIONS(5940), 1, anon_sym_map_LBRACK, - STATE(1073), 1, + STATE(3470), 1, sym_plain_type, - STATE(4403), 1, + STATE(4442), 1, sym_reference_expression, - STATE(1014), 2, + STATE(3313), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3451), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(3452), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286033,50 +298230,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111158] = 20, + [122823] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3977), 1, + anon_sym_chan, + ACTIONS(3979), 1, + anon_sym_thread, + ACTIONS(3981), 1, + anon_sym_atomic, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5910), 1, + anon_sym_QMARK, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5916), 1, anon_sym_AMP, - STATE(4005), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(2290), 1, sym_plain_type, - STATE(4626), 1, + STATE(4566), 1, sym_reference_expression, - STATE(3605), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3314), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286089,50 +298291,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111234] = 20, + [122906] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5832), 1, + ACTIONS(5928), 1, anon_sym_LPAREN, - ACTIONS(5834), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5844), 1, + ACTIONS(5940), 1, anon_sym_map_LBRACK, - STATE(2182), 1, + STATE(3464), 1, sym_plain_type, - STATE(4525), 1, + STATE(4442), 1, sym_reference_expression, - STATE(2176), 2, + STATE(3315), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3451), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(3452), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286145,50 +298352,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111310] = 20, + [122989] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5906), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(1099), 1, + STATE(2292), 1, sym_plain_type, - STATE(4403), 1, + STATE(4566), 1, sym_reference_expression, - STATE(1014), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3316), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286201,50 +298413,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111386] = 20, + [123072] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5928), 1, anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5906), 1, + ACTIONS(5940), 1, anon_sym_map_LBRACK, - STATE(1100), 1, + STATE(3463), 1, sym_plain_type, - STATE(4403), 1, + STATE(4442), 1, sym_reference_expression, - STATE(1014), 2, + STATE(3317), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3451), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(3452), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286257,50 +298474,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111462] = 20, + [123155] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5832), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5834), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5844), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(2240), 1, + STATE(2297), 1, sym_plain_type, - STATE(4525), 1, + STATE(4566), 1, sym_reference_expression, - STATE(2176), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3318), 2, + sym_line_comment, + sym_block_comment, + STATE(2213), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2214), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286313,50 +298535,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111538] = 20, + [123238] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(3862), 1, + STATE(3911), 1, sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3319), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286369,50 +298596,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111614] = 20, + [123321] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5894), 1, - anon_sym_LPAREN, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5906), 1, - anon_sym_map_LBRACK, - STATE(1086), 1, + STATE(1406), 1, sym_plain_type, - STATE(4403), 1, + STATE(4450), 1, sym_reference_expression, - STATE(1014), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3320), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286425,50 +298657,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111690] = 20, + [123404] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1735), 1, + STATE(1500), 1, sym_plain_type, - STATE(4460), 1, + STATE(4594), 1, sym_reference_expression, - STATE(1688), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3321), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286481,50 +298718,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111766] = 20, + [123487] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3670), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(3674), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(3684), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(3688), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(3690), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(3692), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(5928), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5940), 1, anon_sym_map_LBRACK, - STATE(1734), 1, + STATE(3461), 1, sym_plain_type, - STATE(4460), 1, + STATE(4442), 1, sym_reference_expression, - STATE(1688), 2, + STATE(3322), 2, + sym_line_comment, + sym_block_comment, + STATE(3406), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(3451), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(3452), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286537,106 +298779,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111842] = 20, + [123570] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, - anon_sym_fn, - ACTIONS(5620), 1, - anon_sym_shared, - ACTIONS(5624), 1, - anon_sym_chan, - ACTIONS(5626), 1, - anon_sym_thread, - ACTIONS(5628), 1, - anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(3590), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, - anon_sym_STAR, - ACTIONS(5714), 1, - anon_sym_QMARK, - ACTIONS(5716), 1, - anon_sym_BANG, - ACTIONS(5718), 1, - anon_sym_LBRACK2, - ACTIONS(5720), 1, - anon_sym_AMP, - ACTIONS(5722), 1, - anon_sym_map_LBRACK, - STATE(1676), 1, - sym_plain_type, - STATE(4436), 1, - sym_reference_expression, - STATE(3380), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1687), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1686), 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, - [111918] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, - sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3975), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(3985), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3989), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(3991), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(3993), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5832), 1, - anon_sym_LPAREN, - ACTIONS(5834), 1, - anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5844), 1, - anon_sym_map_LBRACK, - STATE(2246), 1, + STATE(1397), 1, sym_plain_type, - STATE(4525), 1, + STATE(4450), 1, sym_reference_expression, - STATE(2176), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2254), 4, + STATE(3323), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286649,50 +298840,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111994] = 20, + [123653] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5906), 1, + ACTIONS(5822), 1, anon_sym_map_LBRACK, - STATE(1060), 1, + STATE(1108), 1, sym_plain_type, - STATE(4403), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1014), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3324), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286705,50 +298901,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112070] = 20, + [123736] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4505), 1, - sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(4754), 1, + sym_plain_type, + STATE(3325), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286761,50 +298962,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112146] = 20, + [123819] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4455), 1, - sym_plain_type, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(4685), 1, + sym_plain_type, + STATE(3326), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286817,50 +299023,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112222] = 20, + [123902] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5906), 1, + ACTIONS(5822), 1, anon_sym_map_LBRACK, - STATE(1062), 1, + STATE(1116), 1, sym_plain_type, - STATE(4403), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1014), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3327), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286873,106 +299084,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112298] = 20, + [123985] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(4573), 1, - anon_sym_LPAREN, - ACTIONS(4575), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(4577), 1, - anon_sym_STAR, - ACTIONS(4579), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(4589), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(4591), 1, - anon_sym_map_LBRACK, - ACTIONS(4593), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(4595), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(4597), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5908), 1, - anon_sym_QMARK, - ACTIONS(5910), 1, - anon_sym_BANG, - ACTIONS(5912), 1, - anon_sym_LBRACK2, - ACTIONS(5914), 1, - anon_sym_AMP, - STATE(2503), 1, - sym_plain_type, - STATE(4533), 1, - sym_reference_expression, - STATE(2652), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2707), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2708), 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, - [112374] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, - sym_identifier, - ACTIONS(3999), 1, - anon_sym_fn, - ACTIONS(4001), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(4011), 1, - anon_sym_shared, - ACTIONS(4013), 1, - anon_sym_map_LBRACK, - ACTIONS(4015), 1, - anon_sym_chan, - ACTIONS(4017), 1, - anon_sym_thread, - ACTIONS(4019), 1, - anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(2879), 1, + ACTIONS(5822), 1, + anon_sym_map_LBRACK, + STATE(1117), 1, sym_plain_type, - STATE(4626), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3328), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286985,50 +299145,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112450] = 20, + [124068] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(571), 1, - anon_sym_struct, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(3999), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(4001), 1, - anon_sym_STAR, - ACTIONS(4011), 1, + ACTIONS(1685), 1, + anon_sym_struct, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(4013), 1, - anon_sym_map_LBRACK, - ACTIONS(4015), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(4017), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(4019), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5810), 1, + anon_sym_LPAREN, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(2864), 1, + ACTIONS(5822), 1, + anon_sym_map_LBRACK, + STATE(1026), 1, sym_plain_type, - STATE(4626), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3329), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287041,50 +299206,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112526] = 20, + [124151] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5426), 1, - anon_sym_BANG, ACTIONS(5428), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4626), 1, - sym_reference_expression, - STATE(4655), 1, + STATE(4644), 1, sym_plain_type, - STATE(3605), 2, + STATE(4652), 1, + sym_reference_expression, + STATE(3330), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287097,50 +299267,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112602] = 20, + [124234] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(1699), 1, + anon_sym_chan, + ACTIONS(1701), 1, + anon_sym_thread, + ACTIONS(1703), 1, + anon_sym_atomic, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5814), 1, + anon_sym_QMARK, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(3976), 1, + ACTIONS(5822), 1, + anon_sym_map_LBRACK, + STATE(1029), 1, sym_plain_type, - STATE(4626), 1, + STATE(4466), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3331), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287153,50 +299328,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112678] = 20, + [124317] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5820), 1, anon_sym_AMP, - ACTIONS(5906), 1, + ACTIONS(5822), 1, anon_sym_map_LBRACK, - STATE(1082), 1, + STATE(1067), 1, sym_plain_type, - STATE(4403), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1014), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3332), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287209,50 +299389,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112754] = 20, + [124400] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, - sym_identifier, - ACTIONS(3674), 1, - anon_sym_struct, - ACTIONS(5608), 1, - anon_sym_fn, - ACTIONS(5620), 1, - anon_sym_shared, - ACTIONS(5624), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(85), 1, + anon_sym_map_LBRACK, + ACTIONS(87), 1, anon_sym_chan, - ACTIONS(5626), 1, + ACTIONS(89), 1, anon_sym_thread, - ACTIONS(5628), 1, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(5708), 1, + ACTIONS(601), 1, + sym_identifier, + ACTIONS(607), 1, + anon_sym_fn, + ACTIONS(611), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_shared, + ACTIONS(3616), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5714), 1, - anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5428), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5430), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5432), 1, anon_sym_AMP, - ACTIONS(5722), 1, - anon_sym_map_LBRACK, - STATE(1700), 1, + STATE(4630), 1, sym_plain_type, - STATE(4436), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3380), 2, + STATE(3333), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1687), 4, + STATE(2446), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1686), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287265,50 +299450,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112830] = 20, + [124483] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(1611), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(1615), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(1625), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(1629), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(1631), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(1633), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5898), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5900), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5902), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5904), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5906), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1083), 1, + STATE(1467), 1, sym_plain_type, - STATE(4403), 1, + STATE(4594), 1, sym_reference_expression, - STATE(1014), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1097), 4, + STATE(3334), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1096), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287321,50 +299511,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112906] = 20, + [124566] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5860), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5864), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5866), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5868), 1, anon_sym_AMP, - ACTIONS(5820), 1, + ACTIONS(5870), 1, anon_sym_map_LBRACK, - STATE(1284), 1, + STATE(1726), 1, sym_plain_type, - STATE(4466), 1, + STATE(4591), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1708), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3335), 2, + sym_line_comment, + sym_block_comment, + STATE(1709), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(1701), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287377,50 +299572,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112982] = 20, + [124649] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3486), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(3490), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(3500), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(3504), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, anon_sym_chan, - ACTIONS(3506), 1, + ACTIONS(3812), 1, anon_sym_thread, - ACTIONS(3508), 1, + ACTIONS(3814), 1, anon_sym_atomic, - ACTIONS(5808), 1, - anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(1285), 1, + STATE(2077), 1, sym_plain_type, - STATE(4466), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1170), 4, + STATE(3336), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1203), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287433,50 +299633,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113058] = 20, + [124732] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3790), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3796), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3806), 1, anon_sym_shared, - ACTIONS(3630), 1, - anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3808), 1, + anon_sym_map_LBRACK, + ACTIONS(3810), 1, + anon_sym_chan, + ACTIONS(3812), 1, + anon_sym_thread, + ACTIONS(3814), 1, + anon_sym_atomic, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5898), 1, + anon_sym_QMARK, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(4626), 1, - sym_reference_expression, - STATE(4637), 1, + STATE(2079), 1, sym_plain_type, - STATE(3605), 2, + STATE(4480), 1, + sym_reference_expression, + STATE(1961), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3337), 2, + sym_line_comment, + sym_block_comment, + STATE(1981), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1982), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287489,50 +299694,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113134] = 20, + [124815] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3630), 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(3632), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5716), 1, + anon_sym_QMARK, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(4625), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1508), 1, sym_plain_type, - STATE(4626), 1, + STATE(4594), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1443), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3338), 2, + sym_line_comment, + sym_block_comment, + STATE(1486), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1485), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287545,50 +299755,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113210] = 20, + [124898] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(3602), 1, - anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(3606), 1, - anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(3620), 1, - anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(1699), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(1701), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(1703), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5810), 1, + anon_sym_LPAREN, + ACTIONS(5812), 1, + anon_sym_STAR, + ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(1360), 1, + ACTIONS(5822), 1, + anon_sym_map_LBRACK, + STATE(1025), 1, sym_plain_type, - STATE(4409), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1307), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3339), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287601,50 +299816,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113286] = 20, + [124981] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(561), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(1681), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(1685), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(1695), 1, anon_sym_shared, - ACTIONS(3630), 1, + ACTIONS(1699), 1, + anon_sym_chan, + ACTIONS(1701), 1, + anon_sym_thread, + ACTIONS(1703), 1, + anon_sym_atomic, + ACTIONS(5810), 1, anon_sym_LPAREN, - ACTIONS(3632), 1, + ACTIONS(5812), 1, anon_sym_STAR, - ACTIONS(5426), 1, + ACTIONS(5814), 1, + anon_sym_QMARK, + ACTIONS(5816), 1, anon_sym_BANG, - ACTIONS(5428), 1, + ACTIONS(5818), 1, anon_sym_LBRACK2, - ACTIONS(5430), 1, + ACTIONS(5820), 1, anon_sym_AMP, - STATE(4562), 1, + ACTIONS(5822), 1, + anon_sym_map_LBRACK, + STATE(1048), 1, sym_plain_type, - STATE(4626), 1, + STATE(4466), 1, sym_reference_expression, - STATE(3605), 2, + STATE(1017), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2406), 4, + STATE(3340), 2, + sym_line_comment, + sym_block_comment, + STATE(1068), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2413), 12, + STATE(1033), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287657,50 +299877,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113362] = 20, + [125064] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3602), 1, + ACTIONS(3590), 1, anon_sym_LPAREN, - ACTIONS(3604), 1, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3606), 1, + ACTIONS(3594), 1, anon_sym_STAR, - ACTIONS(3608), 1, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3608), 1, anon_sym_map_LBRACK, - ACTIONS(3622), 1, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(3624), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(3626), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5846), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5848), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5850), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5852), 1, + ACTIONS(5926), 1, anon_sym_AMP, - STATE(1361), 1, + STATE(1400), 1, sym_plain_type, - STATE(4409), 1, + STATE(4450), 1, sym_reference_expression, - STATE(1307), 2, + STATE(1300), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1352), 4, + STATE(3341), 2, + sym_line_comment, + sym_block_comment, + STATE(1358), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1353), 12, + STATE(1373), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287713,39 +299938,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113438] = 16, + [125147] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4172), 1, + STATE(4174), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3342), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287758,39 +299988,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113499] = 16, + [125215] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4500), 1, + STATE(4329), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3343), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287803,39 +300038,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113560] = 16, + [125283] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4332), 1, + STATE(4201), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3344), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287848,86 +300088,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113621] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - sym___double_quote, - ACTIONS(1241), 1, - sym___single_quote, - ACTIONS(1243), 1, - sym___c_double_quote, - ACTIONS(1245), 1, - sym___c_single_quote, - ACTIONS(1247), 1, - sym___r_double_quote, - ACTIONS(1249), 1, - sym___r_single_quote, - ACTIONS(5940), 1, - sym_identifier, - ACTIONS(5942), 1, - anon_sym_if, - ACTIONS(5944), 1, - anon_sym_unsafe, - STATE(3844), 1, - sym_reference_expression, - STATE(4019), 1, - sym_attribute_expression, - STATE(4038), 1, - sym_value_attribute, - STATE(4207), 1, - sym_literal, - ACTIONS(1233), 2, - sym_float_literal, - sym_rune_literal, - STATE(2328), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - STATE(4111), 4, - sym_if_attribute, - sym__plain_attribute, - sym_literal_attribute, - sym_key_value_attribute, - ACTIONS(1217), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [113686] = 16, + [125351] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4097), 1, + STATE(4214), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3345), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287940,39 +300138,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113747] = 16, + [125419] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4262), 1, + STATE(4374), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3346), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287985,39 +300188,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113808] = 16, + [125487] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4173), 1, + STATE(4555), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3347), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288030,39 +300238,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113869] = 16, + [125555] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4422), 1, + STATE(4388), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3348), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288075,39 +300288,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113930] = 16, + [125623] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4246), 1, + STATE(4386), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3349), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288120,39 +300338,97 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113991] = 16, + [125691] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1309), 1, + sym___double_quote, + ACTIONS(1311), 1, + sym___single_quote, + ACTIONS(1313), 1, + sym___c_double_quote, + ACTIONS(1315), 1, + sym___c_single_quote, + ACTIONS(1317), 1, + sym___r_double_quote, + ACTIONS(1319), 1, + sym___r_single_quote, + ACTIONS(5942), 1, + sym_identifier, + ACTIONS(5944), 1, + anon_sym_if, + ACTIONS(5946), 1, + anon_sym_unsafe, + STATE(4012), 1, + sym_reference_expression, + STATE(4018), 1, + sym_value_attribute, + STATE(4228), 1, + sym_literal, + STATE(4299), 1, + sym_attribute_expression, + ACTIONS(1303), 2, + sym_float_literal, + sym_rune_literal, + STATE(3350), 2, + sym_line_comment, + sym_block_comment, + STATE(4179), 2, + sym_if_attribute, + sym__plain_attribute, + STATE(4185), 2, + sym_literal_attribute, + sym_key_value_attribute, + STATE(2464), 3, + sym_c_string_literal, + sym_raw_string_literal, + sym_interpreted_string_literal, + ACTIONS(1287), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [125765] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4264), 1, - sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(4662), 1, + sym__plain_type_without_special, + STATE(3351), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288165,39 +300441,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114052] = 16, + [125833] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4321), 1, + STATE(4275), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3352), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288210,39 +300491,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114113] = 16, + [125901] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4125), 1, + STATE(4375), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3353), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288255,39 +300541,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114174] = 16, + [125969] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4222), 1, + STATE(4132), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3354), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288300,39 +300591,97 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114235] = 16, + [126037] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1309), 1, + sym___double_quote, + ACTIONS(1311), 1, + sym___single_quote, + ACTIONS(1313), 1, + sym___c_double_quote, + ACTIONS(1315), 1, + sym___c_single_quote, + ACTIONS(1317), 1, + sym___r_double_quote, + ACTIONS(1319), 1, + sym___r_single_quote, + ACTIONS(5942), 1, + sym_identifier, + ACTIONS(5944), 1, + anon_sym_if, + ACTIONS(5946), 1, + anon_sym_unsafe, + STATE(4012), 1, + sym_reference_expression, + STATE(4018), 1, + sym_value_attribute, + STATE(4019), 1, + sym_attribute_expression, + STATE(4228), 1, + sym_literal, + ACTIONS(1303), 2, + sym_float_literal, + sym_rune_literal, + STATE(3355), 2, + sym_line_comment, + sym_block_comment, + STATE(4179), 2, + sym_if_attribute, + sym__plain_attribute, + STATE(4185), 2, + sym_literal_attribute, + sym_key_value_attribute, + STATE(2464), 3, + sym_c_string_literal, + sym_raw_string_literal, + sym_interpreted_string_literal, + ACTIONS(1287), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [126111] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4359), 1, + STATE(4284), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3356), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288345,39 +300694,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114296] = 16, + [126179] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(85), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(89), 1, + anon_sym_thread, + ACTIONS(91), 1, anon_sym_atomic, - ACTIONS(561), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(607), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_shared, - ACTIONS(3632), 1, + ACTIONS(3618), 1, anon_sym_STAR, - ACTIONS(5428), 1, - anon_sym_LBRACK2, ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, anon_sym_AMP, - STATE(4389), 1, + STATE(4147), 1, sym__plain_type_without_special, - STATE(4626), 1, + STATE(4652), 1, sym_reference_expression, - STATE(3605), 2, + STATE(3357), 2, + sym_line_comment, + sym_block_comment, + STATE(3557), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2413), 12, + STATE(2462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288390,89 +300744,48 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114357] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - sym___double_quote, - ACTIONS(1241), 1, - sym___single_quote, - ACTIONS(1243), 1, - sym___c_double_quote, - ACTIONS(1245), 1, - sym___c_single_quote, - ACTIONS(1247), 1, - sym___r_double_quote, - ACTIONS(1249), 1, - sym___r_single_quote, - ACTIONS(5940), 1, - sym_identifier, - ACTIONS(5942), 1, - anon_sym_if, - ACTIONS(5944), 1, - anon_sym_unsafe, - STATE(3844), 1, - sym_reference_expression, - STATE(4038), 1, - sym_value_attribute, - STATE(4190), 1, - sym_attribute_expression, - STATE(4207), 1, - sym_literal, - ACTIONS(1233), 2, - sym_float_literal, - sym_rune_literal, - STATE(2328), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - STATE(4111), 4, - sym_if_attribute, - sym__plain_attribute, - sym_literal_attribute, - sym_key_value_attribute, - ACTIONS(1217), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [114422] = 16, + [126247] = 19, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4984), 1, anon_sym_LBRACK, - ACTIONS(5946), 1, - sym_identifier, ACTIONS(5948), 1, + sym_identifier, + ACTIONS(5952), 1, anon_sym_LPAREN, - ACTIONS(5954), 1, - anon_sym_LT2, ACTIONS(5956), 1, + anon_sym_LT2, + ACTIONS(5958), 1, anon_sym_LBRACK2, - STATE(3395), 1, + STATE(3437), 1, sym_receiver, - STATE(3507), 1, + STATE(3536), 1, + sym__function_name, + STATE(3539), 1, sym_capture_list, - STATE(3827), 1, + STATE(3799), 1, sym_generic_parameters, - STATE(4209), 1, + STATE(4036), 1, + sym_overridable_operator, + STATE(4164), 1, sym_signature, - STATE(4581), 1, - sym_static_receiver, - STATE(4594), 1, + STATE(4664), 1, sym_reference_expression, - STATE(2930), 2, + STATE(4671), 1, + sym_static_receiver, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3486), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5952), 3, + STATE(3358), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5950), 8, + ACTIONS(5954), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -288481,10 +300794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114482] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3261), 24, + [126316] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3359), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3301), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288509,10 +300827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [114512] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2895), 24, + [126353] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3360), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3379), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288537,10 +300860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [114542] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3005), 24, + [126390] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3361), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3305), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288565,10 +300893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [114572] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2891), 24, + [126427] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3362), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3145), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288593,10 +300926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [114602] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3009), 24, + [126464] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3363), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3383), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288621,17 +300959,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [114632] = 4, - ACTIONS(495), 1, - sym_comment, - STATE(3622), 1, + [126501] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3578), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(1759), 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(1761), 15, + ACTIONS(1765), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288647,100 +300990,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [114662] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5946), 1, - sym_identifier, - ACTIONS(5958), 1, - anon_sym_LPAREN, - STATE(3385), 1, - sym_receiver, - STATE(4594), 1, - sym_reference_expression, - STATE(4704), 1, - sym_static_receiver, - STATE(3495), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5952), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5950), 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, - [114700] = 12, + [126538] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1309), 1, sym___double_quote, - ACTIONS(1241), 1, + ACTIONS(1311), 1, sym___single_quote, - ACTIONS(1243), 1, + ACTIONS(1313), 1, sym___c_double_quote, - ACTIONS(1245), 1, + ACTIONS(1315), 1, sym___c_single_quote, - ACTIONS(1247), 1, + ACTIONS(1317), 1, sym___r_double_quote, - ACTIONS(1249), 1, + ACTIONS(1319), 1, sym___r_single_quote, ACTIONS(5960), 1, sym_identifier, - STATE(4201), 1, + STATE(4296), 1, sym_literal, - ACTIONS(1233), 2, + ACTIONS(1303), 2, sym_float_literal, sym_rune_literal, - STATE(2328), 3, + STATE(3365), 2, + sym_line_comment, + sym_block_comment, + STATE(2464), 3, sym_c_string_literal, sym_raw_string_literal, sym_interpreted_string_literal, - ACTIONS(1217), 5, + ACTIONS(1287), 5, sym_none, sym_true, sym_false, sym_nil, sym_int_literal, - [114744] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5946), 1, - sym_identifier, - ACTIONS(5958), 1, - anon_sym_LPAREN, - STATE(3370), 1, - sym_receiver, - STATE(4535), 1, - sym_static_receiver, - STATE(4594), 1, - sym_reference_expression, - STATE(3503), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5952), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5950), 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, - [114782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 7, + [126589] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3366), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3379), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288748,7 +301043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3007), 11, + ACTIONS(3377), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288760,33 +301055,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [114808] = 3, + [126622] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3261), 7, - anon_sym_fn, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5948), 1, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3259), 11, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5962), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(3417), 1, + sym_receiver, + STATE(3517), 1, + sym__function_name, + STATE(4036), 1, + sym_overridable_operator, + STATE(4436), 1, + sym_static_receiver, + STATE(4664), 1, + sym_reference_expression, + STATE(3367), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5954), 8, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [114834] = 3, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [126669] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 7, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3368), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3301), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288794,7 +301106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3003), 11, + ACTIONS(3299), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288806,10 +301118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [114860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 7, + [126702] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3369), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3145), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288817,7 +301134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2893), 11, + ACTIONS(3143), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288829,10 +301146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [114886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 7, + [126735] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3370), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3305), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288840,7 +301162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2889), 11, + ACTIONS(3303), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288852,27 +301174,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [114912] = 9, + [126768] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(5946), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5948), 1, sym_identifier, - ACTIONS(5958), 1, + ACTIONS(5962), 1, anon_sym_LPAREN, - STATE(3398), 1, + STATE(3409), 1, sym_receiver, - STATE(4594), 1, - sym_reference_expression, - STATE(4668), 1, + STATE(3520), 1, + sym__function_name, + STATE(4036), 1, + sym_overridable_operator, + STATE(4446), 1, sym_static_receiver, - STATE(3501), 2, + STATE(4664), 1, + sym_reference_expression, + STATE(3371), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5954), 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, + [126815] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5948), 1, + sym_identifier, + ACTIONS(5962), 1, + anon_sym_LPAREN, + STATE(3411), 1, + sym_receiver, + STATE(3513), 1, sym__function_name, + STATE(4036), 1, sym_overridable_operator, - ACTIONS(5952), 3, + STATE(4626), 1, + sym_static_receiver, + STATE(4664), 1, + sym_reference_expression, + STATE(3372), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5950), 8, + ACTIONS(5954), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -288881,14 +301244,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114950] = 4, + [126862] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3373), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3383), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3381), 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(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3374), 2, + sym_line_comment, + sym_block_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, + 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, + [126925] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1761), 1, anon_sym_LBRACE, - STATE(3953), 1, + STATE(3983), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3554), 15, + STATE(3375), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3550), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288904,31 +301326,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [114977] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5962), 17, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_module, - anon_sym_RBRACE, - anon_sym_const, - anon_sym___global, + [126959] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5966), 1, + anon_sym_static, + ACTIONS(5968), 1, + anon_sym_volatile, + STATE(3376), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4589), 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, - [115000] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5964), 17, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4591), 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, + [126995] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3377), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5970), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288946,12 +301381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [115023] = 2, + [127025] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 17, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1761), 1, anon_sym_SEMI, - anon_sym_LBRACE, + STATE(4011), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3378), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3550), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288967,14 +301409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [115046] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, + [127059] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3379), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3550), 17, anon_sym_SEMI, - STATE(4066), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3554), 15, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288990,60 +301435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [115073] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5966), 1, - anon_sym_static, - ACTIONS(5968), 1, - anon_sym_volatile, - ACTIONS(4599), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4601), 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, - [115102] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5970), 1, - anon_sym_volatile, - ACTIONS(4976), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4978), 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, - [115128] = 4, + [127089] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5972), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4809), 1, anon_sym_COMMA, - STATE(3359), 1, + STATE(3383), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3512), 14, + STATE(3380), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3502), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289058,14 +301462,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [115154] = 4, + [127122] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5972), 1, anon_sym_COMMA, - STATE(3354), 1, + STATE(3381), 3, + sym_line_comment, + sym_block_comment, aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4902), 14, + ACTIONS(4896), 14, anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, @@ -289080,14 +301488,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [115180] = 4, + [127153] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5977), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4859), 1, anon_sym_COMMA, - STATE(3359), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3512), 14, + STATE(3381), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(3382), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5975), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289101,15 +301515,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, - [115206] = 4, + [127186] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4829), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5977), 1, anon_sym_COMMA, - STATE(3359), 1, + STATE(3387), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3512), 14, + STATE(3383), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4023), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289124,15 +301542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [115232] = 4, + [127219] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5979), 1, anon_sym_COMMA, - STATE(3354), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(5979), 14, - anon_sym_LBRACE, + STATE(3383), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3384), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3502), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289146,14 +301568,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [115258] = 4, + anon_sym_COLON_EQ, + [127252] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4711), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4715), 1, anon_sym_COMMA, - STATE(3359), 1, + STATE(3383), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3512), 14, + STATE(3385), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3502), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289168,14 +301596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [115284] = 4, + [127285] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5981), 1, anon_sym_COMMA, - STATE(3360), 1, + STATE(3383), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(4045), 14, + STATE(3386), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3502), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289190,14 +301623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [115310] = 4, + [127318] = 5, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5983), 1, anon_sym_COMMA, - STATE(3360), 1, + STATE(3387), 3, + sym_line_comment, + sym_block_comment, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3554), 14, + ACTIONS(3550), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289212,29 +301649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [115336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4990), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4992), 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, - [115359] = 3, + [127349] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5986), 1, + anon_sym_volatile, + STATE(3388), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4976), 7, anon_sym_fn, anon_sym_struct, @@ -289252,101 +301676,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [115382] = 12, + [127382] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5986), 1, - sym_identifier, ACTIONS(5988), 1, + sym_identifier, + ACTIONS(5990), 1, anon_sym_RBRACE, - STATE(3364), 1, + STATE(3391), 1, aux_sym__interface_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3389), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3468), 3, + STATE(3500), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [115423] = 12, + [127430] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3390), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5018), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(5020), 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, + [127460] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(5990), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5992), 1, sym_identifier, - ACTIONS(5993), 1, + ACTIONS(5995), 1, anon_sym_RBRACE, - ACTIONS(5998), 1, + ACTIONS(6000), 1, anon_sym_pub, - STATE(3364), 1, - aux_sym__interface_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(5995), 2, + ACTIONS(5997), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3468), 3, + STATE(3391), 3, + sym_line_comment, + sym_block_comment, + aux_sym__interface_body_repeat1, + STATE(3500), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [115464] = 12, + [127506] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5986), 1, + ACTIONS(5988), 1, sym_identifier, - ACTIONS(6001), 1, + ACTIONS(6003), 1, anon_sym_RBRACE, - STATE(3363), 1, + STATE(3389), 1, aux_sym__interface_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3392), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3468), 3, + STATE(3500), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [115505] = 4, + [127554] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6003), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6005), 1, anon_sym_LBRACE, - STATE(4578), 1, + STATE(4614), 1, sym__select_arm_assignment_statement, - ACTIONS(6005), 13, + STATE(3393), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6007), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289360,234 +301828,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [115530] = 12, + [127586] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3394), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4976), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4978), 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, + [127616] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, - sym_identifier, ACTIONS(6009), 1, + sym_identifier, + ACTIONS(6011), 1, anon_sym_RBRACE, - STATE(3394), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3395), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115570] = 12, + [127663] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(631), 1, - anon_sym_RBRACE, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - STATE(3392), 1, + ACTIONS(6013), 1, + anon_sym_RBRACE, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3396), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115610] = 12, + [127710] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6011), 1, + ACTIONS(6015), 1, anon_sym_RBRACE, - STATE(3403), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3397), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115650] = 5, + [127757] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(6013), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(6009), 1, sym_identifier, - STATE(3497), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5952), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5950), 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, - [115676] = 12, + ACTIONS(6017), 1, + anon_sym_RBRACE, + STATE(3415), 1, + aux_sym__struct_body_repeat1, + STATE(3501), 1, + sym__struct_field_definition, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3398), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3495), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [127804] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6015), 1, + ACTIONS(6019), 1, anon_sym_RBRACE, - STATE(3410), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3399), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115716] = 12, + [127851] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6017), 1, + ACTIONS(6021), 1, anon_sym_RBRACE, - STATE(3388), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3400), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115756] = 12, + [127898] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6019), 1, + ACTIONS(6023), 1, anon_sym_RBRACE, - STATE(3388), 1, + STATE(3427), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, + STATE(3501), 1, + sym__struct_field_definition, + STATE(3507), 1, sym_embedded_definition, - STATE(3482), 1, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3401), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3495), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [127945] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(6009), 1, + sym_identifier, + ACTIONS(6025), 1, + anon_sym_RBRACE, + STATE(3422), 1, + aux_sym__struct_body_repeat1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3402), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115796] = 12, + [127992] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6021), 1, + ACTIONS(6027), 1, anon_sym_RBRACE, - STATE(3412), 1, + STATE(3397), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, + STATE(3501), 1, + sym__struct_field_definition, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, sym_generic_type, - STATE(3481), 1, + STATE(4442), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3403), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3495), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [128039] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(6009), 1, + sym_identifier, + ACTIONS(6029), 1, + anon_sym_RBRACE, + STATE(3422), 1, + aux_sym__struct_body_repeat1, + STATE(3501), 1, + sym__struct_field_definition, + STATE(3507), 1, sym_embedded_definition, - STATE(3482), 1, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3404), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3495), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [128086] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(6009), 1, + sym_identifier, + ACTIONS(6031), 1, + anon_sym_RBRACE, + STATE(3426), 1, + aux_sym__struct_body_repeat1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3405), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115836] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3414), 1, + [128133] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6033), 1, anon_sym_LBRACK, - ACTIONS(3416), 13, + STATE(3443), 1, + sym_type_parameters, + STATE(3406), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 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, @@ -289596,117 +302241,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [115858] = 12, + [128164] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6023), 1, + ACTIONS(6035), 1, anon_sym_RBRACE, - STATE(3386), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3407), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115898] = 12, + [128211] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6025), 1, + ACTIONS(6037), 1, anon_sym_RBRACE, - STATE(3388), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3408), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115938] = 12, + [128258] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6039), 1, + sym_identifier, + STATE(3534), 1, + sym__function_name, + STATE(4036), 1, + sym_overridable_operator, + STATE(3409), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5954), 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, + [128293] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6027), 1, + ACTIONS(6041), 1, anon_sym_RBRACE, - STATE(3405), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3410), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115978] = 3, + [128340] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6031), 1, - anon_sym_COLON_EQ, - ACTIONS(6029), 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, - [116000] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6033), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6039), 1, + sym_identifier, + STATE(3544), 1, + sym__function_name, + STATE(4036), 1, + sym_overridable_operator, + STATE(3411), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5954), 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, + [128375] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(3147), 1, anon_sym_LBRACK, - STATE(3414), 1, - sym_type_parameters, - ACTIONS(2715), 12, + STATE(3412), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289719,38 +302419,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [116024] = 3, + [128406] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6037), 1, - anon_sym_COLON_EQ, - 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, - [116046] = 5, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6039), 1, + sym_identifier, + STATE(3538), 1, + sym__function_name, + STATE(4036), 1, + sym_overridable_operator, + STATE(3413), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5954), 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, + [128441] = 8, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(6039), 1, sym_identifier, - STATE(3508), 2, + STATE(3535), 1, sym__function_name, + STATE(4036), 1, sym_overridable_operator, - ACTIONS(5952), 3, + STATE(3414), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5950), 8, + ACTIONS(5954), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289759,66 +302473,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116072] = 12, + [128476] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6041), 1, + ACTIONS(6043), 1, anon_sym_RBRACE, - STATE(3377), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3415), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116112] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3410), 1, - anon_sym_LBRACK, - ACTIONS(3412), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, + [128523] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(6009), 1, + sym_identifier, + ACTIONS(6045), 1, anon_sym_RBRACE, - anon_sym_EQ, + STATE(3407), 1, + aux_sym__struct_body_repeat1, + STATE(3501), 1, + sym__struct_field_definition, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, + sym_reference_expression, + ACTIONS(639), 2, anon_sym___global, - anon_sym_pub, anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [116134] = 5, + STATE(3416), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3495), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [128570] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6043), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6039), 1, sym_identifier, - STATE(3500), 2, + STATE(3540), 1, sym__function_name, + STATE(4036), 1, sym_overridable_operator, - ACTIONS(5952), 3, + STATE(3417), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5950), 8, + ACTIONS(5954), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289827,324 +302566,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116160] = 12, + [128605] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6045), 1, + ACTIONS(6047), 1, anon_sym_RBRACE, - STATE(3388), 1, + STATE(3410), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3418), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116200] = 12, + [128652] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6051), 1, + anon_sym_COLON_EQ, + STATE(3419), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6049), 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, + [128681] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6047), 1, + ACTIONS(6053), 1, anon_sym_RBRACE, - STATE(3388), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3420), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116240] = 12, + [128728] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(6049), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6052), 1, + ACTIONS(6055), 1, anon_sym_RBRACE, - ACTIONS(6057), 1, - anon_sym_pub, - STATE(3388), 1, + STATE(3396), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(6054), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3421), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116280] = 12, + [128775] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, - anon_sym_pub, - ACTIONS(6007), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6057), 1, sym_identifier, ACTIONS(6060), 1, anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + ACTIONS(6065), 1, + anon_sym_pub, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(6062), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116320] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2727), 1, - anon_sym_DOT, - ACTIONS(3410), 1, - anon_sym_LBRACK, - ACTIONS(3412), 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, - [116344] = 5, + STATE(3422), 3, + sym_line_comment, + sym_block_comment, + aux_sym__struct_body_repeat1, + [128820] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(6062), 1, - sym_identifier, - STATE(3502), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5952), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5950), 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, - [116370] = 12, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6070), 1, + anon_sym_COLON_EQ, + STATE(3423), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6068), 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, + [128849] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6064), 1, + ACTIONS(6072), 1, anon_sym_RBRACE, - STATE(3388), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3424), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116410] = 12, + [128896] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6066), 1, + ACTIONS(6074), 1, anon_sym_RBRACE, - STATE(3401), 1, + STATE(3424), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3425), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116450] = 12, + [128943] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6068), 1, + ACTIONS(6076), 1, anon_sym_RBRACE, - STATE(3388), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3426), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116490] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6070), 1, - sym_identifier, - STATE(3515), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5952), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5950), 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, - [116516] = 12, + [128990] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6072), 1, + ACTIONS(6078), 1, anon_sym_RBRACE, - STATE(3411), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3427), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116556] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6074), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(6076), 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, - [116578] = 5, + [129037] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6078), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6039), 1, sym_identifier, - STATE(3493), 2, + STATE(3518), 1, sym__function_name, + STATE(4036), 1, sym_overridable_operator, - ACTIONS(5952), 3, + STATE(3428), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5950), 8, + ACTIONS(5954), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290153,40 +302904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116604] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, - anon_sym_pub, - ACTIONS(6007), 1, - sym_identifier, - ACTIONS(6080), 1, - anon_sym_RBRACE, - STATE(3388), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, - sym__struct_field_definition, - STATE(4436), 1, - sym_reference_expression, - ACTIONS(635), 2, - anon_sym___global, - anon_sym_mut, - STATE(3446), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3483), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [116644] = 3, + [129072] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(6084), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6082), 1, anon_sym_COLON_EQ, - ACTIONS(6082), 13, + STATE(3429), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6080), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290200,40 +302928,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [116666] = 12, + [129101] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, - anon_sym_pub, - ACTIONS(6007), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6039), 1, sym_identifier, - ACTIONS(6086), 1, - anon_sym_RBRACE, - STATE(3388), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, - sym__struct_field_definition, - STATE(4436), 1, - sym_reference_expression, - ACTIONS(635), 2, - anon_sym___global, - anon_sym_mut, - STATE(3446), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3483), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [116706] = 3, + STATE(3524), 1, + sym__function_name, + STATE(4036), 1, + sym_overridable_operator, + STATE(3430), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5954), 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, + [129136] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(6090), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6086), 1, anon_sym_COLON_EQ, - ACTIONS(6088), 13, + STATE(3431), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6084), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290247,152 +302979,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [116728] = 12, + [129165] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3432), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6088), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + ACTIONS(6090), 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, + [129194] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, ACTIONS(6092), 1, anon_sym_RBRACE, - STATE(3388), 1, + STATE(3435), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3433), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116768] = 12, + [129241] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(635), 1, + anon_sym_RBRACE, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6094), 1, - anon_sym_RBRACE, - STATE(3387), 1, + STATE(3420), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3434), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116808] = 12, + [129288] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6096), 1, + ACTIONS(6094), 1, anon_sym_RBRACE, - STATE(3388), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3435), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116848] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6098), 1, - sym_identifier, - STATE(3485), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5952), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5950), 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, - [116874] = 12, + [129335] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6100), 1, + ACTIONS(6096), 1, anon_sym_RBRACE, - STATE(3373), 1, + STATE(3404), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3436), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116914] = 5, + [129382] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6039), 1, sym_identifier, - STATE(3494), 2, + STATE(3531), 1, sym__function_name, + STATE(4036), 1, sym_overridable_operator, - ACTIONS(5952), 3, + STATE(3437), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5950), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5950), 8, + ACTIONS(5954), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290401,129 +303162,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116940] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, - anon_sym_pub, - ACTIONS(6007), 1, - sym_identifier, - ACTIONS(6104), 1, + [129417] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3147), 1, + anon_sym_LBRACK, + STATE(3438), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(3372), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, - sym__struct_field_definition, - STATE(4436), 1, - sym_reference_expression, - ACTIONS(635), 2, + anon_sym_EQ, anon_sym___global, + anon_sym_pub, anon_sym_mut, - STATE(3446), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3483), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [116980] = 12, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [129446] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6007), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6106), 1, + ACTIONS(6098), 1, anon_sym_RBRACE, - STATE(3388), 1, + STATE(3399), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, + STATE(3501), 1, sym__struct_field_definition, - STATE(4436), 1, + STATE(3507), 1, + sym_embedded_definition, + STATE(3509), 1, + sym_generic_type, + STATE(4442), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3446), 2, + STATE(3439), 2, + sym_line_comment, + sym_block_comment, + STATE(3476), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3483), 2, + STATE(3495), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117020] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, - anon_sym_pub, - ACTIONS(6007), 1, - sym_identifier, - ACTIONS(6108), 1, + [129493] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3417), 1, + anon_sym_LBRACK, + STATE(3440), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3419), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(3388), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, - sym__struct_field_definition, - STATE(4436), 1, - sym_reference_expression, - ACTIONS(635), 2, + anon_sym_EQ, anon_sym___global, - anon_sym_mut, - STATE(3446), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3483), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117060] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, anon_sym_pub, - ACTIONS(6007), 1, + anon_sym_mut, + anon_sym_LBRACK2, sym_identifier, - ACTIONS(6110), 1, + anon_sym_AT_LBRACK, + [129522] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3441), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3415), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(3388), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym_generic_type, - STATE(3481), 1, - sym_embedded_definition, - STATE(3482), 1, - sym__struct_field_definition, - STATE(4436), 1, - sym_reference_expression, - ACTIONS(635), 2, + anon_sym_EQ, anon_sym___global, + anon_sym_pub, anon_sym_mut, - STATE(3446), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3483), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117100] = 5, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [129548] = 7, ACTIONS(3), 1, - sym_comment, - STATE(3397), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3432), 1, sym_attribute, - STATE(3417), 1, + STATE(3445), 1, aux_sym_attributes_repeat1, - ACTIONS(111), 2, + ACTIONS(113), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(6112), 9, + STATE(3442), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6100), 9, anon_sym_module, anon_sym_const, anon_sym___global, @@ -290533,27 +303290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_enum, anon_sym_interface, - [117125] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3370), 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, - [117144] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3432), 13, + [129580] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3443), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3427), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290567,10 +303312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117163] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3424), 13, + [129606] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3411), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290584,17 +303334,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117182] = 5, + [129632] = 6, ACTIONS(3), 1, - sym_comment, - STATE(3397), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3432), 1, sym_attribute, - STATE(3417), 1, - aux_sym_attributes_repeat1, - ACTIONS(6116), 2, + ACTIONS(6104), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(6114), 9, + STATE(3445), 3, + sym_line_comment, + sym_block_comment, + aux_sym_attributes_repeat1, + ACTIONS(6102), 9, anon_sym_module, anon_sym_const, anon_sym___global, @@ -290604,14 +303358,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_enum, anon_sym_interface, - [117207] = 3, + [129662] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6109), 1, + anon_sym_EQ, + STATE(3505), 1, + sym_attribute, + ACTIONS(4964), 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, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [129693] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(6121), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3447), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6113), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(6119), 9, + ACTIONS(6111), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290621,33 +303404,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [117227] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6125), 1, - anon_sym_EQ, - STATE(3473), 1, - sym_attribute, - ACTIONS(4950), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(6123), 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, - [117251] = 3, + [129720] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3448), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6117), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(6127), 9, + ACTIONS(6115), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290657,10 +303426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [117271] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3378), 11, + [129747] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3449), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3375), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290672,10 +303446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117288] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3193), 11, + [129771] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3450), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3183), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290687,10 +303466,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117305] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3257), 11, + [129795] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3451), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2975), 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, + anon_sym_AT_LBRACK, + [129819] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3452), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290702,10 +303506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117322] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3328), 11, + [129843] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3453), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3237), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290717,10 +303526,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117339] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2907), 11, + [129867] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3454), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2949), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290732,15 +303546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117356] = 4, - ACTIONS(495), 1, - sym_comment, - STATE(3469), 1, + [129891] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3510), 1, sym_attribute, - ACTIONS(4950), 2, + ACTIONS(4964), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(6131), 8, + STATE(3455), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6119), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290749,10 +303568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [117377] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3275), 11, + [129919] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3456), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3011), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290764,16 +303588,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117394] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2715), 1, + [129943] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2743), 1, anon_sym_LBRACE, ACTIONS(6033), 1, anon_sym_LBRACK, - STATE(3414), 1, + STATE(3443), 1, sym_type_parameters, - ACTIONS(6133), 8, + STATE(3457), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6121), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290782,25 +303611,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [117417] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2915), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, + [129973] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3458), 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_mut, + anon_sym_enum, + anon_sym_interface, anon_sym_LBRACK2, - sym_identifier, anon_sym_AT_LBRACK, - [117434] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3177), 11, + [129997] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3459), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3027), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290812,10 +303651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117451] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3332), 11, + [130021] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3460), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3233), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290827,10 +303671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117468] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3245), 11, + [130045] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3461), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3035), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290842,25 +303691,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117485] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2985), 11, + [130069] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3499), 1, + sym_attribute, + ACTIONS(4964), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3462), 2, + sym_line_comment, + 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, - anon_sym_AT_LBRACK, - [117502] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3340), 11, + [130097] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3463), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3043), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290872,10 +303733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117519] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3356), 11, + [130121] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3464), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3051), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290887,25 +303753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117536] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 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, - [117553] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3396), 11, + [130145] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3465), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3331), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290917,10 +303773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117570] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3013), 11, + [130169] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3466), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3133), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290932,10 +303793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117587] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3181), 11, + [130193] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3467), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3179), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290947,10 +303813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117604] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3213), 11, + [130217] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3468), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3297), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290962,10 +303833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117621] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2981), 11, + [130241] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3469), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3195), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290977,27 +303853,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117638] = 4, - ACTIONS(495), 1, - sym_comment, - STATE(3471), 1, - sym_attribute, - ACTIONS(4950), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(6135), 8, + [130265] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3470), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3217), 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, - [117659] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3205), 11, + anon_sym_AT_LBRACK, + [130289] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3471), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3355), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291009,10 +303893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117676] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2715), 11, + [130313] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3472), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3225), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291024,10 +303913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117693] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3336), 11, + [130337] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3473), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3335), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291039,32 +303933,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117710] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6033), 1, - anon_sym_LBRACK, - STATE(3414), 1, - sym_type_parameters, - ACTIONS(6133), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, + [130361] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6125), 1, + anon_sym_module, + ACTIONS(6127), 1, + anon_sym_const, + ACTIONS(6129), 1, anon_sym___global, + ACTIONS(6131), 1, + anon_sym_fn, + ACTIONS(6135), 1, anon_sym_pub, - anon_sym_mut, - sym_identifier, - [117730] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(6137), 1, - sym_identifier, + anon_sym_enum, + ACTIONS(6139), 1, + anon_sym_interface, + STATE(3638), 1, + sym_visibility_modifiers, + ACTIONS(6133), 2, + anon_sym_struct, + anon_sym_union, + STATE(3474), 2, + sym_line_comment, + sym_block_comment, + [130400] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(6141), 1, + sym_identifier, + ACTIONS(6145), 1, anon_sym_LPAREN, - STATE(1527), 1, + STATE(1554), 1, sym_global_var_definition, - ACTIONS(6139), 7, + STATE(3475), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6143), 7, anon_sym_const, anon_sym_type, anon_sym_fn, @@ -291072,51 +303982,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_enum, anon_sym_interface, - [117752] = 10, + [130429] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6033), 1, + anon_sym_LBRACK, + STATE(3443), 1, + sym_type_parameters, + STATE(3476), 2, + sym_line_comment, + sym_block_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, + [130456] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(6143), 1, - anon_sym_module, - ACTIONS(6145), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6127), 1, anon_sym_const, - ACTIONS(6147), 1, + ACTIONS(6129), 1, anon_sym___global, - ACTIONS(6149), 1, + ACTIONS(6131), 1, anon_sym_fn, - ACTIONS(6153), 1, + ACTIONS(6135), 1, anon_sym_pub, - ACTIONS(6155), 1, + ACTIONS(6137), 1, anon_sym_enum, - ACTIONS(6157), 1, + ACTIONS(6139), 1, anon_sym_interface, - STATE(3574), 1, + STATE(3638), 1, sym_visibility_modifiers, - ACTIONS(6151), 2, + ACTIONS(6133), 2, anon_sym_struct, anon_sym_union, - [117784] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, + STATE(3477), 2, + sym_line_comment, + sym_block_comment, + [130492] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6159), 1, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3496), 1, + STATE(3519), 1, sym_capture_list, - STATE(3644), 1, + STATE(3833), 1, + sym_generic_parameters, + STATE(4234), 1, sym_signature, - STATE(3668), 1, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3478), 2, + sym_line_comment, + sym_block_comment, + [130526] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, + anon_sym_LBRACK2, + ACTIONS(6147), 1, + anon_sym_LPAREN, + STATE(3515), 1, + sym_capture_list, + STATE(3847), 1, sym_generic_parameters, + STATE(4226), 1, + sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [117811] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2727), 9, + STATE(3479), 2, + sym_line_comment, + sym_block_comment, + [130560] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, + anon_sym_LBRACK2, + ACTIONS(6147), 1, + anon_sym_LPAREN, + STATE(3527), 1, + sym_capture_list, + STATE(3722), 1, + sym_generic_parameters, + STATE(4367), 1, + sym_signature, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3480), 2, + sym_line_comment, + sym_block_comment, + [130594] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3481), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291126,327 +304118,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_COLON, sym_identifier, - [117826] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6163), 1, - anon_sym_EQ, - STATE(3657), 1, - sym_attribute, - ACTIONS(4950), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(6161), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [117847] = 8, + [130616] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6159), 1, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3509), 1, + STATE(3525), 1, sym_capture_list, - STATE(3749), 1, + STATE(3765), 1, sym_generic_parameters, - STATE(4289), 1, + STATE(4149), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [117874] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, + STATE(3482), 2, + sym_line_comment, + sym_block_comment, + [130650] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6159), 1, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3484), 1, + STATE(3526), 1, sym_capture_list, - STATE(3826), 1, + STATE(3746), 1, sym_generic_parameters, - STATE(4194), 1, + STATE(4190), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [117901] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6145), 1, - anon_sym_const, - ACTIONS(6147), 1, - anon_sym___global, - ACTIONS(6149), 1, - anon_sym_fn, - ACTIONS(6153), 1, - anon_sym_pub, - ACTIONS(6155), 1, - anon_sym_enum, - ACTIONS(6157), 1, - anon_sym_interface, - STATE(3574), 1, - sym_visibility_modifiers, - ACTIONS(6151), 2, - anon_sym_struct, - anon_sym_union, - [117930] = 8, + STATE(3483), 2, + sym_line_comment, + sym_block_comment, + [130684] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6159), 1, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3488), 1, + STATE(3529), 1, sym_capture_list, - STATE(3767), 1, + STATE(3706), 1, sym_generic_parameters, - STATE(4075), 1, + STATE(4415), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [117957] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3824), 1, - anon_sym_COLON, - ACTIONS(3822), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(6165), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [117976] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, + STATE(3484), 2, + sym_line_comment, + sym_block_comment, + [130718] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6159), 1, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3507), 1, + STATE(3530), 1, sym_capture_list, - STATE(3827), 1, + STATE(3701), 1, sym_generic_parameters, - STATE(4209), 1, + STATE(4357), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118003] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2715), 1, - anon_sym_LBRACE, - ACTIONS(6133), 8, + STATE(3485), 2, + sym_line_comment, + sym_block_comment, + [130752] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6151), 1, + anon_sym_EQ, + STATE(3689), 1, + sym_attribute, + ACTIONS(4964), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3486), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6149), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, sym_identifier, - [118020] = 8, + [130780] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - anon_sym_LBRACK2, - ACTIONS(6159), 1, - anon_sym_LPAREN, - STATE(3505), 1, - sym_capture_list, - STATE(3787), 1, - sym_generic_parameters, - STATE(4333), 1, - sym_signature, - ACTIONS(4984), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2930), 2, - sym_parameter_list, - sym_type_parameter_list, - [118047] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6159), 1, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3513), 1, + STATE(3539), 1, sym_capture_list, - STATE(3804), 1, + STATE(3799), 1, sym_generic_parameters, - STATE(4368), 1, + STATE(4164), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118074] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, + STATE(3487), 2, + sym_line_comment, + sym_block_comment, + [130814] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6159), 1, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3511), 1, + STATE(3533), 1, sym_capture_list, - STATE(3816), 1, + STATE(3703), 1, sym_generic_parameters, - STATE(3967), 1, + STATE(4008), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118101] = 8, + STATE(3488), 2, + sym_line_comment, + sym_block_comment, + [130848] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2743), 1, + anon_sym_LBRACE, + STATE(3489), 2, + sym_line_comment, + sym_block_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, + [130872] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3786), 1, + anon_sym_COLON, + STATE(3490), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3784), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(6153), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [130898] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6159), 1, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3489), 1, + STATE(3521), 1, sym_capture_list, - STATE(3823), 1, + STATE(3791), 1, sym_generic_parameters, - STATE(4245), 1, + STATE(4362), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118128] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6137), 1, + STATE(3491), 2, + sym_line_comment, + sym_block_comment, + [130932] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6141), 1, sym_identifier, - ACTIONS(6167), 1, + ACTIONS(6155), 1, anon_sym_LPAREN, - STATE(1518), 1, + STATE(1579), 1, sym_global_var_definition, - ACTIONS(6139), 6, + STATE(3492), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6143), 6, anon_sym_const, anon_sym_fn, anon_sym_struct, anon_sym_union, anon_sym_enum, anon_sym_interface, - [118149] = 8, + [130960] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6159), 1, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3516), 1, + STATE(3532), 1, sym_capture_list, - STATE(3808), 1, + STATE(3777), 1, sym_generic_parameters, - STATE(4286), 1, + STATE(4322), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118176] = 8, + STATE(3493), 2, + sym_line_comment, + sym_block_comment, + [130994] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6159), 1, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3491), 1, + STATE(3516), 1, sym_capture_list, - STATE(3704), 1, - sym_generic_parameters, - STATE(4135), 1, + STATE(3671), 1, sym_signature, - ACTIONS(4984), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2930), 2, - sym_parameter_list, - sym_type_parameter_list, - [118203] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5956), 1, - anon_sym_LBRACK2, - ACTIONS(6159), 1, - anon_sym_LPAREN, - STATE(3504), 1, - sym_capture_list, - STATE(3723), 1, + STATE(3831), 1, sym_generic_parameters, - STATE(4211), 1, - sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118230] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6171), 1, - anon_sym_DOT, - STATE(3479), 1, - aux_sym_import_path_repeat1, - ACTIONS(6169), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [118248] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6175), 3, + STATE(3494), 2, + sym_line_comment, + sym_block_comment, + [131028] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3495), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6159), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6173), 5, + ACTIONS(6157), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [118264] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6177), 8, + [131051] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3496), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6161), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291455,34 +304450,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [118278] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6179), 8, + [131072] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6165), 1, + anon_sym_DOT, + STATE(3497), 3, + sym_line_comment, + sym_block_comment, + aux_sym_import_path_repeat1, + ACTIONS(6163), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [118292] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6181), 8, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [131095] = 8, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6170), 1, + anon_sym_as, + ACTIONS(6172), 1, + anon_sym_LBRACE, + STATE(3644), 1, + sym_import_alias, + STATE(3704), 1, + sym_selective_import_list, + STATE(3498), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6168), 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, - [118306] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6183), 8, + anon_sym_SEMI, + [131124] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3499), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6174), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291491,22 +304506,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [118320] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6185), 8, + [131145] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3500), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6178), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + ACTIONS(6176), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [118334] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6187), 8, + [131168] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3501), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6180), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291515,23 +304541,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [118348] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3822), 3, + [131189] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6184), 1, + anon_sym_DOT, + STATE(3497), 1, + aux_sym_import_path_repeat1, + STATE(3502), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6182), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [131214] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3503), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3784), 3, anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(6165), 5, + ACTIONS(6153), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [118364] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6133), 8, + [131237] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3504), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6186), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291540,73 +304595,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [118378] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5940), 1, - sym_identifier, - ACTIONS(6189), 1, - anon_sym_COMMA, - ACTIONS(6191), 1, - anon_sym_RBRACK, - ACTIONS(6193), 1, + [131258] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3505), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6188), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, anon_sym_mut, - ACTIONS(6195), 1, - anon_sym_shared, - STATE(3974), 1, - sym_capture, - STATE(4165), 1, - sym_mutability_modifiers, - STATE(4166), 1, - sym_reference_expression, - [118406] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6199), 1, - anon_sym_as, - ACTIONS(6201), 1, - anon_sym_LBRACE, - STATE(3616), 1, - sym_import_alias, - STATE(3786), 1, - sym_selective_import_list, - ACTIONS(6197), 4, + sym_identifier, + [131279] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3506), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6190), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [118428] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6205), 1, - anon_sym_DOT, - STATE(3479), 1, - aux_sym_import_path_repeat1, - ACTIONS(6203), 6, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [131300] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3507), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6192), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [118446] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6171), 1, - anon_sym_DOT, - STATE(3467), 1, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [131321] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6184), 1, + anon_sym_DOT, + STATE(3502), 1, aux_sym_import_path_repeat1, - ACTIONS(6208), 6, + STATE(3508), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6194), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, - [118464] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6210), 8, + [131346] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3509), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6121), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291615,10 +304682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [118478] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6212), 8, + [131367] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3510), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6196), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291627,17082 +304699,23366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [118492] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6216), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(6214), 5, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, + [131388] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5942), 1, + sym_identifier, + ACTIONS(6198), 1, + anon_sym_COMMA, + ACTIONS(6200), 1, + anon_sym_RBRACK, + ACTIONS(6202), 1, anon_sym_mut, + ACTIONS(6204), 1, + anon_sym_shared, + STATE(3961), 1, + sym_capture, + STATE(4323), 1, + sym_reference_expression, + STATE(4324), 1, + sym_mutability_modifiers, + STATE(3511), 2, + sym_line_comment, + sym_block_comment, + [131423] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6206), 1, sym_identifier, - [118508] = 6, + ACTIONS(6209), 1, + anon_sym_RBRACE, + ACTIONS(6211), 1, + anon_sym_DOT_DOT_DOT, + STATE(3490), 1, + sym_reference_expression, + STATE(3503), 2, + sym_keyed_element, + sym_spread_expression, + STATE(3512), 3, + sym_line_comment, + sym_block_comment, + aux_sym_element_list_repeat1, + [131451] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(3817), 1, - sym_generic_parameters, - STATE(4177), 1, + STATE(1495), 1, sym_signature, + STATE(3785), 1, + sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [118529] = 6, + STATE(3513), 2, + sym_line_comment, + sym_block_comment, + [131479] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3514), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6163), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [131499] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1482), 1, - sym_signature, - STATE(3684), 1, + STATE(3839), 1, sym_generic_parameters, + STATE(4148), 1, + sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118550] = 6, + STATE(3515), 2, + sym_line_comment, + sym_block_comment, + [131527] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1457), 1, - sym_signature, - STATE(3679), 1, + STATE(3859), 1, sym_generic_parameters, + STATE(4337), 1, + sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118571] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6220), 1, - anon_sym_const, - ACTIONS(6222), 1, - anon_sym_type, - ACTIONS(6224), 1, - anon_sym_fn, - ACTIONS(6228), 1, - anon_sym_enum, - ACTIONS(6230), 1, - anon_sym_interface, - ACTIONS(6226), 2, - anon_sym_struct, - anon_sym_union, - [118594] = 6, + STATE(3516), 2, + sym_line_comment, + sym_block_comment, + [131555] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(3772), 1, - sym_generic_parameters, - STATE(4391), 1, + STATE(1505), 1, sym_signature, + STATE(3749), 1, + sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [118615] = 6, + STATE(3517), 2, + sym_line_comment, + sym_block_comment, + [131583] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(3829), 1, - sym_generic_parameters, - STATE(4227), 1, + STATE(1513), 1, sym_signature, + STATE(3801), 1, + sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [118636] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6203), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [118649] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + STATE(3518), 2, + sym_line_comment, + sym_block_comment, + [131611] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3709), 1, + STATE(3813), 1, sym_generic_parameters, - STATE(4168), 1, + STATE(4364), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118670] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6232), 1, - sym_identifier, - STATE(3643), 1, - sym_reference_expression, - ACTIONS(6234), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [118687] = 6, + STATE(3519), 2, + sym_line_comment, + sym_block_comment, + [131639] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(1476), 1, + STATE(1509), 1, sym_signature, - STATE(3715), 1, + STATE(3741), 1, sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1126), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [118708] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + STATE(3520), 2, + sym_line_comment, + sym_block_comment, + [131667] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1469), 1, - sym_signature, - STATE(3798), 1, + STATE(3780), 1, sym_generic_parameters, + STATE(4247), 1, + sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118729] = 6, + STATE(3521), 2, + sym_line_comment, + sym_block_comment, + [131695] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3522), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6216), 7, + anon_sym_const, + anon_sym_type, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [131715] = 10, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5942), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_mut, + ACTIONS(6204), 1, + anon_sym_shared, ACTIONS(6218), 1, + anon_sym_RBRACK, + STATE(4152), 1, + sym_capture, + STATE(4323), 1, + sym_reference_expression, + STATE(4324), 1, + sym_mutability_modifiers, + STATE(3523), 2, + sym_line_comment, + sym_block_comment, + [131747] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(1465), 1, + STATE(1507), 1, sym_signature, - STATE(3780), 1, + STATE(3734), 1, sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1126), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [118750] = 6, + STATE(3524), 2, + sym_line_comment, + sym_block_comment, + [131775] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3693), 1, + STATE(3757), 1, sym_generic_parameters, - STATE(4091), 1, + STATE(4141), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118771] = 6, + STATE(3525), 2, + sym_line_comment, + sym_block_comment, + [131803] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1486), 1, + STATE(3725), 1, + sym_generic_parameters, + STATE(4279), 1, sym_signature, - STATE(3686), 1, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3526), 2, + sym_line_comment, + sym_block_comment, + [131831] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, + anon_sym_LPAREN, + STATE(3713), 1, sym_generic_parameters, + STATE(4393), 1, + sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118792] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(643), 1, + STATE(3527), 2, + sym_line_comment, + sym_block_comment, + [131859] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(647), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6236), 1, + ACTIONS(6220), 1, sym_identifier, - ACTIONS(6238), 1, + ACTIONS(6222), 1, anon_sym_RBRACE, - STATE(3456), 1, + STATE(3490), 1, sym_reference_expression, STATE(3512), 1, aux_sym_element_list_repeat1, - STATE(3475), 2, + STATE(3503), 2, sym_keyed_element, sym_spread_expression, - [118815] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5940), 1, - sym_identifier, - ACTIONS(6193), 1, - anon_sym_mut, - ACTIONS(6195), 1, - anon_sym_shared, - ACTIONS(6240), 1, - anon_sym_RBRACK, - STATE(4165), 1, - sym_mutability_modifiers, - STATE(4166), 1, - sym_reference_expression, - STATE(4342), 1, - sym_capture, - [118840] = 6, + STATE(3528), 2, + sym_line_comment, + sym_block_comment, + [131889] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1472), 1, - sym_signature, - STATE(3718), 1, + STATE(3695), 1, sym_generic_parameters, - ACTIONS(4984), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1126), 2, - sym_parameter_list, - sym_type_parameter_list, - [118861] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, - anon_sym_LPAREN, - STATE(1466), 1, + STATE(4380), 1, sym_signature, - STATE(3791), 1, - sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118882] = 6, + STATE(3529), 2, + sym_line_comment, + sym_block_comment, + [131917] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1480), 1, - sym_signature, - STATE(3683), 1, + STATE(3716), 1, sym_generic_parameters, + STATE(4250), 1, + sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118903] = 6, + STATE(3530), 2, + sym_line_comment, + sym_block_comment, + [131945] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(1477), 1, + STATE(1498), 1, sym_signature, - STATE(3691), 1, + STATE(3767), 1, sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1126), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [118924] = 6, + STATE(3531), 2, + sym_line_comment, + sym_block_comment, + [131973] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3744), 1, + STATE(3700), 1, sym_generic_parameters, - STATE(4076), 1, + STATE(4286), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118945] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + STATE(3532), 2, + sym_line_comment, + sym_block_comment, + [132001] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3795), 1, + STATE(3711), 1, sym_generic_parameters, - STATE(4326), 1, + STATE(4181), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [118966] = 2, - ACTIONS(495), 1, - sym_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, - [118979] = 6, + STATE(3533), 2, + sym_line_comment, + sym_block_comment, + [132029] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(3703), 1, - sym_generic_parameters, - STATE(4127), 1, + STATE(1510), 1, sym_signature, + STATE(3828), 1, + sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [119000] = 6, + STATE(3534), 2, + sym_line_comment, + sym_block_comment, + [132057] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(1496), 1, + STATE(1475), 1, sym_signature, - STATE(3687), 1, + STATE(3754), 1, sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1126), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [119021] = 6, + STATE(3535), 2, + sym_line_comment, + sym_block_comment, + [132085] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(3751), 1, - sym_generic_parameters, - STATE(4325), 1, + STATE(1490), 1, sym_signature, + STATE(3708), 1, + sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [119042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6244), 7, + STATE(3536), 2, + sym_line_comment, + sym_block_comment, + [132113] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6224), 1, anon_sym_const, + ACTIONS(6226), 1, anon_sym_type, + ACTIONS(6228), 1, anon_sym_fn, - anon_sym_struct, - anon_sym_union, + ACTIONS(6232), 1, anon_sym_enum, + ACTIONS(6234), 1, anon_sym_interface, - [119055] = 6, + ACTIONS(6230), 2, + anon_sym_struct, + anon_sym_union, + STATE(3537), 2, + sym_line_comment, + sym_block_comment, + [132143] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(3814), 1, - sym_generic_parameters, - STATE(4129), 1, + STATE(1471), 1, sym_signature, + STATE(3758), 1, + sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [119076] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6246), 1, - sym_identifier, - ACTIONS(6249), 1, - anon_sym_RBRACE, - ACTIONS(6251), 1, - anon_sym_DOT_DOT_DOT, - STATE(3456), 1, - sym_reference_expression, - STATE(3512), 1, - aux_sym_element_list_repeat1, - STATE(3475), 2, - sym_keyed_element, - sym_spread_expression, - [119099] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + STATE(3538), 2, + sym_line_comment, + sym_block_comment, + [132171] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(3764), 1, + STATE(3694), 1, sym_generic_parameters, - STATE(4268), 1, + STATE(4350), 1, sym_signature, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119120] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5940), 1, - sym_identifier, - ACTIONS(6193), 1, - anon_sym_mut, - ACTIONS(6195), 1, - anon_sym_shared, - ACTIONS(6254), 1, - anon_sym_RBRACK, - STATE(4165), 1, - sym_mutability_modifiers, - STATE(4166), 1, - sym_reference_expression, - STATE(4342), 1, - sym_capture, - [119145] = 6, + STATE(3539), 2, + sym_line_comment, + sym_block_comment, + [132199] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(1453), 1, + STATE(1499), 1, sym_signature, - STATE(3717), 1, + STATE(3824), 1, sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1126), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [119166] = 6, + STATE(3540), 2, + sym_line_comment, + sym_block_comment, + [132227] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, - anon_sym_LPAREN, - STATE(3815), 1, - sym_generic_parameters, - STATE(4265), 1, - sym_signature, - ACTIONS(4984), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2930), 2, - sym_parameter_list, - sym_type_parameter_list, - [119187] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5028), 1, - anon_sym_COMMA, - STATE(3518), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1719), 4, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5942), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_mut, + ACTIONS(6204), 1, + anon_sym_shared, + ACTIONS(6236), 1, + anon_sym_RBRACK, + STATE(4152), 1, + sym_capture, + STATE(4323), 1, + sym_reference_expression, + STATE(4324), 1, + sym_mutability_modifiers, + STATE(3541), 2, + sym_line_comment, + sym_block_comment, + [132259] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3542), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6238), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [119203] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5028), 1, - anon_sym_COMMA, - STATE(3602), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(4047), 4, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [132279] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6240), 1, + sym_identifier, + STATE(3666), 1, + sym_reference_expression, + STATE(3543), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6242), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_COMMA, anon_sym_RBRACE, - [119219] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6256), 1, + [132303] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, + anon_sym_LPAREN, + STATE(1462), 1, + sym_signature, + STATE(3760), 1, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1131), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3544), 2, + sym_line_comment, + sym_block_comment, + [132331] = 8, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6258), 1, + ACTIONS(6247), 1, aux_sym_c_string_literal_token1, - ACTIONS(6260), 1, + ACTIONS(6250), 1, sym___dolcbr, - ACTIONS(6262), 1, + ACTIONS(6253), 1, sym___single_quote, - STATE(3629), 2, + STATE(3769), 1, sym_string_interpolation, + STATE(3545), 3, + sym_line_comment, + sym_block_comment, aux_sym_c_string_literal_repeat1, - [119239] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6264), 1, + [132358] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6266), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6268), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6261), 1, sym___single_quote, - STATE(3549), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [119259] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6270), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3546), 2, + sym_line_comment, + sym_block_comment, + [132387] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6272), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6274), 1, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6276), 1, + ACTIONS(6269), 1, sym___double_quote, - STATE(3550), 2, - sym_string_interpolation, + STATE(3615), 1, aux_sym_c_string_literal_repeat2, - [119279] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3547), 2, + sym_line_comment, + sym_block_comment, + [132416] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, + sym_escape_sequence, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6276), 1, + ACTIONS(6271), 1, sym___single_quote, - ACTIONS(6278), 1, + STATE(3646), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3548), 2, + sym_line_comment, + sym_block_comment, + [132445] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6280), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - STATE(3544), 2, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6269), 1, + sym___single_quote, + STATE(3546), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, sym_string_interpolation, + STATE(3549), 2, + sym_line_comment, + sym_block_comment, + [132474] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, + sym_escape_sequence, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6273), 1, + sym___single_quote, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [119299] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6282), 1, - anon_sym_DOT, - ACTIONS(6284), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3550), 2, + sym_line_comment, + sym_block_comment, + [132503] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6275), 1, + sym_identifier, + STATE(3808), 1, + sym_label_reference, + STATE(3551), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4060), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(6286), 1, - sym_int_literal, - ACTIONS(6288), 1, - aux_sym_format_specifier_token1, - ACTIONS(6290), 1, - aux_sym_format_specifier_token2, - ACTIONS(6292), 1, - anon_sym_0, - [119321] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + [132526] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6298), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6277), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3619), 1, aux_sym_c_string_literal_repeat2, - [119341] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6300), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3552), 2, + sym_line_comment, + sym_block_comment, + [132555] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6303), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6306), 1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6309), 1, + ACTIONS(6277), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3620), 1, aux_sym_c_string_literal_repeat1, - [119361] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6311), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3553), 2, + sym_line_comment, + sym_block_comment, + [132584] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6281), 1, + anon_sym_RBRACE, + STATE(3605), 1, + aux_sym_selective_import_list_repeat1, + STATE(3554), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6279), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [132607] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6275), 1, + sym_identifier, + STATE(3807), 1, + sym_label_reference, + STATE(3555), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4064), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132630] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6313), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6315), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6283), 1, sym___single_quote, - STATE(3603), 2, - sym_string_interpolation, + STATE(3593), 1, aux_sym_c_string_literal_repeat1, - [119381] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6262), 1, - sym___double_quote, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6317), 1, - sym_escape_sequence, - ACTIONS(6319), 1, - aux_sym_c_string_literal_token2, - STATE(3524), 2, + STATE(3769), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [119401] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3556), 2, + sym_line_comment, + sym_block_comment, + [132659] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6285), 1, + anon_sym_LBRACK, + STATE(2467), 1, + sym_type_parameters, + STATE(3557), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2741), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [132682] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6321), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6283), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3588), 1, aux_sym_c_string_literal_repeat2, - [119421] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3558), 2, + sym_line_comment, + sym_block_comment, + [132711] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, + sym_escape_sequence, + ACTIONS(6265), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6321), 1, - sym___single_quote, - ACTIONS(6323), 1, + ACTIONS(6287), 1, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3559), 2, + sym_line_comment, + sym_block_comment, + [132740] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - STATE(3525), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [119441] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6323), 1, + ACTIONS(6289), 1, + sym___single_quote, + STATE(3545), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3560), 2, + sym_line_comment, + sym_block_comment, + [132769] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6327), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6291), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3587), 1, aux_sym_c_string_literal_repeat1, - [119461] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3561), 2, + sym_line_comment, + sym_block_comment, + [132798] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6329), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6289), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [119481] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3562), 2, + sym_line_comment, + sym_block_comment, + [132827] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, + sym_escape_sequence, + ACTIONS(6265), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6315), 1, + ACTIONS(6293), 1, sym___double_quote, - ACTIONS(6331), 1, + STATE(3589), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3563), 2, + sym_line_comment, + sym_block_comment, + [132856] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6333), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - STATE(3601), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [119501] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6335), 1, - sym_escape_sequence, - ACTIONS(6337), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6339), 1, - sym___single_quote, - STATE(3597), 2, + ACTIONS(6291), 1, + sym___double_quote, + STATE(3583), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [119521] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3564), 2, + sym_line_comment, + sym_block_comment, + [132885] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5044), 1, + anon_sym_COMMA, + STATE(3570), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3565), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1725), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132908] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6295), 1, + anon_sym_DOT, + ACTIONS(6297), 1, + anon_sym_RBRACE, + ACTIONS(6299), 1, + sym_int_literal, + ACTIONS(6301), 1, + aux_sym_format_specifier_token1, + ACTIONS(6303), 1, + aux_sym_format_specifier_token2, + ACTIONS(6305), 1, + anon_sym_0, + STATE(3566), 2, + sym_line_comment, + sym_block_comment, + [132937] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6329), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6293), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3550), 1, aux_sym_c_string_literal_repeat1, - [119541] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6339), 1, - sym___double_quote, - ACTIONS(6341), 1, - sym_escape_sequence, - ACTIONS(6343), 1, - aux_sym_c_string_literal_token2, - STATE(3620), 2, + STATE(3769), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [119561] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6345), 1, + STATE(3567), 2, + sym_line_comment, + sym_block_comment, + [132966] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6347), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6349), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6307), 1, sym___double_quote, - STATE(3588), 2, - sym_string_interpolation, + STATE(3604), 1, aux_sym_c_string_literal_repeat2, - [119581] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6351), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3568), 2, + sym_line_comment, + sym_block_comment, + [132995] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6353), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6355), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6309), 1, sym___single_quote, - STATE(3582), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [119601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_DOT, - ACTIONS(3410), 5, - anon_sym_LBRACE, + STATE(3769), 1, + sym_string_interpolation, + STATE(3569), 2, + sym_line_comment, + sym_block_comment, + [133024] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5044), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [119615] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6360), 1, - anon_sym_RBRACE, - STATE(3539), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6357), 4, + STATE(3639), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3570), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4025), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - [119631] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + anon_sym_RBRACE, + [133047] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6327), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6309), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [119651] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3571), 2, + sym_line_comment, + sym_block_comment, + [133076] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6362), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6311), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [119671] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3572), 2, + sym_line_comment, + sym_block_comment, + [133105] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6362), 1, - sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [119691] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6355), 1, + ACTIONS(6311), 1, sym___double_quote, - ACTIONS(6364), 1, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3573), 2, + sym_line_comment, + sym_block_comment, + [133134] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6366), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - STATE(3583), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [119711] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6323), 1, + ACTIONS(6313), 1, + sym___double_quote, + STATE(3616), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3574), 2, + sym_line_comment, + sym_block_comment, + [133163] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6368), 1, - sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [119731] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6349), 1, + ACTIONS(6315), 1, sym___single_quote, - ACTIONS(6370), 1, - sym_escape_sequence, - ACTIONS(6372), 1, - aux_sym_c_string_literal_token1, - STATE(3579), 2, - sym_string_interpolation, + STATE(3648), 1, aux_sym_c_string_literal_repeat1, - [119751] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3575), 2, + sym_line_comment, + sym_block_comment, + [133192] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6374), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6313), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3621), 1, aux_sym_c_string_literal_repeat1, - [119771] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3576), 2, + sym_line_comment, + sym_block_comment, + [133221] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6376), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6315), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3653), 1, aux_sym_c_string_literal_repeat2, - [119791] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3577), 2, + sym_line_comment, + sym_block_comment, + [133250] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5044), 1, + anon_sym_COMMA, + STATE(3639), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3578), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4011), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [133273] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6378), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6317), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3569), 1, aux_sym_c_string_literal_repeat1, - [119811] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3579), 2, + sym_line_comment, + sym_block_comment, + [133302] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6376), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6319), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [119831] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3580), 2, + sym_line_comment, + sym_block_comment, + [133331] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6368), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6317), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3571), 1, aux_sym_c_string_literal_repeat2, - [119851] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6380), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3581), 2, + sym_line_comment, + sym_block_comment, + [133360] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6382), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6384), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6321), 1, sym___single_quote, - STATE(3530), 2, - sym_string_interpolation, + STATE(3572), 1, aux_sym_c_string_literal_repeat1, - [119871] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3582), 2, + sym_line_comment, + sym_block_comment, + [133389] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, + sym_escape_sequence, + ACTIONS(6265), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6267), 1, sym___dolcbr, ACTIONS(6323), 1, - sym_escape_sequence, - ACTIONS(6325), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6386), 1, - sym___single_quote, - STATE(3525), 2, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [119891] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3583), 2, + sym_line_comment, + sym_block_comment, + [133418] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6386), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6321), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3573), 1, aux_sym_c_string_literal_repeat2, - [119911] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3584), 2, + sym_line_comment, + sym_block_comment, + [133447] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, + ACTIONS(6265), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6267), 1, + sym___dolcbr, ACTIONS(6325), 1, + sym___double_quote, + STATE(3594), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3585), 2, + sym_line_comment, + sym_block_comment, + [133476] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, + sym_escape_sequence, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6388), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6325), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3611), 1, aux_sym_c_string_literal_repeat1, - [119931] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3586), 2, + sym_line_comment, + sym_block_comment, + [133505] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, + sym_escape_sequence, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6390), 1, + ACTIONS(6323), 1, + sym___single_quote, + STATE(3545), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3587), 2, + sym_line_comment, + sym_block_comment, + [133534] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6392), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6394), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6327), 1, sym___double_quote, - STATE(3584), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [119951] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3588), 2, + sym_line_comment, + sym_block_comment, + [133563] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, + sym_escape_sequence, + ACTIONS(6265), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6394), 1, - sym___single_quote, - ACTIONS(6396), 1, + ACTIONS(6273), 1, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3589), 2, + sym_line_comment, + sym_block_comment, + [133592] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6398), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - STATE(3585), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [119971] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6400), 1, + ACTIONS(6329), 1, + sym___single_quote, + STATE(3545), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3590), 2, + sym_line_comment, + sym_block_comment, + [133621] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6402), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6404), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6329), 1, sym___double_quote, - STATE(3586), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [119991] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3591), 2, + sym_line_comment, + sym_block_comment, + [133650] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, + sym_escape_sequence, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6404), 1, + ACTIONS(6331), 1, sym___single_quote, - ACTIONS(6406), 1, + STATE(3545), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3592), 2, + sym_line_comment, + sym_block_comment, + [133679] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6408), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - STATE(3587), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120011] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6294), 1, + ACTIONS(6327), 1, + sym___single_quote, + STATE(3545), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3593), 2, + sym_line_comment, + sym_block_comment, + [133708] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6388), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6333), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [120031] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3594), 2, + sym_line_comment, + sym_block_comment, + [133737] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6378), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6331), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [120051] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6410), 1, - sym_escape_sequence, - ACTIONS(6412), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6414), 1, - sym___single_quote, - STATE(3541), 2, + STATE(3773), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120071] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + STATE(3595), 2, + sym_line_comment, + sym_block_comment, + [133766] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, + sym_escape_sequence, + ACTIONS(6265), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6414), 1, + ACTIONS(6319), 1, sym___double_quote, - ACTIONS(6416), 1, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3596), 2, + sym_line_comment, + sym_block_comment, + [133795] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6418), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - STATE(3542), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120091] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6420), 1, + ACTIONS(6335), 1, + sym___double_quote, + STATE(3643), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3597), 2, + sym_line_comment, + sym_block_comment, + [133824] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6422), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6424), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6337), 1, sym___single_quote, - STATE(3565), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [120111] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6426), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3598), 2, + sym_line_comment, + sym_block_comment, + [133853] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6428), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6430), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6339), 1, sym___double_quote, - STATE(3599), 2, - sym_string_interpolation, + STATE(3627), 1, aux_sym_c_string_literal_repeat2, - [120131] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3599), 2, + sym_line_comment, + sym_block_comment, + [133882] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6432), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6339), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3628), 1, aux_sym_c_string_literal_repeat1, - [120151] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, - sym_escape_sequence, - ACTIONS(6296), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6432), 1, - sym___double_quote, - STATE(3627), 2, + STATE(3769), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120171] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3600), 2, + sym_line_comment, + sym_block_comment, + [133911] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6434), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6341), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3629), 1, aux_sym_c_string_literal_repeat2, - [120191] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3601), 2, + sym_line_comment, + sym_block_comment, + [133940] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, + sym_escape_sequence, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6430), 1, + ACTIONS(6341), 1, sym___single_quote, - ACTIONS(6436), 1, + STATE(3630), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3602), 2, + sym_line_comment, + sym_block_comment, + [133969] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6438), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - STATE(3592), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120211] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6440), 1, + ACTIONS(6335), 1, + sym___single_quote, + STATE(3649), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3603), 2, + sym_line_comment, + sym_block_comment, + [133998] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6442), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6444), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6337), 1, sym___double_quote, - STATE(3613), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [120231] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6446), 1, - sym_identifier, - STATE(3743), 1, - sym_label_reference, - ACTIONS(4120), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + STATE(3773), 1, + sym_string_interpolation, + STATE(3604), 2, + sym_line_comment, + sym_block_comment, + [134027] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6343), 1, anon_sym_RBRACE, - [120247] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6446), 1, - sym_identifier, - STATE(3739), 1, - sym_label_reference, - ACTIONS(4116), 4, + STATE(3622), 1, + aux_sym_selective_import_list_repeat1, + STATE(3605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6279), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [120263] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6444), 1, - sym___single_quote, - ACTIONS(6448), 1, + anon_sym_COMMA, + [134050] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6450), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - STATE(3607), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120283] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6424), 1, - sym___double_quote, - ACTIONS(6452), 1, - sym_escape_sequence, - ACTIONS(6454), 1, - aux_sym_c_string_literal_token2, - STATE(3566), 2, + ACTIONS(6307), 1, + sym___single_quote, + STATE(3598), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120303] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6456), 1, - anon_sym_const, - ACTIONS(6458), 1, - anon_sym_fn, - ACTIONS(6462), 1, - anon_sym_enum, - ACTIONS(6464), 1, - anon_sym_interface, - ACTIONS(6460), 2, - anon_sym_struct, - anon_sym_union, - [120323] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6466), 1, + STATE(3606), 2, + sym_line_comment, + sym_block_comment, + [134079] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6468), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6470), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6345), 1, sym___double_quote, - STATE(3595), 2, - sym_string_interpolation, + STATE(3624), 1, aux_sym_c_string_literal_repeat2, - [120343] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6472), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3607), 2, + sym_line_comment, + sym_block_comment, + [134108] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6474), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6476), 1, - sym___single_quote, - STATE(3552), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120363] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6470), 1, + ACTIONS(6345), 1, sym___single_quote, - ACTIONS(6478), 1, - sym_escape_sequence, - ACTIONS(6480), 1, - aux_sym_c_string_literal_token1, - STATE(3546), 2, - sym_string_interpolation, + STATE(3612), 1, aux_sym_c_string_literal_repeat1, - [120383] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6476), 1, - sym___double_quote, - ACTIONS(6482), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3608), 2, + sym_line_comment, + sym_block_comment, + [134137] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6484), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - STATE(3553), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120403] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6323), 1, + ACTIONS(6347), 1, + sym___double_quote, + STATE(3596), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3609), 2, + sym_line_comment, + sym_block_comment, + [134166] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6486), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6347), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3580), 1, aux_sym_c_string_literal_repeat1, - [120423] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6488), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3610), 2, + sym_line_comment, + sym_block_comment, + [134195] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6490), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6492), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6333), 1, sym___single_quote, - STATE(3554), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [120443] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3611), 2, + sym_line_comment, + sym_block_comment, + [134224] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, + sym_escape_sequence, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6492), 1, - sym___double_quote, - ACTIONS(6494), 1, + ACTIONS(6349), 1, + sym___single_quote, + STATE(3545), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3612), 2, + sym_line_comment, + sym_block_comment, + [134253] = 8, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6351), 1, sym_escape_sequence, - ACTIONS(6496), 1, + ACTIONS(6354), 1, aux_sym_c_string_literal_token2, - STATE(3559), 2, + ACTIONS(6357), 1, + sym___dolcbr, + ACTIONS(6360), 1, + sym___double_quote, + STATE(3773), 1, sym_string_interpolation, + STATE(3613), 3, + sym_line_comment, + sym_block_comment, aux_sym_c_string_literal_repeat2, - [120463] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + [134280] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6498), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6362), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [120483] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3614), 2, + sym_line_comment, + sym_block_comment, + [134309] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6261), 1, + sym___double_quote, + ACTIONS(6263), 1, + sym_escape_sequence, + ACTIONS(6265), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6294), 1, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3615), 2, + sym_line_comment, + sym_block_comment, + [134338] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6498), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6364), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [120503] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3616), 2, + sym_line_comment, + sym_block_comment, + [134367] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6500), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6366), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3623), 1, aux_sym_c_string_literal_repeat2, - [120523] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, - sym_escape_sequence, - ACTIONS(6325), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6500), 1, - sym___single_quote, - STATE(3525), 2, + STATE(3773), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120543] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3617), 2, + sym_line_comment, + sym_block_comment, + [134396] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6502), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6271), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3647), 1, aux_sym_c_string_literal_repeat2, - [120563] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, - sym_escape_sequence, - ACTIONS(6325), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6502), 1, - sym___single_quote, - STATE(3525), 2, + STATE(3773), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120583] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3618), 2, + sym_line_comment, + sym_block_comment, + [134425] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6486), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6368), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [120603] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6506), 1, - anon_sym_RBRACE, - STATE(3593), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6504), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [120619] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3619), 2, + sym_line_comment, + sym_block_comment, + [134454] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6434), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6368), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [120639] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6268), 1, - sym___double_quote, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6508), 1, - sym_escape_sequence, - ACTIONS(6510), 1, - aux_sym_c_string_literal_token2, - STATE(3547), 2, + STATE(3769), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120659] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3620), 2, + sym_line_comment, + sym_block_comment, + [134483] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6512), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6364), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [120679] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6514), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3621), 2, + sym_line_comment, + sym_block_comment, + [134512] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6373), 1, anon_sym_RBRACE, - STATE(3539), 1, + STATE(3622), 3, + sym_line_comment, + sym_block_comment, aux_sym_selective_import_list_repeat1, - ACTIONS(6504), 4, + ACTIONS(6370), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, - [120695] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6516), 1, + [134533] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6518), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6520), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6362), 1, sym___double_quote, - STATE(3567), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [120715] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3623), 2, + sym_line_comment, + sym_block_comment, + [134562] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6374), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6349), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [120735] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6520), 1, - sym___single_quote, - ACTIONS(6522), 1, - sym_escape_sequence, - ACTIONS(6524), 1, - aux_sym_c_string_literal_token1, - STATE(3590), 2, + STATE(3773), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120755] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3624), 2, + sym_line_comment, + sym_block_comment, + [134591] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6526), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6366), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - [120775] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6528), 1, - sym_escape_sequence, - ACTIONS(6530), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6532), 1, - sym___double_quote, - STATE(3600), 2, + STATE(3769), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120795] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3625), 2, + sym_line_comment, + sym_block_comment, + [134620] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6512), 1, - sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120815] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6294), 1, - sym_escape_sequence, - ACTIONS(6296), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6534), 1, + ACTIONS(6375), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [120835] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3626), 2, + sym_line_comment, + sym_block_comment, + [134649] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6536), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6377), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [120855] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6538), 1, - anon_sym_COMMA, - STATE(3602), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1761), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [120871] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3627), 2, + sym_line_comment, + sym_block_comment, + [134678] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6536), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6377), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [120891] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6384), 1, - sym___double_quote, - ACTIONS(6541), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3628), 2, + sym_line_comment, + sym_block_comment, + [134707] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6543), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - STATE(3540), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120911] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6545), 1, - anon_sym_LBRACK, - STATE(2446), 1, - sym_type_parameters, - ACTIONS(2713), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [120927] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6323), 1, + ACTIONS(6379), 1, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3629), 2, + sym_line_comment, + sym_block_comment, + [134736] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6534), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6379), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [120947] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3630), 2, + sym_line_comment, + sym_block_comment, + [134765] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6547), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6287), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [120967] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3631), 2, + sym_line_comment, + sym_block_comment, + [134794] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6549), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6381), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3590), 1, aux_sym_c_string_literal_repeat1, - [120987] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3632), 2, + sym_line_comment, + sym_block_comment, + [134823] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6549), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6381), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3591), 1, aux_sym_c_string_literal_repeat2, - [121007] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6532), 1, - sym___single_quote, - ACTIONS(6551), 1, - sym_escape_sequence, - ACTIONS(6553), 1, - aux_sym_c_string_literal_token1, - STATE(3606), 2, + STATE(3773), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121027] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6323), 1, + STATE(3633), 2, + sym_line_comment, + sym_block_comment, + [134852] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6555), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6383), 1, sym___single_quote, - STATE(3525), 2, - sym_string_interpolation, + STATE(3592), 1, aux_sym_c_string_literal_repeat1, - [121047] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6557), 1, - sym_escape_sequence, - ACTIONS(6559), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6561), 1, - sym___double_quote, - STATE(3528), 2, + STATE(3769), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121067] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(3634), 2, + sym_line_comment, + sym_block_comment, + [134881] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6547), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6383), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3595), 1, aux_sym_c_string_literal_repeat2, - [121087] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6561), 1, - sym___single_quote, - ACTIONS(6563), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3635), 2, + sym_line_comment, + sym_block_comment, + [134910] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6565), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - STATE(3529), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121107] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6567), 1, + ACTIONS(6385), 1, + sym___single_quote, + STATE(3652), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3636), 2, + sym_line_comment, + sym_block_comment, + [134939] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6569), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6571), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6387), 1, sym___double_quote, - STATE(3531), 2, - sym_string_interpolation, + STATE(3626), 1, aux_sym_c_string_literal_repeat2, - [121127] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6201), 1, - anon_sym_LBRACE, - STATE(3701), 1, - sym_selective_import_list, - ACTIONS(6573), 4, + STATE(3773), 1, + sym_string_interpolation, + STATE(3637), 2, + sym_line_comment, + sym_block_comment, + [134968] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6389), 1, + anon_sym_const, + ACTIONS(6391), 1, + anon_sym_fn, + ACTIONS(6395), 1, + anon_sym_enum, + ACTIONS(6397), 1, + anon_sym_interface, + ACTIONS(6393), 2, + anon_sym_struct, + anon_sym_union, + STATE(3638), 2, + sym_line_comment, + sym_block_comment, + [134995] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6399), 1, + anon_sym_COMMA, + STATE(3639), 3, + sym_line_comment, + sym_block_comment, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(1765), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [121143] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + anon_sym_RBRACE, + [135016] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6296), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6555), 1, - sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121163] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6571), 1, + ACTIONS(6402), 1, sym___single_quote, - ACTIONS(6575), 1, - sym_escape_sequence, - ACTIONS(6577), 1, - aux_sym_c_string_literal_token1, - STATE(3534), 2, - sym_string_interpolation, + STATE(3631), 1, aux_sym_c_string_literal_repeat1, - [121183] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5940), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3640), 2, + sym_line_comment, + sym_block_comment, + [135045] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5942), 1, sym_identifier, - ACTIONS(6193), 1, + ACTIONS(6202), 1, anon_sym_mut, - ACTIONS(6195), 1, + ACTIONS(6204), 1, anon_sym_shared, - STATE(4165), 1, - sym_mutability_modifiers, - STATE(4166), 1, - sym_reference_expression, - STATE(4342), 1, + STATE(4152), 1, sym_capture, - [121205] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, - sym___dolcbr, - ACTIONS(6294), 1, + STATE(4323), 1, + sym_reference_expression, + STATE(4324), 1, + sym_mutability_modifiers, + STATE(3641), 2, + sym_line_comment, + sym_block_comment, + [135074] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6526), 1, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6402), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3559), 1, aux_sym_c_string_literal_repeat2, - [121225] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6579), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3642), 2, + sym_line_comment, + sym_block_comment, + [135103] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6581), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6583), 1, - sym___single_quote, - STATE(3608), 2, + ACTIONS(6265), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6404), 1, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121245] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5028), 1, - anon_sym_COMMA, - STATE(3602), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(4058), 4, + STATE(3643), 2, + sym_line_comment, + sym_block_comment, + [135132] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6172), 1, + anon_sym_LBRACE, + STATE(3856), 1, + sym_selective_import_list, + STATE(3644), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6406), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [121261] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + anon_sym_SEMI, + [135155] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2831), 1, + anon_sym_DOT, + STATE(3645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3147), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [135176] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, + sym_escape_sequence, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6583), 1, - sym___double_quote, - ACTIONS(6585), 1, + ACTIONS(6408), 1, + sym___single_quote, + STATE(3545), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3646), 2, + sym_line_comment, + sym_block_comment, + [135205] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6587), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - STATE(3609), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121281] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6589), 1, + ACTIONS(6408), 1, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3647), 2, + sym_line_comment, + sym_block_comment, + [135234] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6591), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6593), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6410), 1, sym___single_quote, - STATE(3548), 2, - sym_string_interpolation, + STATE(3545), 1, aux_sym_c_string_literal_repeat1, - [121301] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, - sym___dolcbr, - ACTIONS(6595), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3648), 2, + sym_line_comment, + sym_block_comment, + [135263] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6597), 1, + ACTIONS(6257), 1, aux_sym_c_string_literal_token1, - ACTIONS(6599), 1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6404), 1, sym___single_quote, - STATE(3611), 2, + STATE(3545), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, sym_string_interpolation, + STATE(3649), 2, + sym_line_comment, + sym_block_comment, + [135292] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, + sym_escape_sequence, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6387), 1, + sym___single_quote, + STATE(3651), 1, aux_sym_c_string_literal_repeat1, - [121321] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3650), 2, + sym_line_comment, + sym_block_comment, + [135321] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, + sym_escape_sequence, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6593), 1, - sym___double_quote, - ACTIONS(6601), 1, + ACTIONS(6375), 1, + sym___single_quote, + STATE(3545), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3651), 2, + sym_line_comment, + sym_block_comment, + [135350] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, sym_escape_sequence, - ACTIONS(6603), 1, - aux_sym_c_string_literal_token2, - STATE(3560), 2, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, + sym___dolcbr, + ACTIONS(6412), 1, + sym___single_quote, + STATE(3545), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121341] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6605), 1, + STATE(3652), 2, + sym_line_comment, + sym_block_comment, + [135379] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6608), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - ACTIONS(6611), 1, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6614), 1, + ACTIONS(6410), 1, sym___double_quote, - STATE(3627), 2, - sym_string_interpolation, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - [121361] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6274), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3653), 2, + sym_line_comment, + sym_block_comment, + [135408] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, + sym_escape_sequence, + ACTIONS(6265), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6267), 1, sym___dolcbr, - ACTIONS(6599), 1, + ACTIONS(6412), 1, sym___double_quote, - ACTIONS(6616), 1, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, + sym_string_interpolation, + STATE(3654), 2, + sym_line_comment, + sym_block_comment, + [135437] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6618), 1, + ACTIONS(6265), 1, aux_sym_c_string_literal_token2, - STATE(3617), 2, - sym_string_interpolation, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6385), 1, + sym___double_quote, + STATE(3654), 1, aux_sym_c_string_literal_repeat2, - [121381] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6260), 1, + STATE(3773), 1, + sym_string_interpolation, + STATE(3655), 2, + sym_line_comment, + sym_block_comment, + [135466] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6255), 1, + sym_escape_sequence, + ACTIONS(6257), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6259), 1, sym___dolcbr, - ACTIONS(6298), 1, + ACTIONS(6414), 1, sym___single_quote, - ACTIONS(6323), 1, + STATE(3560), 1, + aux_sym_c_string_literal_repeat1, + STATE(3769), 1, + sym_string_interpolation, + STATE(3656), 2, + sym_line_comment, + sym_block_comment, + [135495] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, sym_escape_sequence, - ACTIONS(6325), 1, - aux_sym_c_string_literal_token1, - STATE(3525), 2, + ACTIONS(6265), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6267), 1, + sym___dolcbr, + ACTIONS(6414), 1, + sym___double_quote, + STATE(3562), 1, + aux_sym_c_string_literal_repeat2, + STATE(3773), 1, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121401] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6623), 1, + STATE(3657), 2, + sym_line_comment, + sym_block_comment, + [135524] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6418), 1, anon_sym_RBRACE, - STATE(3630), 1, + STATE(3687), 1, aux_sym__statement_list_repeat1, - ACTIONS(6620), 3, + STATE(3658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6416), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [121416] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6625), 1, - anon_sym_LBRACE, - ACTIONS(6627), 1, - anon_sym_COMMA, - ACTIONS(6629), 1, - anon_sym_RBRACK, - STATE(2442), 1, - sym_type_initializer_body, - STATE(3898), 1, - aux_sym_type_parameters_repeat1, - [121435] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5993), 1, - anon_sym_RBRACE, - ACTIONS(6631), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [121448] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6193), 1, - anon_sym_mut, - ACTIONS(6195), 1, - anon_sym_shared, - ACTIONS(6633), 1, - sym_identifier, - STATE(4380), 1, - sym_mutable_identifier, - STATE(4405), 1, - sym_mutability_modifiers, - [121467] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2442), 1, - sym_type_initializer_body, - ACTIONS(3203), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [121480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 5, + [135546] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2831), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_QMARK, - [121491] = 5, + [135564] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6420), 2, + anon_sym_RBRACE, + sym_identifier, + STATE(3660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6422), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + [135584] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6635), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6424), 1, anon_sym_LBRACE, - STATE(1544), 1, + STATE(1609), 1, sym__struct_body, - STATE(4237), 1, - sym_generic_parameters, - ACTIONS(4984), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [121508] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6637), 1, - anon_sym_LBRACE, - STATE(1546), 1, - sym__interface_body, - STATE(4240), 1, + STATE(4202), 1, sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - [121525] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6625), 1, - anon_sym_LBRACE, - ACTIONS(6639), 1, - anon_sym_COMMA, - ACTIONS(6641), 1, - anon_sym_RPAREN, - STATE(2442), 1, - sym_type_initializer_body, - STATE(3849), 1, - aux_sym_type_parameters_repeat1, - [121544] = 6, + STATE(3661), 2, + sym_line_comment, + sym_block_comment, + [135608] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6060), 1, + anon_sym_RBRACE, + STATE(3662), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6426), 4, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [135628] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6643), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6428), 1, sym_identifier, - ACTIONS(6645), 1, + ACTIONS(6430), 1, anon_sym_mut, - STATE(3914), 1, + STATE(4015), 1, sym_var_definition, - STATE(4170), 1, + STATE(4257), 1, sym_range_clause, - STATE(4621), 1, + STATE(4632), 1, sym_var_definition_list, - [121563] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6649), 1, - anon_sym_RBRACE, - STATE(3630), 1, - aux_sym__statement_list_repeat1, - ACTIONS(6647), 3, + STATE(3663), 2, + sym_line_comment, + sym_block_comment, + [135654] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3664), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6432), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [121578] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6635), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym__struct_body, - STATE(4253), 1, - sym_generic_parameters, - ACTIONS(4984), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [121595] = 5, + anon_sym_RBRACE, + sym_identifier, + [135672] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6637), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6434), 1, anon_sym_LBRACE, - STATE(1556), 1, + STATE(1601), 1, sym__interface_body, - STATE(4256), 1, + STATE(4205), 1, sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - [121612] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6360), 5, + STATE(3665), 2, + sym_line_comment, + sym_block_comment, + [135696] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3666), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6373), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [135714] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1765), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, anon_sym_RBRACE, - [121623] = 4, + [135732] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, + anon_sym_LBRACE, + STATE(1350), 1, + sym_block, + STATE(3668), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6436), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [135754] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6438), 1, + anon_sym_LBRACE, + ACTIONS(6440), 1, + anon_sym_COMMA, + ACTIONS(6442), 1, + anon_sym_RBRACK, + STATE(2404), 1, + sym_type_initializer_body, + STATE(3964), 1, + aux_sym_type_parameters_repeat1, + STATE(3669), 2, + sym_line_comment, + sym_block_comment, + [135780] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6434), 1, + anon_sym_LBRACE, + STATE(1604), 1, + sym__interface_body, + STATE(4401), 1, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3670), 2, + sym_line_comment, + sym_block_comment, + [135804] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(2449), 1, + STATE(2389), 1, sym_block, - ACTIONS(3211), 3, + STATE(3671), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3193), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [121638] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6651), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + [135826] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2404), 1, + sym_type_initializer_body, + STATE(3672), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3215), 4, anon_sym_LBRACE, - [121649] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6655), 1, - anon_sym_RBRACE, - STATE(3640), 1, - aux_sym__statement_list_repeat1, - ACTIONS(6653), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [121664] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6657), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [121675] = 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [135846] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6193), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6424), 1, + anon_sym_LBRACE, + STATE(1606), 1, + sym__struct_body, + STATE(4373), 1, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3673), 2, + sym_line_comment, + sym_block_comment, + [135870] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6202), 1, anon_sym_mut, - ACTIONS(6195), 1, + ACTIONS(6204), 1, anon_sym_shared, - ACTIONS(6659), 1, + ACTIONS(6444), 1, sym_identifier, - STATE(4290), 1, + STATE(4193), 1, sym_parameter_declaration, - STATE(4495), 1, + STATE(4646), 1, sym_mutability_modifiers, - [121694] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6637), 1, + STATE(3674), 2, + sym_line_comment, + sym_block_comment, + [135896] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6424), 1, + anon_sym_LBRACE, + STATE(1551), 1, + sym__struct_body, + STATE(4232), 1, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3675), 2, + sym_line_comment, + sym_block_comment, + [135920] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6434), 1, anon_sym_LBRACE, - STATE(1542), 1, + STATE(1549), 1, sym__interface_body, - STATE(4259), 1, + STATE(4229), 1, sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - [121711] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6643), 1, - sym_identifier, - ACTIONS(6645), 1, - anon_sym_mut, - STATE(3914), 1, - sym_var_definition, - STATE(4341), 1, - sym_range_clause, - STATE(4621), 1, - sym_var_definition_list, - [121730] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(1761), 5, + STATE(3676), 2, + sym_line_comment, + sym_block_comment, + [135944] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6438), 1, + anon_sym_LBRACE, + ACTIONS(6446), 1, + anon_sym_COMMA, + ACTIONS(6448), 1, + anon_sym_RPAREN, + STATE(2404), 1, + sym_type_initializer_body, + STATE(3863), 1, + aux_sym_type_parameters_repeat1, + STATE(3677), 2, + sym_line_comment, + sym_block_comment, + [135970] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2404), 1, + sym_type_initializer_body, + STATE(3678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3231), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [135990] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6452), 1, + anon_sym_RBRACE, + STATE(3658), 1, + aux_sym__statement_list_repeat1, + STATE(3679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6450), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [121741] = 5, + [136012] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6635), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6424), 1, anon_sym_LBRACE, - STATE(1535), 1, + STATE(1546), 1, sym__struct_body, - STATE(4261), 1, + STATE(4220), 1, sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - [121758] = 5, + STATE(3680), 2, + sym_line_comment, + sym_block_comment, + [136036] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, + anon_sym_LBRACE, + STATE(2437), 1, + sym_block, + STATE(3681), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6436), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [136058] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6637), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6428), 1, + sym_identifier, + ACTIONS(6430), 1, + anon_sym_mut, + STATE(4015), 1, + sym_var_definition, + STATE(4298), 1, + sym_range_clause, + STATE(4632), 1, + sym_var_definition_list, + STATE(3682), 2, + sym_line_comment, + sym_block_comment, + [136084] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6434), 1, anon_sym_LBRACE, - STATE(1593), 1, + STATE(1535), 1, sym__interface_body, - STATE(4329), 1, + STATE(4218), 1, sym_generic_parameters, ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - [121775] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2442), 1, - sym_type_initializer_body, - ACTIONS(3179), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [121788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6052), 1, + STATE(3683), 2, + sym_line_comment, + sym_block_comment, + [136108] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5995), 1, anon_sym_RBRACE, - ACTIONS(6661), 4, + STATE(3684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6454), 4, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [121801] = 4, + [136128] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6438), 1, anon_sym_LBRACE, - STATE(2422), 1, - sym_block, - ACTIONS(6663), 3, - anon_sym_SEMI, + STATE(2404), 1, + sym_type_initializer_body, + STATE(3685), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3223), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_COLON, - [121816] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6665), 5, + [136150] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3686), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6456), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [121827] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, - anon_sym_LBRACE, - STATE(1335), 1, - sym_block, - ACTIONS(6663), 3, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [121842] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6667), 2, + anon_sym_LBRACE, + [136168] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6461), 1, anon_sym_RBRACE, - sym_identifier, - ACTIONS(6669), 3, + ACTIONS(6458), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [121855] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6635), 1, - anon_sym_LBRACE, - STATE(1595), 1, - sym__struct_body, - STATE(4324), 1, - sym_generic_parameters, - ACTIONS(4984), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [121872] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6625), 1, - anon_sym_LBRACE, - STATE(2442), 1, - sym_type_initializer_body, - ACTIONS(3191), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [121887] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6671), 1, - sym_identifier, - ACTIONS(6673), 1, - anon_sym_RPAREN, - STATE(3708), 1, - aux_sym_const_declaration_repeat1, - STATE(3824), 1, - sym_const_definition, - [121903] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6675), 1, - anon_sym_DOLLARif, - STATE(1120), 2, - sym_compile_time_if_expression, - sym_block, - [121917] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6677), 1, - anon_sym_LPAREN, - STATE(676), 1, - sym_signature, - STATE(70), 2, - sym_parameter_list, - sym_type_parameter_list, - [121931] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6671), 1, - sym_identifier, - ACTIONS(6679), 1, - anon_sym_RPAREN, - STATE(3775), 1, - aux_sym_const_declaration_repeat1, - STATE(3824), 1, - sym_const_definition, - [121947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6681), 1, - anon_sym_EQ, - STATE(4561), 1, - sym_generic_parameters, - ACTIONS(4984), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [121961] = 5, + STATE(3687), 3, + sym_line_comment, + sym_block_comment, + aux_sym__statement_list_repeat1, + [136188] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(6193), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6202), 1, anon_sym_mut, - ACTIONS(6195), 1, + ACTIONS(6204), 1, anon_sym_shared, - ACTIONS(6683), 1, + ACTIONS(6463), 1, sym_identifier, - STATE(4559), 1, + STATE(4110), 1, + sym_mutable_identifier, + STATE(4627), 1, sym_mutability_modifiers, - [121977] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, - anon_sym_LPAREN, - STATE(4089), 1, - sym_signature, - STATE(2930), 2, - sym_parameter_list, - sym_type_parameter_list, - [121991] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(6685), 1, - anon_sym_if, - STATE(1260), 1, - sym_block, - STATE(1261), 1, - sym_if_expression, - [122007] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(6687), 1, - anon_sym_DOLLARif, - STATE(1259), 2, - sym_compile_time_if_expression, - sym_block, - [122021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6689), 1, - anon_sym_LPAREN, - STATE(1962), 1, - sym_signature, - STATE(1265), 2, - sym_parameter_list, - sym_type_parameter_list, - [122035] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(6687), 1, - anon_sym_DOLLARif, - STATE(1251), 2, - sym_compile_time_if_expression, - sym_block, - [122049] = 4, + STATE(3688), 2, + sym_line_comment, + sym_block_comment, + [136214] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6465), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + [136232] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6691), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6467), 1, sym_identifier, - ACTIONS(6693), 1, + ACTIONS(6469), 1, anon_sym_DOLLAR, - STATE(1819), 2, + STATE(457), 2, sym_reference_expression, sym_compile_time_selector_expression, - [122063] = 5, + STATE(3690), 2, + sym_line_comment, + sym_block_comment, + [136253] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6473), 1, + aux_sym_c_string_literal_token2, + STATE(3691), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6471), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [136272] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6695), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6475), 1, sym_identifier, - STATE(3478), 1, - sym_import_path, - STATE(3480), 1, - sym_import_name, - STATE(3706), 1, - sym_import_spec, - [122079] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, + ACTIONS(6477), 1, + anon_sym_DOLLAR, + STATE(1862), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3692), 2, + sym_line_comment, + sym_block_comment, + [136293] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, anon_sym_LBRACE, - ACTIONS(6697), 1, + ACTIONS(6479), 1, anon_sym_if, - STATE(2050), 1, - sym_block, - STATE(2051), 1, + STATE(1337), 1, sym_if_expression, - [122095] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6671), 1, - sym_identifier, - ACTIONS(6699), 1, - anon_sym_RPAREN, - STATE(3822), 1, - aux_sym_const_declaration_repeat1, - STATE(3824), 1, - sym_const_definition, - [122111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, - anon_sym_LBRACE, - ACTIONS(6701), 1, - anon_sym_DOLLARif, - STATE(2049), 2, - sym_compile_time_if_expression, + STATE(1393), 1, sym_block, - [122125] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6703), 1, - anon_sym_as, - ACTIONS(6705), 1, - anon_sym_LBRACE, - STATE(1545), 1, - sym__enum_body, - STATE(4238), 1, - sym_enum_backed_type, - [122141] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + STATE(3693), 2, + sym_line_comment, + sym_block_comment, + [136316] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1451), 1, + STATE(4318), 1, sym_signature, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [122155] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, - anon_sym_LBRACE, - ACTIONS(6701), 1, - anon_sym_DOLLARif, - STATE(2029), 2, - sym_compile_time_if_expression, - sym_block, - [122169] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6671), 1, - sym_identifier, - ACTIONS(6707), 1, - anon_sym_RPAREN, - STATE(3783), 1, - aux_sym_const_declaration_repeat1, - STATE(3824), 1, - sym_const_definition, - [122185] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6709), 1, - sym_identifier, - ACTIONS(6711), 1, - anon_sym_RPAREN, - STATE(3788), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3790), 1, - sym_global_var_definition, - [122201] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + STATE(3694), 2, + sym_line_comment, + sym_block_comment, + [136337] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1491), 1, + STATE(4358), 1, sym_signature, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [122215] = 4, + STATE(3695), 2, + sym_line_comment, + sym_block_comment, + [136358] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6481), 1, + sym_identifier, + ACTIONS(6483), 1, + anon_sym_DOLLAR, + STATE(1107), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3696), 2, + sym_line_comment, + sym_block_comment, + [136379] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6487), 1, + aux_sym_c_string_literal_token2, + STATE(3697), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6485), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [136398] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6489), 1, anon_sym_LPAREN, - STATE(1490), 1, + STATE(2403), 1, sym_signature, - STATE(1126), 2, + STATE(1442), 2, sym_parameter_list, sym_type_parameter_list, - [122229] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6713), 1, + STATE(3698), 2, + sym_line_comment, + sym_block_comment, + [136419] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6491), 1, + sym_identifier, + ACTIONS(6493), 1, + anon_sym_DOLLAR, + STATE(2362), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3699), 2, + sym_line_comment, + sym_block_comment, + [136440] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1063), 1, + STATE(4248), 1, sym_signature, - STATE(206), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [122243] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + STATE(3700), 2, + sym_line_comment, + sym_block_comment, + [136461] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1509), 1, + STATE(4258), 1, sym_signature, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [122257] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + STATE(3701), 2, + sym_line_comment, + sym_block_comment, + [136482] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(6495), 1, + anon_sym_DOLLARif, + STATE(2040), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3702), 2, + sym_line_comment, + sym_block_comment, + [136503] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1488), 1, + STATE(4182), 1, sym_signature, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [122271] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6709), 1, - sym_identifier, - ACTIONS(6715), 1, - anon_sym_RPAREN, - STATE(3789), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3790), 1, - sym_global_var_definition, - [122287] = 4, + STATE(3703), 2, + sym_line_comment, + sym_block_comment, + [136524] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3704), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6406), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [136541] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_LBRACE, - ACTIONS(6717), 1, + ACTIONS(6497), 1, anon_sym_DOLLARif, - STATE(2703), 2, + STATE(1213), 2, sym_compile_time_if_expression, sym_block, - [122301] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(6719), 1, - anon_sym_if, - STATE(2381), 1, - sym_if_expression, - STATE(2382), 1, - sym_block, - [122317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + STATE(3705), 2, + sym_line_comment, + sym_block_comment, + [136562] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1485), 1, + STATE(4384), 1, sym_signature, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [122331] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, + STATE(3706), 2, + sym_line_comment, + sym_block_comment, + [136583] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(6721), 1, + ACTIONS(6499), 1, anon_sym_DOLLARif, STATE(2383), 2, sym_compile_time_if_expression, sym_block, - [122345] = 4, + STATE(3707), 2, + sym_line_comment, + sym_block_comment, + [136604] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(4110), 1, + STATE(1497), 1, sym_signature, - STATE(2930), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [122359] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6703), 1, - anon_sym_as, - ACTIONS(6705), 1, - anon_sym_LBRACE, - STATE(1550), 1, - sym__enum_body, - STATE(4254), 1, - sym_enum_backed_type, - [122375] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(6717), 1, - anon_sym_DOLLARif, - STATE(2698), 2, - sym_compile_time_if_expression, - sym_block, - [122389] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(6723), 1, - anon_sym_if, - STATE(2696), 1, - sym_if_expression, - STATE(2697), 1, - sym_block, - [122405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, + STATE(3708), 2, + sym_line_comment, + sym_block_comment, + [136625] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, anon_sym_LBRACE, - ACTIONS(6721), 1, + ACTIONS(6501), 1, anon_sym_DOLLARif, - STATE(2402), 2, + STATE(1341), 2, sym_compile_time_if_expression, sym_block, - [122419] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6725), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [122429] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6727), 1, - sym_identifier, - ACTIONS(6729), 1, - anon_sym_DOLLAR, - STATE(1072), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [122443] = 4, + STATE(3709), 2, + sym_line_comment, + sym_block_comment, + [136646] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6731), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6503), 1, anon_sym_LPAREN, - STATE(1901), 1, + STATE(1681), 1, sym_signature, - STATE(1151), 2, + STATE(2938), 2, sym_parameter_list, sym_type_parameter_list, - [122457] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6733), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [122467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6735), 1, - sym_identifier, - ACTIONS(6737), 1, - anon_sym_DOLLAR, - STATE(2434), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [122481] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + STATE(3710), 2, + sym_line_comment, + sym_block_comment, + [136667] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(4175), 1, + STATE(4159), 1, sym_signature, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [122495] = 4, + STATE(3711), 2, + sym_line_comment, + sym_block_comment, + [136688] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6505), 1, anon_sym_LPAREN, - STATE(4167), 1, + STATE(1105), 1, sym_signature, - STATE(2930), 2, + STATE(212), 2, sym_parameter_list, sym_type_parameter_list, - [122509] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6623), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [122519] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6739), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [122529] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6741), 1, + STATE(3712), 2, + sym_line_comment, + sym_block_comment, + [136709] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1346), 1, + STATE(4372), 1, sym_signature, - STATE(1010), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [122543] = 5, + STATE(3713), 2, + sym_line_comment, + sym_block_comment, + [136730] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3714), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4434), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [136747] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6507), 1, sym_identifier, - ACTIONS(6746), 1, + ACTIONS(6509), 1, anon_sym_RPAREN, - STATE(3708), 1, - aux_sym_const_declaration_repeat1, - STATE(3824), 1, + STATE(3740), 1, sym_const_definition, - [122559] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, - anon_sym_LPAREN, - STATE(4176), 1, - sym_signature, - STATE(2930), 2, - sym_parameter_list, - sym_type_parameter_list, - [122573] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6748), 1, - anon_sym_COMMA, - STATE(3710), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(6751), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [122587] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6753), 1, + STATE(3843), 1, + aux_sym_const_declaration_repeat1, + STATE(3715), 2, + sym_line_comment, + sym_block_comment, + [136770] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1698), 1, + STATE(4155), 1, sym_signature, - STATE(1130), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [122601] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6755), 1, + STATE(3716), 2, + sym_line_comment, + sym_block_comment, + [136791] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6511), 1, sym_identifier, - ACTIONS(6758), 1, - anon_sym_RPAREN, - STATE(3712), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3790), 1, - sym_global_var_definition, - [122617] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(1709), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(6513), 1, + anon_sym_RBRACE, + STATE(3660), 1, + sym_enum_field_definition, + STATE(3750), 1, + aux_sym__enum_body_repeat1, + STATE(3717), 2, + sym_line_comment, + sym_block_comment, + [136814] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6473), 1, + aux_sym_c_string_literal_token1, + STATE(3718), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6471), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [136833] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6515), 1, + anon_sym_DOT, + ACTIONS(6517), 1, anon_sym_RBRACE, - [122627] = 4, + ACTIONS(6519), 1, + sym_int_literal, + ACTIONS(6521), 1, + aux_sym_format_specifier_token1, + STATE(3719), 2, + sym_line_comment, + sym_block_comment, + [136856] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6760), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6523), 1, anon_sym_COMMA, - STATE(3818), 1, + STATE(3786), 1, aux_sym_generic_parameters_repeat1, - ACTIONS(6762), 2, + ACTIONS(6525), 2, anon_sym_GT, anon_sym_RBRACK, - [122641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, - anon_sym_LPAREN, - STATE(1483), 1, - sym_signature, - STATE(1126), 2, - sym_parameter_list, - sym_type_parameter_list, - [122655] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4507), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [122665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, - anon_sym_LPAREN, - STATE(1470), 1, - sym_signature, - STATE(1126), 2, - sym_parameter_list, - sym_type_parameter_list, - [122679] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, - anon_sym_LPAREN, - STATE(1481), 1, - sym_signature, - STATE(1126), 2, - sym_parameter_list, - sym_type_parameter_list, - [122693] = 4, + STATE(3720), 2, + sym_line_comment, + sym_block_comment, + [136877] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6487), 1, + aux_sym_c_string_literal_token1, + STATE(3721), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6485), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [136896] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6764), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1276), 1, + STATE(4405), 1, sym_signature, - STATE(973), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [122707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6766), 1, - anon_sym_COMMA, - STATE(3714), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6768), 2, - anon_sym_GT, - anon_sym_RBRACK, - [122721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6770), 1, + STATE(3722), 2, + sym_line_comment, + sym_block_comment, + [136917] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5144), 1, + anon_sym_LBRACE, + ACTIONS(6527), 1, + anon_sym_DOLLARif, + STATE(780), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3723), 2, + sym_line_comment, + sym_block_comment, + [136938] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5144), 1, + anon_sym_LBRACE, + ACTIONS(6529), 1, + anon_sym_if, + STATE(777), 1, + sym_if_expression, + STATE(778), 1, + sym_block, + STATE(3724), 2, + sym_line_comment, + sym_block_comment, + [136961] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(2232), 1, + STATE(4303), 1, sym_signature, - STATE(1426), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [122735] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, + STATE(3725), 2, + sym_line_comment, + sym_block_comment, + [136982] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, anon_sym_LBRACE, - ACTIONS(6772), 1, + ACTIONS(6531), 1, anon_sym_if, - STATE(1371), 1, + STATE(2250), 1, sym_block, - STATE(1373), 1, + STATE(2251), 1, sym_if_expression, - [122751] = 4, + STATE(3726), 2, + sym_line_comment, + sym_block_comment, + [137005] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(4235), 1, + STATE(1514), 1, sym_signature, - STATE(2930), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [122765] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(6774), 1, - anon_sym_DOLLARif, - STATE(1368), 2, - sym_compile_time_if_expression, - sym_block, - [122779] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6776), 1, - sym_identifier, - ACTIONS(6778), 1, - anon_sym_DOLLAR, - STATE(2108), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [122793] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, - anon_sym_LBRACE, - ACTIONS(6780), 1, - anon_sym_DOLLARif, - STATE(2543), 2, - sym_compile_time_if_expression, - sym_block, - [122807] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(6774), 1, - anon_sym_DOLLARif, - STATE(1358), 2, - sym_compile_time_if_expression, - sym_block, - [122821] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6782), 1, - sym_identifier, - ACTIONS(6784), 1, - anon_sym_RBRACE, - STATE(3659), 1, - sym_enum_field_definition, - STATE(3793), 1, - aux_sym__enum_body_repeat1, - [122837] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6782), 1, + STATE(3727), 2, + sym_line_comment, + sym_block_comment, + [137026] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6533), 1, sym_identifier, - ACTIONS(6786), 1, + ACTIONS(6536), 1, anon_sym_RBRACE, - STATE(3659), 1, + STATE(3660), 1, sym_enum_field_definition, - STATE(3728), 1, + STATE(3728), 3, + sym_line_comment, + sym_block_comment, aux_sym__enum_body_repeat1, - [122853] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5146), 1, - anon_sym_LBRACE, - ACTIONS(6788), 1, - anon_sym_if, - STATE(2888), 1, - sym_if_expression, - STATE(2911), 1, - sym_block, - [122869] = 4, + [137047] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5146), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_LBRACE, - ACTIONS(6790), 1, + ACTIONS(6497), 1, anon_sym_DOLLARif, - STATE(2886), 2, + STATE(1198), 2, sym_compile_time_if_expression, sym_block, - [122883] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, + STATE(3729), 2, + sym_line_comment, + sym_block_comment, + [137068] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(6780), 1, + ACTIONS(6499), 1, anon_sym_DOLLARif, - STATE(2536), 2, + STATE(2408), 2, sym_compile_time_if_expression, sym_block, - [122897] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4244), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [122907] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4248), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [122917] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, + STATE(3730), 2, + sym_line_comment, + sym_block_comment, + [137089] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_LBRACE, - ACTIONS(6792), 1, + ACTIONS(6538), 1, anon_sym_if, - STATE(2532), 1, + STATE(1194), 1, sym_if_expression, - STATE(2533), 1, + STATE(1195), 1, sym_block, - [122933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6794), 1, - sym_identifier, - ACTIONS(6796), 1, - anon_sym_DOLLAR, - STATE(1381), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [122947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6798), 1, - sym_identifier, - ACTIONS(6800), 1, - anon_sym_DOLLAR, - STATE(2023), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [122961] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5146), 1, + STATE(3731), 2, + sym_line_comment, + sym_block_comment, + [137112] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, anon_sym_LBRACE, - ACTIONS(6790), 1, + ACTIONS(6540), 1, anon_sym_DOLLARif, - STATE(2902), 2, + STATE(2249), 2, sym_compile_time_if_expression, sym_block, - [122975] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4252), 4, + STATE(3732), 2, + sym_line_comment, + sym_block_comment, + [137133] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3733), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4430), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [122985] = 4, + [137150] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, + anon_sym_LPAREN, + STATE(1484), 1, + sym_signature, + STATE(1131), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3734), 2, + sym_line_comment, + sym_block_comment, + [137171] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6542), 1, sym_identifier, - STATE(3846), 1, - sym_generic_parameter, - ACTIONS(6762), 2, - anon_sym_GT, - anon_sym_RBRACK, - [122999] = 5, + ACTIONS(6544), 1, + anon_sym_RPAREN, + STATE(3736), 1, + sym_global_var_definition, + STATE(3803), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3735), 2, + sym_line_comment, + sym_block_comment, + [137194] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3736), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6546), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [137211] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6804), 1, - anon_sym_if, - STATE(758), 1, - sym_if_expression, - STATE(759), 1, + anon_sym_LBRACE, + ACTIONS(6540), 1, + anon_sym_DOLLARif, + STATE(2243), 2, + sym_compile_time_if_expression, sym_block, - [123015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6806), 1, + STATE(3737), 2, + sym_line_comment, + sym_block_comment, + [137232] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6507), 1, sym_identifier, - ACTIONS(6808), 1, - anon_sym_DOLLAR, - STATE(2248), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [123029] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4256), 4, + ACTIONS(6548), 1, + anon_sym_RPAREN, + STATE(3740), 1, + sym_const_definition, + STATE(3843), 1, + aux_sym_const_declaration_repeat1, + STATE(3738), 2, + sym_line_comment, + sym_block_comment, + [137255] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3739), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4494), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [123039] = 4, + [137272] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3740), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6550), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [137289] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(4258), 1, + STATE(1511), 1, sym_signature, - STATE(2930), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [123053] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, + STATE(3741), 2, + sym_line_comment, + sym_block_comment, + [137310] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(6810), 1, + ACTIONS(6495), 1, anon_sym_DOLLARif, - STATE(761), 2, + STATE(2033), 2, sym_compile_time_if_expression, sym_block, - [123067] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6814), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6812), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [123079] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6816), 1, - anon_sym_DOT, - ACTIONS(6818), 1, - anon_sym_RBRACE, - ACTIONS(6820), 1, - sym_int_literal, - ACTIONS(6822), 1, - aux_sym_format_specifier_token1, - [123095] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, + STATE(3742), 2, + sym_line_comment, + sym_block_comment, + [137331] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6552), 1, + anon_sym_RPAREN, + STATE(3740), 1, + sym_const_definition, + STATE(3843), 1, + aux_sym_const_declaration_repeat1, + STATE(3743), 2, + sym_line_comment, + sym_block_comment, + [137354] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(6824), 1, - anon_sym_DOLLARif, - STATE(2277), 2, - sym_compile_time_if_expression, + ACTIONS(6554), 1, + anon_sym_if, + STATE(2433), 1, sym_block, - [123109] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + STATE(2445), 1, + sym_if_expression, + STATE(3744), 2, + sym_line_comment, + sym_block_comment, + [137377] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6556), 1, + sym_identifier, + STATE(3498), 1, + sym_import_path, + STATE(3508), 1, + sym_import_name, + STATE(3846), 1, + sym_import_spec, + STATE(3745), 2, + sym_line_comment, + sym_block_comment, + [137400] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(4323), 1, + STATE(4368), 1, sym_signature, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [123123] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4438), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [123133] = 4, + STATE(3746), 2, + sym_line_comment, + sym_block_comment, + [137421] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6542), 1, + sym_identifier, + ACTIONS(6558), 1, + anon_sym_RPAREN, + STATE(3736), 1, + sym_global_var_definition, + STATE(3803), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3747), 2, + sym_line_comment, + sym_block_comment, + [137444] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6560), 1, anon_sym_LPAREN, - STATE(4348), 1, + STATE(1681), 1, sym_signature, - STATE(2930), 2, + STATE(1136), 2, sym_parameter_list, sym_type_parameter_list, - [123147] = 4, + STATE(3748), 2, + sym_line_comment, + sym_block_comment, + [137465] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, + anon_sym_LPAREN, + STATE(1456), 1, + sym_signature, + STATE(1131), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3749), 2, + sym_line_comment, + sym_block_comment, + [137486] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6511), 1, + sym_identifier, + ACTIONS(6562), 1, + anon_sym_RBRACE, + STATE(3660), 1, + sym_enum_field_definition, + STATE(3728), 1, + aux_sym__enum_body_repeat1, + STATE(3750), 2, + sym_line_comment, + sym_block_comment, + [137509] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(6824), 1, + ACTIONS(6527), 1, anon_sym_DOLLARif, - STATE(2185), 2, + STATE(871), 2, sym_compile_time_if_expression, sym_block, - [123161] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, - anon_sym_LBRACE, - ACTIONS(6826), 1, - anon_sym_if, - STATE(2186), 1, - sym_block, - STATE(2187), 1, - sym_if_expression, - [123177] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4224), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [123187] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6814), 1, + STATE(3751), 2, + sym_line_comment, + sym_block_comment, + [137530] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6566), 1, aux_sym_c_string_literal_token1, - ACTIONS(6812), 3, + STATE(3752), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6564), 3, sym_escape_sequence, sym___dolcbr, sym___single_quote, - [123199] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6830), 1, + [137549] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6570), 1, aux_sym_c_string_literal_token1, - ACTIONS(6828), 3, + STATE(3753), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6568), 3, sym_escape_sequence, sym___dolcbr, sym___single_quote, - [123211] = 4, + [137568] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6832), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(2730), 1, + STATE(1506), 1, sym_signature, - STATE(1609), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [123225] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, - anon_sym_LBRACE, - ACTIONS(6834), 1, - anon_sym_DOLLARif, - STATE(1745), 2, - sym_compile_time_if_expression, - sym_block, - [123239] = 5, + STATE(3754), 2, + sym_line_comment, + sym_block_comment, + [137589] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3755), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4470), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [137606] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4194), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [137623] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, - anon_sym_LBRACE, - ACTIONS(6836), 1, - anon_sym_if, - STATE(1742), 1, - sym_if_expression, - STATE(1744), 1, - sym_block, - [123255] = 4, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, + anon_sym_LPAREN, + STATE(4162), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3757), 2, + sym_line_comment, + sym_block_comment, + [137644] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6838), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(2373), 1, + STATE(1512), 1, sym_signature, - STATE(1433), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [123269] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6842), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6840), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [123281] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4216), 4, + STATE(3758), 2, + sym_line_comment, + sym_block_comment, + [137665] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4490), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [123291] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4212), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [123301] = 4, + [137682] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(4219), 1, + STATE(1496), 1, sym_signature, - STATE(2930), 2, + STATE(1131), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3760), 2, + sym_line_comment, + sym_block_comment, + [137703] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6552), 1, + anon_sym_RPAREN, + STATE(3740), 1, + sym_const_definition, + STATE(3819), 1, + aux_sym_const_declaration_repeat1, + STATE(3761), 2, + sym_line_comment, + sym_block_comment, + [137726] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6572), 1, + anon_sym_LPAREN, + STATE(2579), 1, + sym_signature, + STATE(1487), 2, sym_parameter_list, sym_type_parameter_list, - [123315] = 4, + STATE(3762), 2, + sym_line_comment, + sym_block_comment, + [137747] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6844), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6574), 1, + anon_sym_as, + ACTIONS(6576), 1, + anon_sym_LBRACE, + STATE(1611), 1, + sym__enum_body, + STATE(4204), 1, + sym_enum_backed_type, + STATE(3763), 2, + sym_line_comment, + sym_block_comment, + [137770] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6578), 1, sym_identifier, - ACTIONS(6846), 1, + ACTIONS(6580), 1, anon_sym_DOLLAR, - STATE(451), 2, + STATE(1407), 2, sym_reference_expression, sym_compile_time_selector_expression, - [123329] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6850), 1, + STATE(3764), 2, + sym_line_comment, + sym_block_comment, + [137791] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, + anon_sym_LPAREN, + STATE(4140), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3765), 2, + sym_line_comment, + sym_block_comment, + [137812] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6570), 1, aux_sym_c_string_literal_token2, - ACTIONS(6848), 3, + STATE(3766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6568), 3, sym_escape_sequence, sym___dolcbr, sym___double_quote, - [123341] = 4, + [137831] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(4390), 1, + STATE(1516), 1, sym_signature, - STATE(2930), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [123355] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4228), 4, + STATE(3767), 2, + sym_line_comment, + sym_block_comment, + [137852] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3768), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6582), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [123365] = 4, + anon_sym_SEMI, + [137869] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6586), 1, + aux_sym_c_string_literal_token1, + STATE(3769), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6584), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [137888] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6566), 1, + aux_sym_c_string_literal_token2, + STATE(3770), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6564), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [137907] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6852), 1, - sym_identifier, - ACTIONS(6854), 1, - anon_sym_DOLLAR, - STATE(1709), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [123379] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5148), 1, + anon_sym_LBRACE, + ACTIONS(6588), 1, + anon_sym_if, + STATE(2932), 1, + sym_if_expression, + STATE(2951), 1, + sym_block, + STATE(3771), 2, + sym_line_comment, + sym_block_comment, + [137930] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5148), 1, + anon_sym_LBRACE, + ACTIONS(6590), 1, + anon_sym_DOLLARif, + STATE(2959), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3772), 2, + sym_line_comment, + sym_block_comment, + [137951] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6594), 1, aux_sym_c_string_literal_token2, - ACTIONS(6828), 3, + STATE(3773), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6592), 3, sym_escape_sequence, sym___dolcbr, sym___double_quote, - [123391] = 4, + [137970] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, + anon_sym_LBRACE, + ACTIONS(6596), 1, + anon_sym_DOLLARif, + STATE(1929), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3774), 2, + sym_line_comment, + sym_block_comment, + [137991] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6856), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6598), 1, anon_sym_LPAREN, - STATE(2114), 1, + STATE(1417), 1, sym_signature, - STATE(1242), 2, + STATE(1008), 2, sym_parameter_list, sym_type_parameter_list, - [123405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + STATE(3775), 2, + sym_line_comment, + sym_block_comment, + [138012] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6600), 1, + sym_identifier, + ACTIONS(6602), 1, + anon_sym_DOLLAR, + STATE(2641), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3776), 2, + sym_line_comment, + sym_block_comment, + [138033] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(4369), 1, + STATE(4287), 1, sym_signature, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [123419] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6842), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6840), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [123431] = 4, + STATE(3777), 2, + sym_line_comment, + sym_block_comment, + [138054] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6604), 1, anon_sym_LPAREN, - STATE(2373), 1, + STATE(1255), 1, sym_signature, - STATE(2930), 2, + STATE(975), 2, sym_parameter_list, sym_type_parameter_list, - [123445] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6671), 1, - sym_identifier, - ACTIONS(6858), 1, - anon_sym_RPAREN, - STATE(3708), 1, - aux_sym_const_declaration_repeat1, - STATE(3824), 1, - sym_const_definition, - [123461] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4404), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [123471] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6850), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6848), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [123483] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4304), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [123493] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, + STATE(3778), 2, + sym_line_comment, + sym_block_comment, + [138075] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5148), 1, anon_sym_LBRACE, - ACTIONS(6810), 1, + ACTIONS(6590), 1, anon_sym_DOLLARif, - STATE(852), 2, + STATE(2944), 2, sym_compile_time_if_expression, sym_block, - [123507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + STATE(3779), 2, + sym_line_comment, + sym_block_comment, + [138096] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1471), 1, + STATE(4167), 1, sym_signature, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [123521] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4300), 4, + STATE(3780), 2, + sym_line_comment, + sym_block_comment, + [138117] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(6606), 1, + anon_sym_DOLLARif, + STATE(1114), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3781), 2, + sym_line_comment, + sym_block_comment, + [138138] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3782), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6608), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [123531] = 4, + [138155] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6860), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6612), 1, + anon_sym_DOLLAR, + STATE(2298), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3783), 2, + sym_line_comment, + sym_block_comment, + [138176] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6614), 1, anon_sym_LPAREN, - STATE(3440), 1, + STATE(2771), 1, sym_signature, - STATE(2481), 2, + STATE(1617), 2, sym_parameter_list, sym_type_parameter_list, - [123545] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6671), 1, - sym_identifier, - ACTIONS(6862), 1, - anon_sym_RPAREN, - STATE(3708), 1, - aux_sym_const_declaration_repeat1, - STATE(3824), 1, - sym_const_definition, - [123561] = 4, + STATE(3784), 2, + sym_line_comment, + sym_block_comment, + [138197] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - anon_sym_EQ, - STATE(4570), 1, - sym_generic_parameters, - ACTIONS(4984), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123575] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6860), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(3426), 1, + STATE(1517), 1, sym_signature, - STATE(2481), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [123589] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6573), 4, + STATE(3785), 2, + sym_line_comment, + sym_block_comment, + [138218] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6616), 1, + anon_sym_COMMA, + STATE(3850), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6618), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3786), 2, + sym_line_comment, + sym_block_comment, + [138239] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, + anon_sym_LBRACE, + ACTIONS(6620), 1, + anon_sym_DOLLARif, + STATE(1783), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3787), 2, + sym_line_comment, + sym_block_comment, + [138260] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3788), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4553), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [138277] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3789), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4549), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [123599] = 4, + [138294] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(4327), 1, + STATE(2403), 1, sym_signature, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [123613] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6709), 1, - sym_identifier, - ACTIONS(6866), 1, - anon_sym_RPAREN, - STATE(3712), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3790), 1, - sym_global_var_definition, - [123629] = 5, + STATE(3790), 2, + sym_line_comment, + sym_block_comment, + [138315] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, + anon_sym_LPAREN, + STATE(4262), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3791), 2, + sym_line_comment, + sym_block_comment, + [138336] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6574), 1, + anon_sym_as, + ACTIONS(6576), 1, + anon_sym_LBRACE, + STATE(1605), 1, + sym__enum_body, + STATE(4389), 1, + sym_enum_backed_type, + STATE(3792), 2, + sym_line_comment, + sym_block_comment, + [138359] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6622), 1, sym_identifier, - ACTIONS(6868), 1, - anon_sym_RPAREN, - STATE(3712), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3790), 1, - sym_global_var_definition, - [123645] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6870), 4, + ACTIONS(6624), 1, + anon_sym_DOLLAR, + STATE(1721), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3793), 2, + sym_line_comment, + sym_block_comment, + [138380] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3794), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4446), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [123655] = 4, + anon_sym_RBRACE, + [138397] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(6626), 1, + anon_sym_if, + STATE(2118), 1, + sym_block, + STATE(2119), 1, + sym_if_expression, + STATE(3795), 2, + sym_line_comment, + sym_block_comment, + [138420] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6628), 1, + sym_identifier, + STATE(4065), 1, + sym_generic_parameter, + ACTIONS(6618), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3796), 2, + sym_line_comment, + sym_block_comment, + [138441] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(6630), 1, + anon_sym_DOLLARif, + STATE(2116), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3797), 2, + sym_line_comment, + sym_block_comment, + [138462] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6632), 1, + sym_identifier, + ACTIONS(6634), 1, + anon_sym_DOLLAR, + STATE(2144), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3798), 2, + sym_line_comment, + sym_block_comment, + [138483] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(1474), 1, + STATE(4349), 1, sym_signature, - STATE(1126), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [123669] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, + STATE(3799), 2, + sym_line_comment, + sym_block_comment, + [138504] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5122), 1, anon_sym_LBRACE, - ACTIONS(6834), 1, + ACTIONS(6636), 1, anon_sym_DOLLARif, - STATE(1756), 2, + STATE(2531), 2, sym_compile_time_if_expression, sym_block, - [123683] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6872), 1, - sym_identifier, - ACTIONS(6875), 1, - anon_sym_RBRACE, - STATE(3659), 1, - sym_enum_field_definition, - STATE(3793), 1, - aux_sym__enum_body_repeat1, - [123699] = 4, + STATE(3800), 2, + sym_line_comment, + sym_block_comment, + [138525] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(1499), 1, + STATE(1492), 1, sym_signature, - STATE(1126), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [123713] = 4, + STATE(3801), 2, + sym_line_comment, + sym_block_comment, + [138546] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6572), 1, anon_sym_LPAREN, - STATE(4307), 1, + STATE(2269), 1, sym_signature, - STATE(2930), 2, + STATE(1438), 2, sym_parameter_list, sym_type_parameter_list, - [123727] = 5, + STATE(3802), 2, + sym_line_comment, + sym_block_comment, + [138567] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6638), 1, + sym_identifier, + ACTIONS(6641), 1, + anon_sym_RPAREN, + STATE(3736), 1, + sym_global_var_definition, + STATE(3803), 3, + sym_line_comment, + sym_block_comment, + aux_sym_global_var_declaration_repeat1, + [138588] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4442), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [138605] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6671), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6507), 1, sym_identifier, - ACTIONS(6862), 1, + ACTIONS(6548), 1, anon_sym_RPAREN, - STATE(3662), 1, + STATE(3715), 1, aux_sym_const_declaration_repeat1, - STATE(3824), 1, + STATE(3740), 1, sym_const_definition, - [123743] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6877), 1, - sym_identifier, - ACTIONS(6879), 1, - anon_sym_DOLLAR, - STATE(1196), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [123757] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, - anon_sym_LPAREN, - STATE(1479), 1, - sym_signature, - STATE(1126), 2, - sym_parameter_list, - sym_type_parameter_list, - [123771] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6703), 1, - anon_sym_as, - ACTIONS(6705), 1, - anon_sym_LBRACE, - STATE(1538), 1, - sym__enum_body, - STATE(4196), 1, - sym_enum_backed_type, - [123787] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, - anon_sym_LBRACE, - ACTIONS(6881), 1, - anon_sym_DOLLARif, - STATE(2000), 2, - sym_compile_time_if_expression, - sym_block, - [123801] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4316), 4, + STATE(3805), 2, + sym_line_comment, + sym_block_comment, + [138628] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3806), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4438), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [123811] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4324), 4, + [138645] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4426), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [123821] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4424), 4, + [138662] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3808), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4414), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [123831] = 4, + [138679] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6643), 1, + anon_sym_EQ, + STATE(4616), 1, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3809), 2, + sym_line_comment, + sym_block_comment, + [138700] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6202), 1, + anon_sym_mut, + ACTIONS(6204), 1, + anon_sym_shared, + ACTIONS(6645), 1, + sym_identifier, + STATE(4618), 1, + sym_mutability_modifiers, + STATE(3810), 2, + sym_line_comment, + sym_block_comment, + [138723] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(6606), 1, + anon_sym_DOLLARif, + STATE(1051), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3811), 2, + sym_line_comment, + sym_block_comment, + [138744] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6647), 1, anon_sym_LPAREN, - STATE(4272), 1, + STATE(2005), 1, sym_signature, - STATE(2930), 2, + STATE(1223), 2, sym_parameter_list, sym_type_parameter_list, - [123845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6770), 1, + STATE(3812), 2, + sym_line_comment, + sym_block_comment, + [138765] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(2580), 1, + STATE(4408), 1, sym_signature, - STATE(1462), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [123859] = 5, + STATE(3813), 2, + sym_line_comment, + sym_block_comment, + [138786] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4394), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [138803] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(6883), 1, + ACTIONS(6649), 1, anon_sym_if, - STATE(1024), 1, + STATE(2031), 1, sym_if_expression, - STATE(1118), 1, + STATE(2032), 1, sym_block, - [123875] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6703), 1, - anon_sym_as, - ACTIONS(6705), 1, - anon_sym_LBRACE, - STATE(1594), 1, - sym__enum_body, - STATE(4330), 1, - sym_enum_backed_type, - [123891] = 4, + STATE(3815), 2, + sym_line_comment, + sym_block_comment, + [138826] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4382), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [138843] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6651), 1, anon_sym_LPAREN, - STATE(4266), 1, + STATE(616), 1, sym_signature, - STATE(2930), 2, + STATE(68), 2, sym_parameter_list, sym_type_parameter_list, - [123905] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, - anon_sym_LBRACE, - ACTIONS(6881), 1, - anon_sym_DOLLARif, - STATE(1993), 2, - sym_compile_time_if_expression, - sym_block, - [123919] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, - anon_sym_LBRACE, - ACTIONS(6885), 1, - anon_sym_if, - STATE(1990), 1, - sym_if_expression, - STATE(1992), 1, - sym_block, - [123935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6675), 1, - anon_sym_DOLLARif, - STATE(1107), 2, - sym_compile_time_if_expression, - sym_block, - [123949] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6887), 4, + STATE(3817), 2, + sym_line_comment, + sym_block_comment, + [138864] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4374), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [123959] = 4, + anon_sym_RBRACE, + [138881] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6889), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6507), 1, sym_identifier, - ACTIONS(6891), 1, - anon_sym_DOLLAR, - STATE(2612), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [123973] = 4, + ACTIONS(6653), 1, + anon_sym_RPAREN, + STATE(3740), 1, + sym_const_definition, + STATE(3843), 1, + aux_sym_const_declaration_repeat1, + STATE(3819), 2, + sym_line_comment, + sym_block_comment, + [138904] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(6655), 1, + anon_sym_if, + STATE(1059), 1, + sym_block, + STATE(1063), 1, + sym_if_expression, + STATE(3820), 2, + sym_line_comment, + sym_block_comment, + [138927] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, - anon_sym_LPAREN, - STATE(4113), 1, - sym_signature, - STATE(2930), 2, - sym_parameter_list, - sym_type_parameter_list, - [123987] = 4, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6574), 1, + anon_sym_as, + ACTIONS(6576), 1, + anon_sym_LBRACE, + STATE(1550), 1, + sym__enum_body, + STATE(4230), 1, + sym_enum_backed_type, + STATE(3821), 2, + sym_line_comment, + sym_block_comment, + [138950] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2831), 1, + anon_sym_DOT, + STATE(3822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6657), 3, anon_sym_LPAREN, - STATE(4255), 1, - sym_signature, - STATE(2930), 2, - sym_parameter_list, - sym_type_parameter_list, - [124001] = 4, + anon_sym_LBRACK, + anon_sym_LT2, + [138969] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, - anon_sym_LPAREN, - STATE(4130), 1, - sym_signature, - STATE(2930), 2, - sym_parameter_list, - sym_type_parameter_list, - [124015] = 4, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6659), 1, + anon_sym_COMMA, + ACTIONS(6662), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(3823), 3, + sym_line_comment, + sym_block_comment, + aux_sym_type_parameters_repeat1, + [138988] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(4158), 1, + STATE(1468), 1, sym_signature, - STATE(2930), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [124029] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6893), 1, - anon_sym_COMMA, - STATE(3818), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6896), 2, - anon_sym_GT, - anon_sym_RBRACK, - [124043] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - sym_identifier, - STATE(3846), 1, - sym_generic_parameter, - ACTIONS(6898), 2, - anon_sym_GT, - anon_sym_RBRACK, - [124057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_DOT, - ACTIONS(6900), 3, - anon_sym_LPAREN, + STATE(3824), 2, + sym_line_comment, + sym_block_comment, + [139009] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5122), 1, + anon_sym_LBRACE, + ACTIONS(6636), 1, + anon_sym_DOLLARif, + STATE(2553), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3825), 2, + sym_line_comment, + sym_block_comment, + [139030] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5122), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, + anon_sym_if, + STATE(2555), 1, + sym_block, + STATE(2558), 1, + sym_if_expression, + STATE(3826), 2, + sym_line_comment, + sym_block_comment, + [139053] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6666), 1, + anon_sym_EQ, + STATE(4559), 1, + sym_generic_parameters, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - [124069] = 4, + STATE(3827), 2, + sym_line_comment, + sym_block_comment, + [139074] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6860), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6214), 1, anon_sym_LPAREN, - STATE(1698), 1, + STATE(1472), 1, sym_signature, - STATE(2920), 2, + STATE(1131), 2, sym_parameter_list, sym_type_parameter_list, - [124083] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6671), 1, + STATE(3828), 2, + sym_line_comment, + sym_block_comment, + [139095] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6542), 1, sym_identifier, - ACTIONS(6679), 1, + ACTIONS(6668), 1, anon_sym_RPAREN, - STATE(3708), 1, + STATE(3735), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3736), 1, + sym_global_var_definition, + STATE(3829), 2, + sym_line_comment, + sym_block_comment, + [139118] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6670), 1, + sym_identifier, + ACTIONS(6672), 1, + anon_sym_DOLLAR, + STATE(2693), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3830), 2, + sym_line_comment, + sym_block_comment, + [139139] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, + anon_sym_LPAREN, + STATE(4339), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3831), 2, + sym_line_comment, + sym_block_comment, + [139160] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, + anon_sym_LBRACE, + ACTIONS(6596), 1, + anon_sym_DOLLARif, + STATE(1937), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3832), 2, + sym_line_comment, + sym_block_comment, + [139181] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, + anon_sym_LPAREN, + STATE(4363), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3833), 2, + sym_line_comment, + sym_block_comment, + [139202] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6674), 1, + anon_sym_RPAREN, + STATE(3738), 1, aux_sym_const_declaration_repeat1, - STATE(3824), 1, + STATE(3740), 1, + sym_const_definition, + STATE(3834), 2, + sym_line_comment, + sym_block_comment, + [139225] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6507), 1, + sym_identifier, + ACTIONS(6676), 1, + anon_sym_RPAREN, + STATE(3740), 1, sym_const_definition, - [124099] = 4, + STATE(3743), 1, + aux_sym_const_declaration_repeat1, + STATE(3835), 2, + sym_line_comment, + sym_block_comment, + [139248] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6503), 1, anon_sym_LPAREN, - STATE(4228), 1, + STATE(3462), 1, sym_signature, - STATE(2930), 2, + STATE(2488), 2, sym_parameter_list, sym_type_parameter_list, - [124113] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6902), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6904), 1, + STATE(3836), 2, + sym_line_comment, + sym_block_comment, + [139269] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6542), 1, + sym_identifier, + ACTIONS(6678), 1, + anon_sym_RPAREN, + STATE(3736), 1, + sym_global_var_definition, + STATE(3747), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3837), 2, + sym_line_comment, + sym_block_comment, + [139292] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6680), 1, sym_identifier, - ACTIONS(6906), 1, + ACTIONS(6682), 1, anon_sym_DOLLAR, - STATE(2772), 2, + STATE(2169), 2, sym_reference_expression, sym_compile_time_selector_expression, - [124137] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + STATE(3838), 2, + sym_line_comment, + sym_block_comment, + [139313] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(4178), 1, + STATE(4144), 1, sym_signature, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [124151] = 4, + STATE(3839), 2, + sym_line_comment, + sym_block_comment, + [139334] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, + anon_sym_LBRACE, + ACTIONS(6501), 1, + anon_sym_DOLLARif, + STATE(1348), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3840), 2, + sym_line_comment, + sym_block_comment, + [139355] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, + anon_sym_LBRACE, + ACTIONS(6620), 1, + anon_sym_DOLLARif, + STATE(1712), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3841), 2, + sym_line_comment, + sym_block_comment, + [139376] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6503), 1, anon_sym_LPAREN, - STATE(4128), 1, + STATE(3469), 1, sym_signature, - STATE(2930), 2, + STATE(2488), 2, sym_parameter_list, sym_type_parameter_list, - [124165] = 4, + STATE(3842), 2, + sym_line_comment, + sym_block_comment, + [139397] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6684), 1, + sym_identifier, + ACTIONS(6687), 1, + anon_sym_RPAREN, + STATE(3740), 1, + sym_const_definition, + STATE(3843), 3, + sym_line_comment, + sym_block_comment, + aux_sym_const_declaration_repeat1, + [139418] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(6908), 1, - anon_sym_DOLLARif, - STATE(1895), 2, - sym_compile_time_if_expression, + ACTIONS(6689), 1, + anon_sym_if, + STATE(1718), 1, + sym_if_expression, + STATE(1736), 1, sym_block, - [124179] = 4, + STATE(3844), 2, + sym_line_comment, + sym_block_comment, + [139441] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6574), 1, + anon_sym_as, + ACTIONS(6576), 1, + anon_sym_LBRACE, + STATE(1545), 1, + sym__enum_body, + STATE(4219), 1, + sym_enum_backed_type, + STATE(3845), 2, + sym_line_comment, + sym_block_comment, + [139464] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3846), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6691), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [139481] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6159), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, anon_sym_LPAREN, - STATE(4212), 1, + STATE(4154), 1, sym_signature, - STATE(2930), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [124193] = 5, + STATE(3847), 2, + sym_line_comment, + sym_block_comment, + [139502] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6693), 1, + sym_identifier, + ACTIONS(6695), 1, + anon_sym_DOLLAR, + STATE(1224), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3848), 2, + sym_line_comment, + sym_block_comment, + [139523] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6628), 1, + sym_identifier, + STATE(4065), 1, + sym_generic_parameter, + ACTIONS(6697), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3849), 2, + sym_line_comment, + sym_block_comment, + [139544] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, + anon_sym_COMMA, + ACTIONS(6702), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3850), 3, + sym_line_comment, + sym_block_comment, + aux_sym_generic_parameters_repeat1, + [139563] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3851), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4276), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [139580] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(6910), 1, + ACTIONS(6704), 1, anon_sym_if, - STATE(1916), 1, + STATE(2732), 1, sym_if_expression, - STATE(1918), 1, + STATE(2733), 1, sym_block, - [124209] = 4, + STATE(3852), 2, + sym_line_comment, + sym_block_comment, + [139603] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3853), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1713), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [139620] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(6908), 1, + ACTIONS(6630), 1, anon_sym_DOLLARif, - STATE(1919), 2, + STATE(2111), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3854), 2, + sym_line_comment, + sym_block_comment, + [139641] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(6706), 1, + anon_sym_DOLLARif, + STATE(2734), 2, sym_compile_time_if_expression, sym_block, - [124223] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4240), 4, + STATE(3855), 2, + sym_line_comment, + sym_block_comment, + [139662] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6708), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [139679] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6710), 1, + anon_sym_LPAREN, + STATE(1895), 1, + sym_signature, + STATE(1157), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3857), 2, + sym_line_comment, + sym_block_comment, + [139700] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6712), 1, + anon_sym_LPAREN, + STATE(2055), 1, + sym_signature, + STATE(1271), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3858), 2, + sym_line_comment, + sym_block_comment, + [139721] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6147), 1, + anon_sym_LPAREN, + STATE(4302), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3859), 2, + sym_line_comment, + sym_block_comment, + [139742] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6461), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [124233] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6914), 1, - sym___single_quote, - STATE(3987), 1, - aux_sym_raw_string_literal_repeat1, - [124246] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6914), 1, - sym___double_quote, - ACTIONS(6916), 1, - aux_sym_raw_string_literal_token2, - STATE(3957), 1, - aux_sym_raw_string_literal_repeat2, - [124259] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6916), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6918), 1, - sym___double_quote, - STATE(3957), 1, - aux_sym_raw_string_literal_repeat2, - [124272] = 4, + [139759] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(6706), 1, + anon_sym_DOLLARif, + STATE(2739), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3861), 2, + sym_line_comment, + sym_block_comment, + [139780] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, + anon_sym_LBRACE, + ACTIONS(6714), 1, + anon_sym_if, + STATE(1919), 1, + sym_if_expression, + STATE(1925), 1, + sym_block, + STATE(3862), 2, + sym_line_comment, + sym_block_comment, + [139803] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5752), 1, + anon_sym_RPAREN, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(6920), 1, - anon_sym_RBRACK, - STATE(3710), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [124285] = 4, + STATE(3863), 2, + sym_line_comment, + sym_block_comment, + [139823] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6718), 1, + sym_identifier, + ACTIONS(6720), 1, + anon_sym_LPAREN, + STATE(1548), 1, + sym_const_definition, + STATE(3864), 2, + sym_line_comment, + sym_block_comment, + [139843] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6922), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(6925), 1, + ACTIONS(6724), 1, anon_sym_RPAREN, - STATE(3837), 1, + STATE(3869), 1, aux_sym_type_parameter_list_repeat1, - [124298] = 4, + STATE(3865), 2, + sym_line_comment, + sym_block_comment, + [139863] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4023), 1, + anon_sym_LBRACE, + ACTIONS(5276), 1, + anon_sym_COMMA, + STATE(3941), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3866), 2, + sym_line_comment, + sym_block_comment, + [139883] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(6929), 1, + ACTIONS(6726), 1, anon_sym_RPAREN, - STATE(3837), 1, + STATE(3887), 1, aux_sym_type_parameter_list_repeat1, - [124311] = 4, + STATE(3867), 2, + sym_line_comment, + sym_block_comment, + [139903] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(6933), 1, + ACTIONS(6730), 1, anon_sym_RPAREN, - STATE(3847), 1, + STATE(4035), 1, aux_sym_parameter_list_repeat1, - [124324] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6918), 1, - sym___single_quote, - STATE(3987), 1, - aux_sym_raw_string_literal_repeat1, - [124337] = 4, + STATE(3868), 2, + sym_line_comment, + sym_block_comment, + [139923] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5740), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, + anon_sym_COMMA, + ACTIONS(6732), 1, anon_sym_RPAREN, - ACTIONS(6935), 1, + STATE(4044), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3869), 2, + sym_line_comment, + sym_block_comment, + [139943] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6736), 1, + sym___double_quote, + STATE(3873), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3870), 2, + sym_line_comment, + sym_block_comment, + [139963] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - STATE(3710), 1, + ACTIONS(6738), 1, + anon_sym_RBRACK, + STATE(3877), 1, aux_sym_type_parameters_repeat1, - [124350] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, - anon_sym_COMMA, - ACTIONS(6937), 1, - anon_sym_RPAREN, - STATE(3863), 1, - aux_sym_parameter_list_repeat1, - [124363] = 4, + STATE(3871), 2, + sym_line_comment, + sym_block_comment, + [139983] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6736), 1, + sym___single_quote, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + STATE(3904), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3872), 2, + sym_line_comment, + sym_block_comment, + [140003] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6742), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6745), 1, + sym___double_quote, + STATE(3873), 3, + sym_line_comment, + sym_block_comment, + aux_sym_raw_string_literal_repeat2, + [140021] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3874), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6662), 3, anon_sym_COMMA, - ACTIONS(6939), 1, anon_sym_RPAREN, - STATE(3866), 1, - aux_sym_type_parameter_list_repeat1, - [124376] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3951), 3, - anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - [124385] = 4, + [140037] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6941), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(6943), 1, + ACTIONS(6747), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(3868), 1, + aux_sym_parameter_list_repeat1, + STATE(3875), 2, + sym_line_comment, + sym_block_comment, + [140057] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5758), 1, + anon_sym_RPAREN, + ACTIONS(6749), 1, + anon_sym_COMMA, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [124398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6896), 3, + STATE(3876), 2, + sym_line_comment, + sym_block_comment, + [140077] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - anon_sym_GT, + ACTIONS(6751), 1, anon_sym_RBRACK, - [124407] = 4, + STATE(3823), 1, + aux_sym_type_parameters_repeat1, + STATE(3877), 2, + sym_line_comment, + sym_block_comment, + [140097] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6945), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(6948), 1, + ACTIONS(6753), 1, anon_sym_RPAREN, - STATE(3847), 1, + STATE(3880), 1, aux_sym_parameter_list_repeat1, - [124420] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + STATE(3878), 2, + sym_line_comment, + sym_block_comment, + [140117] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(6950), 1, + ACTIONS(6755), 1, anon_sym_RBRACK, - STATE(3836), 1, + STATE(3900), 1, aux_sym_type_parameters_repeat1, - [124433] = 4, + STATE(3879), 2, + sym_line_comment, + sym_block_comment, + [140137] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5752), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, + anon_sym_COMMA, + ACTIONS(6757), 1, + anon_sym_RPAREN, + STATE(4035), 1, + aux_sym_parameter_list_repeat1, + STATE(3880), 2, + sym_line_comment, + sym_block_comment, + [140157] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5754), 1, anon_sym_RPAREN, - ACTIONS(6952), 1, + ACTIONS(6759), 1, anon_sym_COMMA, - STATE(3710), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [124446] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5746), 1, + STATE(3881), 2, + sym_line_comment, + sym_block_comment, + [140177] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5774), 1, anon_sym_RPAREN, - ACTIONS(6954), 1, + ACTIONS(6761), 1, anon_sym_COMMA, - STATE(3710), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [124459] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6956), 1, + STATE(3882), 2, + sym_line_comment, + sym_block_comment, + [140197] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6958), 1, + ACTIONS(6763), 1, sym___single_quote, - STATE(3833), 1, + STATE(3904), 1, aux_sym_raw_string_literal_repeat1, - [124472] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6958), 1, - sym___double_quote, - ACTIONS(6960), 1, - aux_sym_raw_string_literal_token2, - STATE(3834), 1, - aux_sym_raw_string_literal_repeat2, - [124485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6663), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [124494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6962), 1, - sym_identifier, - ACTIONS(6964), 1, - anon_sym_LBRACE, - STATE(2089), 1, - sym__content_block, - [124507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6966), 1, - sym_identifier, - ACTIONS(6968), 1, - anon_sym_LBRACE, - STATE(2237), 1, - sym__content_block, - [124520] = 4, + STATE(3883), 2, + sym_line_comment, + sym_block_comment, + [140217] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(6970), 1, + ACTIONS(6765), 1, anon_sym_RPAREN, - STATE(3907), 1, + STATE(3919), 1, aux_sym_parameter_list_repeat1, - [124533] = 4, + STATE(3884), 2, + sym_line_comment, + sym_block_comment, + [140237] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(6972), 1, + ACTIONS(6767), 1, anon_sym_RPAREN, - STATE(3909), 1, + STATE(3924), 1, aux_sym_type_parameter_list_repeat1, - [124546] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_COMMA, - ACTIONS(6976), 1, - anon_sym_RPAREN, - STATE(3850), 1, - aux_sym_type_parameters_repeat1, - [124559] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, - anon_sym_COMMA, - ACTIONS(6978), 1, - anon_sym_RBRACK, - STATE(3870), 1, - aux_sym_type_parameters_repeat1, - [124572] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6980), 1, + STATE(3885), 2, + sym_line_comment, + sym_block_comment, + [140257] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6982), 1, + ACTIONS(6763), 1, sym___double_quote, - STATE(3889), 1, + STATE(3873), 1, aux_sym_raw_string_literal_repeat2, - [124585] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6982), 1, - sym___single_quote, - ACTIONS(6984), 1, - aux_sym_raw_string_literal_token1, - STATE(3890), 1, - aux_sym_raw_string_literal_repeat1, - [124598] = 4, + STATE(3886), 2, + sym_line_comment, + sym_block_comment, + [140277] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6986), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(6988), 1, + ACTIONS(6769), 1, anon_sym_RPAREN, - STATE(3901), 1, + STATE(4044), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3887), 2, + sym_line_comment, + sym_block_comment, + [140297] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, + anon_sym_COMMA, + ACTIONS(6442), 1, + anon_sym_RBRACK, + STATE(3964), 1, aux_sym_type_parameters_repeat1, - [124611] = 4, + STATE(3888), 2, + sym_line_comment, + sym_block_comment, + [140317] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(6990), 1, + ACTIONS(6771), 1, anon_sym_RPAREN, - STATE(3847), 1, + STATE(4035), 1, aux_sym_parameter_list_repeat1, - [124624] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6992), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [124633] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6994), 1, - sym_identifier, - ACTIONS(6996), 1, - anon_sym_LBRACE, - STATE(945), 1, - sym__content_block, - [124646] = 4, + STATE(3889), 2, + sym_line_comment, + sym_block_comment, + [140337] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6773), 1, + sym___single_quote, + STATE(3883), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3890), 2, + sym_line_comment, + sym_block_comment, + [140357] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(6998), 1, + ACTIONS(6775), 1, anon_sym_RPAREN, - STATE(3837), 1, + STATE(4044), 1, aux_sym_type_parameter_list_repeat1, - [124659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, - anon_sym_COMMA, - ACTIONS(7000), 1, - anon_sym_RBRACK, - STATE(3710), 1, - aux_sym_type_parameters_repeat1, - [124672] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7002), 1, + STATE(3891), 2, + sym_line_comment, + sym_block_comment, + [140377] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6777), 1, + sym___single_quote, + STATE(3904), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3892), 2, + sym_line_comment, + sym_block_comment, + [140397] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7004), 1, + ACTIONS(6773), 1, sym___double_quote, - STATE(3888), 1, + STATE(3886), 1, aux_sym_raw_string_literal_repeat2, - [124685] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4045), 1, + STATE(3893), 2, + sym_line_comment, + sym_block_comment, + [140417] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3894), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6779), 3, anon_sym_LBRACE, - ACTIONS(5272), 1, - anon_sym_COMMA, - STATE(3912), 1, - aux_sym_strictly_expression_list_repeat1, - [124698] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, - anon_sym_COMMA, - ACTIONS(7006), 1, - anon_sym_RBRACK, - STATE(3710), 1, - aux_sym_type_parameters_repeat1, - [124711] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7008), 1, - anon_sym_COMMA, - ACTIONS(7011), 1, - anon_sym_RBRACK, - STATE(3871), 1, - aux_sym_capture_list_repeat1, - [124724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, - anon_sym_COMMA, - ACTIONS(7013), 1, - anon_sym_RPAREN, - STATE(3837), 1, - aux_sym_type_parameter_list_repeat1, - [124737] = 4, + anon_sym_LPAREN, + anon_sym_EQ, + [140433] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, - anon_sym_COMMA, - ACTIONS(7015), 1, - anon_sym_RPAREN, - STATE(3838), 1, - aux_sym_type_parameter_list_repeat1, - [124750] = 4, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6781), 1, + sym_identifier, + ACTIONS(6783), 1, + anon_sym_LBRACE, + STATE(1921), 1, + sym__content_block, + STATE(3895), 2, + sym_line_comment, + sym_block_comment, + [140453] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6785), 1, + sym_identifier, + ACTIONS(6787), 1, + anon_sym_LBRACE, + STATE(2275), 1, + sym__content_block, + STATE(3896), 2, + sym_line_comment, + sym_block_comment, + [140473] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6789), 1, anon_sym_COMMA, - ACTIONS(7017), 1, + ACTIONS(6791), 1, anon_sym_RPAREN, - STATE(3839), 1, - aux_sym_parameter_list_repeat1, - [124763] = 4, + STATE(4080), 1, + aux_sym_type_parameters_repeat1, + STATE(3897), 2, + sym_line_comment, + sym_block_comment, + [140493] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6793), 1, anon_sym_COMMA, - ACTIONS(7019), 1, - anon_sym_RPAREN, - STATE(3847), 1, - aux_sym_parameter_list_repeat1, - [124776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, + ACTIONS(6795), 1, anon_sym_RPAREN, - ACTIONS(7021), 1, - anon_sym_COMMA, - STATE(3710), 1, + STATE(3999), 1, aux_sym_type_parameters_repeat1, - [124789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + STATE(3898), 2, + sym_line_comment, + sym_block_comment, + [140513] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6797), 1, + sym_identifier, + ACTIONS(6799), 1, + anon_sym_PIPE, + STATE(3963), 1, + sym_reference_expression, + STATE(3899), 2, + sym_line_comment, + sym_block_comment, + [140533] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7023), 1, + ACTIONS(6801), 1, anon_sym_RBRACK, - STATE(3867), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [124802] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7004), 1, - sym___single_quote, - ACTIONS(7025), 1, + STATE(3900), 2, + sym_line_comment, + sym_block_comment, + [140553] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6803), 1, + sym___double_quote, + STATE(3930), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3901), 2, + sym_line_comment, + sym_block_comment, + [140573] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, aux_sym_raw_string_literal_token1, - STATE(3895), 1, + ACTIONS(6803), 1, + sym___single_quote, + STATE(3931), 1, aux_sym_raw_string_literal_repeat1, - [124815] = 2, + STATE(3902), 2, + sym_line_comment, + sym_block_comment, + [140593] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7027), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3903), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6805), 3, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT2, - [124824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7029), 1, - sym_identifier, - ACTIONS(7031), 1, - anon_sym_LBRACE, - STATE(2534), 1, - sym__content_block, - [124837] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7033), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7035), 1, - sym___double_quote, - STATE(3910), 1, - aux_sym_raw_string_literal_repeat2, - [124850] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, + [140609] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6807), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7037), 1, + ACTIONS(6810), 1, sym___single_quote, - STATE(3987), 1, + STATE(3904), 3, + sym_line_comment, + sym_block_comment, aux_sym_raw_string_literal_repeat1, - [124863] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6916), 1, + [140627] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6218), 1, + anon_sym_RBRACK, + ACTIONS(6812), 1, + anon_sym_COMMA, + STATE(4077), 1, + aux_sym_capture_list_repeat1, + STATE(3905), 2, + sym_line_comment, + sym_block_comment, + [140647] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7037), 1, + ACTIONS(6777), 1, sym___double_quote, - STATE(3957), 1, + STATE(3873), 1, aux_sym_raw_string_literal_repeat2, - [124876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_COLON_EQ, - ACTIONS(7039), 1, - anon_sym_COMMA, - STATE(3884), 1, - aux_sym_strictly_expression_list_repeat1, - [124889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + STATE(3906), 2, + sym_line_comment, + sym_block_comment, + [140667] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7042), 1, + ACTIONS(6814), 1, anon_sym_RBRACK, - STATE(3944), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [124902] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7035), 1, - sym___single_quote, - ACTIONS(7044), 1, - aux_sym_raw_string_literal_token1, - STATE(3911), 1, - aux_sym_raw_string_literal_repeat1, - [124915] = 4, + STATE(3907), 2, + sym_line_comment, + sym_block_comment, + [140687] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_LBRACE, - ACTIONS(5272), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3908), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6816), 3, anon_sym_COMMA, - STATE(3869), 1, - aux_sym_strictly_expression_list_repeat1, - [124928] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6916), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7046), 1, - sym___double_quote, - STATE(3957), 1, - aux_sym_raw_string_literal_repeat2, - [124941] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6916), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7048), 1, - sym___double_quote, - STATE(3957), 1, - aux_sym_raw_string_literal_repeat2, - [124954] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7048), 1, - sym___single_quote, - STATE(3987), 1, - aux_sym_raw_string_literal_repeat1, - [124967] = 4, + anon_sym_GT, + anon_sym_RBRACK, + [140703] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7050), 1, + ACTIONS(6818), 1, anon_sym_RPAREN, - STATE(3872), 1, + STATE(4044), 1, aux_sym_type_parameter_list_repeat1, - [124980] = 4, + STATE(3909), 2, + sym_line_comment, + sym_block_comment, + [140723] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7052), 1, + ACTIONS(6820), 1, anon_sym_RPAREN, - STATE(3875), 1, + STATE(4035), 1, aux_sym_parameter_list_repeat1, - [124993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, + STATE(3910), 2, + sym_line_comment, + sym_block_comment, + [140743] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6822), 1, anon_sym_COMMA, - ACTIONS(7054), 1, - anon_sym_LBRACE, - STATE(4052), 1, - aux_sym_match_expression_list_repeat1, - [125006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5742), 1, + ACTIONS(6824), 1, anon_sym_RPAREN, - ACTIONS(7056), 1, - anon_sym_COMMA, - STATE(3710), 1, + STATE(3942), 1, aux_sym_type_parameters_repeat1, - [125019] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7046), 1, - sym___single_quote, - STATE(3987), 1, - aux_sym_raw_string_literal_repeat1, - [125032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4045), 1, - anon_sym_COLON_EQ, - ACTIONS(5082), 1, - anon_sym_COMMA, - STATE(3884), 1, - aux_sym_strictly_expression_list_repeat1, - [125045] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_COMMA, - ACTIONS(7058), 1, - anon_sym_LBRACE, - STATE(4052), 1, - aux_sym_match_expression_list_repeat1, - [125058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + STATE(3911), 2, + sym_line_comment, + sym_block_comment, + [140763] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6826), 1, + anon_sym_QMARK, + ACTIONS(5342), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(3912), 2, + sym_line_comment, + sym_block_comment, + [140781] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7060), 1, + ACTIONS(6828), 1, anon_sym_RBRACK, - STATE(3710), 1, + STATE(3907), 1, aux_sym_type_parameters_repeat1, - [125071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7062), 1, + STATE(3913), 2, + sym_line_comment, + sym_block_comment, + [140801] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6830), 1, anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_RPAREN, - STATE(3841), 1, - aux_sym_type_parameters_repeat1, - [125084] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7066), 1, - sym___single_quote, - STATE(3987), 1, - aux_sym_raw_string_literal_repeat1, - [125097] = 4, + ACTIONS(6832), 1, + anon_sym_in, + STATE(3958), 1, + aux_sym_var_definition_list_repeat1, + STATE(3914), 2, + sym_line_comment, + sym_block_comment, + [140821] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3915), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6209), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [140837] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3916), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6834), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [140853] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5732), 1, - anon_sym_RPAREN, - ACTIONS(7068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - STATE(3710), 1, + ACTIONS(6836), 1, + anon_sym_RBRACK, + STATE(3950), 1, aux_sym_type_parameters_repeat1, - [125110] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, - anon_sym_COMMA, - ACTIONS(7070), 1, - anon_sym_RPAREN, - STATE(3927), 1, - aux_sym_parameter_list_repeat1, - [125123] = 4, + STATE(3917), 2, + sym_line_comment, + sym_block_comment, + [140873] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6428), 1, + sym_identifier, + ACTIONS(6430), 1, + anon_sym_mut, + STATE(4260), 1, + sym_var_definition, + STATE(3918), 2, + sym_line_comment, + sym_block_comment, + [140893] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7072), 1, + ACTIONS(6838), 1, anon_sym_RPAREN, - STATE(3928), 1, - aux_sym_type_parameter_list_repeat1, - [125136] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6916), 1, + STATE(4035), 1, + aux_sym_parameter_list_repeat1, + STATE(3919), 2, + sym_line_comment, + sym_block_comment, + [140913] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6840), 1, + sym___single_quote, + STATE(3872), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3920), 2, + sym_line_comment, + sym_block_comment, + [140933] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7066), 1, + ACTIONS(6840), 1, sym___double_quote, - STATE(3957), 1, + STATE(3870), 1, aux_sym_raw_string_literal_repeat2, - [125149] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7074), 1, + STATE(3921), 2, + sym_line_comment, + sym_block_comment, + [140953] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4831), 1, + anon_sym_COMMA, + ACTIONS(4833), 1, + anon_sym_COLON_EQ, + STATE(3949), 1, + aux_sym_identifier_list_repeat1, + STATE(3922), 2, + sym_line_comment, + sym_block_comment, + [140973] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6842), 1, anon_sym_COMMA, - ACTIONS(7076), 1, + ACTIONS(6845), 1, anon_sym_PIPE, - STATE(3942), 1, + STATE(3923), 3, + sym_line_comment, + sym_block_comment, aux_sym_short_lambda_repeat1, - [125162] = 4, + [140991] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6643), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, + anon_sym_COMMA, + ACTIONS(6847), 1, + anon_sym_RPAREN, + STATE(4044), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3924), 2, + sym_line_comment, + sym_block_comment, + [141011] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6849), 1, sym_identifier, - ACTIONS(6645), 1, - anon_sym_mut, - STATE(4220), 1, - sym_var_definition, - [125175] = 4, + ACTIONS(6851), 1, + anon_sym_LBRACE, + STATE(2076), 1, + sym__content_block, + STATE(3925), 2, + sym_line_comment, + sym_block_comment, + [141031] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7078), 1, + ACTIONS(6853), 1, anon_sym_RPAREN, - STATE(3847), 1, - aux_sym_parameter_list_repeat1, - [125188] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7080), 1, - anon_sym_QMARK, - ACTIONS(5308), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [125199] = 4, + STATE(3909), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3926), 2, + sym_line_comment, + sym_block_comment, + [141051] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7082), 1, + ACTIONS(6855), 1, anon_sym_RPAREN, - STATE(3837), 1, - aux_sym_type_parameter_list_repeat1, - [125212] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6916), 1, + STATE(3910), 1, + aux_sym_parameter_list_repeat1, + STATE(3927), 2, + sym_line_comment, + sym_block_comment, + [141071] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5768), 1, + anon_sym_RPAREN, + ACTIONS(6857), 1, + anon_sym_COMMA, + STATE(3823), 1, + aux_sym_type_parameters_repeat1, + STATE(3928), 2, + sym_line_comment, + sym_block_comment, + [141091] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7084), 1, + ACTIONS(6859), 1, sym___double_quote, - STATE(3957), 1, + STATE(3982), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3929), 2, + sym_line_comment, + sym_block_comment, + [141111] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6861), 1, + sym___double_quote, + STATE(3873), 1, aux_sym_raw_string_literal_repeat2, - [125225] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, + STATE(3930), 2, + sym_line_comment, + sym_block_comment, + [141131] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7084), 1, + ACTIONS(6861), 1, sym___single_quote, - STATE(3987), 1, + STATE(3904), 1, aux_sym_raw_string_literal_repeat1, - [125238] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, + STATE(3931), 2, + sym_line_comment, + sym_block_comment, + [141151] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6863), 1, + anon_sym_SEMI, + ACTIONS(6865), 1, + anon_sym_RBRACK, + STATE(3935), 1, + aux_sym_attribute_repeat1, + STATE(3932), 2, + sym_line_comment, + sym_block_comment, + [141171] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6867), 1, + sym_identifier, + ACTIONS(6869), 1, anon_sym_LBRACE, - ACTIONS(7086), 1, - anon_sym_COMMA, - STATE(3912), 1, - aux_sym_strictly_expression_list_repeat1, - [125251] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7089), 1, - anon_sym_COMMA, - ACTIONS(7092), 1, - anon_sym_in, - STATE(3913), 1, - aux_sym_var_definition_list_repeat1, - [125264] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7094), 1, - anon_sym_COMMA, - ACTIONS(7096), 1, - anon_sym_in, - STATE(3923), 1, - aux_sym_var_definition_list_repeat1, - [125277] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7098), 1, + STATE(2436), 1, + sym__content_block, + STATE(3933), 2, + sym_line_comment, + sym_block_comment, + [141191] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7100), 1, + ACTIONS(6871), 1, sym___single_quote, - STATE(3882), 1, + STATE(3904), 1, aux_sym_raw_string_literal_repeat1, - [125290] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7100), 1, - sym___double_quote, - ACTIONS(7102), 1, + STATE(3934), 2, + sym_line_comment, + sym_block_comment, + [141211] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6873), 1, + anon_sym_SEMI, + ACTIONS(6876), 1, + anon_sym_RBRACK, + STATE(3935), 3, + sym_line_comment, + sym_block_comment, + aux_sym_attribute_repeat1, + [141229] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, aux_sym_raw_string_literal_token2, - STATE(3883), 1, - aux_sym_raw_string_literal_repeat2, - [125303] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_COMMA, - ACTIONS(7104), 1, - anon_sym_COLON_EQ, - STATE(3918), 1, - aux_sym_identifier_list_repeat1, - [125316] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7106), 1, - anon_sym_COMMA, - ACTIONS(7109), 1, - anon_sym_COLON_EQ, - STATE(3918), 1, - aux_sym_identifier_list_repeat1, - [125329] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7111), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7113), 1, - sym___single_quote, - STATE(3840), 1, - aux_sym_raw_string_literal_repeat1, - [125342] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7113), 1, + ACTIONS(6871), 1, sym___double_quote, - ACTIONS(7115), 1, - aux_sym_raw_string_literal_token2, - STATE(3835), 1, + STATE(3873), 1, aux_sym_raw_string_literal_repeat2, - [125355] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + STATE(3936), 2, + sym_line_comment, + sym_block_comment, + [141249] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6878), 1, + sym_identifier, + ACTIONS(6880), 1, + anon_sym_LBRACE, + STATE(1716), 1, + sym__content_block, + STATE(3937), 2, + sym_line_comment, + sym_block_comment, + [141269] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5386), 1, + anon_sym_LBRACE, + ACTIONS(5388), 1, anon_sym_COMMA, - ACTIONS(7117), 1, - anon_sym_RBRACK, - STATE(3936), 1, - aux_sym_type_parameters_repeat1, - [125368] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + STATE(3980), 1, + aux_sym_match_expression_list_repeat1, + STATE(3938), 2, + sym_line_comment, + sym_block_comment, + [141289] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2826), 1, + sym_type_initializer_body, + ACTIONS(6882), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7119), 1, - anon_sym_RPAREN, - STATE(3996), 1, - aux_sym_parameter_list_repeat1, - [125381] = 4, + STATE(3939), 2, + sym_line_comment, + sym_block_comment, + [141307] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(7094), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6884), 1, + anon_sym_DOT, + ACTIONS(6886), 1, + anon_sym_RBRACE, + ACTIONS(6888), 1, + aux_sym_format_specifier_token1, + STATE(3940), 2, + sym_line_comment, + sym_block_comment, + [141327] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3550), 1, + anon_sym_LBRACE, + ACTIONS(6890), 1, anon_sym_COMMA, - ACTIONS(7121), 1, - anon_sym_in, - STATE(3913), 1, - aux_sym_var_definition_list_repeat1, - [125394] = 4, + STATE(3941), 3, + sym_line_comment, + sym_block_comment, + aux_sym_strictly_expression_list_repeat1, + [141345] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5772), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5726), 1, anon_sym_RPAREN, - ACTIONS(7123), 1, + ACTIONS(6893), 1, anon_sym_COMMA, - STATE(3710), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [125407] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, - anon_sym_COMMA, - ACTIONS(7125), 1, - anon_sym_RPAREN, - STATE(3994), 1, - aux_sym_type_parameter_list_repeat1, - [125420] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_COMMA, - ACTIONS(7127), 1, - anon_sym_LBRACE, - STATE(3897), 1, - aux_sym_match_expression_list_repeat1, - [125433] = 4, + STATE(3942), 2, + sym_line_comment, + sym_block_comment, + [141365] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7129), 1, + ACTIONS(6895), 1, anon_sym_RPAREN, - STATE(3847), 1, + STATE(3968), 1, aux_sym_parameter_list_repeat1, - [125446] = 4, + STATE(3943), 2, + sym_line_comment, + sym_block_comment, + [141385] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7131), 1, + ACTIONS(6897), 1, anon_sym_RPAREN, - STATE(3837), 1, + STATE(3969), 1, aux_sym_type_parameter_list_repeat1, - [125459] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7133), 1, - sym_identifier, - ACTIONS(7135), 1, - anon_sym_LBRACE, - STATE(1852), 1, - sym__content_block, - [125472] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + STATE(3944), 2, + sym_line_comment, + sym_block_comment, + [141405] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6446), 1, anon_sym_COMMA, - ACTIONS(7137), 1, + ACTIONS(6448), 1, anon_sym_RPAREN, - STATE(3945), 1, - aux_sym_parameter_list_repeat1, - [125485] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + STATE(3863), 1, + aux_sym_type_parameters_repeat1, + STATE(3945), 2, + sym_line_comment, + sym_block_comment, + [141425] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5388), 1, anon_sym_COMMA, - ACTIONS(7139), 1, - anon_sym_RPAREN, - STATE(3948), 1, - aux_sym_type_parameter_list_repeat1, - [125498] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4599), 1, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4105), 1, + aux_sym_match_expression_list_repeat1, + STATE(3946), 2, + sym_line_comment, + sym_block_comment, + [141445] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4023), 1, + anon_sym_COLON_EQ, + ACTIONS(5092), 1, + anon_sym_COMMA, + STATE(4083), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3947), 2, + sym_line_comment, + sym_block_comment, + [141465] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4589), 1, sym_identifier, - ACTIONS(7141), 1, + ACTIONS(6901), 1, anon_sym_static, - ACTIONS(7143), 1, + ACTIONS(6903), 1, anon_sym_volatile, - [125511] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2843), 1, - sym_type_initializer_body, - ACTIONS(7145), 2, + STATE(3948), 2, + sym_line_comment, + sym_block_comment, + [141485] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4831), 1, + anon_sym_COMMA, + ACTIONS(6905), 1, + anon_sym_COLON_EQ, + STATE(4104), 1, + aux_sym_identifier_list_repeat1, + STATE(3949), 2, + sym_line_comment, + sym_block_comment, + [141505] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, + anon_sym_COMMA, + ACTIONS(6907), 1, + anon_sym_RBRACK, + STATE(3823), 1, + aux_sym_type_parameters_repeat1, + STATE(3950), 2, + sym_line_comment, + sym_block_comment, + [141525] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, anon_sym_LBRACE, + ACTIONS(5276), 1, anon_sym_COMMA, - [125522] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7147), 1, + STATE(3866), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3951), 2, + sym_line_comment, + sym_block_comment, + [141545] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6909), 1, + sym___double_quote, + STATE(3990), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3952), 2, + sym_line_comment, + sym_block_comment, + [141565] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7149), 1, + ACTIONS(6909), 1, sym___single_quote, - STATE(3900), 1, + STATE(3991), 1, aux_sym_raw_string_literal_repeat1, - [125535] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7149), 1, - sym___double_quote, - ACTIONS(7151), 1, + STATE(3953), 2, + sym_line_comment, + sym_block_comment, + [141585] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6911), 1, + sym___single_quote, + STATE(3934), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3954), 2, + sym_line_comment, + sym_block_comment, + [141605] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, aux_sym_raw_string_literal_token2, - STATE(3904), 1, + ACTIONS(6911), 1, + sym___double_quote, + STATE(3936), 1, aux_sym_raw_string_literal_repeat2, - [125548] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, - anon_sym_COMMA, - ACTIONS(7153), 1, - anon_sym_RBRACK, - STATE(3710), 1, - aux_sym_type_parameters_repeat1, - [125561] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7155), 1, + STATE(3955), 2, + sym_line_comment, + sym_block_comment, + [141625] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6913), 1, sym_identifier, - ACTIONS(7157), 1, + ACTIONS(6915), 1, anon_sym_LBRACE, - STATE(1064), 1, + STATE(2915), 1, sym__content_block, - [125574] = 4, + STATE(3956), 2, + sym_line_comment, + sym_block_comment, + [141645] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6816), 1, - anon_sym_DOT, - ACTIONS(6818), 1, - anon_sym_RBRACE, - ACTIONS(6822), 1, - aux_sym_format_specifier_token1, - [125587] = 4, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6917), 1, + anon_sym_COMMA, + ACTIONS(6919), 1, + anon_sym_RPAREN, + STATE(3928), 1, + aux_sym_type_parameters_repeat1, + STATE(3957), 2, + sym_line_comment, + sym_block_comment, + [141665] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_LBRACE, - ACTIONS(5324), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6921), 1, anon_sym_COMMA, - STATE(3893), 1, - aux_sym_match_expression_list_repeat1, - [125600] = 4, + ACTIONS(6924), 1, + anon_sym_in, + STATE(3958), 3, + sym_line_comment, + sym_block_comment, + aux_sym_var_definition_list_repeat1, + [141683] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6926), 1, anon_sym_COMMA, - ACTIONS(5979), 1, + ACTIONS(6928), 1, + anon_sym_RPAREN, + STATE(3989), 1, + aux_sym_type_parameters_repeat1, + STATE(3959), 2, + sym_line_comment, + sym_block_comment, + [141703] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5528), 1, anon_sym_LBRACE, - STATE(3946), 1, - aux_sym_expression_without_blocks_list_repeat1, - [125613] = 4, + ACTIONS(6930), 1, + anon_sym_COMMA, + STATE(3960), 3, + sym_line_comment, + sym_block_comment, + aux_sym_match_expression_list_repeat1, + [141721] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6933), 1, anon_sym_COMMA, - ACTIONS(7159), 1, + ACTIONS(6935), 1, anon_sym_RBRACK, - STATE(3950), 1, + STATE(3905), 1, + aux_sym_capture_list_repeat1, + STATE(3961), 2, + sym_line_comment, + sym_block_comment, + [141741] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, + anon_sym_COMMA, + ACTIONS(6937), 1, + anon_sym_RBRACK, + STATE(3977), 1, aux_sym_type_parameters_repeat1, - [125626] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7074), 1, + STATE(3962), 2, + sym_line_comment, + sym_block_comment, + [141761] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6939), 1, anon_sym_COMMA, - ACTIONS(7161), 1, + ACTIONS(6941), 1, anon_sym_PIPE, - STATE(4041), 1, + STATE(4075), 1, aux_sym_short_lambda_repeat1, - [125639] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7163), 1, - anon_sym_SEMI, - ACTIONS(7166), 1, - anon_sym_RBRACK, - STATE(3943), 1, - aux_sym_attribute_repeat1, - [125652] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + STATE(3963), 2, + sym_line_comment, + sym_block_comment, + [141781] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7168), 1, + ACTIONS(6943), 1, anon_sym_RBRACK, - STATE(3710), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [125665] = 4, + STATE(3964), 2, + sym_line_comment, + sym_block_comment, + [141801] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6945), 1, + sym_identifier, + ACTIONS(6947), 1, + anon_sym_LBRACE, + STATE(1351), 1, + sym__content_block, + STATE(3965), 2, + sym_line_comment, + sym_block_comment, + [141821] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6949), 1, anon_sym_COMMA, - ACTIONS(7170), 1, + ACTIONS(6951), 1, anon_sym_RPAREN, - STATE(3847), 1, - aux_sym_parameter_list_repeat1, - [125678] = 4, + STATE(4060), 1, + aux_sym_type_parameters_repeat1, + STATE(3966), 2, + sym_line_comment, + sym_block_comment, + [141841] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4902), 1, - anon_sym_LBRACE, - ACTIONS(7172), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6953), 1, anon_sym_COMMA, - STATE(3946), 1, - aux_sym_expression_without_blocks_list_repeat1, - [125691] = 4, + ACTIONS(6955), 1, + anon_sym_RPAREN, + STATE(3994), 1, + aux_sym_type_parameters_repeat1, + STATE(3967), 2, + sym_line_comment, + sym_block_comment, + [141861] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(7175), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7177), 1, + ACTIONS(6957), 1, anon_sym_RPAREN, - STATE(3876), 1, - aux_sym_type_parameters_repeat1, - [125704] = 4, + STATE(4035), 1, + aux_sym_parameter_list_repeat1, + STATE(3968), 2, + sym_line_comment, + sym_block_comment, + [141881] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7179), 1, + ACTIONS(6959), 1, anon_sym_RPAREN, - STATE(3837), 1, + STATE(4044), 1, aux_sym_type_parameter_list_repeat1, - [125717] = 4, + STATE(3969), 2, + sym_line_comment, + sym_block_comment, + [141901] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, - anon_sym_COMMA, - ACTIONS(7181), 1, - anon_sym_RBRACK, - STATE(3710), 1, - aux_sym_type_parameters_repeat1, - [125730] = 4, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3970), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6961), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [141917] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7183), 1, + ACTIONS(6963), 1, anon_sym_RBRACK, - STATE(3710), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [125743] = 4, + STATE(3971), 2, + sym_line_comment, + sym_block_comment, + [141937] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7185), 1, + ACTIONS(6965), 1, anon_sym_RPAREN, - STATE(3837), 1, + STATE(3974), 1, aux_sym_type_parameter_list_repeat1, - [125756] = 4, + STATE(3972), 2, + sym_line_comment, + sym_block_comment, + [141957] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7187), 1, + ACTIONS(6967), 1, anon_sym_RPAREN, - STATE(3847), 1, - aux_sym_parameter_list_repeat1, - [125769] = 4, + STATE(3891), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3973), 2, + sym_line_comment, + sym_block_comment, + [141977] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4056), 1, - anon_sym_LBRACE, - ACTIONS(5272), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - STATE(3912), 1, - aux_sym_strictly_expression_list_repeat1, - [125782] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7189), 1, - sym_identifier, - ACTIONS(7191), 1, - anon_sym_LBRACE, - STATE(2668), 1, - sym__content_block, - [125795] = 4, + ACTIONS(6969), 1, + anon_sym_RPAREN, + STATE(4044), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3974), 2, + sym_line_comment, + sym_block_comment, + [141997] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7193), 1, + ACTIONS(6971), 1, + anon_sym_RPAREN, + STATE(4035), 1, + aux_sym_parameter_list_repeat1, + STATE(3975), 2, + sym_line_comment, + sym_block_comment, + [142017] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6973), 1, + sym___double_quote, + STATE(4037), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3976), 2, + sym_line_comment, + sym_block_comment, + [142037] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, + anon_sym_COMMA, + ACTIONS(6975), 1, anon_sym_RBRACK, - STATE(3710), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [125808] = 2, + STATE(3977), 2, + sym_line_comment, + sym_block_comment, + [142057] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(7195), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - anon_sym_GT, + ACTIONS(6977), 1, + anon_sym_RPAREN, + STATE(3889), 1, + aux_sym_parameter_list_repeat1, + STATE(3978), 2, + sym_line_comment, + sym_block_comment, + [142077] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, + anon_sym_COMMA, + ACTIONS(6979), 1, anon_sym_RBRACK, - [125817] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7197), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7200), 1, - sym___double_quote, - STATE(3957), 1, - aux_sym_raw_string_literal_repeat2, - [125830] = 4, + STATE(3971), 1, + aux_sym_type_parameters_repeat1, + STATE(3979), 2, + sym_line_comment, + sym_block_comment, + [142097] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5388), 1, + anon_sym_COMMA, + ACTIONS(6981), 1, + anon_sym_LBRACE, + STATE(3960), 1, + aux_sym_match_expression_list_repeat1, + STATE(3980), 2, + sym_line_comment, + sym_block_comment, + [142117] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6983), 1, anon_sym_COMMA, - ACTIONS(7204), 1, + ACTIONS(6985), 1, anon_sym_RPAREN, - STATE(4073), 1, + STATE(3882), 1, aux_sym_type_parameters_repeat1, - [125843] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7206), 1, + STATE(3981), 2, + sym_line_comment, + sym_block_comment, + [142137] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7208), 1, + ACTIONS(6987), 1, sym___double_quote, - STATE(3988), 1, + STATE(3873), 1, aux_sym_raw_string_literal_repeat2, - [125856] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7208), 1, - sym___single_quote, - ACTIONS(7210), 1, + STATE(3982), 2, + sym_line_comment, + sym_block_comment, + [142157] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4009), 1, + anon_sym_LBRACE, + ACTIONS(5276), 1, + anon_sym_COMMA, + STATE(3941), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3983), 2, + sym_line_comment, + sym_block_comment, + [142177] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, aux_sym_raw_string_literal_token1, - STATE(3989), 1, + ACTIONS(6987), 1, + sym___single_quote, + STATE(3904), 1, aux_sym_raw_string_literal_repeat1, - [125869] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7212), 1, + STATE(3984), 2, + sym_line_comment, + sym_block_comment, + [142197] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6989), 1, sym_identifier, - ACTIONS(7214), 1, - anon_sym_LPAREN, - STATE(1515), 1, - sym_const_definition, - [125882] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + ACTIONS(6991), 1, + anon_sym_LBRACE, + STATE(2540), 1, + sym__content_block, + STATE(3985), 2, + sym_line_comment, + sym_block_comment, + [142217] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3881), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(6993), 2, anon_sym_COMMA, - ACTIONS(7216), 1, anon_sym_RPAREN, - STATE(3837), 1, - aux_sym_type_parameter_list_repeat1, - [125895] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, - anon_sym_COMMA, - ACTIONS(7218), 1, - anon_sym_RBRACK, - STATE(3949), 1, - aux_sym_type_parameters_repeat1, - [125908] = 4, + STATE(3986), 2, + sym_line_comment, + sym_block_comment, + [142235] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7220), 1, + ACTIONS(6995), 1, anon_sym_RPAREN, - STATE(3847), 1, + STATE(3975), 1, aux_sym_parameter_list_repeat1, - [125921] = 4, + STATE(3987), 2, + sym_line_comment, + sym_block_comment, + [142255] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3988), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6997), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [142271] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5776), 1, + anon_sym_RPAREN, + ACTIONS(6999), 1, anon_sym_COMMA, - ACTIONS(7222), 1, - anon_sym_RBRACK, - STATE(3955), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [125934] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7224), 1, + STATE(3989), 2, + sym_line_comment, + sym_block_comment, + [142291] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7001), 1, + sym___double_quote, + STATE(3873), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3990), 2, + sym_line_comment, + sym_block_comment, + [142311] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7001), 1, + sym___single_quote, + STATE(3904), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3991), 2, + sym_line_comment, + sym_block_comment, + [142331] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7003), 1, + sym___single_quote, + STATE(3892), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3992), 2, + sym_line_comment, + sym_block_comment, + [142351] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6718), 1, sym_identifier, - ACTIONS(7226), 1, - anon_sym_LBRACE, - STATE(1762), 1, - sym__content_block, - [125947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3211), 1, + ACTIONS(7005), 1, + anon_sym_LPAREN, + STATE(1580), 1, + sym_const_definition, + STATE(3993), 2, + sym_line_comment, + sym_block_comment, + [142371] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5778), 1, + anon_sym_RPAREN, + ACTIONS(7007), 1, anon_sym_COMMA, - ACTIONS(5140), 1, + STATE(3823), 1, + aux_sym_type_parameters_repeat1, + STATE(3994), 2, + sym_line_comment, + sym_block_comment, + [142391] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7009), 1, + sym_identifier, + ACTIONS(7011), 1, anon_sym_LBRACE, - STATE(2792), 1, - sym_block, - [125960] = 3, + STATE(2709), 1, + sym__content_block, + STATE(3995), 2, + sym_line_comment, + sym_block_comment, + [142411] = 6, ACTIONS(3), 1, - sym_comment, - STATE(2843), 1, - sym_type_initializer_body, - ACTIONS(3203), 2, - anon_sym_LBRACE, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - [125971] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6249), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, + ACTIONS(7013), 1, + anon_sym_RPAREN, + STATE(4027), 1, + aux_sym_parameter_list_repeat1, + STATE(3996), 2, + sym_line_comment, + sym_block_comment, + [142431] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6718), 1, sym_identifier, - [125980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7228), 1, - anon_sym_SEMI, - ACTIONS(7230), 1, - anon_sym_RBRACK, - STATE(3943), 1, - aux_sym_attribute_repeat1, - [125993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7232), 3, + ACTIONS(7015), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [126002] = 4, + STATE(1608), 1, + sym_const_definition, + STATE(3997), 2, + sym_line_comment, + sym_block_comment, + [142451] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(7234), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7236), 1, + ACTIONS(7017), 1, anon_sym_RPAREN, - STATE(3894), 1, - aux_sym_type_parameters_repeat1, - [126015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, - anon_sym_LBRACE, - STATE(2843), 1, - sym_type_initializer_body, - [126028] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7240), 1, + STATE(4028), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3998), 2, + sym_line_comment, + sym_block_comment, + [142471] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5762), 1, + anon_sym_RPAREN, + ACTIONS(7019), 1, anon_sym_COMMA, - ACTIONS(7242), 1, - anon_sym_RBRACK, - STATE(3979), 1, - aux_sym_capture_list_repeat1, - [126041] = 3, + STATE(3823), 1, + aux_sym_type_parameters_repeat1, + STATE(3999), 2, + sym_line_comment, + sym_block_comment, + [142491] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7021), 1, + sym___double_quote, + STATE(4029), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4000), 2, + sym_line_comment, + sym_block_comment, + [142511] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7021), 1, + sym___single_quote, + STATE(4030), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4001), 2, + sym_line_comment, + sym_block_comment, + [142531] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7023), 1, + sym___single_quote, + STATE(3904), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4002), 2, + sym_line_comment, + sym_block_comment, + [142551] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7003), 1, + sym___double_quote, + STATE(3906), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4003), 2, + sym_line_comment, + sym_block_comment, + [142571] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7023), 1, + sym___double_quote, + STATE(3873), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4004), 2, + sym_line_comment, + sym_block_comment, + [142591] = 6, ACTIONS(3), 1, - sym_comment, - STATE(2843), 1, - sym_type_initializer_body, - ACTIONS(3179), 2, - anon_sym_LBRACE, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - [126052] = 4, + ACTIONS(7025), 1, + anon_sym_RPAREN, + STATE(4071), 1, + aux_sym_parameter_list_repeat1, + STATE(4005), 2, + sym_line_comment, + sym_block_comment, + [142611] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(7027), 1, anon_sym_RPAREN, - STATE(3849), 1, - aux_sym_type_parameters_repeat1, - [126065] = 4, + STATE(4069), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4006), 2, + sym_line_comment, + sym_block_comment, + [142631] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7029), 1, + sym___single_quote, + STATE(3904), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4007), 2, + sym_line_comment, + sym_block_comment, + [142651] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3193), 1, anon_sym_COMMA, - ACTIONS(4845), 1, - anon_sym_COLON_EQ, - STATE(3917), 1, - aux_sym_identifier_list_repeat1, - [126078] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, + ACTIONS(5136), 1, + anon_sym_LBRACE, + STATE(2801), 1, + sym_block, + STATE(4008), 2, + sym_line_comment, + sym_block_comment, + [142671] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2826), 1, + sym_type_initializer_body, + ACTIONS(3215), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(4009), 2, + sym_line_comment, + sym_block_comment, + [142689] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7029), 1, + sym___double_quote, + STATE(3873), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4010), 2, + sym_line_comment, + sym_block_comment, + [142709] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4009), 1, anon_sym_SEMI, - ACTIONS(7244), 1, + ACTIONS(5254), 1, anon_sym_COMMA, - STATE(3978), 1, + STATE(4032), 1, aux_sym_strictly_expression_list_repeat1, - [126091] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6254), 1, + STATE(4011), 2, + sym_line_comment, + sym_block_comment, + [142729] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(4012), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3941), 3, + anon_sym_SEMI, anon_sym_RBRACK, - ACTIONS(7247), 1, - anon_sym_COMMA, - STATE(3871), 1, - aux_sym_capture_list_repeat1, - [126104] = 4, + anon_sym_COLON, + [142745] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(4013), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6436), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [142761] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3223), 1, anon_sym_COMMA, - ACTIONS(7249), 1, - anon_sym_RPAREN, - STATE(3962), 1, - aux_sym_type_parameter_list_repeat1, - [126117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + ACTIONS(7031), 1, + anon_sym_LBRACE, + STATE(2826), 1, + sym_type_initializer_body, + STATE(4014), 2, + sym_line_comment, + sym_block_comment, + [142781] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6830), 1, anon_sym_COMMA, - ACTIONS(7251), 1, - anon_sym_RPAREN, - STATE(3964), 1, - aux_sym_parameter_list_repeat1, - [126130] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 1, - anon_sym_RPAREN, - ACTIONS(7253), 1, + ACTIONS(7033), 1, + anon_sym_in, + STATE(3914), 1, + aux_sym_var_definition_list_repeat1, + STATE(4015), 2, + sym_line_comment, + sym_block_comment, + [142801] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2826), 1, + sym_type_initializer_body, + ACTIONS(3231), 2, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(3710), 1, - aux_sym_type_parameters_repeat1, - [126143] = 4, + STATE(4016), 2, + sym_line_comment, + sym_block_comment, + [142819] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5092), 1, anon_sym_COMMA, - ACTIONS(7255), 1, + STATE(3947), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4017), 2, + sym_line_comment, + sym_block_comment, + [142839] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7037), 1, + anon_sym_COLON, + ACTIONS(7035), 2, + anon_sym_SEMI, anon_sym_RBRACK, - STATE(3710), 1, - aux_sym_type_parameters_repeat1, - [126156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7257), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [126165] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7259), 1, - sym_identifier, - ACTIONS(7261), 1, - anon_sym_LBRACE, - STATE(1186), 1, - sym__content_block, - [126178] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7263), 3, + STATE(4018), 2, + sym_line_comment, + sym_block_comment, + [142857] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6863), 1, + anon_sym_SEMI, + ACTIONS(7039), 1, + anon_sym_RBRACK, + STATE(3932), 1, + aux_sym_attribute_repeat1, + STATE(4019), 2, + sym_line_comment, + sym_block_comment, + [142877] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4896), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [126187] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7265), 1, + ACTIONS(7041), 1, + anon_sym_COMMA, + STATE(4020), 3, + sym_line_comment, + sym_block_comment, + aux_sym_expression_without_blocks_list_repeat1, + [142895] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7268), 1, + ACTIONS(6859), 1, sym___single_quote, - STATE(3987), 1, + STATE(3984), 1, aux_sym_raw_string_literal_repeat1, - [126200] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6916), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7270), 1, - sym___double_quote, - STATE(3957), 1, - aux_sym_raw_string_literal_repeat2, - [126213] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, + STATE(4021), 2, + sym_line_comment, + sym_block_comment, + [142915] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7270), 1, + ACTIONS(7044), 1, sym___single_quote, - STATE(3987), 1, + STATE(4002), 1, aux_sym_raw_string_literal_repeat1, - [126226] = 4, + STATE(4022), 2, + sym_line_comment, + sym_block_comment, + [142935] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7044), 1, + sym___double_quote, + STATE(4004), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4023), 2, + sym_line_comment, + sym_block_comment, + [142955] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7046), 1, + sym_identifier, + ACTIONS(7048), 1, + anon_sym_LBRACE, + STATE(1243), 1, + sym__content_block, + STATE(4024), 2, + sym_line_comment, + sym_block_comment, + [142975] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, + anon_sym_COMMA, + ACTIONS(7050), 1, + anon_sym_RBRACK, + STATE(4039), 1, + aux_sym_type_parameters_repeat1, + STATE(4025), 2, + sym_line_comment, + sym_block_comment, + [142995] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, + anon_sym_COMMA, + ACTIONS(7052), 1, + anon_sym_RBRACK, + STATE(3823), 1, + aux_sym_type_parameters_repeat1, + STATE(4026), 2, + sym_line_comment, + sym_block_comment, + [143015] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(7272), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7274), 1, + ACTIONS(7054), 1, anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameters_repeat1, - [126239] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7276), 1, - sym___single_quote, - STATE(3987), 1, - aux_sym_raw_string_literal_repeat1, - [126252] = 4, + STATE(4035), 1, + aux_sym_parameter_list_repeat1, + STATE(4027), 2, + sym_line_comment, + sym_block_comment, + [143035] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7278), 1, + ACTIONS(7056), 1, anon_sym_RPAREN, - STATE(3837), 1, + STATE(4044), 1, aux_sym_type_parameter_list_repeat1, - [126265] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6916), 1, + STATE(4028), 2, + sym_line_comment, + sym_block_comment, + [143055] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7276), 1, + ACTIONS(7058), 1, sym___double_quote, - STATE(3957), 1, + STATE(3873), 1, aux_sym_raw_string_literal_repeat2, - [126278] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + STATE(4029), 2, + sym_line_comment, + sym_block_comment, + [143075] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7058), 1, + sym___single_quote, + STATE(3904), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4030), 2, + sym_line_comment, + sym_block_comment, + [143095] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7060), 1, anon_sym_COMMA, - ACTIONS(7280), 1, + ACTIONS(7062), 1, anon_sym_RPAREN, - STATE(3837), 1, - aux_sym_type_parameter_list_repeat1, - [126291] = 4, + STATE(4053), 1, + aux_sym_type_parameters_repeat1, + STATE(4031), 2, + sym_line_comment, + sym_block_comment, + [143115] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3550), 1, + anon_sym_SEMI, + ACTIONS(7064), 1, + anon_sym_COMMA, + STATE(4032), 3, + sym_line_comment, + sym_block_comment, + aux_sym_strictly_expression_list_repeat1, + [143133] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7067), 1, anon_sym_COMMA, - ACTIONS(7282), 1, + ACTIONS(7069), 1, anon_sym_RPAREN, - STATE(3847), 1, - aux_sym_parameter_list_repeat1, - [126304] = 4, + STATE(4103), 1, + aux_sym_type_parameters_repeat1, + STATE(4033), 2, + sym_line_comment, + sym_block_comment, + [143153] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7071), 1, + sym_identifier, + ACTIONS(7073), 1, + anon_sym_LBRACE, + STATE(1035), 1, + sym__content_block, + STATE(4034), 2, + sym_line_comment, + sym_block_comment, + [143173] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7075), 1, anon_sym_COMMA, - ACTIONS(7284), 1, + ACTIONS(7078), 1, anon_sym_RPAREN, - STATE(3847), 1, + STATE(4035), 3, + sym_line_comment, + sym_block_comment, aux_sym_parameter_list_repeat1, - [126317] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7286), 1, + [143191] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(4036), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6657), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [143207] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7288), 1, + ACTIONS(7080), 1, sym___double_quote, - STATE(4023), 1, + STATE(3873), 1, aux_sym_raw_string_literal_repeat2, - [126330] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7288), 1, - sym___single_quote, - ACTIONS(7290), 1, - aux_sym_raw_string_literal_token1, - STATE(4024), 1, - aux_sym_raw_string_literal_repeat1, - [126343] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7292), 1, + STATE(4037), 2, + sym_line_comment, + sym_block_comment, + [143227] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7294), 1, - anon_sym_RPAREN, - STATE(3982), 1, + ACTIONS(7082), 1, + anon_sym_RBRACK, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [126356] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5778), 1, + STATE(4038), 2, + sym_line_comment, + sym_block_comment, + [143247] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, + anon_sym_COMMA, + ACTIONS(7084), 1, + anon_sym_RBRACK, + STATE(3823), 1, + aux_sym_type_parameters_repeat1, + STATE(4039), 2, + sym_line_comment, + sym_block_comment, + [143267] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7080), 1, + sym___single_quote, + STATE(3904), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4040), 2, + sym_line_comment, + sym_block_comment, + [143287] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5728), 1, anon_sym_RPAREN, - ACTIONS(7296), 1, + ACTIONS(7086), 1, anon_sym_COMMA, - STATE(3710), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [126369] = 4, + STATE(4041), 2, + sym_line_comment, + sym_block_comment, + [143307] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7298), 1, + ACTIONS(7088), 1, anon_sym_RPAREN, - STATE(4026), 1, + STATE(4067), 1, aux_sym_parameter_list_repeat1, - [126382] = 4, + STATE(4042), 2, + sym_line_comment, + sym_block_comment, + [143327] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7300), 1, + ACTIONS(7090), 1, anon_sym_RPAREN, - STATE(4027), 1, + STATE(4068), 1, aux_sym_type_parameter_list_repeat1, - [126395] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + STATE(4043), 2, + sym_line_comment, + sym_block_comment, + [143347] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7092), 1, anon_sym_COMMA, - ACTIONS(7302), 1, + ACTIONS(7095), 1, anon_sym_RPAREN, - STATE(4054), 1, + STATE(4044), 3, + sym_line_comment, + sym_block_comment, aux_sym_type_parameter_list_repeat1, - [126408] = 4, + [143365] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6973), 1, + sym___single_quote, + STATE(4040), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4045), 2, + sym_line_comment, + sym_block_comment, + [143385] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(4046), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(7097), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [143401] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7304), 1, + ACTIONS(7099), 1, anon_sym_RBRACK, - STATE(3983), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [126421] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6751), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [126430] = 4, + STATE(4047), 2, + sym_line_comment, + sym_block_comment, + [143421] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7306), 1, + ACTIONS(7101), 1, anon_sym_RPAREN, - STATE(3992), 1, + STATE(4044), 1, aux_sym_type_parameter_list_repeat1, - [126443] = 4, + STATE(4048), 2, + sym_line_comment, + sym_block_comment, + [143441] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(7308), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7103), 1, anon_sym_COMMA, - ACTIONS(7310), 1, + ACTIONS(7105), 1, anon_sym_RPAREN, - STATE(4000), 1, + STATE(3876), 1, aux_sym_type_parameters_repeat1, - [126456] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7312), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [126465] = 4, + STATE(4049), 2, + sym_line_comment, + sym_block_comment, + [143461] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7314), 1, + ACTIONS(7107), 1, anon_sym_RPAREN, - STATE(3995), 1, + STATE(4035), 1, aux_sym_parameter_list_repeat1, - [126478] = 4, + STATE(4050), 2, + sym_line_comment, + sym_block_comment, + [143481] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(4051), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(7109), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [143497] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7316), 1, + ACTIONS(7111), 1, anon_sym_RPAREN, - STATE(3951), 1, + STATE(4044), 1, aux_sym_type_parameter_list_repeat1, - [126491] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7318), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7320), 1, - sym___single_quote, - STATE(3991), 1, - aux_sym_raw_string_literal_repeat1, - [126504] = 4, - ACTIONS(3), 1, - sym_comment, + STATE(4052), 2, + sym_line_comment, + sym_block_comment, + [143517] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5744), 1, anon_sym_RPAREN, - ACTIONS(7322), 1, + ACTIONS(7113), 1, anon_sym_COMMA, - STATE(3710), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [126517] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7320), 1, - sym___double_quote, - ACTIONS(7324), 1, - aux_sym_raw_string_literal_token2, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat2, - [126530] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7326), 1, - sym_identifier, - ACTIONS(7328), 1, - anon_sym_LBRACE, - STATE(1336), 1, - sym__content_block, - [126543] = 4, + STATE(4053), 2, + sym_line_comment, + sym_block_comment, + [143537] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7330), 1, + ACTIONS(7115), 1, anon_sym_RPAREN, - STATE(3952), 1, + STATE(4035), 1, aux_sym_parameter_list_repeat1, - [126556] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5766), 1, - anon_sym_RPAREN, - ACTIONS(7332), 1, - anon_sym_COMMA, - STATE(3710), 1, - aux_sym_type_parameters_repeat1, - [126569] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4045), 1, - anon_sym_SEMI, - ACTIONS(5224), 1, - anon_sym_COMMA, - STATE(3978), 1, - aux_sym_strictly_expression_list_repeat1, - [126582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7334), 1, + STATE(4054), 2, + sym_line_comment, + sym_block_comment, + [143557] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5560), 1, anon_sym_COMMA, - ACTIONS(7336), 1, - anon_sym_RPAREN, - STATE(4016), 1, - aux_sym_type_parameters_repeat1, - [126595] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7228), 1, - anon_sym_SEMI, - ACTIONS(7338), 1, - anon_sym_RBRACK, - STATE(3970), 1, - aux_sym_attribute_repeat1, - [126608] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + ACTIONS(5975), 1, + anon_sym_LBRACE, + STATE(4020), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(4055), 2, + sym_line_comment, + sym_block_comment, + [143577] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7340), 1, + ACTIONS(7117), 1, anon_sym_RBRACK, - STATE(4035), 1, + STATE(4047), 1, aux_sym_type_parameters_repeat1, - [126621] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7212), 1, - sym_identifier, - ACTIONS(7342), 1, - anon_sym_LPAREN, - STATE(1547), 1, - sym_const_definition, - [126634] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7344), 1, - sym_identifier, - ACTIONS(7346), 1, - anon_sym_LBRACE, - STATE(2423), 1, - sym__content_block, - [126647] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6916), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7348), 1, - sym___double_quote, - STATE(3957), 1, - aux_sym_raw_string_literal_repeat2, - [126660] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7348), 1, - sym___single_quote, - STATE(3987), 1, - aux_sym_raw_string_literal_repeat1, - [126673] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7212), 1, - sym_identifier, - ACTIONS(7350), 1, - anon_sym_LPAREN, - STATE(1588), 1, - sym_const_definition, - [126686] = 4, + STATE(4056), 2, + sym_line_comment, + sym_block_comment, + [143597] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7352), 1, + ACTIONS(7119), 1, anon_sym_RPAREN, - STATE(3847), 1, + STATE(4102), 1, aux_sym_parameter_list_repeat1, - [126699] = 4, + STATE(4057), 2, + sym_line_comment, + sym_block_comment, + [143617] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7354), 1, + ACTIONS(7121), 1, anon_sym_RPAREN, - STATE(3837), 1, + STATE(4048), 1, aux_sym_type_parameter_list_repeat1, - [126712] = 4, + STATE(4058), 2, + sym_line_comment, + sym_block_comment, + [143637] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(7356), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7358), 1, + ACTIONS(7123), 1, anon_sym_RPAREN, - STATE(4060), 1, - aux_sym_type_parameters_repeat1, - [126725] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5784), 1, + STATE(4050), 1, + aux_sym_parameter_list_repeat1, + STATE(4059), 2, + sym_line_comment, + sym_block_comment, + [143657] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5742), 1, anon_sym_RPAREN, - ACTIONS(7360), 1, + ACTIONS(7125), 1, anon_sym_COMMA, - STATE(3710), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [126738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + STATE(4060), 2, + sym_line_comment, + sym_block_comment, + [143677] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7362), 1, + ACTIONS(7127), 1, + anon_sym_RBRACK, + STATE(4076), 1, + aux_sym_type_parameters_repeat1, + STATE(4061), 2, + sym_line_comment, + sym_block_comment, + [143697] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7129), 1, + anon_sym_COMMA, + ACTIONS(7131), 1, anon_sym_RPAREN, - STATE(4063), 1, - aux_sym_parameter_list_repeat1, - [126751] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + STATE(4041), 1, + aux_sym_type_parameters_repeat1, + STATE(4062), 2, + sym_line_comment, + sym_block_comment, + [143717] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7364), 1, + ACTIONS(7133), 1, anon_sym_RBRACK, - STATE(3710), 1, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [126764] = 4, + STATE(4063), 2, + sym_line_comment, + sym_block_comment, + [143737] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7366), 1, + ACTIONS(7135), 1, anon_sym_RPAREN, - STATE(4062), 1, + STATE(4098), 1, aux_sym_type_parameter_list_repeat1, - [126777] = 4, + STATE(4064), 2, + sym_line_comment, + sym_block_comment, + [143757] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7368), 1, - sym_identifier, - ACTIONS(7370), 1, - anon_sym_LBRACE, - STATE(2346), 1, - sym__struct_body, - [126790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7372), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [126799] = 4, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(4065), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6702), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [143773] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7374), 1, + ACTIONS(7137), 1, anon_sym_RBRACK, - STATE(3710), 1, + STATE(4038), 1, aux_sym_type_parameters_repeat1, - [126812] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7376), 1, - sym___single_quote, - STATE(3987), 1, - aux_sym_raw_string_literal_repeat1, - [126825] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6916), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7376), 1, - sym___double_quote, - STATE(3957), 1, - aux_sym_raw_string_literal_repeat2, - [126838] = 3, + STATE(4066), 2, + sym_line_comment, + sym_block_comment, + [143793] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(7380), 1, - anon_sym_COLON, - ACTIONS(7378), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [126849] = 4, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, + anon_sym_COMMA, + ACTIONS(7139), 1, + anon_sym_RPAREN, + STATE(4035), 1, + aux_sym_parameter_list_repeat1, + STATE(4067), 2, + sym_line_comment, + sym_block_comment, + [143813] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7382), 1, + ACTIONS(7141), 1, anon_sym_RPAREN, - STATE(3837), 1, + STATE(4044), 1, aux_sym_type_parameter_list_repeat1, - [126862] = 4, + STATE(4068), 2, + sym_line_comment, + sym_block_comment, + [143833] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7384), 1, + ACTIONS(7143), 1, anon_sym_RPAREN, - STATE(3847), 1, - aux_sym_parameter_list_repeat1, - [126875] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7386), 1, + STATE(4044), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4069), 2, + sym_line_comment, + sym_block_comment, + [143853] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4023), 1, + anon_sym_SEMI, + ACTIONS(5254), 1, anon_sym_COMMA, - ACTIONS(7389), 1, - anon_sym_PIPE, - STATE(4041), 1, - aux_sym_short_lambda_repeat1, - [126888] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7391), 1, - anon_sym_DOT, - ACTIONS(7393), 1, - anon_sym_RBRACE, - ACTIONS(7395), 1, - aux_sym_format_specifier_token1, - [126901] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7397), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7399), 1, - sym___double_quote, - STATE(4070), 1, - aux_sym_raw_string_literal_repeat2, - [126914] = 4, + STATE(4032), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4070), 2, + sym_line_comment, + sym_block_comment, + [143873] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7401), 1, - anon_sym_RBRACK, - STATE(4031), 1, - aux_sym_type_parameters_repeat1, - [126927] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7403), 1, + ACTIONS(7145), 1, + anon_sym_RPAREN, + STATE(4035), 1, + aux_sym_parameter_list_repeat1, + STATE(4071), 2, + sym_line_comment, + sym_block_comment, + [143893] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(4072), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(7147), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [143909] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7405), 1, - sym___single_quote, - STATE(4036), 1, - aux_sym_raw_string_literal_repeat1, - [126940] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7399), 1, + ACTIONS(7149), 1, sym___single_quote, - ACTIONS(7407), 1, - aux_sym_raw_string_literal_token1, - STATE(4069), 1, + STATE(4007), 1, aux_sym_raw_string_literal_repeat1, - [126953] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7405), 1, - sym___double_quote, - ACTIONS(7409), 1, + STATE(4073), 2, + sym_line_comment, + sym_block_comment, + [143929] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, aux_sym_raw_string_literal_token2, - STATE(4037), 1, + ACTIONS(7149), 1, + sym___double_quote, + STATE(4010), 1, aux_sym_raw_string_literal_repeat2, - [126966] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7411), 1, - sym_identifier, - ACTIONS(7413), 1, - anon_sym_LBRACE, - STATE(2912), 1, - sym__content_block, - [126979] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7212), 1, - sym_identifier, - ACTIONS(7415), 1, - anon_sym_LPAREN, - STATE(1584), 1, - sym_const_definition, - [126992] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + STATE(4074), 2, + sym_line_comment, + sym_block_comment, + [143949] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6939), 1, anon_sym_COMMA, - ACTIONS(7417), 1, - anon_sym_RBRACK, - STATE(3710), 1, - aux_sym_type_parameters_repeat1, - [127005] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7419), 1, - sym_identifier, - ACTIONS(7421), 1, - anon_sym_LBRACE, - STATE(2020), 1, - sym__content_block, - [127018] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5478), 1, - anon_sym_LBRACE, - ACTIONS(7423), 1, + ACTIONS(7151), 1, + anon_sym_PIPE, + STATE(3923), 1, + aux_sym_short_lambda_repeat1, + STATE(4075), 2, + sym_line_comment, + sym_block_comment, + [143969] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - STATE(4052), 1, - aux_sym_match_expression_list_repeat1, - [127031] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(3894), 1, + ACTIONS(7153), 1, + anon_sym_RBRACK, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - ACTIONS(7426), 2, + STATE(4076), 2, + sym_line_comment, + sym_block_comment, + [143989] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7155), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [127042] = 4, + ACTIONS(7158), 1, + anon_sym_RBRACK, + STATE(4077), 3, + sym_line_comment, + sym_block_comment, + aux_sym_capture_list_repeat1, + [144007] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7428), 1, + ACTIONS(7160), 1, anon_sym_RPAREN, - STATE(3837), 1, + STATE(4052), 1, aux_sym_type_parameter_list_repeat1, - [127055] = 4, + STATE(4078), 2, + sym_line_comment, + sym_block_comment, + [144027] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7430), 1, + ACTIONS(7162), 1, anon_sym_RPAREN, - STATE(3847), 1, + STATE(4054), 1, aux_sym_parameter_list_repeat1, - [127068] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7432), 1, - anon_sym_COMMA, - ACTIONS(7434), 1, + STATE(4079), 2, + sym_line_comment, + sym_block_comment, + [144047] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5748), 1, anon_sym_RPAREN, - STATE(4012), 1, + ACTIONS(7164), 1, + anon_sym_COMMA, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [127081] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + STATE(4080), 2, + sym_line_comment, + sym_block_comment, + [144067] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7166), 1, anon_sym_COMMA, - ACTIONS(7436), 1, + ACTIONS(7168), 1, anon_sym_RPAREN, - STATE(4039), 1, - aux_sym_type_parameter_list_repeat1, - [127094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + STATE(3881), 1, + aux_sym_type_parameters_repeat1, + STATE(4081), 2, + sym_line_comment, + sym_block_comment, + [144087] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7438), 1, + ACTIONS(7170), 1, anon_sym_RBRACK, - STATE(3710), 1, + STATE(4026), 1, aux_sym_type_parameters_repeat1, - [127107] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + STATE(4082), 2, + sym_line_comment, + sym_block_comment, + [144107] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3550), 1, + anon_sym_COLON_EQ, + ACTIONS(7172), 1, anon_sym_COMMA, - ACTIONS(7440), 1, - anon_sym_RPAREN, - STATE(4040), 1, - aux_sym_parameter_list_repeat1, - [127120] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5774), 1, - anon_sym_RPAREN, - ACTIONS(7442), 1, + STATE(4083), 3, + sym_line_comment, + sym_block_comment, + aux_sym_strictly_expression_list_repeat1, + [144125] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7175), 1, + sym___single_quote, + STATE(4089), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4084), 2, + sym_line_comment, + sym_block_comment, + [144145] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7177), 1, + sym_identifier, + ACTIONS(7179), 1, + anon_sym_LBRACE, + STATE(681), 1, + sym__content_block, + STATE(4085), 2, + sym_line_comment, + sym_block_comment, + [144165] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7175), 1, + sym___double_quote, + STATE(4090), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4086), 2, + sym_line_comment, + sym_block_comment, + [144185] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - STATE(3710), 1, + ACTIONS(7181), 1, + anon_sym_RBRACK, + STATE(3823), 1, aux_sym_type_parameters_repeat1, - [127133] = 4, + STATE(4087), 2, + sym_line_comment, + sym_block_comment, + [144205] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_SEMI, - ACTIONS(5224), 1, - anon_sym_COMMA, - STATE(4017), 1, - aux_sym_strictly_expression_list_repeat1, - [127146] = 4, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6515), 1, + anon_sym_DOT, + ACTIONS(6517), 1, + anon_sym_RBRACE, + ACTIONS(6521), 1, + aux_sym_format_specifier_token1, + STATE(4088), 2, + sym_line_comment, + sym_block_comment, + [144225] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6740), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7183), 1, + sym___single_quote, + STATE(3904), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4089), 2, + sym_line_comment, + sym_block_comment, + [144245] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6734), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7183), 1, + sym___double_quote, + STATE(3873), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4090), 2, + sym_line_comment, + sym_block_comment, + [144265] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - ACTIONS(7444), 1, + ACTIONS(7185), 1, anon_sym_RPAREN, - STATE(3837), 1, + STATE(4044), 1, aux_sym_type_parameter_list_repeat1, - [127159] = 4, + STATE(4091), 2, + sym_line_comment, + sym_block_comment, + [144285] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7187), 1, + sym_identifier, + ACTIONS(7189), 1, + anon_sym_LBRACE, + STATE(1992), 1, + sym__content_block, + STATE(4092), 2, + sym_line_comment, + sym_block_comment, + [144305] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7446), 1, + ACTIONS(7191), 1, anon_sym_RPAREN, - STATE(3847), 1, + STATE(4035), 1, aux_sym_parameter_list_repeat1, - [127172] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, - anon_sym_COMMA, - ACTIONS(7448), 1, - anon_sym_RBRACK, - STATE(4058), 1, - aux_sym_type_parameters_repeat1, - [127185] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + STATE(4093), 2, + sym_line_comment, + sym_block_comment, + [144325] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(7450), 1, + ACTIONS(7193), 1, anon_sym_RBRACK, - STATE(4050), 1, + STATE(4087), 1, aux_sym_type_parameters_repeat1, - [127198] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4056), 1, + STATE(4094), 2, + sym_line_comment, + sym_block_comment, + [144345] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, anon_sym_SEMI, - ACTIONS(5224), 1, + ACTIONS(5254), 1, anon_sym_COMMA, - STATE(3978), 1, + STATE(4070), 1, aux_sym_strictly_expression_list_repeat1, - [127211] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6627), 1, + STATE(4095), 2, + sym_line_comment, + sym_block_comment, + [144365] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7195), 1, + sym_identifier, + ACTIONS(7197), 1, + anon_sym_LBRACE, + STATE(2470), 1, + sym__struct_body, + STATE(4096), 2, + sym_line_comment, + sym_block_comment, + [144385] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_COMMA, - ACTIONS(6629), 1, + ACTIONS(7199), 1, anon_sym_RBRACK, - STATE(3898), 1, + STATE(4063), 1, aux_sym_type_parameters_repeat1, - [127224] = 4, + STATE(4097), 2, + sym_line_comment, + sym_block_comment, + [144405] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_COLON_EQ, - ACTIONS(5082), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, anon_sym_COMMA, - STATE(3896), 1, - aux_sym_strictly_expression_list_repeat1, - [127237] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6912), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7452), 1, - sym___single_quote, - STATE(3987), 1, - aux_sym_raw_string_literal_repeat1, - [127250] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6916), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7452), 1, - sym___double_quote, - STATE(3957), 1, - aux_sym_raw_string_literal_repeat2, - [127263] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7454), 1, + ACTIONS(7201), 1, + anon_sym_RPAREN, + STATE(4044), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4098), 2, + sym_line_comment, + sym_block_comment, + [144425] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6718), 1, sym_identifier, - ACTIONS(7456), 1, - anon_sym_PIPE, - STATE(3905), 1, - sym_reference_expression, - [127276] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7458), 3, + ACTIONS(7203), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [127285] = 4, + STATE(1552), 1, + sym_const_definition, + STATE(4099), 2, + sym_line_comment, + sym_block_comment, + [144445] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5764), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 1, + anon_sym_COMMA, + ACTIONS(7205), 1, anon_sym_RPAREN, - ACTIONS(7460), 1, + STATE(4091), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4100), 2, + sym_line_comment, + sym_block_comment, + [144465] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - STATE(3710), 1, - aux_sym_type_parameters_repeat1, - [127298] = 4, + ACTIONS(7207), 1, + anon_sym_RPAREN, + STATE(4093), 1, + aux_sym_parameter_list_repeat1, + STATE(4101), 2, + sym_line_comment, + sym_block_comment, + [144485] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6931), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7462), 1, + ACTIONS(7209), 1, anon_sym_RPAREN, - STATE(4055), 1, + STATE(4035), 1, aux_sym_parameter_list_repeat1, - [127311] = 3, + STATE(4102), 2, + sym_line_comment, + sym_block_comment, + [144505] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5738), 1, + anon_sym_RPAREN, + ACTIONS(7211), 1, + anon_sym_COMMA, + STATE(3823), 1, + aux_sym_type_parameters_repeat1, + STATE(4103), 2, + sym_line_comment, + sym_block_comment, + [144525] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_block, - [127321] = 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7213), 1, + anon_sym_COMMA, + ACTIONS(7216), 1, + anon_sym_COLON_EQ, + STATE(4104), 3, + sym_line_comment, + sym_block_comment, + aux_sym_identifier_list_repeat1, + [144543] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5388), 1, + anon_sym_COMMA, + ACTIONS(7218), 1, anon_sym_LBRACE, - STATE(1113), 1, - sym_block, - [127331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, + STATE(3960), 1, + aux_sym_match_expression_list_repeat1, + STATE(4105), 2, + sym_line_comment, + sym_block_comment, + [144563] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6783), 1, anon_sym_LBRACE, - STATE(2447), 1, - sym_block, - [127341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, + STATE(1856), 1, + sym__content_block, + STATE(4106), 2, + sym_line_comment, + sym_block_comment, + [144580] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7220), 1, + sym_identifier, + STATE(2615), 1, + sym_type_reference_expression, + STATE(4107), 2, + sym_line_comment, + sym_block_comment, + [144597] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(2763), 1, + STATE(2399), 1, sym_block, - [127351] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [127359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, + STATE(4108), 2, + sym_line_comment, + sym_block_comment, + [144614] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, anon_sym_LBRACE, - STATE(379), 1, + STATE(2011), 1, sym_block, - [127369] = 3, + STATE(4109), 2, + sym_line_comment, + sym_block_comment, + [144631] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7346), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7216), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + STATE(4110), 2, + sym_line_comment, + sym_block_comment, + [144646] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7189), 1, anon_sym_LBRACE, - STATE(2444), 1, + STATE(2012), 1, sym__content_block, - [127379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(2416), 1, - sym_block, - [127389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7464), 1, + STATE(4111), 2, + sym_line_comment, + sym_block_comment, + [144663] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6467), 1, sym_identifier, - STATE(2267), 1, - sym_type_reference_expression, - [127399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_LPAREN, - STATE(2409), 1, - sym_argument_list, - [127409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7466), 1, + STATE(886), 1, + sym_reference_expression, + STATE(4112), 2, + sym_line_comment, + sym_block_comment, + [144680] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7222), 1, sym_identifier, - STATE(3375), 1, + STATE(2304), 1, sym_type_reference_expression, - [127419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7421), 1, + STATE(4113), 2, + sym_line_comment, + sym_block_comment, + [144697] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(2150), 1, - sym__content_block, - [127429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, + STATE(1414), 1, + sym_block, + STATE(4114), 2, + sym_line_comment, + sym_block_comment, + [144714] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2142), 1, + STATE(2704), 1, sym_block, - [127439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, + STATE(4115), 2, + sym_line_comment, + sym_block_comment, + [144731] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(1871), 1, + STATE(2620), 1, sym_block, - [127449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, + STATE(4116), 2, + sym_line_comment, + sym_block_comment, + [144748] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6991), 1, anon_sym_LBRACE, - STATE(2350), 1, + STATE(2648), 1, + sym__content_block, + STATE(4117), 2, + sym_line_comment, + sym_block_comment, + [144765] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5122), 1, + anon_sym_LBRACE, + STATE(2630), 1, sym_block, - [127459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7468), 1, + STATE(4118), 2, + sym_line_comment, + sym_block_comment, + [144782] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(2346), 1, + STATE(2470), 1, sym__struct_body, - [127469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, + STATE(4119), 2, + sym_line_comment, + sym_block_comment, + [144799] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7226), 1, anon_sym_LBRACE, - STATE(2349), 1, - sym_block, - [127479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7470), 1, + STATE(2221), 1, + sym__struct_body, + STATE(4120), 2, + sym_line_comment, + sym_block_comment, + [144816] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7228), 1, anon_sym_LBRACE, - STATE(2189), 1, + STATE(2470), 1, sym__struct_body, - [127489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7472), 1, + STATE(4121), 2, + sym_line_comment, + sym_block_comment, + [144833] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7230), 1, + anon_sym_LPAREN, + STATE(746), 1, + sym_special_argument_list, + STATE(4122), 2, + sym_line_comment, + sym_block_comment, + [144850] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5144), 1, + anon_sym_LBRACE, + STATE(684), 1, + sym_block, + STATE(4123), 2, + sym_line_comment, + sym_block_comment, + [144867] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(2346), 1, + STATE(2470), 1, sym__struct_body, - [127499] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6844), 1, + STATE(4124), 2, + sym_line_comment, + sym_block_comment, + [144884] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6600), 1, sym_identifier, - STATE(828), 1, + STATE(2591), 1, sym_reference_expression, - [127509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, + STATE(4125), 2, + sym_line_comment, + sym_block_comment, + [144901] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7234), 1, + anon_sym_LBRACE, + STATE(2470), 1, + sym__struct_body, + STATE(4126), 2, + sym_line_comment, + sym_block_comment, + [144918] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7236), 1, + anon_sym_LPAREN, + STATE(2622), 1, + sym_argument_list, + STATE(4127), 2, + sym_line_comment, + sym_block_comment, + [144935] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7238), 1, + anon_sym_LBRACE, + STATE(2470), 1, + sym__struct_body, + STATE(4128), 2, + sym_line_comment, + sym_block_comment, + [144952] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7240), 1, + sym_identifier, + STATE(1021), 1, + sym_type_reference_expression, + STATE(4129), 2, + sym_line_comment, + sym_block_comment, + [144969] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4713), 1, anon_sym_LBRACE, - STATE(893), 1, + STATE(1568), 1, sym_block, - [127519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7474), 1, + STATE(4130), 2, + sym_line_comment, + sym_block_comment, + [144986] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2346), 1, + STATE(2470), 1, sym__struct_body, - [127529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7476), 1, + STATE(4131), 2, + sym_line_comment, + sym_block_comment, + [145003] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7244), 1, anon_sym_COMMA, - ACTIONS(7478), 1, + ACTIONS(7246), 1, anon_sym_RPAREN, - [127539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7480), 1, - anon_sym_LBRACE, - STATE(2346), 1, - sym__struct_body, - [127549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_LBRACE, - STATE(920), 1, - sym_type_initializer_body, - [127559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7238), 1, + STATE(4132), 2, + sym_line_comment, + sym_block_comment, + [145020] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7248), 1, + sym_identifier, + STATE(1573), 1, + sym_label_reference, + STATE(4133), 2, + sym_line_comment, + sym_block_comment, + [145037] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7031), 1, anon_sym_LBRACE, - STATE(2843), 1, + STATE(2826), 1, sym_type_initializer_body, - [127569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, + STATE(4134), 2, + sym_line_comment, + sym_block_comment, + [145054] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, anon_sym_LBRACE, - STATE(2015), 1, + STATE(1991), 1, sym_block, - [127579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7482), 1, + STATE(4135), 2, + sym_line_comment, + sym_block_comment, + [145071] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7250), 1, anon_sym_LBRACE, - STATE(1351), 1, + STATE(2621), 1, sym_type_initializer_body, - [127589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4210), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [127597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7484), 1, + STATE(4136), 2, + sym_line_comment, + sym_block_comment, + [145088] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7252), 1, anon_sym_LBRACE, - STATE(2346), 1, + STATE(2470), 1, sym__struct_body, - [127607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7486), 1, - anon_sym_LBRACE, - STATE(2346), 1, - sym__struct_body, - [127617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - anon_sym_RBRACE, - STATE(3755), 1, - sym___rcbr, - [127627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7488), 1, + STATE(4137), 2, + sym_line_comment, + sym_block_comment, + [145105] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7254), 1, anon_sym_LBRACE, - STATE(2346), 1, + STATE(2470), 1, sym__struct_body, - [127637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7490), 1, + STATE(4138), 2, + sym_line_comment, + sym_block_comment, + [145122] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7256), 1, anon_sym_LBRACE, - STATE(2346), 1, + STATE(2470), 1, sym__struct_body, - [127647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7492), 1, + STATE(4139), 2, + sym_line_comment, + sym_block_comment, + [145139] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(2346), 1, - sym__struct_body, - [127657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, + STATE(2610), 1, + sym_block, + STATE(4140), 2, + sym_line_comment, + sym_block_comment, + [145156] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(2380), 1, + STATE(2609), 1, sym_block, - [127667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7494), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [127675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7496), 1, + STATE(4141), 2, + sym_line_comment, + sym_block_comment, + [145173] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7258), 1, anon_sym_LBRACE, - STATE(2346), 1, + STATE(2470), 1, sym__struct_body, - [127685] = 3, + STATE(4142), 2, + sym_line_comment, + sym_block_comment, + [145190] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(2557), 1, + sym_special_argument_list, + STATE(4143), 2, + sym_line_comment, + sym_block_comment, + [145207] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(2673), 1, + STATE(1338), 1, sym_block, - [127695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7370), 1, + STATE(4144), 2, + sym_line_comment, + sym_block_comment, + [145224] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6536), 2, + anon_sym_RBRACE, + sym_identifier, + STATE(4145), 2, + sym_line_comment, + sym_block_comment, + [145239] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7197), 1, anon_sym_LBRACE, - STATE(2346), 1, + STATE(2470), 1, sym__struct_body, - [127705] = 3, + STATE(4146), 2, + sym_line_comment, + sym_block_comment, + [145256] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(7498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7262), 1, + anon_sym_COMMA, + ACTIONS(7264), 1, + anon_sym_RPAREN, + STATE(4147), 2, + sym_line_comment, + sym_block_comment, + [145273] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(2712), 1, - sym__struct_body, - [127715] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, - anon_sym_COLON, - ACTIONS(7500), 1, - anon_sym_mut, - [127725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, + STATE(1420), 1, + sym_block, + STATE(4148), 2, + sym_line_comment, + sym_block_comment, + [145290] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(2422), 1, + STATE(2545), 1, sym_block, - [127735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6794), 1, - sym_identifier, - STATE(1380), 1, - sym_reference_expression, - [127745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7502), 1, - anon_sym_LPAREN, - STATE(2397), 1, - sym_special_argument_list, - [127755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7504), 1, - sym_identifier, - STATE(2742), 1, - sym_type_reference_expression, - [127765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6996), 1, + STATE(4149), 2, + sym_line_comment, + sym_block_comment, + [145307] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7266), 1, anon_sym_LBRACE, - STATE(943), 1, - sym__content_block, - [127775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6735), 1, + STATE(826), 1, + sym_type_initializer_body, + STATE(4150), 2, + sym_line_comment, + sym_block_comment, + [145324] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6797), 1, sym_identifier, - STATE(2340), 1, + STATE(4289), 1, sym_reference_expression, - [127785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7506), 1, - anon_sym_LPAREN, - STATE(1329), 1, - sym_special_argument_list, - [127795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(1065), 1, - sym_block, - [127805] = 3, + STATE(4151), 2, + sym_line_comment, + sym_block_comment, + [145341] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7508), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7158), 2, anon_sym_COMMA, - ACTIONS(7510), 1, - anon_sym_RPAREN, - [127815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6625), 1, + anon_sym_RBRACK, + STATE(4152), 2, + sym_line_comment, + sym_block_comment, + [145356] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(2442), 1, + STATE(2621), 1, sym_type_initializer_body, - [127825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, + STATE(4153), 2, + sym_line_comment, + sym_block_comment, + [145373] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(557), 1, + STATE(1426), 1, sym_block, - [127835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, + STATE(4154), 2, + sym_line_comment, + sym_block_comment, + [145390] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, anon_sym_LBRACE, - STATE(556), 1, + STATE(1719), 1, sym_block, - [127845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, + STATE(4155), 2, + sym_line_comment, + sym_block_comment, + [145407] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7268), 1, anon_sym_LBRACE, - STATE(2751), 1, - sym_block, - [127855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, + STATE(2752), 1, + sym__struct_body, + STATE(4156), 2, + sym_line_comment, + sym_block_comment, + [145424] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7270), 1, + anon_sym_LBRACE, + STATE(1094), 1, + sym__struct_body, + STATE(4157), 2, + sym_line_comment, + sym_block_comment, + [145441] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7272), 1, + anon_sym_LBRACE, + STATE(2470), 1, + sym__struct_body, + STATE(4158), 2, + sym_line_comment, + sym_block_comment, + [145458] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2754), 1, + STATE(2729), 1, sym_block, - [127865] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6746), 2, - anon_sym_RPAREN, - sym_identifier, - [127873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7512), 1, + STATE(4159), 2, + sym_line_comment, + sym_block_comment, + [145475] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7250), 1, + anon_sym_LBRACE, + STATE(2621), 1, + sym_type_initializer_body, + STATE(4160), 2, + sym_line_comment, + sym_block_comment, + [145492] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7274), 1, sym_identifier, - STATE(1887), 1, + STATE(2783), 1, sym_type_reference_expression, - [127883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5152), 1, - anon_sym_LPAREN, - STATE(2759), 1, - sym_argument_list, - [127893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, - anon_sym_LBRACE, - STATE(2766), 1, - sym_block, - [127903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, + STATE(4161), 2, + sym_line_comment, + sym_block_comment, + [145509] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(1359), 1, + STATE(2559), 1, sym_block, - [127913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7191), 1, - anon_sym_LBRACE, - STATE(2760), 1, - sym__content_block, - [127923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, + STATE(4162), 2, + sym_line_comment, + sym_block_comment, + [145526] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6628), 1, + sym_identifier, + STATE(3720), 1, + sym_generic_parameter, + STATE(4163), 2, + sym_line_comment, + sym_block_comment, + [145543] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(2745), 1, + STATE(922), 1, sym_block, - [127933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, + STATE(4164), 2, + sym_line_comment, + sym_block_comment, + [145560] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(1351), 1, + STATE(826), 1, sym_type_initializer_body, - [127943] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4976), 1, + STATE(4165), 2, + sym_line_comment, + sym_block_comment, + [145577] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6693), 1, sym_identifier, - ACTIONS(7514), 1, - anon_sym_volatile, - [127953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7516), 1, - anon_sym_LBRACE, - STATE(2165), 1, - sym_block, - [127963] = 3, - ACTIONS(3), 1, - sym_comment, + STATE(1230), 1, + sym_reference_expression, + STATE(4166), 2, + sym_line_comment, + sym_block_comment, + [145594] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(2621), 1, + STATE(2121), 1, sym_block, - [127973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7518), 1, + STATE(4167), 2, + sym_line_comment, + sym_block_comment, + [145611] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7276), 1, + anon_sym_LPAREN, + STATE(1233), 1, + sym_special_argument_list, + STATE(4168), 2, + sym_line_comment, + sym_block_comment, + [145628] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7278), 1, anon_sym_LBRACE, - STATE(1681), 1, + STATE(2470), 1, sym__struct_body, - [127983] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1707), 2, - anon_sym_SEMI, + STATE(4169), 2, + sym_line_comment, + sym_block_comment, + [145645] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_LBRACE, - [127991] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6758), 2, - anon_sym_RPAREN, + STATE(1236), 1, + sym_block, + STATE(4170), 2, + sym_line_comment, + sym_block_comment, + [145662] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7280), 1, sym_identifier, - [127999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7520), 1, - anon_sym_LBRACE, - STATE(1926), 1, - sym__struct_body, - [128009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7482), 1, - anon_sym_LBRACE, - STATE(1351), 1, - sym_type_initializer_body, - [128019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7522), 1, + STATE(911), 1, + sym_type_reference_expression, + STATE(4171), 2, + sym_line_comment, + sym_block_comment, + [145679] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3855), 1, + anon_sym_LPAREN, + STATE(1330), 1, + sym_argument_list, + STATE(4172), 2, + sym_line_comment, + sym_block_comment, + [145696] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7282), 1, anon_sym_LBRACE, - STATE(2071), 1, + STATE(1264), 1, sym_type_initializer_body, - [128029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6806), 1, - sym_identifier, - STATE(2193), 1, - sym_reference_expression, - [128039] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7524), 2, + STATE(4173), 2, + sym_line_comment, + sym_block_comment, + [145713] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7284), 1, anon_sym_COMMA, + ACTIONS(7286), 1, anon_sym_RPAREN, - [128047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7526), 1, - anon_sym_LPAREN, - STATE(2833), 1, - sym_special_argument_list, - [128057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6904), 1, + STATE(4174), 2, + sym_line_comment, + sym_block_comment, + [145730] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6481), 1, sym_identifier, - STATE(2845), 1, + STATE(1075), 1, sym_reference_expression, - [128067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7528), 1, - anon_sym_LBRACE, - STATE(920), 1, - sym_type_initializer_body, - [128077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, + STATE(4175), 2, + sym_line_comment, + sym_block_comment, + [145747] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7266), 1, anon_sym_LBRACE, - STATE(1351), 1, + STATE(826), 1, sym_type_initializer_body, - [128087] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7530), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [128095] = 3, + STATE(4176), 2, + sym_line_comment, + sym_block_comment, + [145764] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3394), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2973), 1, anon_sym_COMMA, - ACTIONS(7532), 1, + ACTIONS(7288), 1, anon_sym_RPAREN, - [128105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, - anon_sym_LBRACE, - STATE(1288), 1, - sym_block, - [128115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, - anon_sym_LBRACE, - STATE(1374), 1, - sym_block, - [128125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, - anon_sym_LBRACE, - STATE(2188), 1, - sym_block, - [128135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7328), 1, - anon_sym_LBRACE, - STATE(1376), 1, - sym__content_block, - [128145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, - anon_sym_LBRACE, - STATE(1389), 1, - sym_block, - [128155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(2314), 1, - sym_block, - [128165] = 2, + STATE(4177), 2, + sym_line_comment, + sym_block_comment, + [145781] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7534), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7290), 2, anon_sym_COMMA, anon_sym_RPAREN, - [128173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7536), 1, - sym_identifier, - STATE(915), 1, - sym_type_reference_expression, - [128183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4882), 2, - anon_sym_COMMA, - anon_sym_in, - [128191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6735), 1, - sym_identifier, - STATE(4169), 1, - sym_reference_expression, - [128201] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7538), 2, - anon_sym_COMMA, + STATE(4178), 2, + sym_line_comment, + sym_block_comment, + [145796] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7292), 2, + anon_sym_SEMI, anon_sym_RBRACK, - [128209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, - anon_sym_LBRACE, - STATE(1401), 1, - sym_block, - [128219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, - anon_sym_LBRACE, - STATE(1402), 1, - sym_block, - [128229] = 2, + STATE(4179), 2, + sym_line_comment, + sym_block_comment, + [145811] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7540), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7294), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [128237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4709), 1, + anon_sym_RPAREN, + STATE(4180), 2, + sym_line_comment, + sym_block_comment, + [145826] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(1568), 1, + STATE(2765), 1, sym_block, - [128247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, + STATE(4181), 2, + sym_line_comment, + sym_block_comment, + [145843] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(4583), 1, + STATE(2766), 1, sym_block, - [128257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7542), 1, - anon_sym_COMMA, - ACTIONS(7544), 1, - anon_sym_RPAREN, - [128267] = 3, + STATE(4182), 2, + sym_line_comment, + sym_block_comment, + [145860] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7296), 1, + anon_sym_LPAREN, + STATE(1028), 1, + sym_special_argument_list, + STATE(4183), 2, + sym_line_comment, + sym_block_comment, + [145877] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7546), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7095), 2, anon_sym_COMMA, - ACTIONS(7548), 1, anon_sym_RPAREN, - [128277] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7550), 1, - anon_sym_LBRACE, - STATE(2346), 1, - sym__struct_body, - [128287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, + STATE(4184), 2, + sym_line_comment, + sym_block_comment, + [145892] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7035), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4185), 2, + sym_line_comment, + sym_block_comment, + [145907] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7298), 1, + sym_identifier, + STATE(1927), 1, + sym_type_reference_expression, + STATE(4186), 2, + sym_line_comment, + sym_block_comment, + [145924] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5154), 1, + anon_sym_LPAREN, + STATE(2768), 1, + sym_argument_list, + STATE(4187), 2, + sym_line_comment, + sym_block_comment, + [145941] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(741), 1, + STATE(2081), 1, sym_block, - [128297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, + STATE(4188), 2, + sym_line_comment, + sym_block_comment, + [145958] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, anon_sym_LBRACE, - STATE(1378), 1, - sym_block, - [128307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, + STATE(826), 1, + sym_type_initializer_body, + STATE(4189), 2, + sym_line_comment, + sym_block_comment, + [145975] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_LBRACE, - STATE(2221), 1, + STATE(1258), 1, sym_block, - [128317] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, + STATE(4190), 2, + sym_line_comment, + sym_block_comment, + [145992] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(2223), 1, + STATE(359), 1, sym_block, - [128327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7552), 1, - sym_identifier, - STATE(1974), 1, - sym_type_reference_expression, - [128337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7554), 1, - anon_sym_LPAREN, - STATE(2235), 1, - sym_argument_list, - [128347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6727), 1, - sym_identifier, - STATE(1085), 1, - sym_reference_expression, - [128357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, + STATE(4191), 2, + sym_line_comment, + sym_block_comment, + [146009] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(2242), 1, + STATE(531), 1, sym_block, - [128367] = 2, + STATE(4192), 2, + sym_line_comment, + sym_block_comment, + [146026] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7426), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7078), 2, anon_sym_COMMA, anon_sym_RPAREN, - [128375] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6968), 1, + STATE(4193), 2, + sym_line_comment, + sym_block_comment, + [146041] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7011), 1, anon_sym_LBRACE, - STATE(2257), 1, + STATE(2703), 1, + sym__content_block, + STATE(4194), 2, + sym_line_comment, + sym_block_comment, + [146058] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7179), 1, + anon_sym_LBRACE, + STATE(517), 1, sym__content_block, - [128385] = 3, + STATE(4195), 2, + sym_line_comment, + sym_block_comment, + [146075] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7300), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4196), 2, + sym_line_comment, + sym_block_comment, + [146090] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6947), 1, + anon_sym_LBRACE, + STATE(1401), 1, + sym__content_block, + STATE(4197), 2, + sym_line_comment, + sym_block_comment, + [146107] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4880), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(4198), 2, + sym_line_comment, + sym_block_comment, + [146122] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, + anon_sym_LBRACE, + STATE(2621), 1, + sym_type_initializer_body, + STATE(4199), 2, + sym_line_comment, + sym_block_comment, + [146139] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2259), 1, + STATE(2702), 1, sym_block, - [128395] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7556), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [128403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, + STATE(4200), 2, + sym_line_comment, + sym_block_comment, + [146156] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7302), 1, + anon_sym_COMMA, + ACTIONS(7304), 1, + anon_sym_RPAREN, + STATE(4201), 2, + sym_line_comment, + sym_block_comment, + [146173] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6424), 1, anon_sym_LBRACE, - STATE(2164), 1, + STATE(1526), 1, + sym__struct_body, + STATE(4202), 2, + sym_line_comment, + sym_block_comment, + [146190] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5136), 1, + anon_sym_LBRACE, + STATE(2601), 1, sym_block, - [128413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, + STATE(4203), 2, + sym_line_comment, + sym_block_comment, + [146207] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6576), 1, anon_sym_LBRACE, - STATE(2280), 1, - sym_type_initializer_body, - [128423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7558), 1, + STATE(1530), 1, + sym__enum_body, + STATE(4204), 2, + sym_line_comment, + sym_block_comment, + [146224] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6434), 1, anon_sym_LBRACE, - STATE(2280), 1, - sym_type_initializer_body, - [128433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7166), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [128441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4709), 1, + STATE(1557), 1, + sym__interface_body, + STATE(4205), 2, + sym_line_comment, + sym_block_comment, + [146241] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4713), 1, anon_sym_LBRACE, - STATE(1543), 1, + STATE(1519), 1, sym_block, - [128451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7560), 1, + STATE(4206), 2, + sym_line_comment, + sym_block_comment, + [146258] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(1985), 1, + STATE(1399), 1, + sym_block, + STATE(4207), 2, + sym_line_comment, + sym_block_comment, + [146275] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, + anon_sym_LBRACE, + STATE(1297), 1, + sym_block, + STATE(4208), 2, + sym_line_comment, + sym_block_comment, + [146292] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7306), 1, + anon_sym_LBRACE, + STATE(1843), 1, sym__struct_body, - [128461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, + STATE(4209), 2, + sym_line_comment, + sym_block_comment, + [146309] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7308), 1, + anon_sym_LBRACE, + STATE(1592), 1, + sym__content_block, + STATE(4210), 2, + sym_line_comment, + sym_block_comment, + [146326] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, + anon_sym_LBRACE, + STATE(1374), 1, + sym_type_initializer_body, + STATE(4211), 2, + sym_line_comment, + sym_block_comment, + [146343] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7310), 1, anon_sym_LBRACE, - STATE(2280), 1, + STATE(1999), 1, sym_type_initializer_body, - [128471] = 3, + STATE(4212), 2, + sym_line_comment, + sym_block_comment, + [146360] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6797), 1, + sym_identifier, + STATE(3912), 1, + sym_reference_expression, + STATE(4213), 2, + sym_line_comment, + sym_block_comment, + [146377] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7312), 1, + anon_sym_COMMA, + ACTIONS(7314), 1, + anon_sym_RPAREN, + STATE(4214), 2, + sym_line_comment, + sym_block_comment, + [146394] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2265), 1, + STATE(2710), 1, sym_block, - [128481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7562), 1, + STATE(4215), 2, + sym_line_comment, + sym_block_comment, + [146411] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7316), 1, anon_sym_LBRACE, - STATE(1540), 1, - sym__content_block, - [128491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6705), 1, + STATE(1374), 1, + sym_type_initializer_body, + STATE(4216), 2, + sym_line_comment, + sym_block_comment, + [146428] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7318), 1, + anon_sym_LBRACE, + STATE(1704), 1, + sym__struct_body, + STATE(4217), 2, + sym_line_comment, + sym_block_comment, + [146445] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6434), 1, anon_sym_LBRACE, - STATE(1532), 1, + STATE(1599), 1, + sym__interface_body, + STATE(4218), 2, + sym_line_comment, + sym_block_comment, + [146462] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6576), 1, + anon_sym_LBRACE, + STATE(1575), 1, sym__enum_body, - [128501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7564), 1, + STATE(4219), 2, + sym_line_comment, + sym_block_comment, + [146479] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6424), 1, anon_sym_LBRACE, - STATE(2346), 1, + STATE(1571), 1, sym__struct_body, - [128511] = 3, + STATE(4220), 2, + sym_line_comment, + sym_block_comment, + [146496] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7320), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4221), 2, + sym_line_comment, + sym_block_comment, + [146511] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7322), 1, anon_sym_LBRACE, - STATE(920), 1, - sym_type_initializer_body, - [128521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7566), 1, + STATE(1985), 1, + sym__struct_body, + STATE(4222), 2, + sym_line_comment, + sym_block_comment, + [146528] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7324), 1, anon_sym_LPAREN, - STATE(1071), 1, + STATE(2827), 1, sym_special_argument_list, - [128531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7454), 1, + STATE(4223), 2, + sym_line_comment, + sym_block_comment, + [146545] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6628), 1, sym_identifier, - STATE(3908), 1, - sym_reference_expression, - [128541] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7568), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [128549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7558), 1, + STATE(4065), 1, + sym_generic_parameter, + STATE(4224), 2, + sym_line_comment, + sym_block_comment, + [146562] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(2280), 1, + STATE(1374), 1, sym_type_initializer_body, - [128559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, + STATE(4225), 2, + sym_line_comment, + sym_block_comment, + [146579] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(2225), 1, + STATE(1382), 1, sym_block, - [128569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7570), 1, - anon_sym_LPAREN, - STATE(2211), 1, - sym_special_argument_list, - [128579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3865), 1, - anon_sym_LPAREN, - STATE(1394), 1, - sym_argument_list, - [128589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7516), 1, + STATE(4226), 2, + sym_line_comment, + sym_block_comment, + [146596] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7326), 1, anon_sym_LBRACE, - STATE(2172), 1, - sym_block, - [128599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3960), 2, + STATE(1057), 1, + sym_type_initializer_body, + STATE(4227), 2, + sym_line_comment, + sym_block_comment, + [146613] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3948), 2, anon_sym_SEMI, anon_sym_RBRACK, - [128607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7516), 1, + STATE(4228), 2, + sym_line_comment, + sym_block_comment, + [146628] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6434), 1, anon_sym_LBRACE, - STATE(2173), 1, - sym_block, - [128617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, + STATE(1523), 1, + sym__interface_body, + STATE(4229), 2, + sym_line_comment, + sym_block_comment, + [146645] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6576), 1, anon_sym_LBRACE, - STATE(540), 1, - sym_block, - [128627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7572), 1, + STATE(1524), 1, + sym__enum_body, + STATE(4230), 2, + sym_line_comment, + sym_block_comment, + [146662] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7282), 1, anon_sym_LBRACE, - STATE(1025), 1, + STATE(1264), 1, sym_type_initializer_body, - [128637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, + STATE(4231), 2, + sym_line_comment, + sym_block_comment, + [146679] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6424), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(1525), 1, + sym__struct_body, + STATE(4232), 2, + sym_line_comment, + sym_block_comment, + [146696] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6670), 1, + sym_identifier, + STATE(2830), 1, + sym_reference_expression, + STATE(4233), 2, + sym_line_comment, + sym_block_comment, + [146713] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5124), 1, + anon_sym_LBRACE, + STATE(1062), 1, sym_block, - [128647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, + STATE(4234), 2, + sym_line_comment, + sym_block_comment, + [146730] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, + anon_sym_LBRACE, + STATE(1264), 1, + sym_type_initializer_body, + STATE(4235), 2, + sym_line_comment, + sym_block_comment, + [146747] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, + anon_sym_LBRACE, + STATE(1057), 1, + sym_type_initializer_body, + STATE(4236), 2, + sym_line_comment, + sym_block_comment, + [146764] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_LBRACE, - STATE(1915), 1, + STATE(1150), 1, sym_block, - [128657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, + STATE(4237), 2, + sym_line_comment, + sym_block_comment, + [146781] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6438), 1, anon_sym_LBRACE, - STATE(1025), 1, + STATE(2404), 1, sym_type_initializer_body, - [128667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7574), 1, + STATE(4238), 2, + sym_line_comment, + sym_block_comment, + [146798] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4428), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3421), 1, - sym__struct_body, - [128677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN, - STATE(2121), 1, - sym_argument_list, - [128687] = 3, + STATE(4239), 2, + sym_line_comment, + sym_block_comment, + [146813] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7328), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7330), 1, + sym___double_quote, + STATE(4240), 2, + sym_line_comment, + sym_block_comment, + [146830] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5528), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(4241), 2, + sym_line_comment, + sym_block_comment, + [146845] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7572), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7332), 2, anon_sym_LBRACE, - STATE(1025), 1, - sym_type_initializer_body, - [128697] = 3, + anon_sym_COMMA, + STATE(4242), 2, + sym_line_comment, + sym_block_comment, + [146860] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4432), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1025), 1, + STATE(4243), 2, + sym_line_comment, + sym_block_comment, + [146875] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7334), 1, + anon_sym_LBRACE, + STATE(2316), 1, sym_type_initializer_body, - [128707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - sym_identifier, - STATE(3720), 1, - sym_generic_parameter, - [128717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, + STATE(4244), 2, + sym_line_comment, + sym_block_comment, + [146892] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7336), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7338), 1, + sym___single_quote, + STATE(4245), 2, + sym_line_comment, + sym_block_comment, + [146909] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_LBRACE, - STATE(1741), 1, + STATE(1242), 1, sym_block, - [128727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7092), 2, - anon_sym_COMMA, - anon_sym_in, - [128735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, + STATE(4246), 2, + sym_line_comment, + sym_block_comment, + [146926] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(994), 1, + STATE(2157), 1, sym_block, - [128745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7576), 1, - anon_sym_COMMA, - ACTIONS(7578), 1, - anon_sym_RPAREN, - [128755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, + STATE(4247), 2, + sym_line_comment, + sym_block_comment, + [146943] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(1045), 1, + STATE(2252), 1, sym_block, - [128765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7157), 1, + STATE(4248), 2, + sym_line_comment, + sym_block_comment, + [146960] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7048), 1, anon_sym_LBRACE, - STATE(1047), 1, + STATE(1241), 1, sym__content_block, - [128775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1837), 1, - anon_sym_RBRACE, - STATE(3746), 1, - sym___rcbr, - [128785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, + STATE(4249), 2, + sym_line_comment, + sym_block_comment, + [146977] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, anon_sym_LBRACE, - STATE(1092), 1, + STATE(1754), 1, sym_block, - [128795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, + STATE(4250), 2, + sym_line_comment, + sym_block_comment, + [146994] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5124), 1, anon_sym_LBRACE, - STATE(1869), 1, + STATE(1034), 1, sym_block, - [128805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, + STATE(4251), 2, + sym_line_comment, + sym_block_comment, + [147011] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7340), 1, + anon_sym_LPAREN, + STATE(1336), 1, + sym_special_argument_list, + STATE(4252), 2, + sym_line_comment, + sym_block_comment, + [147028] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6578), 1, + sym_identifier, + STATE(1411), 1, + sym_reference_expression, + STATE(4253), 2, + sym_line_comment, + sym_block_comment, + [147045] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7342), 1, anon_sym_LBRACE, - STATE(1866), 1, + STATE(3454), 1, + sym__struct_body, + STATE(4254), 2, + sym_line_comment, + sym_block_comment, + [147062] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7326), 1, + anon_sym_LBRACE, + STATE(1057), 1, + sym_type_initializer_body, + STATE(4255), 2, + sym_line_comment, + sym_block_comment, + [147079] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1767), 1, + anon_sym_RBRACE, + STATE(3691), 1, + sym___rcbr, + STATE(4256), 2, + sym_line_comment, + sym_block_comment, + [147096] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4713), 1, + anon_sym_LBRACE, + STATE(1597), 1, + sym_block, + STATE(4257), 2, + sym_line_comment, + sym_block_comment, + [147113] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, + anon_sym_LBRACE, + STATE(1750), 1, sym_block, - [128815] = 3, + STATE(4258), 2, + sym_line_comment, + sym_block_comment, + [147130] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7580), 1, - sym_identifier, - STATE(1241), 1, - sym_type_reference_expression, - [128825] = 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5596), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + STATE(4259), 2, + sym_line_comment, + sym_block_comment, + [147145] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7582), 1, - anon_sym_LPAREN, - STATE(1104), 1, - sym_argument_list, - [128835] = 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6924), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(4260), 2, + sym_line_comment, + sym_block_comment, + [147160] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(7584), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7344), 1, anon_sym_LPAREN, - STATE(1831), 1, + STATE(484), 1, sym_argument_list, - [128845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, + STATE(4261), 2, + sym_line_comment, + sym_block_comment, + [147177] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(1826), 1, + STATE(2158), 1, sym_block, - [128855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7586), 1, + STATE(4262), 2, + sym_line_comment, + sym_block_comment, + [147194] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7346), 1, sym_identifier, - STATE(1764), 1, + STATE(2364), 1, sym_type_reference_expression, - [128865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7135), 1, - anon_sym_LBRACE, - STATE(1814), 1, - sym__content_block, - [128875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, + STATE(4263), 2, + sym_line_comment, + sym_block_comment, + [147211] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_LBRACE, - STATE(1112), 1, + STATE(1216), 1, sym_block, - [128885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, + STATE(4264), 2, + sym_line_comment, + sym_block_comment, + [147228] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7348), 1, + anon_sym_LPAREN, + STATE(1211), 1, + sym_argument_list, + STATE(4265), 2, + sym_line_comment, + sym_block_comment, + [147245] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7350), 1, + sym_identifier, + STATE(1447), 1, + sym_type_reference_expression, + STATE(4266), 2, + sym_line_comment, + sym_block_comment, + [147262] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7352), 1, + sym_identifier, + STATE(2014), 1, + sym_type_reference_expression, + STATE(4267), 2, + sym_line_comment, + sym_block_comment, + [147279] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6886), 1, + anon_sym_RBRACE, + ACTIONS(6888), 1, + aux_sym_format_specifier_token1, + STATE(4268), 2, + sym_line_comment, + sym_block_comment, + [147296] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, anon_sym_LBRACE, - STATE(1824), 1, + STATE(1884), 1, sym_block, - [128895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6635), 1, - anon_sym_LBRACE, - STATE(1601), 1, - sym__struct_body, - [128905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6705), 1, - anon_sym_LBRACE, - STATE(1605), 1, - sym__enum_body, - [128915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, + STATE(4269), 2, + sym_line_comment, + sym_block_comment, + [147313] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7354), 1, + anon_sym_LPAREN, + STATE(1732), 1, + sym_argument_list, + STATE(4270), 2, + sym_line_comment, + sym_block_comment, + [147330] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, anon_sym_LBRACE, - STATE(1737), 1, + STATE(1728), 1, sym_block, - [128925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6637), 1, - anon_sym_LBRACE, - STATE(1511), 1, - sym__interface_body, - [128935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_LBRACE, - STATE(1840), 1, - sym_type_initializer_body, - [128945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(1840), 1, - sym_type_initializer_body, - [128955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7590), 1, + STATE(4271), 2, + sym_line_comment, + sym_block_comment, + [147347] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7356), 1, anon_sym_LBRACE, - STATE(1201), 1, + STATE(2470), 1, sym__struct_body, - [128965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, - anon_sym_LBRACE, - STATE(1840), 1, - sym_type_initializer_body, - [128975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, - anon_sym_LBRACE, - STATE(1832), 1, - sym_block, - [128985] = 3, + STATE(4272), 2, + sym_line_comment, + sym_block_comment, + [147364] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7358), 1, + sym_identifier, + STATE(1404), 1, + sym_type_reference_expression, + STATE(4273), 2, + sym_line_comment, + sym_block_comment, + [147381] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(7592), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4717), 1, + anon_sym_LPAREN, + STATE(2160), 1, + sym_argument_list, + STATE(4274), 2, + sym_line_comment, + sym_block_comment, + [147398] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7360), 1, anon_sym_COMMA, - ACTIONS(7594), 1, + ACTIONS(7362), 1, anon_sym_RPAREN, - [128995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7588), 1, + STATE(4275), 2, + sym_line_comment, + sym_block_comment, + [147415] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(1840), 1, + STATE(1264), 1, sym_type_initializer_body, - [129005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, - anon_sym_LBRACE, - STATE(1853), 1, - sym_block, - [129015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7596), 1, - anon_sym_LPAREN, - STATE(1857), 1, - sym_special_argument_list, - [129025] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6691), 1, + STATE(4276), 2, + sym_line_comment, + sym_block_comment, + [147432] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6556), 1, + sym_identifier, + STATE(3686), 1, + sym_import_name, + STATE(4277), 2, + sym_line_comment, + sym_block_comment, + [147449] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6622), 1, sym_identifier, - STATE(1858), 1, + STATE(3554), 1, sym_reference_expression, - [129035] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7598), 1, - anon_sym_LBRACE, - STATE(2346), 1, - sym__struct_body, - [129045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, + STATE(4278), 2, + sym_line_comment, + sym_block_comment, + [147466] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_LBRACE, - STATE(2088), 1, + STATE(1196), 1, sym_block, - [129055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6635), 1, + STATE(4279), 2, + sym_line_comment, + sym_block_comment, + [147483] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, anon_sym_LBRACE, - STATE(1599), 1, - sym__struct_body, - [129065] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6705), 1, + STATE(1057), 1, + sym_type_initializer_body, + STATE(4280), 2, + sym_line_comment, + sym_block_comment, + [147500] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5124), 1, anon_sym_LBRACE, - STATE(1598), 1, - sym__enum_body, - [129075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, + STATE(1004), 1, + sym_block, + STATE(4281), 2, + sym_line_comment, + sym_block_comment, + [147517] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6556), 1, + sym_identifier, + STATE(3514), 1, + sym_import_name, + STATE(4282), 2, + sym_line_comment, + sym_block_comment, + [147534] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(2151), 1, + STATE(2165), 1, sym_block, - [129085] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6637), 1, + STATE(4283), 2, + sym_line_comment, + sym_block_comment, + [147551] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7364), 1, + anon_sym_COMMA, + ACTIONS(7366), 1, + anon_sym_RPAREN, + STATE(4284), 2, + sym_line_comment, + sym_block_comment, + [147568] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6880), 1, anon_sym_LBRACE, - STATE(1597), 1, - sym__interface_body, - [129095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7600), 1, - anon_sym_LPAREN, - STATE(883), 1, - sym_special_argument_list, - [129105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, + STATE(3755), 1, + sym__content_block, + STATE(4285), 2, + sym_line_comment, + sym_block_comment, + [147585] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(1122), 1, + STATE(2284), 1, sym_block, - [129115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6637), 1, - anon_sym_LBRACE, - STATE(1571), 1, - sym__interface_body, - [129125] = 3, - ACTIONS(3), 1, - sym_comment, + STATE(4286), 2, + sym_line_comment, + sym_block_comment, + [147602] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(905), 1, + STATE(2286), 1, sym_block, - [129135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6635), 1, + STATE(4287), 2, + sym_line_comment, + sym_block_comment, + [147619] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5124), 1, anon_sym_LBRACE, - STATE(1530), 1, - sym__struct_body, - [129145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7602), 1, - anon_sym_COMMA, - ACTIONS(7604), 1, - anon_sym_RPAREN, - [129155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6798), 1, - sym_identifier, - STATE(2056), 1, - sym_reference_expression, - [129165] = 3, + STATE(1078), 1, + sym_block, + STATE(4288), 2, + sym_line_comment, + sym_block_comment, + [147636] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7606), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6845), 2, anon_sym_COMMA, - ACTIONS(7608), 1, - anon_sym_RPAREN, - [129175] = 3, + anon_sym_PIPE, + STATE(4289), 2, + sym_line_comment, + sym_block_comment, + [147651] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7368), 1, anon_sym_LBRACE, - STATE(2129), 1, + STATE(2191), 1, sym_block, - [129185] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, + STATE(4290), 2, + sym_line_comment, + sym_block_comment, + [147668] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, anon_sym_LBRACE, - STATE(2128), 1, + STATE(3756), 1, sym_block, - [129195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7610), 1, + STATE(4291), 2, + sym_line_comment, + sym_block_comment, + [147685] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7368), 1, + anon_sym_LBRACE, + STATE(2190), 1, + sym_block, + STATE(4292), 2, + sym_line_comment, + sym_block_comment, + [147702] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7370), 1, sym_identifier, - STATE(2560), 1, + STATE(2066), 1, sym_type_reference_expression, - [129205] = 3, + STATE(4293), 2, + sym_line_comment, + sym_block_comment, + [147719] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7372), 1, + anon_sym_LPAREN, + STATE(2289), 1, + sym_argument_list, + STATE(4294), 2, + sym_line_comment, + sym_block_comment, + [147736] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6851), 1, + anon_sym_LBRACE, + STATE(2105), 1, + sym__content_block, + STATE(4295), 2, + sym_line_comment, + sym_block_comment, + [147753] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7374), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4296), 2, + sym_line_comment, + sym_block_comment, + [147768] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7073), 1, + anon_sym_LBRACE, + STATE(1082), 1, + sym__content_block, + STATE(4297), 2, + sym_line_comment, + sym_block_comment, + [147785] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, anon_sym_LBRACE, - STATE(1721), 1, + STATE(3759), 1, sym_block, - [129215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7612), 1, - anon_sym_LPAREN, - STATE(2063), 1, - sym_special_argument_list, - [129225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7614), 1, - anon_sym_RBRACE, - ACTIONS(7616), 1, - aux_sym_format_specifier_token1, - [129235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, + STATE(4298), 2, + sym_line_comment, + sym_block_comment, + [147802] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6876), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4299), 2, + sym_line_comment, + sym_block_comment, + [147817] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7376), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4300), 2, + sym_line_comment, + sym_block_comment, + [147832] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(2116), 1, + STATE(2293), 1, sym_block, - [129245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, + STATE(4301), 2, + sym_line_comment, + sym_block_comment, + [147849] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(1720), 1, + STATE(2447), 1, sym_block, - [129255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, + STATE(4302), 2, + sym_line_comment, + sym_block_comment, + [147866] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_LBRACE, - STATE(1335), 1, + STATE(1192), 1, sym_block, - [129265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7413), 1, + STATE(4303), 2, + sym_line_comment, + sym_block_comment, + [147883] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6787), 1, anon_sym_LBRACE, - STATE(2901), 1, + STATE(2302), 1, sym__content_block, - [129275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7618), 1, + STATE(4304), 2, + sym_line_comment, + sym_block_comment, + [147900] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, + anon_sym_LBRACE, + STATE(2305), 1, + sym_block, + STATE(4305), 2, + sym_line_comment, + sym_block_comment, + [147917] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6880), 1, + anon_sym_LBRACE, + STATE(1749), 1, + sym__content_block, + STATE(4306), 2, + sym_line_comment, + sym_block_comment, + [147934] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, + anon_sym_LBRACE, + STATE(1751), 1, + sym_block, + STATE(4307), 2, + sym_line_comment, + sym_block_comment, + [147951] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, + anon_sym_LBRACE, + STATE(1664), 1, + sym_block, + STATE(4308), 2, + sym_line_comment, + sym_block_comment, + [147968] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, anon_sym_LBRACE, - STATE(2132), 1, + STATE(1752), 1, sym_type_initializer_body, - [129285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7620), 1, - anon_sym_RBRACE, - ACTIONS(7622), 1, - aux_sym_format_specifier_token1, - [129295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7624), 1, - sym_identifier, - STATE(1445), 1, - sym_type_reference_expression, - [129305] = 3, + STATE(4309), 2, + sym_line_comment, + sym_block_comment, + [147985] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, + anon_sym_LBRACE, + STATE(2180), 1, + sym_block, + STATE(4310), 2, + sym_line_comment, + sym_block_comment, + [148002] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(5146), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6993), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4311), 2, + sym_line_comment, + sym_block_comment, + [148017] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(2904), 1, + STATE(2093), 1, sym_block, - [129315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5146), 1, + STATE(4312), 2, + sym_line_comment, + sym_block_comment, + [148034] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, anon_sym_LBRACE, - STATE(2737), 1, - sym_block, - [129325] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, + STATE(2316), 1, + sym_type_initializer_body, + STATE(4313), 2, + sym_line_comment, + sym_block_comment, + [148051] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7334), 1, anon_sym_LBRACE, - STATE(2071), 1, + STATE(2316), 1, sym_type_initializer_body, - [129335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, + STATE(4314), 2, + sym_line_comment, + sym_block_comment, + [148068] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(465), 1, + STATE(1948), 1, sym_block, - [129345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7522), 1, + STATE(4315), 2, + sym_line_comment, + sym_block_comment, + [148085] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6632), 1, + sym_identifier, + STATE(2070), 1, + sym_reference_expression, + STATE(4316), 2, + sym_line_comment, + sym_block_comment, + [148102] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, anon_sym_LBRACE, - STATE(2071), 1, + STATE(1965), 1, sym_type_initializer_body, - [129355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7626), 1, + STATE(4317), 2, + sym_line_comment, + sym_block_comment, + [148119] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5144), 1, + anon_sym_LBRACE, + STATE(760), 1, + sym_block, + STATE(4318), 2, + sym_line_comment, + sym_block_comment, + [148136] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7378), 1, anon_sym_LBRACE, - STATE(2509), 1, + STATE(2045), 1, sym__struct_body, - [129365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, + STATE(4319), 2, + sym_line_comment, + sym_block_comment, + [148153] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(2071), 1, + STATE(2316), 1, sym_type_initializer_body, - [129375] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7628), 1, - anon_sym_LPAREN, - STATE(1717), 1, - sym_argument_list, - [129385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, - anon_sym_LBRACE, - STATE(2085), 1, - sym_block, - [129395] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7389), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [129403] = 2, + STATE(4320), 2, + sym_line_comment, + sym_block_comment, + [148170] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7630), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7380), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [129411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, + anon_sym_RBRACK, + STATE(4321), 2, + sym_line_comment, + sym_block_comment, + [148185] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(2120), 1, + STATE(2311), 1, sym_block, - [129421] = 2, + STATE(4322), 2, + sym_line_comment, + sym_block_comment, + [148202] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(6948), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7382), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [129429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, + anon_sym_RBRACK, + STATE(4323), 2, + sym_line_comment, + sym_block_comment, + [148217] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6491), 1, + sym_identifier, + STATE(4321), 1, + sym_reference_expression, + STATE(4324), 2, + sym_line_comment, + sym_block_comment, + [148234] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7384), 1, anon_sym_LBRACE, - STATE(2132), 1, + STATE(1965), 1, sym_type_initializer_body, - [129439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7393), 1, + STATE(4325), 2, + sym_line_comment, + sym_block_comment, + [148251] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5130), 1, + anon_sym_LBRACE, + STATE(2204), 1, + sym_block, + STATE(4326), 2, + sym_line_comment, + sym_block_comment, + [148268] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7386), 1, anon_sym_RBRACE, - ACTIONS(7395), 1, + ACTIONS(7388), 1, aux_sym_format_specifier_token1, - [129449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7632), 1, - anon_sym_LBRACE, - STATE(1367), 1, - sym__struct_body, - [129459] = 2, + STATE(4327), 2, + sym_line_comment, + sym_block_comment, + [148285] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(5556), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7390), 2, anon_sym_COMMA, - anon_sym_COLON_EQ, - [129467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7634), 1, - anon_sym_LBRACE, - STATE(2908), 1, - sym_type_initializer_body, - [129477] = 2, + anon_sym_RPAREN, + STATE(4328), 2, + sym_line_comment, + sym_block_comment, + [148300] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(7636), 2, - anon_sym_LBRACE, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7392), 1, anon_sym_COMMA, - [129485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5478), 2, + ACTIONS(7394), 1, + anon_sym_RPAREN, + STATE(4329), 2, + sym_line_comment, + sym_block_comment, + [148317] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7396), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [129493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5146), 1, + STATE(1752), 1, + sym_type_initializer_body, + STATE(4330), 2, + sym_line_comment, + sym_block_comment, + [148334] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7398), 1, anon_sym_LBRACE, - STATE(2913), 1, - sym_block, - [129503] = 3, + STATE(1334), 1, + sym__struct_body, + STATE(4331), 2, + sym_line_comment, + sym_block_comment, + [148351] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(7638), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7400), 1, anon_sym_LPAREN, - STATE(468), 1, - sym_argument_list, - [129513] = 3, + STATE(2209), 1, + sym_special_argument_list, + STATE(4332), 2, + sym_line_comment, + sym_block_comment, + [148368] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(7640), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7402), 1, anon_sym_LPAREN, - STATE(2048), 1, + STATE(2083), 1, sym_special_argument_list, - [129523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, - anon_sym_LBRACE, - STATE(1182), 1, - sym_block, - [129533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6776), 1, - sym_identifier, - STATE(2035), 1, - sym_reference_expression, - [129543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4709), 1, - anon_sym_LBRACE, - STATE(1520), 1, - sym_block, - [129553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7618), 1, - anon_sym_LBRACE, - STATE(2132), 1, - sym_type_initializer_body, - [129563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, + STATE(4333), 2, + sym_line_comment, + sym_block_comment, + [148385] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(2132), 1, + STATE(1965), 1, sym_type_initializer_body, - [129573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7642), 1, - sym_identifier, - STATE(1522), 1, - sym_label_reference, - [129583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, - anon_sym_LBRACE, - STATE(1262), 1, - sym_block, - [129593] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, - anon_sym_LBRACE, - STATE(1714), 1, - sym_block, - [129603] = 3, + STATE(4334), 2, + sym_line_comment, + sym_block_comment, + [148402] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, - anon_sym_LBRACE, - STATE(1881), 1, - sym_block, - [129613] = 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2973), 1, + anon_sym_COMMA, + ACTIONS(7404), 1, + anon_sym_RPAREN, + STATE(4335), 2, + sym_line_comment, + sym_block_comment, + [148419] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7406), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4336), 2, + sym_line_comment, + sym_block_comment, + [148434] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(2033), 1, + STATE(2386), 1, sym_block, - [129623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6964), 1, - anon_sym_LBRACE, - STATE(2031), 1, - sym__content_block, - [129633] = 2, + STATE(4337), 2, + sym_line_comment, + sym_block_comment, + [148451] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(6925), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7408), 2, anon_sym_COMMA, anon_sym_RPAREN, - [129641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, + STATE(4338), 2, + sym_line_comment, + sym_block_comment, + [148466] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(2011), 1, + STATE(2385), 1, sym_block, - [129651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7644), 2, - anon_sym_COMMA, + STATE(4339), 2, + sym_line_comment, + sym_block_comment, + [148483] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7410), 1, + anon_sym_RBRACE, + ACTIONS(7412), 1, + aux_sym_format_specifier_token1, + STATE(4340), 2, + sym_line_comment, + sym_block_comment, + [148500] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6641), 2, anon_sym_RPAREN, - [129659] = 3, + sym_identifier, + STATE(4341), 2, + sym_line_comment, + sym_block_comment, + [148515] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6424), 1, + anon_sym_LBRACE, + STATE(1470), 1, + sym__struct_body, + STATE(4342), 2, + sym_line_comment, + sym_block_comment, + [148532] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5124), 1, + anon_sym_LBRACE, + STATE(1115), 1, + sym_block, + STATE(4343), 2, + sym_line_comment, + sym_block_comment, + [148549] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7414), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(1123), 1, sym_argument_list, - [129669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, + STATE(4344), 2, + sym_line_comment, + sym_block_comment, + [148566] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6610), 1, sym_identifier, - STATE(3846), 1, - sym_generic_parameter, - [129679] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7646), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7648), 1, + STATE(2211), 1, + sym_reference_expression, + STATE(4345), 2, + sym_line_comment, + sym_block_comment, + [148583] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7416), 1, sym_identifier, - STATE(1409), 1, + STATE(3440), 1, sym_type_reference_expression, - [129697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7650), 1, + STATE(4346), 2, + sym_line_comment, + sym_block_comment, + [148600] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7418), 1, sym_identifier, - STATE(2339), 1, + STATE(1771), 1, sym_type_reference_expression, - [129707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3394), 1, - anon_sym_COMMA, - ACTIONS(7652), 1, - anon_sym_RPAREN, - [129717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7654), 1, - anon_sym_COMMA, - ACTIONS(7656), 1, - anon_sym_RPAREN, - [129727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7658), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, - anon_sym_LBRACE, - STATE(2037), 1, - sym_block, - [129745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6635), 1, - anon_sym_LBRACE, - STATE(1567), 1, - sym__struct_body, - [129755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, + STATE(4347), 2, + sym_line_comment, + sym_block_comment, + [148617] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4976), 1, + sym_identifier, + ACTIONS(7420), 1, + anon_sym_volatile, + STATE(4348), 2, + sym_line_comment, + sym_block_comment, + [148634] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(1949), 1, + STATE(573), 1, sym_block, - [129765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, + STATE(4349), 2, + sym_line_comment, + sym_block_comment, + [148651] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(1211), 1, + STATE(574), 1, sym_block, - [129775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, + STATE(4350), 2, + sym_line_comment, + sym_block_comment, + [148668] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5004), 1, + anon_sym_LPAREN, + STATE(2376), 1, + sym_argument_list, + STATE(4351), 2, + sym_line_comment, + sym_block_comment, + [148685] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(1189), 1, + STATE(2914), 1, sym_block, - [129785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7660), 1, - sym_identifier, - STATE(2136), 1, - sym_type_reference_expression, - [129795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6637), 1, + STATE(4352), 2, + sym_line_comment, + sym_block_comment, + [148702] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4902), 1, + anon_sym_COLON, + ACTIONS(7422), 1, + anon_sym_mut, + STATE(4353), 2, + sym_line_comment, + sym_block_comment, + [148719] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7424), 1, anon_sym_LBRACE, - STATE(1565), 1, - sym__interface_body, - [129805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6705), 1, + STATE(2916), 1, + sym_type_initializer_body, + STATE(4354), 2, + sym_line_comment, + sym_block_comment, + [148736] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(1566), 1, - sym__enum_body, - [129815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7662), 1, - anon_sym_LPAREN, - STATE(1212), 1, - sym_argument_list, - [129825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7664), 1, - anon_sym_COMMA, - ACTIONS(7666), 1, + STATE(1752), 1, + sym_type_initializer_body, + STATE(4355), 2, + sym_line_comment, + sym_block_comment, + [148753] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6687), 2, anon_sym_RPAREN, - [129835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, + sym_identifier, + STATE(4356), 2, + sym_line_comment, + sym_block_comment, + [148768] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, anon_sym_LBRACE, - STATE(1263), 1, + STATE(1787), 1, sym_block, - [129845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7261), 1, + STATE(4357), 2, + sym_line_comment, + sym_block_comment, + [148785] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, anon_sym_LBRACE, - STATE(1166), 1, - sym__content_block, - [129855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, + STATE(1914), 1, + sym_block, + STATE(4358), 2, + sym_line_comment, + sym_block_comment, + [148802] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(1214), 1, + STATE(2363), 1, sym_block, - [129865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, + STATE(4359), 2, + sym_line_comment, + sym_block_comment, + [148819] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(1751), 1, - sym_type_initializer_body, - [129875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, + STATE(479), 1, + sym_block, + STATE(4360), 2, + sym_line_comment, + sym_block_comment, + [148836] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1711), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3801), 1, - sym__content_block, - [129885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, + STATE(4361), 2, + sym_line_comment, + sym_block_comment, + [148851] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(1153), 1, + STATE(1971), 1, sym_block, - [129895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, + STATE(4362), 2, + sym_line_comment, + sym_block_comment, + [148868] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5124), 1, + anon_sym_LBRACE, + STATE(1126), 1, + sym_block, + STATE(4363), 2, + sym_line_comment, + sym_block_comment, + [148885] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5124), 1, + anon_sym_LBRACE, + STATE(1125), 1, + sym_block, + STATE(4364), 2, + sym_line_comment, + sym_block_comment, + [148902] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7396), 1, anon_sym_LBRACE, - STATE(1218), 1, + STATE(1752), 1, sym_type_initializer_body, - [129905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, + STATE(4365), 2, + sym_line_comment, + sym_block_comment, + [148919] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6491), 1, + sym_identifier, + STATE(2448), 1, + sym_reference_expression, + STATE(4366), 2, + sym_line_comment, + sym_block_comment, + [148936] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, anon_sym_LBRACE, - STATE(3802), 1, + STATE(2120), 1, sym_block, - [129915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, + STATE(4367), 2, + sym_line_comment, + sym_block_comment, + [148953] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5126), 1, anon_sym_LBRACE, - STATE(3803), 1, + STATE(1197), 1, sym_block, - [129925] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7011), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [129933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7668), 1, + STATE(4368), 2, + sym_line_comment, + sym_block_comment, + [148970] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7384), 1, anon_sym_LBRACE, - STATE(1218), 1, + STATE(1965), 1, sym_type_initializer_body, - [129943] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, - anon_sym_LBRACE, - STATE(1704), 1, - sym__content_block, - [129953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7670), 1, + STATE(4369), 2, + sym_line_comment, + sym_block_comment, + [148987] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7426), 1, anon_sym_LBRACE, - STATE(2003), 1, + STATE(2521), 1, sym__struct_body, - [129963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, + STATE(4370), 2, + sym_line_comment, + sym_block_comment, + [149004] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7310), 1, anon_sym_LBRACE, - STATE(1218), 1, + STATE(1999), 1, sym_type_initializer_body, - [129973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6889), 1, - sym_identifier, - STATE(2496), 1, - sym_reference_expression, - [129983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, + STATE(4371), 2, + sym_line_comment, + sym_block_comment, + [149021] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, anon_sym_LBRACE, - STATE(1989), 1, + STATE(1997), 1, sym_block, - [129993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7668), 1, + STATE(4372), 2, + sym_line_comment, + sym_block_comment, + [149038] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6424), 1, + anon_sym_LBRACE, + STATE(1566), 1, + sym__struct_body, + STATE(4373), 2, + sym_line_comment, + sym_block_comment, + [149055] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7428), 1, + anon_sym_COMMA, + ACTIONS(7430), 1, + anon_sym_RPAREN, + STATE(4374), 2, + sym_line_comment, + sym_block_comment, + [149072] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7432), 1, + anon_sym_COMMA, + ACTIONS(7434), 1, + anon_sym_RPAREN, + STATE(4375), 2, + sym_line_comment, + sym_block_comment, + [149089] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, anon_sym_LBRACE, - STATE(1218), 1, + STATE(1999), 1, sym_type_initializer_body, - [130003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6852), 1, - sym_identifier, - STATE(1739), 1, - sym_reference_expression, - [130013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, + STATE(4376), 2, + sym_line_comment, + sym_block_comment, + [149106] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(1187), 1, + STATE(2815), 1, sym_block, - [130023] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, + STATE(4377), 2, + sym_line_comment, + sym_block_comment, + [149123] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 1, + anon_sym_LPAREN, + STATE(2156), 1, + sym_argument_list, + STATE(4378), 2, + sym_line_comment, + sym_block_comment, + [149140] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, anon_sym_LBRACE, - STATE(1703), 1, + STATE(2151), 1, sym_block, - [130033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7672), 1, - anon_sym_LPAREN, - STATE(1771), 1, - sym_special_argument_list, - [130043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7674), 1, - anon_sym_LPAREN, - STATE(1191), 1, - sym_special_argument_list, - [130053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, + STATE(4379), 2, + sym_line_comment, + sym_block_comment, + [149157] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, anon_sym_LBRACE, - STATE(1761), 1, + STATE(1881), 1, sym_block, - [130063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, + STATE(4380), 2, + sym_line_comment, + sym_block_comment, + [149174] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(3832), 1, + STATE(2920), 1, sym_block, - [130073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7676), 1, - sym_identifier, - STATE(3734), 1, - sym_label_reference, - [130083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6877), 1, + STATE(4381), 2, + sym_line_comment, + sym_block_comment, + [149191] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, + anon_sym_LBRACE, + STATE(2437), 1, + sym_block, + STATE(4382), 2, + sym_line_comment, + sym_block_comment, + [149208] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7436), 1, + anon_sym_LPAREN, + STATE(2443), 1, + sym_special_argument_list, + STATE(4383), 2, + sym_line_comment, + sym_block_comment, + [149225] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, + anon_sym_LBRACE, + STATE(1880), 1, + sym_block, + STATE(4384), 2, + sym_line_comment, + sym_block_comment, + [149242] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6475), 1, sym_identifier, - STATE(1202), 1, + STATE(1845), 1, sym_reference_expression, - [130093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7678), 1, + STATE(4385), 2, + sym_line_comment, + sym_block_comment, + [149259] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7438), 1, anon_sym_COMMA, - ACTIONS(7680), 1, + ACTIONS(7440), 1, anon_sym_RPAREN, - [130103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, + STATE(4386), 2, + sym_line_comment, + sym_block_comment, + [149276] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6869), 1, anon_sym_LBRACE, - STATE(1653), 1, - sym_block, - [130113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7682), 1, + STATE(2368), 1, + sym__content_block, + STATE(4387), 2, + sym_line_comment, + sym_block_comment, + [149293] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7442), 1, + anon_sym_COMMA, + ACTIONS(7444), 1, + anon_sym_RPAREN, + STATE(4388), 2, + sym_line_comment, + sym_block_comment, + [149310] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6576), 1, anon_sym_LBRACE, - STATE(1751), 1, - sym_type_initializer_body, - [130123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6635), 1, + STATE(1518), 1, + sym__enum_body, + STATE(4389), 2, + sym_line_comment, + sym_block_comment, + [149327] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6915), 1, anon_sym_LBRACE, - STATE(1493), 1, - sym__struct_body, - [130133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7684), 1, - anon_sym_LPAREN, - STATE(2514), 1, - sym_special_argument_list, - [130143] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6875), 2, - anon_sym_RBRACE, + STATE(2921), 1, + sym__content_block, + STATE(4390), 2, + sym_line_comment, + sym_block_comment, + [149344] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7446), 1, sym_identifier, - [130151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, + STATE(1205), 1, + sym_type_reference_expression, + STATE(4391), 2, + sym_line_comment, + sym_block_comment, + [149361] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7448), 1, + anon_sym_LPAREN, + STATE(1876), 1, + sym_argument_list, + STATE(4392), 2, + sym_line_comment, + sym_block_comment, + [149378] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, anon_sym_LBRACE, - STATE(1751), 1, + STATE(2164), 1, + sym_block, + STATE(4393), 2, + sym_line_comment, + sym_block_comment, + [149395] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, + anon_sym_LBRACE, + STATE(1999), 1, sym_type_initializer_body, - [130161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6695), 1, - sym_identifier, - STATE(3490), 1, - sym_import_name, - [130171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, + STATE(4394), 2, + sym_line_comment, + sym_block_comment, + [149412] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(2530), 1, + STATE(2373), 1, sym_block, - [130181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, + STATE(4395), 2, + sym_line_comment, + sym_block_comment, + [149429] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(1750), 1, + STATE(2337), 1, sym_block, - [130191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, + STATE(4396), 2, + sym_line_comment, + sym_block_comment, + [149446] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7450), 1, + anon_sym_LPAREN, + STATE(1725), 1, + sym_special_argument_list, + STATE(4397), 2, + sym_line_comment, + sym_block_comment, + [149463] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, anon_sym_LBRACE, - STATE(2531), 1, + STATE(1871), 1, sym_block, - [130201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7686), 1, + STATE(4398), 2, + sym_line_comment, + sym_block_comment, + [149480] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7316), 1, anon_sym_LBRACE, - STATE(2602), 1, + STATE(1374), 1, sym_type_initializer_body, - [130211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7454), 1, - sym_identifier, - STATE(4287), 1, - sym_reference_expression, - [130221] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6852), 1, - sym_identifier, - STATE(3589), 1, - sym_reference_expression, - [130231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7688), 1, + STATE(4399), 2, + sym_line_comment, + sym_block_comment, + [149497] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7368), 1, anon_sym_LBRACE, - STATE(861), 1, - sym__struct_body, - [130241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, + STATE(2192), 1, + sym_block, + STATE(4400), 2, + sym_line_comment, + sym_block_comment, + [149514] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6434), 1, anon_sym_LBRACE, - STATE(2602), 1, - sym_type_initializer_body, - [130251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7690), 1, + STATE(1559), 1, + sym__interface_body, + STATE(4401), 2, + sym_line_comment, + sym_block_comment, + [149531] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7452), 1, anon_sym_LBRACE, - STATE(1091), 1, + STATE(460), 1, sym__struct_body, - [130261] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6695), 1, - sym_identifier, - STATE(3645), 1, - sym_import_name, - [130271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(2602), 1, - sym_type_initializer_body, - [130281] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_LBRACE, - STATE(2602), 1, - sym_type_initializer_body, - [130291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, + STATE(4402), 2, + sym_line_comment, + sym_block_comment, + [149548] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(2387), 1, + STATE(2539), 1, sym_block, - [130301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7109), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - [130309] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7692), 2, - anon_sym_COMMA, - anon_sym_in, - [130317] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(1751), 1, - sym_type_initializer_body, - [130327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, + STATE(4403), 2, + sym_line_comment, + sym_block_comment, + [149565] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6680), 1, + sym_identifier, + STATE(2150), 1, + sym_reference_expression, + STATE(4404), 2, + sym_line_comment, + sym_block_comment, + [149582] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, anon_sym_LBRACE, - STATE(2549), 1, + STATE(2163), 1, sym_block, - [130337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7031), 1, - anon_sym_LBRACE, - STATE(2548), 1, - sym__content_block, - [130347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, + STATE(4405), 2, + sym_line_comment, + sym_block_comment, + [149599] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, anon_sym_LBRACE, - STATE(2604), 1, + STATE(1715), 1, sym_block, - [130357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7694), 1, - anon_sym_LPAREN, - STATE(2562), 1, - sym_argument_list, - [130367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7696), 1, - sym_identifier, - STATE(1044), 1, - sym_type_reference_expression, - [130377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7528), 1, + STATE(4406), 2, + sym_line_comment, + sym_block_comment, + [149616] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, anon_sym_LBRACE, - STATE(920), 1, - sym_type_initializer_body, - [130387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7698), 1, - anon_sym_COMMA, - ACTIONS(7700), 1, - anon_sym_RPAREN, - [130397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, + STATE(1855), 1, + sym_block, + STATE(4407), 2, + sym_line_comment, + sym_block_comment, + [149633] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5124), 1, anon_sym_LBRACE, - STATE(2498), 1, + STATE(1064), 1, sym_block, - [130407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, + STATE(4408), 2, + sym_line_comment, + sym_block_comment, + [149650] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, anon_sym_LBRACE, - STATE(2499), 1, + STATE(1778), 1, sym_block, - [130417] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7702), 1, - anon_sym_RBRACE, - [130424] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7704), 1, + STATE(4409), 2, + sym_line_comment, + sym_block_comment, + [149667] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3231), 1, anon_sym_LBRACE, - [130431] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7706), 1, + STATE(1846), 1, + sym_type_initializer_body, + STATE(4410), 2, + sym_line_comment, + sym_block_comment, + [149684] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7454), 1, anon_sym_LBRACE, - [130438] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7708), 1, - anon_sym_RBRACE, - [130445] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7710), 1, - anon_sym_RBRACE, - [130452] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7712), 1, + STATE(1846), 1, + sym_type_initializer_body, + STATE(4411), 2, + sym_line_comment, + sym_block_comment, + [149701] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7456), 1, + anon_sym_LPAREN, + STATE(2088), 1, + sym_special_argument_list, + STATE(4412), 2, + sym_line_comment, + sym_block_comment, + [149718] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7458), 1, anon_sym_LBRACE, - [130459] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7714), 1, - aux_sym__content_block_token1, - [130466] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7716), 1, + STATE(1231), 1, + sym__struct_body, + STATE(4413), 2, + sym_line_comment, + sym_block_comment, + [149735] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3215), 1, anon_sym_LBRACE, - [130473] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5510), 1, + STATE(1846), 1, + sym_type_initializer_body, + STATE(4414), 2, + sym_line_comment, + sym_block_comment, + [149752] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, anon_sym_LBRACE, - [130480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7718), 1, - anon_sym_RBRACK, - [130487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7720), 1, + STATE(1830), 1, + sym_block, + STATE(4415), 2, + sym_line_comment, + sym_block_comment, + [149769] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, anon_sym_LBRACE, - [130494] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7722), 1, - anon_sym_DOT, - [130501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7724), 1, + STATE(4577), 1, + sym_block, + STATE(4416), 2, + sym_line_comment, + sym_block_comment, + [149786] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7454), 1, + anon_sym_LBRACE, + STATE(1846), 1, + sym_type_initializer_body, + STATE(4417), 2, + sym_line_comment, + sym_block_comment, + [149803] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, + anon_sym_LBRACE, + STATE(1934), 1, + sym_block, + STATE(4418), 2, + sym_line_comment, + sym_block_comment, + [149820] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6622), 1, sym_identifier, - [130508] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7726), 1, + STATE(1768), 1, + sym_reference_expression, + STATE(4419), 2, + sym_line_comment, + sym_block_comment, + [149837] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, + anon_sym_LBRACE, + STATE(3818), 1, + sym_block, + STATE(4420), 2, + sym_line_comment, + sym_block_comment, + [149854] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7460), 1, + anon_sym_LPAREN, + STATE(1945), 1, + sym_special_argument_list, + STATE(4421), 2, + sym_line_comment, + sym_block_comment, + [149871] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7462), 1, sym_identifier, - [130515] = 2, + STATE(3814), 1, + sym_label_reference, + STATE(4422), 2, + sym_line_comment, + sym_block_comment, + [149888] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1907), 1, + anon_sym_RBRACE, + STATE(3718), 1, + sym___rcbr, + STATE(4423), 2, + sym_line_comment, + sym_block_comment, + [149905] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_LBRACE, - [130522] = 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7464), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(4424), 2, + sym_line_comment, + sym_block_comment, + [149920] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(7728), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, anon_sym_LBRACE, - [130529] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7730), 1, - aux_sym__content_block_token1, - [130536] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7732), 1, - anon_sym_DOT, - [130543] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, + STATE(1350), 1, + sym_block, + STATE(4425), 2, + sym_line_comment, + sym_block_comment, + [149937] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(901), 1, anon_sym_RBRACE, - [130550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7734), 1, - sym_identifier, - [130557] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7736), 1, + STATE(4426), 2, + sym_line_comment, + sym_block_comment, + [149951] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7466), 1, sym_identifier, - [130564] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7738), 1, + STATE(4427), 2, + sym_line_comment, + sym_block_comment, + [149965] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7468), 1, anon_sym_RBRACE, - [130571] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7740), 1, + STATE(4428), 2, + sym_line_comment, + sym_block_comment, + [149979] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5468), 1, + anon_sym_LBRACE, + STATE(4429), 2, + sym_line_comment, + sym_block_comment, + [149993] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7470), 1, + anon_sym_LBRACE, + STATE(4430), 2, + sym_line_comment, + sym_block_comment, + [150007] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7472), 1, + aux_sym__content_block_token1, + STATE(4431), 2, + sym_line_comment, + sym_block_comment, + [150021] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7474), 1, + anon_sym_RBRACK, + STATE(4432), 2, + sym_line_comment, + sym_block_comment, + [150035] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7476), 1, anon_sym_RBRACE, - [130578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7742), 1, - sym_int_literal, - [130585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1599), 1, + STATE(4433), 2, + sym_line_comment, + sym_block_comment, + [150049] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1593), 1, anon_sym_RPAREN, - [130592] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6818), 1, - anon_sym_RBRACE, - [130599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7744), 1, + STATE(4434), 2, + sym_line_comment, + sym_block_comment, + [150063] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7478), 1, anon_sym_RBRACK, - [130606] = 2, + STATE(4435), 2, + sym_line_comment, + sym_block_comment, + [150077] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7480), 1, + anon_sym_DOT, + STATE(4436), 2, + sym_line_comment, + sym_block_comment, + [150091] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7746), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7482), 1, anon_sym_RBRACE, - [130613] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7748), 1, + STATE(4437), 2, + sym_line_comment, + sym_block_comment, + [150105] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7484), 1, anon_sym_RBRACE, - [130620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7750), 1, + STATE(4438), 2, + sym_line_comment, + sym_block_comment, + [150119] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7486), 1, anon_sym_RBRACE, - [130627] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7532), 1, - anon_sym_RPAREN, - [130634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7752), 1, + STATE(4439), 2, + sym_line_comment, + sym_block_comment, + [150133] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7488), 1, anon_sym_RBRACE, - [130641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7754), 1, + STATE(4440), 2, + sym_line_comment, + sym_block_comment, + [150147] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7490), 1, + anon_sym_RBRACK, + STATE(4441), 2, + sym_line_comment, + sym_block_comment, + [150161] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7492), 1, anon_sym_DOT, - [130648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7756), 1, - anon_sym_RBRACE, - [130655] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7758), 1, - aux_sym__content_block_token1, - [130662] = 2, + STATE(4442), 2, + sym_line_comment, + sym_block_comment, + [150175] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(5534), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5418), 1, anon_sym_LBRACE, - [130669] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7760), 1, + STATE(4443), 2, + sym_line_comment, + sym_block_comment, + [150189] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7494), 1, anon_sym_LBRACE, - [130676] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7762), 1, + STATE(4444), 2, + sym_line_comment, + sym_block_comment, + [150203] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7496), 1, aux_sym__content_block_token1, - [130683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7764), 1, - anon_sym_LBRACE, - [130690] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7766), 1, - ts_builtin_sym_end, - [130697] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5504), 1, - anon_sym_LBRACE, - [130704] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(895), 1, - anon_sym_RBRACE, - [130711] = 2, + STATE(4445), 2, + sym_line_comment, + sym_block_comment, + [150217] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7498), 1, + anon_sym_DOT, + STATE(4446), 2, + sym_line_comment, + sym_block_comment, + [150231] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7768), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7500), 1, anon_sym_RBRACE, - [130718] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, + STATE(4447), 2, + sym_line_comment, + sym_block_comment, + [150245] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7502), 1, anon_sym_RBRACE, - [130725] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7770), 1, + STATE(4448), 2, + sym_line_comment, + sym_block_comment, + [150259] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7504), 1, + anon_sym_RBRACK, + STATE(4449), 2, + sym_line_comment, + sym_block_comment, + [150273] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7506), 1, anon_sym_DOT, - [130732] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7772), 1, - aux_sym_hash_statement_token1, - [130739] = 2, + STATE(4450), 2, + sym_line_comment, + sym_block_comment, + [150287] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7774), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7508), 1, anon_sym_RBRACE, - [130746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7776), 1, - sym_identifier, - [130753] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7778), 1, - sym_identifier, - [130760] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(943), 1, + STATE(4451), 2, + sym_line_comment, + sym_block_comment, + [150301] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7510), 1, anon_sym_RBRACE, - [130767] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7780), 1, + STATE(4452), 2, + sym_line_comment, + sym_block_comment, + [150315] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5446), 1, + anon_sym_LBRACE, + STATE(4453), 2, + sym_line_comment, + sym_block_comment, + [150329] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7512), 1, + anon_sym_LBRACE, + STATE(4454), 2, + sym_line_comment, + sym_block_comment, + [150343] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7514), 1, + aux_sym__content_block_token1, + STATE(4455), 2, + sym_line_comment, + sym_block_comment, + [150357] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1603), 1, + anon_sym_RPAREN, + STATE(4456), 2, + sym_line_comment, + sym_block_comment, + [150371] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(877), 1, anon_sym_RBRACE, - [130774] = 2, + STATE(4457), 2, + sym_line_comment, + sym_block_comment, + [150385] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7516), 1, + anon_sym_LPAREN, + STATE(4458), 2, + sym_line_comment, + sym_block_comment, + [150399] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7782), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7518), 1, anon_sym_RBRACE, - [130781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7784), 1, + STATE(4459), 2, + sym_line_comment, + sym_block_comment, + [150413] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7520), 1, anon_sym_RBRACE, - [130788] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7786), 1, - anon_sym_DOT, - [130795] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7788), 1, - sym_identifier, - [130802] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7790), 1, + STATE(4460), 2, + sym_line_comment, + sym_block_comment, + [150427] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(913), 1, anon_sym_RBRACE, - [130809] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5540), 1, + STATE(4461), 2, + sym_line_comment, + sym_block_comment, + [150441] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7522), 1, + anon_sym_RBRACE, + STATE(4462), 2, + sym_line_comment, + sym_block_comment, + [150455] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7524), 1, + anon_sym_RBRACE, + STATE(4463), 2, + sym_line_comment, + sym_block_comment, + [150469] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7526), 1, + anon_sym_RBRACE, + STATE(4464), 2, + sym_line_comment, + sym_block_comment, + [150483] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7528), 1, + anon_sym_RBRACE, + STATE(4465), 2, + sym_line_comment, + sym_block_comment, + [150497] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7530), 1, + anon_sym_DOT, + STATE(4466), 2, + sym_line_comment, + sym_block_comment, + [150511] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5456), 1, anon_sym_LBRACE, - [130816] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7792), 1, + STATE(4467), 2, + sym_line_comment, + sym_block_comment, + [150525] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7532), 1, anon_sym_LBRACE, - [130823] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7794), 1, - aux_sym__content_block_token1, - [130830] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7368), 1, - sym_identifier, - [130837] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7796), 1, - anon_sym_RBRACE, - [130844] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7798), 1, + STATE(4468), 2, + sym_line_comment, + sym_block_comment, + [150539] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7534), 1, aux_sym__content_block_token1, - [130851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7800), 1, - anon_sym_RBRACK, - [130858] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7802), 1, + STATE(4469), 2, + sym_line_comment, + sym_block_comment, + [150553] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7536), 1, anon_sym_RBRACK, - [130865] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7804), 1, - anon_sym_LBRACE, - [130872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1597), 1, + STATE(4470), 2, + sym_line_comment, + sym_block_comment, + [150567] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1468), 1, anon_sym_RPAREN, - [130879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7806), 1, + STATE(4471), 2, + sym_line_comment, + sym_block_comment, + [150581] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7538), 1, anon_sym_RBRACE, - [130886] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5502), 1, + STATE(4472), 2, + sym_line_comment, + sym_block_comment, + [150595] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7540), 1, + anon_sym_RBRACE, + STATE(4473), 2, + sym_line_comment, + sym_block_comment, + [150609] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7542), 1, + anon_sym_COLON_EQ, + STATE(4474), 2, + sym_line_comment, + sym_block_comment, + [150623] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(885), 1, + anon_sym_RBRACE, + STATE(4475), 2, + sym_line_comment, + sym_block_comment, + [150637] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(895), 1, + anon_sym_RBRACE, + STATE(4476), 2, + sym_line_comment, + sym_block_comment, + [150651] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6005), 1, anon_sym_LBRACE, - [130893] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7808), 1, - anon_sym_DOT, - [130900] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - anon_sym_RPAREN, - [130907] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7810), 1, - sym_identifier, - [130914] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7812), 1, - sym_identifier, - [130921] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7814), 1, + STATE(4477), 2, + sym_line_comment, + sym_block_comment, + [150665] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7544), 1, anon_sym_RBRACE, - [130928] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - sym_identifier, - [130935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7818), 1, + STATE(4478), 2, + sym_line_comment, + sym_block_comment, + [150679] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7546), 1, + anon_sym_RBRACE, + STATE(4479), 2, + sym_line_comment, + sym_block_comment, + [150693] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7548), 1, anon_sym_DOT, - [130942] = 2, + STATE(4480), 2, + sym_line_comment, + sym_block_comment, + [150707] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7820), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5466), 1, + anon_sym_LBRACE, + STATE(4481), 2, + sym_line_comment, + sym_block_comment, + [150721] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7550), 1, + anon_sym_LBRACE, + STATE(4482), 2, + sym_line_comment, + sym_block_comment, + [150735] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7552), 1, + aux_sym__content_block_token1, + STATE(4483), 2, + sym_line_comment, + sym_block_comment, + [150749] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(927), 1, anon_sym_RBRACE, - [130949] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7822), 1, + STATE(4484), 2, + sym_line_comment, + sym_block_comment, + [150763] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7554), 1, + anon_sym_RBRACK, + STATE(4485), 2, + sym_line_comment, + sym_block_comment, + [150777] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7556), 1, anon_sym_RBRACE, - [130956] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5542), 1, + STATE(4486), 2, + sym_line_comment, + sym_block_comment, + [150791] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7558), 1, + anon_sym_DOT, + STATE(4487), 2, + sym_line_comment, + sym_block_comment, + [150805] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7560), 1, + aux_sym_hash_statement_token1, + STATE(4488), 2, + sym_line_comment, + sym_block_comment, + [150819] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5474), 1, anon_sym_LBRACE, - [130963] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7824), 1, + STATE(4489), 2, + sym_line_comment, + sym_block_comment, + [150833] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7562), 1, anon_sym_LBRACE, - [130970] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7826), 1, + STATE(4490), 2, + sym_line_comment, + sym_block_comment, + [150847] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7564), 1, aux_sym__content_block_token1, - [130977] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7828), 1, - aux_sym_hash_statement_token1, - [130984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7830), 1, + STATE(4491), 2, + sym_line_comment, + sym_block_comment, + [150861] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7566), 1, + sym_identifier, + STATE(4492), 2, + sym_line_comment, + sym_block_comment, + [150875] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7568), 1, anon_sym_RBRACE, - [130991] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(883), 1, + STATE(4493), 2, + sym_line_comment, + sym_block_comment, + [150889] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7570), 1, anon_sym_RBRACE, - [130998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7832), 1, + STATE(4494), 2, + sym_line_comment, + sym_block_comment, + [150903] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7572), 1, anon_sym_RBRACE, - [131005] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1472), 1, - anon_sym_RPAREN, - [131012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7834), 1, - anon_sym_RBRACK, - [131019] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7836), 1, - aux_sym__content_block_token1, - [131026] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACE, - [131033] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7840), 1, + STATE(4495), 2, + sym_line_comment, + sym_block_comment, + [150917] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7574), 1, + anon_sym_RBRACE, + STATE(4496), 2, + sym_line_comment, + sym_block_comment, + [150931] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7576), 1, + sym_identifier, + STATE(4497), 2, + sym_line_comment, + sym_block_comment, + [150945] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7578), 1, + sym_identifier, + STATE(4498), 2, + sym_line_comment, + sym_block_comment, + [150959] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7580), 1, anon_sym_RBRACK, - [131040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5480), 1, - anon_sym_LBRACE, - [131047] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7842), 1, + STATE(4499), 2, + sym_line_comment, + sym_block_comment, + [150973] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7582), 1, anon_sym_RBRACE, - [131054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7844), 1, + STATE(4500), 2, + sym_line_comment, + sym_block_comment, + [150987] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1605), 1, + anon_sym_RPAREN, + STATE(4501), 2, + sym_line_comment, + sym_block_comment, + [151001] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7584), 1, anon_sym_RBRACE, - [131061] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7846), 1, - anon_sym_DOT, - [131068] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, + STATE(4502), 2, + sym_line_comment, + sym_block_comment, + [151015] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7586), 1, anon_sym_RBRACE, - [131075] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7850), 1, + STATE(4503), 2, + sym_line_comment, + sym_block_comment, + [151029] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7588), 1, anon_sym_RBRACE, - [131082] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7852), 1, + STATE(4504), 2, + sym_line_comment, + sym_block_comment, + [151043] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7590), 1, + anon_sym_RBRACE, + STATE(4505), 2, + sym_line_comment, + sym_block_comment, + [151057] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7592), 1, + anon_sym_RBRACE, + STATE(4506), 2, + sym_line_comment, + sym_block_comment, + [151071] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7594), 1, anon_sym_DOT, - [131089] = 2, + STATE(4507), 2, + sym_line_comment, + sym_block_comment, + [151085] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7854), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7596), 1, anon_sym_RBRACE, - [131096] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(875), 1, + STATE(4508), 2, + sym_line_comment, + sym_block_comment, + [151099] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7598), 1, anon_sym_RBRACE, - [131103] = 2, - ACTIONS(3), 1, - sym_comment, + STATE(4509), 2, + sym_line_comment, + sym_block_comment, + [151113] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(5476), 1, anon_sym_LBRACE, - [131110] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7856), 1, + STATE(4510), 2, + sym_line_comment, + sym_block_comment, + [151127] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7600), 1, anon_sym_LBRACE, - [131117] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7858), 1, + STATE(4511), 2, + sym_line_comment, + sym_block_comment, + [151141] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7602), 1, aux_sym__content_block_token1, - [131124] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7860), 1, + STATE(4512), 2, + sym_line_comment, + sym_block_comment, + [151155] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(481), 1, anon_sym_RBRACE, - [131131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7862), 1, + STATE(4513), 2, + sym_line_comment, + sym_block_comment, + [151169] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7604), 1, + anon_sym_RBRACE, + STATE(4514), 2, + sym_line_comment, + sym_block_comment, + [151183] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7606), 1, + anon_sym_RBRACE, + STATE(4515), 2, + sym_line_comment, + sym_block_comment, + [151197] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7608), 1, + aux_sym__content_block_token1, + STATE(4516), 2, + sym_line_comment, + sym_block_comment, + [151211] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7610), 1, anon_sym_LBRACE, - [131138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7864), 1, - sym_identifier, - [131145] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7866), 1, - anon_sym_EQ, - [131152] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7868), 1, - sym_int_literal, - [131159] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7393), 1, + STATE(4517), 2, + sym_line_comment, + sym_block_comment, + [151225] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4902), 1, + anon_sym_COLON, + STATE(4518), 2, + sym_line_comment, + sym_block_comment, + [151239] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5436), 1, + anon_sym_LBRACE, + STATE(4519), 2, + sym_line_comment, + sym_block_comment, + [151253] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7612), 1, anon_sym_RBRACE, - [131166] = 2, + STATE(4520), 2, + sym_line_comment, + sym_block_comment, + [151267] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7614), 1, + anon_sym_DOT, + STATE(4521), 2, + sym_line_comment, + sym_block_comment, + [151281] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(939), 1, anon_sym_RBRACE, - [131173] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7652), 1, - anon_sym_RPAREN, - [131180] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7872), 1, + STATE(4522), 2, + sym_line_comment, + sym_block_comment, + [151295] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7616), 1, anon_sym_RBRACE, - [131187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7620), 1, + STATE(4523), 2, + sym_line_comment, + sym_block_comment, + [151309] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4978), 1, + sym_identifier, + STATE(4524), 2, + sym_line_comment, + sym_block_comment, + [151323] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7618), 1, anon_sym_RBRACE, - [131194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7874), 1, - sym_int_literal, - [131201] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7614), 1, + STATE(4525), 2, + sym_line_comment, + sym_block_comment, + [151337] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7410), 1, anon_sym_RBRACE, - [131208] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7876), 1, - anon_sym_RBRACK, - [131215] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7878), 1, + STATE(4526), 2, + sym_line_comment, + sym_block_comment, + [151351] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7620), 1, anon_sym_RBRACE, - [131222] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_RBRACK, - [131229] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7882), 1, + STATE(4527), 2, + sym_line_comment, + sym_block_comment, + [151365] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7622), 1, anon_sym_DOT, - [131236] = 2, + STATE(4528), 2, + sym_line_comment, + sym_block_comment, + [151379] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7884), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7624), 1, anon_sym_RBRACE, - [131243] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7886), 1, - anon_sym_PIPE, - [131250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5470), 1, + STATE(4529), 2, + sym_line_comment, + sym_block_comment, + [151393] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7626), 1, + sym_int_literal, + STATE(4530), 2, + sym_line_comment, + sym_block_comment, + [151407] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5484), 1, anon_sym_LBRACE, - [131257] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7888), 1, + STATE(4531), 2, + sym_line_comment, + sym_block_comment, + [151421] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7628), 1, anon_sym_LBRACE, - [131264] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7890), 1, + STATE(4532), 2, + sym_line_comment, + sym_block_comment, + [151435] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7630), 1, aux_sym__content_block_token1, - [131271] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7892), 1, + STATE(4533), 2, + sym_line_comment, + sym_block_comment, + [151449] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(949), 1, anon_sym_RBRACE, - [131278] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7894), 1, + STATE(4534), 2, + sym_line_comment, + sym_block_comment, + [151463] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7386), 1, anon_sym_RBRACE, - [131285] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7896), 1, + STATE(4535), 2, + sym_line_comment, + sym_block_comment, + [151477] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7632), 1, anon_sym_RBRACE, - [131292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7898), 1, + STATE(4536), 2, + sym_line_comment, + sym_block_comment, + [151491] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(897), 1, anon_sym_RBRACE, - [131299] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7900), 1, + STATE(4537), 2, + sym_line_comment, + sym_block_comment, + [151505] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4591), 1, + sym_identifier, + STATE(4538), 2, + sym_line_comment, + sym_block_comment, + [151519] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7634), 1, + anon_sym_COLON, + STATE(4539), 2, + sym_line_comment, + sym_block_comment, + [151533] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6935), 1, + anon_sym_RBRACK, + STATE(4540), 2, + sym_line_comment, + sym_block_comment, + [151547] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7636), 1, anon_sym_RBRACE, - [131306] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(927), 1, + STATE(4541), 2, + sym_line_comment, + sym_block_comment, + [151561] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7638), 1, anon_sym_RBRACE, - [131313] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(907), 1, + STATE(4542), 2, + sym_line_comment, + sym_block_comment, + [151575] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1607), 1, + anon_sym_RPAREN, + STATE(4543), 2, + sym_line_comment, + sym_block_comment, + [151589] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7640), 1, + anon_sym_RBRACK, + STATE(4544), 2, + sym_line_comment, + sym_block_comment, + [151603] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7642), 1, anon_sym_RBRACE, - [131320] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7902), 1, + STATE(4545), 2, + sym_line_comment, + sym_block_comment, + [151617] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(947), 1, anon_sym_RBRACE, - [131327] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, + STATE(4546), 2, + sym_line_comment, + sym_block_comment, + [151631] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7644), 1, anon_sym_RBRACE, - [131334] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1470), 1, - anon_sym_RPAREN, - [131341] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(889), 1, + STATE(4547), 2, + sym_line_comment, + sym_block_comment, + [151645] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7646), 1, anon_sym_RBRACE, - [131348] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7906), 1, + STATE(4548), 2, + sym_line_comment, + sym_block_comment, + [151659] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7648), 1, anon_sym_DOT, - [131355] = 2, + STATE(4549), 2, + sym_line_comment, + sym_block_comment, + [151673] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7650), 1, + anon_sym_LBRACE, + STATE(4550), 2, + sym_line_comment, + sym_block_comment, + [151687] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7652), 1, anon_sym_RBRACE, - [131362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 1, + STATE(4551), 2, + sym_line_comment, + sym_block_comment, + [151701] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5486), 1, anon_sym_LBRACE, - [131369] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7910), 1, + STATE(4552), 2, + sym_line_comment, + sym_block_comment, + [151715] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7654), 1, anon_sym_LBRACE, - [131376] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7912), 1, + STATE(4553), 2, + sym_line_comment, + sym_block_comment, + [151729] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7656), 1, aux_sym__content_block_token1, - [131383] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7914), 1, - anon_sym_RBRACE, - [131390] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7916), 1, + STATE(4554), 2, + sym_line_comment, + sym_block_comment, + [151743] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7288), 1, + anon_sym_RPAREN, + STATE(4555), 2, + sym_line_comment, + sym_block_comment, + [151757] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7658), 1, anon_sym_RBRACK, - [131397] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7918), 1, - anon_sym_RBRACE, - [131404] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7920), 1, - anon_sym_DOT, - [131411] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7922), 1, - aux_sym__content_block_token1, - [131418] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7924), 1, - anon_sym_DOT, - [131425] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7926), 1, - anon_sym_RBRACE, - [131432] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7928), 1, - anon_sym_RBRACE, - [131439] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 1, + STATE(4556), 2, + sym_line_comment, + sym_block_comment, + [151771] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7660), 1, anon_sym_RBRACK, - [131446] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7932), 1, - anon_sym_RBRACE, - [131453] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7934), 1, + STATE(4557), 2, + sym_line_comment, + sym_block_comment, + [151785] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7662), 1, + anon_sym_RBRACK, + STATE(4558), 2, + sym_line_comment, + sym_block_comment, + [151799] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7664), 1, + anon_sym_EQ, + STATE(4559), 2, + sym_line_comment, + sym_block_comment, + [151813] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7666), 1, anon_sym_RBRACE, - [131460] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7936), 1, + STATE(4560), 2, + sym_line_comment, + sym_block_comment, + [151827] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7668), 1, anon_sym_RBRACE, - [131467] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7938), 1, + STATE(4561), 2, + sym_line_comment, + sym_block_comment, + [151841] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7670), 1, anon_sym_RBRACE, - [131474] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(879), 1, + STATE(4562), 2, + sym_line_comment, + sym_block_comment, + [151855] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7672), 1, + anon_sym_RBRACK, + STATE(4563), 2, + sym_line_comment, + sym_block_comment, + [151869] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7674), 1, anon_sym_RBRACE, - [131481] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7940), 1, - sym_identifier, - [131488] = 2, + STATE(4564), 2, + sym_line_comment, + sym_block_comment, + [151883] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7676), 1, + anon_sym_RBRACK, + STATE(4565), 2, + sym_line_comment, + sym_block_comment, + [151897] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7678), 1, + anon_sym_DOT, + STATE(4566), 2, + sym_line_comment, + sym_block_comment, + [151911] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7942), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5020), 1, sym_identifier, - [131495] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7944), 1, + STATE(4567), 2, + sym_line_comment, + sym_block_comment, + [151925] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5534), 1, + anon_sym_LBRACE, + STATE(4568), 2, + sym_line_comment, + sym_block_comment, + [151939] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7680), 1, + anon_sym_LBRACE, + STATE(4569), 2, + sym_line_comment, + sym_block_comment, + [151953] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7682), 1, + aux_sym__content_block_token1, + STATE(4570), 2, + sym_line_comment, + sym_block_comment, + [151967] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1589), 1, + anon_sym_RPAREN, + STATE(4571), 2, + sym_line_comment, + sym_block_comment, + [151981] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7684), 1, anon_sym_RBRACE, - [131502] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7946), 1, - anon_sym_RBRACK, - [131509] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7948), 1, + STATE(4572), 2, + sym_line_comment, + sym_block_comment, + [151995] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(923), 1, anon_sym_RBRACE, - [131516] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(877), 1, + STATE(4573), 2, + sym_line_comment, + sym_block_comment, + [152009] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7686), 1, + anon_sym_DOT, + STATE(4574), 2, + sym_line_comment, + sym_block_comment, + [152023] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7688), 1, + aux_sym__content_block_token1, + STATE(4575), 2, + sym_line_comment, + sym_block_comment, + [152037] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7690), 1, anon_sym_RBRACE, - [131523] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7950), 1, + STATE(4576), 2, + sym_line_comment, + sym_block_comment, + [152051] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7692), 1, anon_sym_RBRACE, - [131530] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - [131537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7954), 1, + STATE(4577), 2, + sym_line_comment, + sym_block_comment, + [152065] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7694), 1, anon_sym_RBRACE, - [131544] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7956), 1, + STATE(4578), 2, + sym_line_comment, + sym_block_comment, + [152079] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7696), 1, anon_sym_RBRACE, - [131551] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7958), 1, + STATE(4579), 2, + sym_line_comment, + sym_block_comment, + [152093] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7698), 1, + anon_sym_RBRACE, + STATE(4580), 2, + sym_line_comment, + sym_block_comment, + [152107] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7700), 1, + anon_sym_RBRACE, + STATE(4581), 2, + sym_line_comment, + sym_block_comment, + [152121] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7702), 1, aux_sym__content_block_token1, - [131558] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7960), 1, + STATE(4582), 2, + sym_line_comment, + sym_block_comment, + [152135] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7704), 1, anon_sym_LBRACE, - [131565] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7962), 1, - anon_sym_RBRACE, - [131572] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7964), 1, + STATE(4583), 2, + sym_line_comment, + sym_block_comment, + [152149] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7706), 1, + aux_sym_block_comment_token1, + STATE(4584), 2, + sym_line_comment, + sym_block_comment, + [152163] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(935), 1, anon_sym_RBRACE, - [131579] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5498), 1, + STATE(4585), 2, + sym_line_comment, + sym_block_comment, + [152177] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5394), 1, anon_sym_LBRACE, - [131586] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7966), 1, + STATE(4586), 2, + sym_line_comment, + sym_block_comment, + [152191] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6886), 1, + anon_sym_RBRACE, + STATE(4587), 2, + sym_line_comment, + sym_block_comment, + [152205] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7708), 1, sym_identifier, - [131593] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, + STATE(4588), 2, + sym_line_comment, + sym_block_comment, + [152219] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7710), 1, anon_sym_RBRACE, - [131600] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7970), 1, - anon_sym_EQ, - [131607] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7972), 1, - anon_sym_RBRACK, - [131614] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7974), 1, + STATE(4589), 2, + sym_line_comment, + sym_block_comment, + [152233] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7712), 1, + sym_identifier, + STATE(4590), 2, + sym_line_comment, + sym_block_comment, + [152247] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7714), 1, anon_sym_DOT, - [131621] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7976), 1, - anon_sym_EQ, - [131628] = 2, + STATE(4591), 2, + sym_line_comment, + sym_block_comment, + [152261] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7978), 1, - anon_sym_RBRACE, - [131635] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7980), 1, - anon_sym_RBRACK, - [131642] = 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7716), 1, + anon_sym_LPAREN, + STATE(4592), 2, + sym_line_comment, + sym_block_comment, + [152275] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7982), 1, - anon_sym_RBRACE, - [131649] = 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7718), 1, + sym_int_literal, + STATE(4593), 2, + sym_line_comment, + sym_block_comment, + [152289] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7720), 1, + anon_sym_DOT, + STATE(4594), 2, + sym_line_comment, + sym_block_comment, + [152303] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7984), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(943), 1, anon_sym_RBRACE, - [131656] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7986), 1, + STATE(4595), 2, + sym_line_comment, + sym_block_comment, + [152317] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7722), 1, sym_identifier, - [131663] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7988), 1, + STATE(4596), 2, + sym_line_comment, + sym_block_comment, + [152331] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7724), 1, + sym_identifier, + STATE(4597), 2, + sym_line_comment, + sym_block_comment, + [152345] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7726), 1, + sym_identifier, + STATE(4598), 2, + sym_line_comment, + sym_block_comment, + [152359] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7728), 1, + sym_identifier, + STATE(4599), 2, + sym_line_comment, + sym_block_comment, + [152373] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7730), 1, anon_sym_EQ, - [131670] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7990), 1, - anon_sym_LBRACE, - [131677] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7992), 1, + STATE(4600), 2, + sym_line_comment, + sym_block_comment, + [152387] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7732), 1, sym_identifier, - [131684] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(891), 1, + STATE(4601), 2, + sym_line_comment, + sym_block_comment, + [152401] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7734), 1, anon_sym_RBRACE, - [131691] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7994), 1, + STATE(4602), 2, + sym_line_comment, + sym_block_comment, + [152415] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7736), 1, anon_sym_LBRACE, - [131698] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(917), 1, - anon_sym_RBRACE, - [131705] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7996), 1, - anon_sym_RBRACE, - [131712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7998), 1, + STATE(4603), 2, + sym_line_comment, + sym_block_comment, + [152429] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7738), 1, + sym_identifier, + STATE(4604), 2, + sym_line_comment, + sym_block_comment, + [152443] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7740), 1, anon_sym_RBRACE, - [131719] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8000), 1, - anon_sym_LBRACE, - [131726] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1601), 1, + STATE(4605), 2, + sym_line_comment, + sym_block_comment, + [152457] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1599), 1, anon_sym_RPAREN, - [131733] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8002), 1, + STATE(4606), 2, + sym_line_comment, + sym_block_comment, + [152471] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7742), 1, anon_sym_RBRACK, - [131740] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8004), 1, - anon_sym_DOT, - [131747] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8006), 1, - anon_sym_RBRACE, - [131754] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8008), 1, + STATE(4607), 2, + sym_line_comment, + sym_block_comment, + [152485] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7744), 1, + anon_sym_LBRACE, + STATE(4608), 2, + sym_line_comment, + sym_block_comment, + [152499] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7746), 1, + anon_sym_LBRACE, + STATE(4609), 2, + sym_line_comment, + sym_block_comment, + [152513] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7748), 1, + anon_sym_RBRACK, + STATE(4610), 2, + sym_line_comment, + sym_block_comment, + [152527] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7750), 1, anon_sym_RBRACE, - [131761] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8010), 1, + STATE(4611), 2, + sym_line_comment, + sym_block_comment, + [152541] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7752), 1, anon_sym_RBRACE, - [131768] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8012), 1, + STATE(4612), 2, + sym_line_comment, + sym_block_comment, + [152555] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7754), 1, anon_sym_RBRACE, - [131775] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8014), 1, + STATE(4613), 2, + sym_line_comment, + sym_block_comment, + [152569] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7756), 1, + anon_sym_LBRACE, + STATE(4614), 2, + sym_line_comment, + sym_block_comment, + [152583] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7758), 1, anon_sym_RBRACE, - [131782] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, + STATE(4615), 2, + sym_line_comment, + sym_block_comment, + [152597] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7760), 1, + anon_sym_EQ, + STATE(4616), 2, + sym_line_comment, + sym_block_comment, + [152611] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7762), 1, anon_sym_RBRACE, - [131789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(899), 1, + STATE(4617), 2, + sym_line_comment, + sym_block_comment, + [152625] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7764), 1, + sym_identifier, + STATE(4618), 2, + sym_line_comment, + sym_block_comment, + [152639] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7766), 1, anon_sym_RBRACE, - [131796] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8018), 1, - anon_sym_LBRACE, - [131803] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8020), 1, + STATE(4619), 2, + sym_line_comment, + sym_block_comment, + [152653] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7768), 1, anon_sym_RBRACE, - [131810] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8022), 1, + STATE(4620), 2, + sym_line_comment, + sym_block_comment, + [152667] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7770), 1, anon_sym_RBRACE, - [131817] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8024), 1, + STATE(4621), 2, + sym_line_comment, + sym_block_comment, + [152681] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7772), 1, anon_sym_RBRACE, - [131824] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(897), 1, + STATE(4622), 2, + sym_line_comment, + sym_block_comment, + [152695] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7774), 1, anon_sym_RBRACE, - [131831] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8026), 1, - anon_sym_DOT, - [131838] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8028), 1, + STATE(4623), 2, + sym_line_comment, + sym_block_comment, + [152709] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7776), 1, anon_sym_RBRACE, - [131845] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8030), 1, + STATE(4624), 2, + sym_line_comment, + sym_block_comment, + [152723] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7778), 1, anon_sym_RBRACE, - [131852] = 2, + STATE(4625), 2, + sym_line_comment, + sym_block_comment, + [152737] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7780), 1, + anon_sym_DOT, + STATE(4626), 2, + sym_line_comment, + sym_block_comment, + [152751] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8032), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7782), 1, + sym_identifier, + STATE(4627), 2, + sym_line_comment, + sym_block_comment, + [152765] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7784), 1, anon_sym_RBRACE, - [131859] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8034), 1, + STATE(4628), 2, + sym_line_comment, + sym_block_comment, + [152779] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7786), 1, anon_sym_SEMI, - [131866] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8036), 1, - anon_sym_RBRACE, - [131873] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8038), 1, + STATE(4629), 2, + sym_line_comment, + sym_block_comment, + [152793] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7788), 1, anon_sym_RBRACK, - [131880] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8040), 1, - anon_sym_RBRACE, - [131887] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8042), 1, + STATE(4630), 2, + sym_line_comment, + sym_block_comment, + [152807] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7790), 1, anon_sym_RBRACE, - [131894] = 2, + STATE(4631), 2, + sym_line_comment, + sym_block_comment, + [152821] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7792), 1, + anon_sym_in, + STATE(4632), 2, + sym_line_comment, + sym_block_comment, + [152835] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(887), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7794), 1, anon_sym_RBRACE, - [131901] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8044), 1, + STATE(4633), 2, + sym_line_comment, + sym_block_comment, + [152849] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7796), 1, + sym_identifier, + STATE(4634), 2, + sym_line_comment, + sym_block_comment, + [152863] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7798), 1, + anon_sym_RBRACK, + STATE(4635), 2, + sym_line_comment, + sym_block_comment, + [152877] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7800), 1, + anon_sym_PIPE, + STATE(4636), 2, + sym_line_comment, + sym_block_comment, + [152891] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7802), 1, + aux_sym__content_block_token1, + STATE(4637), 2, + sym_line_comment, + sym_block_comment, + [152905] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7804), 1, + anon_sym_RBRACK, + STATE(4638), 2, + sym_line_comment, + sym_block_comment, + [152919] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7806), 1, + anon_sym_LBRACE, + STATE(4639), 2, + sym_line_comment, + sym_block_comment, + [152933] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5530), 1, + anon_sym_LBRACE, + STATE(4640), 2, + sym_line_comment, + sym_block_comment, + [152947] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7808), 1, + anon_sym_RBRACK, + STATE(4641), 2, + sym_line_comment, + sym_block_comment, + [152961] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6051), 1, + anon_sym_COLON_EQ, + STATE(4642), 2, + sym_line_comment, + sym_block_comment, + [152975] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(891), 1, anon_sym_RBRACE, - [131908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8046), 1, + STATE(4643), 2, + sym_line_comment, + sym_block_comment, + [152989] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7810), 1, + anon_sym_RBRACK, + STATE(4644), 2, + sym_line_comment, + sym_block_comment, + [153003] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(917), 1, anon_sym_RBRACE, - [131915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8048), 1, + STATE(4645), 2, + sym_line_comment, + sym_block_comment, + [153017] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7812), 1, + sym_identifier, + STATE(4646), 2, + sym_line_comment, + sym_block_comment, + [153031] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7814), 1, anon_sym_RBRACE, - [131922] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8050), 1, + STATE(4647), 2, + sym_line_comment, + sym_block_comment, + [153045] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7816), 1, anon_sym_RBRACE, - [131929] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8052), 1, + STATE(4648), 2, + sym_line_comment, + sym_block_comment, + [153059] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7818), 1, anon_sym_RBRACE, - [131936] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8054), 1, - anon_sym_RBRACK, - [131943] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, + STATE(4649), 2, + sym_line_comment, + sym_block_comment, + [153073] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1591), 1, anon_sym_RPAREN, - [131950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8056), 1, + STATE(4650), 2, + sym_line_comment, + sym_block_comment, + [153087] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7820), 1, anon_sym_RBRACE, - [131957] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7242), 1, - anon_sym_RBRACK, - [131964] = 2, + STATE(4651), 2, + sym_line_comment, + sym_block_comment, + [153101] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7822), 1, + anon_sym_DOT, + STATE(4652), 2, + sym_line_comment, + sym_block_comment, + [153115] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7824), 1, anon_sym_RBRACE, - [131971] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8058), 1, - anon_sym_COLON, - [131978] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4601), 1, - sym_identifier, - [131985] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8060), 1, + STATE(4653), 2, + sym_line_comment, + sym_block_comment, + [153129] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(909), 1, anon_sym_RBRACE, - [131992] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8062), 1, + STATE(4654), 2, + sym_line_comment, + sym_block_comment, + [153143] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7826), 1, anon_sym_RBRACE, - [131999] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8064), 1, + STATE(4655), 2, + sym_line_comment, + sym_block_comment, + [153157] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7828), 1, anon_sym_RBRACE, - [132006] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(873), 1, + STATE(4656), 2, + sym_line_comment, + sym_block_comment, + [153171] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7830), 1, anon_sym_RBRACE, - [132013] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8066), 1, + STATE(4657), 2, + sym_line_comment, + sym_block_comment, + [153185] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(879), 1, anon_sym_RBRACE, - [132020] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8068), 1, - anon_sym_in, - [132027] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8070), 1, + STATE(4658), 2, + sym_line_comment, + sym_block_comment, + [153199] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7832), 1, anon_sym_RBRACE, - [132034] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 1, + STATE(4659), 2, + sym_line_comment, + sym_block_comment, + [153213] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1597), 1, anon_sym_RPAREN, - [132041] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1468), 1, + STATE(4660), 2, + sym_line_comment, + sym_block_comment, + [153227] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7834), 1, + anon_sym_RBRACE, + STATE(4661), 2, + sym_line_comment, + sym_block_comment, + [153241] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7404), 1, anon_sym_RPAREN, - [132048] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8072), 1, - anon_sym_RBRACK, - [132055] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8074), 1, + STATE(4662), 2, + sym_line_comment, + sym_block_comment, + [153255] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7836), 1, + anon_sym_RBRACE, + STATE(4663), 2, + sym_line_comment, + sym_block_comment, + [153269] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7838), 1, anon_sym_DOT, - [132062] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8076), 1, - anon_sym_RBRACK, - [132069] = 2, + STATE(4664), 2, + sym_line_comment, + sym_block_comment, + [153283] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8078), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7840), 1, anon_sym_RBRACE, - [132076] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8080), 1, + STATE(4665), 2, + sym_line_comment, + sym_block_comment, + [153297] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7842), 1, anon_sym_RBRACE, - [132083] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8082), 1, + STATE(4666), 2, + sym_line_comment, + sym_block_comment, + [153311] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7844), 1, anon_sym_RBRACK, - [132090] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8084), 1, + STATE(4667), 2, + sym_line_comment, + sym_block_comment, + [153325] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7846), 1, + aux_sym_shebang_token1, + STATE(4668), 2, + sym_line_comment, + sym_block_comment, + [153339] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7848), 1, anon_sym_RBRACE, - [132097] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8086), 1, + STATE(4669), 2, + sym_line_comment, + sym_block_comment, + [153353] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(907), 1, anon_sym_RBRACE, - [132104] = 2, + STATE(4670), 2, + sym_line_comment, + sym_block_comment, + [153367] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7850), 1, + anon_sym_DOT, + STATE(4671), 2, + sym_line_comment, + sym_block_comment, + [153381] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(919), 1, anon_sym_RBRACE, - [132111] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6003), 1, - anon_sym_LBRACE, - [132118] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, + STATE(4672), 2, + sym_line_comment, + sym_block_comment, + [153395] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7852), 1, anon_sym_RBRACE, - [132125] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8090), 1, + STATE(4673), 2, + sym_line_comment, + sym_block_comment, + [153409] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7854), 1, anon_sym_RBRACE, - [132132] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8092), 1, - anon_sym_RBRACK, - [132139] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8094), 1, + STATE(4674), 2, + sym_line_comment, + sym_block_comment, + [153423] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7856), 1, anon_sym_RBRACE, - [132146] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8096), 1, + STATE(4675), 2, + sym_line_comment, + sym_block_comment, + [153437] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7858), 1, anon_sym_RBRACE, - [132153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, - anon_sym_COLON_EQ, - [132160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4978), 1, - sym_identifier, - [132167] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8100), 1, - anon_sym_RBRACK, - [132174] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8102), 1, + STATE(4676), 2, + sym_line_comment, + sym_block_comment, + [153451] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7860), 1, + anon_sym_RBRACE, + STATE(4677), 2, + sym_line_comment, + sym_block_comment, + [153465] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7862), 1, anon_sym_RBRACK, - [132181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8104), 1, + STATE(4678), 2, + sym_line_comment, + sym_block_comment, + [153479] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7864), 1, anon_sym_RBRACE, - [132188] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, + STATE(4679), 2, + sym_line_comment, + sym_block_comment, + [153493] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7866), 1, + anon_sym_EQ, + STATE(4680), 2, + sym_line_comment, + sym_block_comment, + [153507] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7868), 1, anon_sym_RBRACE, - [132195] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8106), 1, + STATE(4681), 2, + sym_line_comment, + sym_block_comment, + [153521] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7870), 1, anon_sym_RBRACE, - [132202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8108), 1, + STATE(4682), 2, + sym_line_comment, + sym_block_comment, + [153535] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(881), 1, anon_sym_RBRACE, - [132209] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8110), 1, + STATE(4683), 2, + sym_line_comment, + sym_block_comment, + [153549] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7872), 1, anon_sym_RBRACE, - [132216] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(919), 1, + STATE(4684), 2, + sym_line_comment, + sym_block_comment, + [153563] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7874), 1, + anon_sym_RBRACK, + STATE(4685), 2, + sym_line_comment, + sym_block_comment, + [153577] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7876), 1, anon_sym_RBRACE, - [132223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8112), 1, + STATE(4686), 2, + sym_line_comment, + sym_block_comment, + [153591] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7878), 1, + anon_sym_RBRACK, + STATE(4687), 2, + sym_line_comment, + sym_block_comment, + [153605] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7880), 1, anon_sym_RBRACE, - [132230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1593), 1, + STATE(4688), 2, + sym_line_comment, + sym_block_comment, + [153619] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1595), 1, anon_sym_RPAREN, - [132237] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8114), 1, - sym_identifier, - [132244] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8116), 1, - sym_identifier, - [132251] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8118), 1, - sym_identifier, - [132258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8120), 1, - anon_sym_RBRACK, - [132265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, - anon_sym_COLON, - [132272] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8122), 1, - anon_sym_RBRACK, - [132279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(937), 1, + STATE(4689), 2, + sym_line_comment, + sym_block_comment, + [153633] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7882), 1, anon_sym_RBRACE, - [132286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8124), 1, + STATE(4690), 2, + sym_line_comment, + sym_block_comment, + [153647] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7884), 1, + anon_sym_SLASH, + STATE(4691), 2, + sym_line_comment, + sym_block_comment, + [153661] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7886), 1, + aux_sym_shebang_token1, + STATE(4692), 2, + sym_line_comment, + sym_block_comment, + [153675] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7888), 1, anon_sym_RBRACE, - [132293] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8126), 1, - sym_identifier, - [132300] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8128), 1, + STATE(4693), 2, + sym_line_comment, + sym_block_comment, + [153689] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7890), 1, anon_sym_RBRACE, - [132307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8130), 1, + STATE(4694), 2, + sym_line_comment, + sym_block_comment, + [153703] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(915), 1, anon_sym_RBRACE, - [132314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(935), 1, + STATE(4695), 2, + sym_line_comment, + sym_block_comment, + [153717] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7892), 1, anon_sym_RBRACE, - [132321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8132), 1, - anon_sym_LPAREN, - [132328] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8134), 1, + STATE(4696), 2, + sym_line_comment, + sym_block_comment, + [153731] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(887), 1, anon_sym_RBRACE, - [132335] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8136), 1, + STATE(4697), 2, + sym_line_comment, + sym_block_comment, + [153745] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7894), 1, anon_sym_RBRACE, - [132342] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8138), 1, + STATE(4698), 2, + sym_line_comment, + sym_block_comment, + [153759] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7896), 1, anon_sym_RBRACE, - [132349] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8140), 1, - anon_sym_DOT, - [132356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8142), 1, - anon_sym_LPAREN, - [132363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4992), 1, - sym_identifier, - [132370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8144), 1, + STATE(4699), 2, + sym_line_comment, + sym_block_comment, + [153773] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7898), 1, anon_sym_RBRACE, - [132377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8146), 1, + STATE(4700), 2, + sym_line_comment, + sym_block_comment, + [153787] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7900), 1, anon_sym_RBRACE, - [132384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8148), 1, + STATE(4701), 2, + sym_line_comment, + sym_block_comment, + [153801] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7902), 1, + ts_builtin_sym_end, + STATE(4702), 2, + sym_line_comment, + sym_block_comment, + [153815] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7904), 1, + anon_sym_RBRACE, + STATE(4703), 2, + sym_line_comment, + sym_block_comment, + [153829] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7906), 1, + anon_sym_RBRACE, + STATE(4704), 2, + sym_line_comment, + sym_block_comment, + [153843] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7908), 1, anon_sym_LPAREN, - [132391] = 2, + STATE(4705), 2, + sym_line_comment, + sym_block_comment, + [153857] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8150), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7910), 1, anon_sym_RBRACE, - [132398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8152), 1, + STATE(4706), 2, + sym_line_comment, + sym_block_comment, + [153871] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7912), 1, anon_sym_RBRACE, - [132405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8154), 1, + STATE(4707), 2, + sym_line_comment, + sym_block_comment, + [153885] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7914), 1, anon_sym_RBRACE, - [132412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, + STATE(4708), 2, + sym_line_comment, + sym_block_comment, + [153899] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6517), 1, + anon_sym_RBRACE, + STATE(4709), 2, + sym_line_comment, + sym_block_comment, + [153913] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7916), 1, anon_sym_LPAREN, - [132419] = 2, + STATE(4710), 2, + sym_line_comment, + sym_block_comment, + [153927] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8158), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7918), 1, + sym_int_literal, + STATE(4711), 2, + sym_line_comment, + sym_block_comment, + [153941] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7920), 1, anon_sym_RBRACE, - [132426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, + STATE(4712), 2, + sym_line_comment, + sym_block_comment, + [153955] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7922), 1, anon_sym_RBRACE, - [132433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8160), 1, - anon_sym_RBRACK, - [132440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8162), 1, + STATE(4713), 2, + sym_line_comment, + sym_block_comment, + [153969] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7924), 1, anon_sym_LPAREN, - [132447] = 2, + STATE(4714), 2, + sym_line_comment, + sym_block_comment, + [153983] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8164), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7926), 1, + anon_sym_RBRACE, + STATE(4715), 2, + sym_line_comment, + sym_block_comment, + [153997] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(933), 1, + anon_sym_RBRACE, + STATE(4716), 2, + sym_line_comment, + sym_block_comment, + [154011] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7928), 1, sym_identifier, - [132454] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(8166), 1, - aux_sym__content_block_token1, - [132461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1466), 1, - anon_sym_RPAREN, - [132468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8168), 1, + STATE(4717), 2, + sym_line_comment, + sym_block_comment, + [154025] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7930), 1, anon_sym_LPAREN, - [132475] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8170), 1, + STATE(4718), 2, + sym_line_comment, + sym_block_comment, + [154039] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7932), 1, + aux_sym_hash_statement_token1, + STATE(4719), 2, + sym_line_comment, + sym_block_comment, + [154053] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7934), 1, anon_sym_RBRACE, - [132482] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8172), 1, + STATE(4720), 2, + sym_line_comment, + sym_block_comment, + [154067] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7936), 1, anon_sym_RBRACE, - [132489] = 2, + STATE(4721), 2, + sym_line_comment, + sym_block_comment, + [154081] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7938), 1, + anon_sym_LPAREN, + STATE(4722), 2, + sym_line_comment, + sym_block_comment, + [154095] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8174), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7940), 1, + anon_sym_LBRACE, + STATE(4723), 2, + sym_line_comment, + sym_block_comment, + [154109] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7942), 1, + anon_sym_LBRACE, + STATE(4724), 2, + sym_line_comment, + sym_block_comment, + [154123] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7944), 1, anon_sym_RBRACE, - [132496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8176), 1, + STATE(4725), 2, + sym_line_comment, + sym_block_comment, + [154137] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7946), 1, anon_sym_LPAREN, - [132503] = 2, + STATE(4726), 2, + sym_line_comment, + sym_block_comment, + [154151] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(945), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7948), 1, anon_sym_RBRACE, - [132510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(871), 1, + STATE(4727), 2, + sym_line_comment, + sym_block_comment, + [154165] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(905), 1, anon_sym_RBRACE, - [132517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8178), 1, + STATE(4728), 2, + sym_line_comment, + sym_block_comment, + [154179] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7950), 1, anon_sym_RBRACE, - [132524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8180), 1, + STATE(4729), 2, + sym_line_comment, + sym_block_comment, + [154193] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7952), 1, anon_sym_LPAREN, - [132531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8182), 1, - anon_sym_RBRACE, - [132538] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8184), 1, - anon_sym_RBRACE, - [132545] = 2, + STATE(4730), 2, + sym_line_comment, + sym_block_comment, + [154207] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8186), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7954), 1, + anon_sym_RBRACK, + STATE(4731), 2, + sym_line_comment, + sym_block_comment, + [154221] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7956), 1, anon_sym_RBRACE, - [132552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8188), 1, + STATE(4732), 2, + sym_line_comment, + sym_block_comment, + [154235] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1609), 1, + anon_sym_RPAREN, + STATE(4733), 2, + sym_line_comment, + sym_block_comment, + [154249] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7958), 1, anon_sym_LPAREN, - [132559] = 2, + STATE(4734), 2, + sym_line_comment, + sym_block_comment, + [154263] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8190), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7960), 1, anon_sym_RBRACE, - [132566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8192), 1, - anon_sym_LBRACE, - [132573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8194), 1, + STATE(4735), 2, + sym_line_comment, + sym_block_comment, + [154277] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7962), 1, anon_sym_RBRACE, - [132580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8196), 1, - anon_sym_LPAREN, - [132587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5442), 1, + STATE(4736), 2, + sym_line_comment, + sym_block_comment, + [154291] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7964), 1, anon_sym_LBRACE, - [132594] = 2, + STATE(4737), 2, + sym_line_comment, + sym_block_comment, + [154305] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7966), 1, + anon_sym_LPAREN, + STATE(4738), 2, + sym_line_comment, + sym_block_comment, + [154319] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8198), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(929), 1, anon_sym_RBRACE, - [132601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8200), 1, - anon_sym_DOT, - [132608] = 2, + STATE(4739), 2, + sym_line_comment, + sym_block_comment, + [154333] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1601), 1, + anon_sym_RPAREN, + STATE(4740), 2, + sym_line_comment, + sym_block_comment, + [154347] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7968), 1, + sym_identifier, + STATE(4741), 2, + sym_line_comment, + sym_block_comment, + [154361] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7970), 1, + anon_sym_LPAREN, + STATE(4742), 2, + sym_line_comment, + sym_block_comment, + [154375] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8202), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7972), 1, + sym_identifier, + STATE(4743), 2, + sym_line_comment, + sym_block_comment, + [154389] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7974), 1, + anon_sym_RBRACK, + STATE(4744), 2, + sym_line_comment, + sym_block_comment, + [154403] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7976), 1, anon_sym_RBRACE, - [132615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8204), 1, + STATE(4745), 2, + sym_line_comment, + sym_block_comment, + [154417] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7978), 1, + anon_sym_RBRACK, + STATE(4746), 2, + sym_line_comment, + sym_block_comment, + [154431] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7195), 1, + sym_identifier, + STATE(4747), 2, + sym_line_comment, + sym_block_comment, + [154445] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7980), 1, anon_sym_RBRACE, - [132622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8206), 1, + STATE(4748), 2, + sym_line_comment, + sym_block_comment, + [154459] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7982), 1, anon_sym_RBRACE, - [132629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8208), 1, + STATE(4749), 2, + sym_line_comment, + sym_block_comment, + [154473] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7984), 1, + sym_identifier, + STATE(4750), 2, + sym_line_comment, + sym_block_comment, + [154487] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(951), 1, anon_sym_RBRACE, - [132636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8210), 1, - anon_sym_RBRACK, - [132643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, + STATE(4751), 2, + sym_line_comment, + sym_block_comment, + [154501] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7986), 1, anon_sym_RBRACE, - [132650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8212), 1, - anon_sym_RBRACK, - [132657] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8214), 1, + STATE(4752), 2, + sym_line_comment, + sym_block_comment, + [154515] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7988), 1, + anon_sym_LBRACE, + STATE(4753), 2, + sym_line_comment, + sym_block_comment, + [154529] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7990), 1, anon_sym_RBRACK, - [132664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 1, - anon_sym_RPAREN, - [132671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6090), 1, - anon_sym_COLON_EQ, - [132678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8216), 1, - anon_sym_LPAREN, - [132685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8218), 1, - anon_sym_RBRACE, + STATE(4754), 2, + sym_line_comment, + sym_block_comment, + [154543] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7992), 1, + sym_identifier, + STATE(4755), 2, + sym_line_comment, + sym_block_comment, + [154557] = 1, + ACTIONS(7994), 1, + ts_builtin_sym_end, + [154561] = 1, + ACTIONS(7996), 1, + ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1623)] = 0, - [SMALL_STATE(1624)] = 71, - [SMALL_STATE(1625)] = 142, - [SMALL_STATE(1626)] = 213, - [SMALL_STATE(1627)] = 284, - [SMALL_STATE(1628)] = 355, - [SMALL_STATE(1629)] = 424, - [SMALL_STATE(1630)] = 493, - [SMALL_STATE(1631)] = 562, - [SMALL_STATE(1632)] = 631, - [SMALL_STATE(1633)] = 700, - [SMALL_STATE(1634)] = 769, - [SMALL_STATE(1635)] = 838, - [SMALL_STATE(1636)] = 907, - [SMALL_STATE(1637)] = 976, - [SMALL_STATE(1638)] = 1099, - [SMALL_STATE(1639)] = 1168, - [SMALL_STATE(1640)] = 1288, - [SMALL_STATE(1641)] = 1372, - [SMALL_STATE(1642)] = 1460, - [SMALL_STATE(1643)] = 1554, - [SMALL_STATE(1644)] = 1640, - [SMALL_STATE(1645)] = 1728, - [SMALL_STATE(1646)] = 1812, - [SMALL_STATE(1647)] = 1898, - [SMALL_STATE(1648)] = 1986, - [SMALL_STATE(1649)] = 2070, - [SMALL_STATE(1650)] = 2180, - [SMALL_STATE(1651)] = 2290, - [SMALL_STATE(1652)] = 2386, - [SMALL_STATE(1653)] = 2453, - [SMALL_STATE(1654)] = 2524, - [SMALL_STATE(1655)] = 2595, - [SMALL_STATE(1656)] = 2662, - [SMALL_STATE(1657)] = 2775, - [SMALL_STATE(1658)] = 2857, - [SMALL_STATE(1659)] = 2941, - [SMALL_STATE(1660)] = 3007, - [SMALL_STATE(1661)] = 3073, - [SMALL_STATE(1662)] = 3139, - [SMALL_STATE(1663)] = 3205, - [SMALL_STATE(1664)] = 3297, - [SMALL_STATE(1665)] = 3421, - [SMALL_STATE(1666)] = 3487, - [SMALL_STATE(1667)] = 3573, - [SMALL_STATE(1668)] = 3639, - [SMALL_STATE(1669)] = 3763, - [SMALL_STATE(1670)] = 3871, - [SMALL_STATE(1671)] = 3953, - [SMALL_STATE(1672)] = 4019, - [SMALL_STATE(1673)] = 4085, - [SMALL_STATE(1674)] = 4151, - [SMALL_STATE(1675)] = 4237, - [SMALL_STATE(1676)] = 4303, - [SMALL_STATE(1677)] = 4369, - [SMALL_STATE(1678)] = 4435, - [SMALL_STATE(1679)] = 4503, - [SMALL_STATE(1680)] = 4571, - [SMALL_STATE(1681)] = 4641, - [SMALL_STATE(1682)] = 4707, - [SMALL_STATE(1683)] = 4773, - [SMALL_STATE(1684)] = 4867, - [SMALL_STATE(1685)] = 4935, - [SMALL_STATE(1686)] = 5043, - [SMALL_STATE(1687)] = 5109, - [SMALL_STATE(1688)] = 5175, - [SMALL_STATE(1689)] = 5243, - [SMALL_STATE(1690)] = 5309, - [SMALL_STATE(1691)] = 5395, - [SMALL_STATE(1692)] = 5503, - [SMALL_STATE(1693)] = 5585, - [SMALL_STATE(1694)] = 5653, - [SMALL_STATE(1695)] = 5719, - [SMALL_STATE(1696)] = 5785, - [SMALL_STATE(1697)] = 5853, - [SMALL_STATE(1698)] = 5921, - [SMALL_STATE(1699)] = 5987, - [SMALL_STATE(1700)] = 6053, - [SMALL_STATE(1701)] = 6119, - [SMALL_STATE(1702)] = 6184, - [SMALL_STATE(1703)] = 6249, - [SMALL_STATE(1704)] = 6314, - [SMALL_STATE(1705)] = 6379, - [SMALL_STATE(1706)] = 6444, - [SMALL_STATE(1707)] = 6509, - [SMALL_STATE(1708)] = 6574, - [SMALL_STATE(1709)] = 6639, - [SMALL_STATE(1710)] = 6704, - [SMALL_STATE(1711)] = 6769, - [SMALL_STATE(1712)] = 6836, - [SMALL_STATE(1713)] = 6901, - [SMALL_STATE(1714)] = 6966, - [SMALL_STATE(1715)] = 7031, - [SMALL_STATE(1716)] = 7096, - [SMALL_STATE(1717)] = 7161, - [SMALL_STATE(1718)] = 7226, - [SMALL_STATE(1719)] = 7291, - [SMALL_STATE(1720)] = 7358, - [SMALL_STATE(1721)] = 7423, - [SMALL_STATE(1722)] = 7488, - [SMALL_STATE(1723)] = 7553, - [SMALL_STATE(1724)] = 7618, - [SMALL_STATE(1725)] = 7683, - [SMALL_STATE(1726)] = 7748, - [SMALL_STATE(1727)] = 7813, - [SMALL_STATE(1728)] = 7878, - [SMALL_STATE(1729)] = 7943, - [SMALL_STATE(1730)] = 8008, - [SMALL_STATE(1731)] = 8073, - [SMALL_STATE(1732)] = 8138, - [SMALL_STATE(1733)] = 8203, - [SMALL_STATE(1734)] = 8268, - [SMALL_STATE(1735)] = 8335, - [SMALL_STATE(1736)] = 8402, - [SMALL_STATE(1737)] = 8467, - [SMALL_STATE(1738)] = 8536, - [SMALL_STATE(1739)] = 8601, - [SMALL_STATE(1740)] = 8666, - [SMALL_STATE(1741)] = 8735, - [SMALL_STATE(1742)] = 8800, - [SMALL_STATE(1743)] = 8865, - [SMALL_STATE(1744)] = 8930, - [SMALL_STATE(1745)] = 8995, - [SMALL_STATE(1746)] = 9060, - [SMALL_STATE(1747)] = 9125, - [SMALL_STATE(1748)] = 9190, - [SMALL_STATE(1749)] = 9255, - [SMALL_STATE(1750)] = 9320, - [SMALL_STATE(1751)] = 9385, - [SMALL_STATE(1752)] = 9450, - [SMALL_STATE(1753)] = 9515, - [SMALL_STATE(1754)] = 9580, - [SMALL_STATE(1755)] = 9645, - [SMALL_STATE(1756)] = 9710, - [SMALL_STATE(1757)] = 9775, - [SMALL_STATE(1758)] = 9840, - [SMALL_STATE(1759)] = 9907, - [SMALL_STATE(1760)] = 9972, - [SMALL_STATE(1761)] = 10037, - [SMALL_STATE(1762)] = 10102, - [SMALL_STATE(1763)] = 10167, - [SMALL_STATE(1764)] = 10232, - [SMALL_STATE(1765)] = 10297, - [SMALL_STATE(1766)] = 10362, - [SMALL_STATE(1767)] = 10427, - [SMALL_STATE(1768)] = 10492, - [SMALL_STATE(1769)] = 10557, - [SMALL_STATE(1770)] = 10622, - [SMALL_STATE(1771)] = 10689, - [SMALL_STATE(1772)] = 10754, - [SMALL_STATE(1773)] = 10821, - [SMALL_STATE(1774)] = 10886, - [SMALL_STATE(1775)] = 10951, - [SMALL_STATE(1776)] = 11016, - [SMALL_STATE(1777)] = 11081, - [SMALL_STATE(1778)] = 11146, - [SMALL_STATE(1779)] = 11211, - [SMALL_STATE(1780)] = 11278, - [SMALL_STATE(1781)] = 11343, - [SMALL_STATE(1782)] = 11408, - [SMALL_STATE(1783)] = 11475, - [SMALL_STATE(1784)] = 11587, - [SMALL_STATE(1785)] = 11671, - [SMALL_STATE(1786)] = 11783, - [SMALL_STATE(1787)] = 11899, - [SMALL_STATE(1788)] = 11983, - [SMALL_STATE(1789)] = 12099, - [SMALL_STATE(1790)] = 12183, - [SMALL_STATE(1791)] = 12267, - [SMALL_STATE(1792)] = 12333, - [SMALL_STATE(1793)] = 12445, - [SMALL_STATE(1794)] = 12557, - [SMALL_STATE(1795)] = 12623, - [SMALL_STATE(1796)] = 12707, - [SMALL_STATE(1797)] = 12773, - [SMALL_STATE(1798)] = 12839, - [SMALL_STATE(1799)] = 12957, - [SMALL_STATE(1800)] = 13043, - [SMALL_STATE(1801)] = 13127, - [SMALL_STATE(1802)] = 13193, - [SMALL_STATE(1803)] = 13281, - [SMALL_STATE(1804)] = 13377, - [SMALL_STATE(1805)] = 13475, - [SMALL_STATE(1806)] = 13563, - [SMALL_STATE(1807)] = 13651, - [SMALL_STATE(1808)] = 13739, - [SMALL_STATE(1809)] = 13827, - [SMALL_STATE(1810)] = 13893, - [SMALL_STATE(1811)] = 13979, - [SMALL_STATE(1812)] = 14077, - [SMALL_STATE(1813)] = 14165, - [SMALL_STATE(1814)] = 14261, - [SMALL_STATE(1815)] = 14324, - [SMALL_STATE(1816)] = 14387, - [SMALL_STATE(1817)] = 14454, - [SMALL_STATE(1818)] = 14517, - [SMALL_STATE(1819)] = 14580, - [SMALL_STATE(1820)] = 14643, - [SMALL_STATE(1821)] = 14706, - [SMALL_STATE(1822)] = 14769, - [SMALL_STATE(1823)] = 14832, - [SMALL_STATE(1824)] = 14895, - [SMALL_STATE(1825)] = 14958, - [SMALL_STATE(1826)] = 15021, - [SMALL_STATE(1827)] = 15084, - [SMALL_STATE(1828)] = 15147, - [SMALL_STATE(1829)] = 15210, - [SMALL_STATE(1830)] = 15275, - [SMALL_STATE(1831)] = 15338, - [SMALL_STATE(1832)] = 15401, - [SMALL_STATE(1833)] = 15464, - [SMALL_STATE(1834)] = 15527, - [SMALL_STATE(1835)] = 15638, - [SMALL_STATE(1836)] = 15701, - [SMALL_STATE(1837)] = 15812, - [SMALL_STATE(1838)] = 15875, - [SMALL_STATE(1839)] = 15938, - [SMALL_STATE(1840)] = 16003, - [SMALL_STATE(1841)] = 16066, - [SMALL_STATE(1842)] = 16129, - [SMALL_STATE(1843)] = 16192, - [SMALL_STATE(1844)] = 16255, - [SMALL_STATE(1845)] = 16318, - [SMALL_STATE(1846)] = 16381, - [SMALL_STATE(1847)] = 16446, - [SMALL_STATE(1848)] = 16511, - [SMALL_STATE(1849)] = 16574, - [SMALL_STATE(1850)] = 16637, - [SMALL_STATE(1851)] = 16700, - [SMALL_STATE(1852)] = 16763, - [SMALL_STATE(1853)] = 16826, - [SMALL_STATE(1854)] = 16889, - [SMALL_STATE(1855)] = 16952, - [SMALL_STATE(1856)] = 17015, - [SMALL_STATE(1857)] = 17078, - [SMALL_STATE(1858)] = 17141, - [SMALL_STATE(1859)] = 17204, - [SMALL_STATE(1860)] = 17267, - [SMALL_STATE(1861)] = 17330, - [SMALL_STATE(1862)] = 17393, - [SMALL_STATE(1863)] = 17456, - [SMALL_STATE(1864)] = 17519, - [SMALL_STATE(1865)] = 17582, - [SMALL_STATE(1866)] = 17645, - [SMALL_STATE(1867)] = 17708, - [SMALL_STATE(1868)] = 17771, - [SMALL_STATE(1869)] = 17834, - [SMALL_STATE(1870)] = 17897, - [SMALL_STATE(1871)] = 17964, - [SMALL_STATE(1872)] = 18031, - [SMALL_STATE(1873)] = 18094, - [SMALL_STATE(1874)] = 18157, - [SMALL_STATE(1875)] = 18220, - [SMALL_STATE(1876)] = 18283, - [SMALL_STATE(1877)] = 18346, - [SMALL_STATE(1878)] = 18409, - [SMALL_STATE(1879)] = 18472, - [SMALL_STATE(1880)] = 18535, - [SMALL_STATE(1881)] = 18598, - [SMALL_STATE(1882)] = 18665, - [SMALL_STATE(1883)] = 18728, - [SMALL_STATE(1884)] = 18791, - [SMALL_STATE(1885)] = 18854, - [SMALL_STATE(1886)] = 18917, - [SMALL_STATE(1887)] = 18980, - [SMALL_STATE(1888)] = 19043, - [SMALL_STATE(1889)] = 19106, - [SMALL_STATE(1890)] = 19169, - [SMALL_STATE(1891)] = 19232, - [SMALL_STATE(1892)] = 19303, - [SMALL_STATE(1893)] = 19366, - [SMALL_STATE(1894)] = 19429, - [SMALL_STATE(1895)] = 19540, - [SMALL_STATE(1896)] = 19603, - [SMALL_STATE(1897)] = 19666, - [SMALL_STATE(1898)] = 19777, - [SMALL_STATE(1899)] = 19840, - [SMALL_STATE(1900)] = 19927, - [SMALL_STATE(1901)] = 19990, - [SMALL_STATE(1902)] = 20053, - [SMALL_STATE(1903)] = 20116, - [SMALL_STATE(1904)] = 20179, - [SMALL_STATE(1905)] = 20242, - [SMALL_STATE(1906)] = 20305, - [SMALL_STATE(1907)] = 20368, - [SMALL_STATE(1908)] = 20431, - [SMALL_STATE(1909)] = 20494, - [SMALL_STATE(1910)] = 20557, - [SMALL_STATE(1911)] = 20620, - [SMALL_STATE(1912)] = 20683, - [SMALL_STATE(1913)] = 20746, - [SMALL_STATE(1914)] = 20809, - [SMALL_STATE(1915)] = 20872, - [SMALL_STATE(1916)] = 20935, - [SMALL_STATE(1917)] = 20998, - [SMALL_STATE(1918)] = 21061, - [SMALL_STATE(1919)] = 21124, - [SMALL_STATE(1920)] = 21187, - [SMALL_STATE(1921)] = 21250, - [SMALL_STATE(1922)] = 21337, - [SMALL_STATE(1923)] = 21400, - [SMALL_STATE(1924)] = 21463, - [SMALL_STATE(1925)] = 21526, - [SMALL_STATE(1926)] = 21589, - [SMALL_STATE(1927)] = 21652, - [SMALL_STATE(1928)] = 21737, - [SMALL_STATE(1929)] = 21800, - [SMALL_STATE(1930)] = 21887, - [SMALL_STATE(1931)] = 21950, - [SMALL_STATE(1932)] = 22013, - [SMALL_STATE(1933)] = 22108, - [SMALL_STATE(1934)] = 22173, - [SMALL_STATE(1935)] = 22270, - [SMALL_STATE(1936)] = 22334, - [SMALL_STATE(1937)] = 22444, - [SMALL_STATE(1938)] = 22554, - [SMALL_STATE(1939)] = 22664, - [SMALL_STATE(1940)] = 22728, - [SMALL_STATE(1941)] = 22792, - [SMALL_STATE(1942)] = 22902, - [SMALL_STATE(1943)] = 22966, - [SMALL_STATE(1944)] = 23026, - [SMALL_STATE(1945)] = 23088, - [SMALL_STATE(1946)] = 23158, - [SMALL_STATE(1947)] = 23222, - [SMALL_STATE(1948)] = 23286, - [SMALL_STATE(1949)] = 23347, - [SMALL_STATE(1950)] = 23408, - [SMALL_STATE(1951)] = 23469, - [SMALL_STATE(1952)] = 23530, - [SMALL_STATE(1953)] = 23591, - [SMALL_STATE(1954)] = 23652, - [SMALL_STATE(1955)] = 23713, - [SMALL_STATE(1956)] = 23774, - [SMALL_STATE(1957)] = 23835, - [SMALL_STATE(1958)] = 23896, - [SMALL_STATE(1959)] = 23957, - [SMALL_STATE(1960)] = 24018, - [SMALL_STATE(1961)] = 24079, - [SMALL_STATE(1962)] = 24140, - [SMALL_STATE(1963)] = 24201, - [SMALL_STATE(1964)] = 24262, - [SMALL_STATE(1965)] = 24323, - [SMALL_STATE(1966)] = 24384, - [SMALL_STATE(1967)] = 24445, - [SMALL_STATE(1968)] = 24506, - [SMALL_STATE(1969)] = 24567, - [SMALL_STATE(1970)] = 24628, - [SMALL_STATE(1971)] = 24689, - [SMALL_STATE(1972)] = 24750, - [SMALL_STATE(1973)] = 24813, - [SMALL_STATE(1974)] = 24874, - [SMALL_STATE(1975)] = 24935, - [SMALL_STATE(1976)] = 24996, - [SMALL_STATE(1977)] = 25057, - [SMALL_STATE(1978)] = 25118, - [SMALL_STATE(1979)] = 25179, - [SMALL_STATE(1980)] = 25240, - [SMALL_STATE(1981)] = 25301, - [SMALL_STATE(1982)] = 25362, - [SMALL_STATE(1983)] = 25423, - [SMALL_STATE(1984)] = 25484, - [SMALL_STATE(1985)] = 25545, - [SMALL_STATE(1986)] = 25606, - [SMALL_STATE(1987)] = 25667, - [SMALL_STATE(1988)] = 25728, - [SMALL_STATE(1989)] = 25791, - [SMALL_STATE(1990)] = 25852, - [SMALL_STATE(1991)] = 25913, - [SMALL_STATE(1992)] = 25976, - [SMALL_STATE(1993)] = 26037, - [SMALL_STATE(1994)] = 26098, - [SMALL_STATE(1995)] = 26159, - [SMALL_STATE(1996)] = 26220, - [SMALL_STATE(1997)] = 26281, - [SMALL_STATE(1998)] = 26342, - [SMALL_STATE(1999)] = 26403, - [SMALL_STATE(2000)] = 26464, - [SMALL_STATE(2001)] = 26525, - [SMALL_STATE(2002)] = 26586, - [SMALL_STATE(2003)] = 26647, - [SMALL_STATE(2004)] = 26708, - [SMALL_STATE(2005)] = 26771, - [SMALL_STATE(2006)] = 26834, - [SMALL_STATE(2007)] = 26895, - [SMALL_STATE(2008)] = 26956, - [SMALL_STATE(2009)] = 27017, - [SMALL_STATE(2010)] = 27078, - [SMALL_STATE(2011)] = 27139, - [SMALL_STATE(2012)] = 27200, - [SMALL_STATE(2013)] = 27265, - [SMALL_STATE(2014)] = 27326, - [SMALL_STATE(2015)] = 27387, - [SMALL_STATE(2016)] = 27448, - [SMALL_STATE(2017)] = 27509, - [SMALL_STATE(2018)] = 27570, - [SMALL_STATE(2019)] = 27631, - [SMALL_STATE(2020)] = 27692, - [SMALL_STATE(2021)] = 27753, - [SMALL_STATE(2022)] = 27814, - [SMALL_STATE(2023)] = 27875, - [SMALL_STATE(2024)] = 27936, - [SMALL_STATE(2025)] = 27997, - [SMALL_STATE(2026)] = 28058, - [SMALL_STATE(2027)] = 28119, - [SMALL_STATE(2028)] = 28180, - [SMALL_STATE(2029)] = 28241, - [SMALL_STATE(2030)] = 28302, - [SMALL_STATE(2031)] = 28363, - [SMALL_STATE(2032)] = 28424, - [SMALL_STATE(2033)] = 28485, - [SMALL_STATE(2034)] = 28546, - [SMALL_STATE(2035)] = 28607, - [SMALL_STATE(2036)] = 28668, - [SMALL_STATE(2037)] = 28729, - [SMALL_STATE(2038)] = 28790, - [SMALL_STATE(2039)] = 28851, - [SMALL_STATE(2040)] = 28912, - [SMALL_STATE(2041)] = 28973, - [SMALL_STATE(2042)] = 29034, - [SMALL_STATE(2043)] = 29095, - [SMALL_STATE(2044)] = 29156, - [SMALL_STATE(2045)] = 29217, - [SMALL_STATE(2046)] = 29278, - [SMALL_STATE(2047)] = 29339, - [SMALL_STATE(2048)] = 29400, - [SMALL_STATE(2049)] = 29461, - [SMALL_STATE(2050)] = 29522, - [SMALL_STATE(2051)] = 29583, - [SMALL_STATE(2052)] = 29644, - [SMALL_STATE(2053)] = 29705, - [SMALL_STATE(2054)] = 29766, - [SMALL_STATE(2055)] = 29827, - [SMALL_STATE(2056)] = 29888, - [SMALL_STATE(2057)] = 29949, - [SMALL_STATE(2058)] = 30010, - [SMALL_STATE(2059)] = 30071, - [SMALL_STATE(2060)] = 30132, - [SMALL_STATE(2061)] = 30193, - [SMALL_STATE(2062)] = 30254, - [SMALL_STATE(2063)] = 30315, - [SMALL_STATE(2064)] = 30376, - [SMALL_STATE(2065)] = 30439, - [SMALL_STATE(2066)] = 30502, - [SMALL_STATE(2067)] = 30563, - [SMALL_STATE(2068)] = 30624, - [SMALL_STATE(2069)] = 30685, - [SMALL_STATE(2070)] = 30746, - [SMALL_STATE(2071)] = 30807, - [SMALL_STATE(2072)] = 30868, - [SMALL_STATE(2073)] = 30929, - [SMALL_STATE(2074)] = 30990, - [SMALL_STATE(2075)] = 31051, - [SMALL_STATE(2076)] = 31112, - [SMALL_STATE(2077)] = 31175, - [SMALL_STATE(2078)] = 31236, - [SMALL_STATE(2079)] = 31299, - [SMALL_STATE(2080)] = 31360, - [SMALL_STATE(2081)] = 31421, - [SMALL_STATE(2082)] = 31482, - [SMALL_STATE(2083)] = 31543, - [SMALL_STATE(2084)] = 31604, - [SMALL_STATE(2085)] = 31665, - [SMALL_STATE(2086)] = 31726, - [SMALL_STATE(2087)] = 31787, - [SMALL_STATE(2088)] = 31848, - [SMALL_STATE(2089)] = 31909, - [SMALL_STATE(2090)] = 31970, - [SMALL_STATE(2091)] = 32031, - [SMALL_STATE(2092)] = 32092, - [SMALL_STATE(2093)] = 32153, - [SMALL_STATE(2094)] = 32214, - [SMALL_STATE(2095)] = 32275, - [SMALL_STATE(2096)] = 32340, - [SMALL_STATE(2097)] = 32403, - [SMALL_STATE(2098)] = 32464, - [SMALL_STATE(2099)] = 32525, - [SMALL_STATE(2100)] = 32586, - [SMALL_STATE(2101)] = 32649, - [SMALL_STATE(2102)] = 32710, - [SMALL_STATE(2103)] = 32771, - [SMALL_STATE(2104)] = 32832, - [SMALL_STATE(2105)] = 32893, - [SMALL_STATE(2106)] = 32954, - [SMALL_STATE(2107)] = 33015, - [SMALL_STATE(2108)] = 33076, - [SMALL_STATE(2109)] = 33137, - [SMALL_STATE(2110)] = 33198, - [SMALL_STATE(2111)] = 33259, - [SMALL_STATE(2112)] = 33320, - [SMALL_STATE(2113)] = 33381, - [SMALL_STATE(2114)] = 33442, - [SMALL_STATE(2115)] = 33503, - [SMALL_STATE(2116)] = 33564, - [SMALL_STATE(2117)] = 33625, - [SMALL_STATE(2118)] = 33686, - [SMALL_STATE(2119)] = 33747, - [SMALL_STATE(2120)] = 33808, - [SMALL_STATE(2121)] = 33869, - [SMALL_STATE(2122)] = 33930, - [SMALL_STATE(2123)] = 33991, - [SMALL_STATE(2124)] = 34052, - [SMALL_STATE(2125)] = 34113, - [SMALL_STATE(2126)] = 34174, - [SMALL_STATE(2127)] = 34237, - [SMALL_STATE(2128)] = 34298, - [SMALL_STATE(2129)] = 34359, - [SMALL_STATE(2130)] = 34420, - [SMALL_STATE(2131)] = 34481, - [SMALL_STATE(2132)] = 34542, - [SMALL_STATE(2133)] = 34603, - [SMALL_STATE(2134)] = 34664, - [SMALL_STATE(2135)] = 34725, - [SMALL_STATE(2136)] = 34786, - [SMALL_STATE(2137)] = 34847, - [SMALL_STATE(2138)] = 34908, - [SMALL_STATE(2139)] = 34969, - [SMALL_STATE(2140)] = 35030, - [SMALL_STATE(2141)] = 35091, - [SMALL_STATE(2142)] = 35152, - [SMALL_STATE(2143)] = 35213, - [SMALL_STATE(2144)] = 35278, - [SMALL_STATE(2145)] = 35339, - [SMALL_STATE(2146)] = 35400, - [SMALL_STATE(2147)] = 35465, - [SMALL_STATE(2148)] = 35526, - [SMALL_STATE(2149)] = 35591, - [SMALL_STATE(2150)] = 35656, - [SMALL_STATE(2151)] = 35717, - [SMALL_STATE(2152)] = 35778, - [SMALL_STATE(2153)] = 35839, - [SMALL_STATE(2154)] = 35899, - [SMALL_STATE(2155)] = 35959, - [SMALL_STATE(2156)] = 36019, - [SMALL_STATE(2157)] = 36079, - [SMALL_STATE(2158)] = 36139, - [SMALL_STATE(2159)] = 36214, - [SMALL_STATE(2160)] = 36289, - [SMALL_STATE(2161)] = 36352, - [SMALL_STATE(2162)] = 36427, - [SMALL_STATE(2163)] = 36489, - [SMALL_STATE(2164)] = 36553, - [SMALL_STATE(2165)] = 36615, - [SMALL_STATE(2166)] = 36672, - [SMALL_STATE(2167)] = 36729, - [SMALL_STATE(2168)] = 36790, - [SMALL_STATE(2169)] = 36847, - [SMALL_STATE(2170)] = 36904, - [SMALL_STATE(2171)] = 37009, - [SMALL_STATE(2172)] = 37068, - [SMALL_STATE(2173)] = 37125, - [SMALL_STATE(2174)] = 37182, - [SMALL_STATE(2175)] = 37239, - [SMALL_STATE(2176)] = 37296, - [SMALL_STATE(2177)] = 37355, - [SMALL_STATE(2178)] = 37412, - [SMALL_STATE(2179)] = 37469, - [SMALL_STATE(2180)] = 37532, - [SMALL_STATE(2181)] = 37591, - [SMALL_STATE(2182)] = 37650, - [SMALL_STATE(2183)] = 37706, - [SMALL_STATE(2184)] = 37762, - [SMALL_STATE(2185)] = 37818, - [SMALL_STATE(2186)] = 37874, - [SMALL_STATE(2187)] = 37930, - [SMALL_STATE(2188)] = 37986, - [SMALL_STATE(2189)] = 38042, - [SMALL_STATE(2190)] = 38098, - [SMALL_STATE(2191)] = 38154, - [SMALL_STATE(2192)] = 38210, - [SMALL_STATE(2193)] = 38266, - [SMALL_STATE(2194)] = 38322, - [SMALL_STATE(2195)] = 38378, - [SMALL_STATE(2196)] = 38434, - [SMALL_STATE(2197)] = 38490, - [SMALL_STATE(2198)] = 38548, - [SMALL_STATE(2199)] = 38606, - [SMALL_STATE(2200)] = 38662, - [SMALL_STATE(2201)] = 38718, - [SMALL_STATE(2202)] = 38774, - [SMALL_STATE(2203)] = 38830, - [SMALL_STATE(2204)] = 38886, - [SMALL_STATE(2205)] = 38942, - [SMALL_STATE(2206)] = 38998, - [SMALL_STATE(2207)] = 39054, - [SMALL_STATE(2208)] = 39110, - [SMALL_STATE(2209)] = 39166, - [SMALL_STATE(2210)] = 39222, - [SMALL_STATE(2211)] = 39278, - [SMALL_STATE(2212)] = 39334, - [SMALL_STATE(2213)] = 39392, - [SMALL_STATE(2214)] = 39448, - [SMALL_STATE(2215)] = 39504, - [SMALL_STATE(2216)] = 39560, - [SMALL_STATE(2217)] = 39616, - [SMALL_STATE(2218)] = 39672, - [SMALL_STATE(2219)] = 39728, - [SMALL_STATE(2220)] = 39784, - [SMALL_STATE(2221)] = 39840, - [SMALL_STATE(2222)] = 39896, - [SMALL_STATE(2223)] = 39952, - [SMALL_STATE(2224)] = 40008, - [SMALL_STATE(2225)] = 40064, - [SMALL_STATE(2226)] = 40120, - [SMALL_STATE(2227)] = 40178, - [SMALL_STATE(2228)] = 40234, - [SMALL_STATE(2229)] = 40290, - [SMALL_STATE(2230)] = 40346, - [SMALL_STATE(2231)] = 40402, - [SMALL_STATE(2232)] = 40458, - [SMALL_STATE(2233)] = 40514, - [SMALL_STATE(2234)] = 40570, - [SMALL_STATE(2235)] = 40626, - [SMALL_STATE(2236)] = 40682, - [SMALL_STATE(2237)] = 40738, - [SMALL_STATE(2238)] = 40794, - [SMALL_STATE(2239)] = 40850, - [SMALL_STATE(2240)] = 40906, - [SMALL_STATE(2241)] = 40962, - [SMALL_STATE(2242)] = 41018, - [SMALL_STATE(2243)] = 41074, - [SMALL_STATE(2244)] = 41172, - [SMALL_STATE(2245)] = 41228, - [SMALL_STATE(2246)] = 41284, - [SMALL_STATE(2247)] = 41340, - [SMALL_STATE(2248)] = 41396, - [SMALL_STATE(2249)] = 41452, - [SMALL_STATE(2250)] = 41508, - [SMALL_STATE(2251)] = 41564, - [SMALL_STATE(2252)] = 41620, - [SMALL_STATE(2253)] = 41676, - [SMALL_STATE(2254)] = 41732, - [SMALL_STATE(2255)] = 41788, - [SMALL_STATE(2256)] = 41844, - [SMALL_STATE(2257)] = 41900, - [SMALL_STATE(2258)] = 41956, - [SMALL_STATE(2259)] = 42012, - [SMALL_STATE(2260)] = 42068, - [SMALL_STATE(2261)] = 42124, - [SMALL_STATE(2262)] = 42180, - [SMALL_STATE(2263)] = 42236, - [SMALL_STATE(2264)] = 42294, - [SMALL_STATE(2265)] = 42352, - [SMALL_STATE(2266)] = 42408, - [SMALL_STATE(2267)] = 42464, - [SMALL_STATE(2268)] = 42520, - [SMALL_STATE(2269)] = 42618, - [SMALL_STATE(2270)] = 42674, - [SMALL_STATE(2271)] = 42730, - [SMALL_STATE(2272)] = 42806, - [SMALL_STATE(2273)] = 42862, - [SMALL_STATE(2274)] = 42918, - [SMALL_STATE(2275)] = 43000, - [SMALL_STATE(2276)] = 43056, - [SMALL_STATE(2277)] = 43112, - [SMALL_STATE(2278)] = 43168, - [SMALL_STATE(2279)] = 43224, - [SMALL_STATE(2280)] = 43300, - [SMALL_STATE(2281)] = 43356, - [SMALL_STATE(2282)] = 43412, - [SMALL_STATE(2283)] = 43468, - [SMALL_STATE(2284)] = 43552, - [SMALL_STATE(2285)] = 43608, - [SMALL_STATE(2286)] = 43664, - [SMALL_STATE(2287)] = 43720, - [SMALL_STATE(2288)] = 43776, - [SMALL_STATE(2289)] = 43832, - [SMALL_STATE(2290)] = 43888, - [SMALL_STATE(2291)] = 43944, - [SMALL_STATE(2292)] = 44048, - [SMALL_STATE(2293)] = 44122, - [SMALL_STATE(2294)] = 44178, - [SMALL_STATE(2295)] = 44254, - [SMALL_STATE(2296)] = 44329, - [SMALL_STATE(2297)] = 44384, - [SMALL_STATE(2298)] = 44467, - [SMALL_STATE(2299)] = 44522, - [SMALL_STATE(2300)] = 44597, - [SMALL_STATE(2301)] = 44672, - [SMALL_STATE(2302)] = 44745, - [SMALL_STATE(2303)] = 44822, - [SMALL_STATE(2304)] = 44919, - [SMALL_STATE(2305)] = 45016, - [SMALL_STATE(2306)] = 45097, - [SMALL_STATE(2307)] = 45154, - [SMALL_STATE(2308)] = 45231, - [SMALL_STATE(2309)] = 45328, - [SMALL_STATE(2310)] = 45405, - [SMALL_STATE(2311)] = 45502, - [SMALL_STATE(2312)] = 45557, - [SMALL_STATE(2313)] = 45612, - [SMALL_STATE(2314)] = 45669, - [SMALL_STATE(2315)] = 45727, - [SMALL_STATE(2316)] = 45785, - [SMALL_STATE(2317)] = 45887, - [SMALL_STATE(2318)] = 45942, - [SMALL_STATE(2319)] = 45997, - [SMALL_STATE(2320)] = 46096, - [SMALL_STATE(2321)] = 46151, - [SMALL_STATE(2322)] = 46220, - [SMALL_STATE(2323)] = 46289, - [SMALL_STATE(2324)] = 46344, - [SMALL_STATE(2325)] = 46399, - [SMALL_STATE(2326)] = 46468, - [SMALL_STATE(2327)] = 46520, - [SMALL_STATE(2328)] = 46572, - [SMALL_STATE(2329)] = 46624, - [SMALL_STATE(2330)] = 46676, - [SMALL_STATE(2331)] = 46728, - [SMALL_STATE(2332)] = 46780, - [SMALL_STATE(2333)] = 46858, - [SMALL_STATE(2334)] = 46952, - [SMALL_STATE(2335)] = 47004, - [SMALL_STATE(2336)] = 47058, - [SMALL_STATE(2337)] = 47110, - [SMALL_STATE(2338)] = 47204, - [SMALL_STATE(2339)] = 47256, - [SMALL_STATE(2340)] = 47308, - [SMALL_STATE(2341)] = 47360, - [SMALL_STATE(2342)] = 47412, - [SMALL_STATE(2343)] = 47464, - [SMALL_STATE(2344)] = 47516, - [SMALL_STATE(2345)] = 47568, - [SMALL_STATE(2346)] = 47620, - [SMALL_STATE(2347)] = 47672, - [SMALL_STATE(2348)] = 47724, - [SMALL_STATE(2349)] = 47834, - [SMALL_STATE(2350)] = 47886, - [SMALL_STATE(2351)] = 47938, - [SMALL_STATE(2352)] = 47990, - [SMALL_STATE(2353)] = 48084, - [SMALL_STATE(2354)] = 48136, - [SMALL_STATE(2355)] = 48188, - [SMALL_STATE(2356)] = 48240, - [SMALL_STATE(2357)] = 48292, - [SMALL_STATE(2358)] = 48344, - [SMALL_STATE(2359)] = 48416, - [SMALL_STATE(2360)] = 48488, - [SMALL_STATE(2361)] = 48582, - [SMALL_STATE(2362)] = 48634, - [SMALL_STATE(2363)] = 48714, - [SMALL_STATE(2364)] = 48768, - [SMALL_STATE(2365)] = 48820, - [SMALL_STATE(2366)] = 48892, - [SMALL_STATE(2367)] = 48944, - [SMALL_STATE(2368)] = 49014, - [SMALL_STATE(2369)] = 49124, - [SMALL_STATE(2370)] = 49176, - [SMALL_STATE(2371)] = 49228, - [SMALL_STATE(2372)] = 49280, - [SMALL_STATE(2373)] = 49390, - [SMALL_STATE(2374)] = 49442, - [SMALL_STATE(2375)] = 49498, - [SMALL_STATE(2376)] = 49550, - [SMALL_STATE(2377)] = 49606, - [SMALL_STATE(2378)] = 49716, - [SMALL_STATE(2379)] = 49768, - [SMALL_STATE(2380)] = 49820, - [SMALL_STATE(2381)] = 49872, - [SMALL_STATE(2382)] = 49924, - [SMALL_STATE(2383)] = 49976, - [SMALL_STATE(2384)] = 50028, - [SMALL_STATE(2385)] = 50080, - [SMALL_STATE(2386)] = 50132, - [SMALL_STATE(2387)] = 50188, - [SMALL_STATE(2388)] = 50244, - [SMALL_STATE(2389)] = 50296, - [SMALL_STATE(2390)] = 50348, - [SMALL_STATE(2391)] = 50400, - [SMALL_STATE(2392)] = 50510, - [SMALL_STATE(2393)] = 50562, - [SMALL_STATE(2394)] = 50614, - [SMALL_STATE(2395)] = 50724, - [SMALL_STATE(2396)] = 50776, - [SMALL_STATE(2397)] = 50846, - [SMALL_STATE(2398)] = 50898, - [SMALL_STATE(2399)] = 51008, - [SMALL_STATE(2400)] = 51118, - [SMALL_STATE(2401)] = 51190, - [SMALL_STATE(2402)] = 51242, - [SMALL_STATE(2403)] = 51294, - [SMALL_STATE(2404)] = 51372, - [SMALL_STATE(2405)] = 51452, - [SMALL_STATE(2406)] = 51562, - [SMALL_STATE(2407)] = 51614, - [SMALL_STATE(2408)] = 51666, - [SMALL_STATE(2409)] = 51718, - [SMALL_STATE(2410)] = 51770, - [SMALL_STATE(2411)] = 51822, - [SMALL_STATE(2412)] = 51874, - [SMALL_STATE(2413)] = 51946, - [SMALL_STATE(2414)] = 51998, - [SMALL_STATE(2415)] = 52050, - [SMALL_STATE(2416)] = 52102, - [SMALL_STATE(2417)] = 52154, - [SMALL_STATE(2418)] = 52264, - [SMALL_STATE(2419)] = 52316, - [SMALL_STATE(2420)] = 52410, - [SMALL_STATE(2421)] = 52462, - [SMALL_STATE(2422)] = 52558, - [SMALL_STATE(2423)] = 52610, - [SMALL_STATE(2424)] = 52662, - [SMALL_STATE(2425)] = 52714, - [SMALL_STATE(2426)] = 52766, - [SMALL_STATE(2427)] = 52818, - [SMALL_STATE(2428)] = 52890, - [SMALL_STATE(2429)] = 52942, - [SMALL_STATE(2430)] = 52994, - [SMALL_STATE(2431)] = 53104, - [SMALL_STATE(2432)] = 53156, - [SMALL_STATE(2433)] = 53208, - [SMALL_STATE(2434)] = 53260, - [SMALL_STATE(2435)] = 53312, - [SMALL_STATE(2436)] = 53364, - [SMALL_STATE(2437)] = 53416, - [SMALL_STATE(2438)] = 53468, - [SMALL_STATE(2439)] = 53520, - [SMALL_STATE(2440)] = 53572, - [SMALL_STATE(2441)] = 53624, - [SMALL_STATE(2442)] = 53676, - [SMALL_STATE(2443)] = 53728, - [SMALL_STATE(2444)] = 53780, - [SMALL_STATE(2445)] = 53832, - [SMALL_STATE(2446)] = 53884, - [SMALL_STATE(2447)] = 53936, - [SMALL_STATE(2448)] = 53988, - [SMALL_STATE(2449)] = 54040, - [SMALL_STATE(2450)] = 54092, - [SMALL_STATE(2451)] = 54146, - [SMALL_STATE(2452)] = 54240, - [SMALL_STATE(2453)] = 54350, - [SMALL_STATE(2454)] = 54460, - [SMALL_STATE(2455)] = 54512, - [SMALL_STATE(2456)] = 54564, - [SMALL_STATE(2457)] = 54616, - [SMALL_STATE(2458)] = 54669, - [SMALL_STATE(2459)] = 54724, - [SMALL_STATE(2460)] = 54817, - [SMALL_STATE(2461)] = 54910, - [SMALL_STATE(2462)] = 55003, - [SMALL_STATE(2463)] = 55076, - [SMALL_STATE(2464)] = 55169, - [SMALL_STATE(2465)] = 55250, - [SMALL_STATE(2466)] = 55327, - [SMALL_STATE(2467)] = 55380, - [SMALL_STATE(2468)] = 55457, - [SMALL_STATE(2469)] = 55538, - [SMALL_STATE(2470)] = 55625, - [SMALL_STATE(2471)] = 55714, - [SMALL_STATE(2472)] = 55795, - [SMALL_STATE(2473)] = 55898, - [SMALL_STATE(2474)] = 56001, - [SMALL_STATE(2475)] = 56092, - [SMALL_STATE(2476)] = 56183, - [SMALL_STATE(2477)] = 56264, - [SMALL_STATE(2478)] = 56351, - [SMALL_STATE(2479)] = 56456, - [SMALL_STATE(2480)] = 56561, - [SMALL_STATE(2481)] = 56642, - [SMALL_STATE(2482)] = 56729, - [SMALL_STATE(2483)] = 56816, - [SMALL_STATE(2484)] = 56889, - [SMALL_STATE(2485)] = 56970, - [SMALL_STATE(2486)] = 57023, - [SMALL_STATE(2487)] = 57076, - [SMALL_STATE(2488)] = 57129, - [SMALL_STATE(2489)] = 57218, - [SMALL_STATE(2490)] = 57271, - [SMALL_STATE(2491)] = 57324, - [SMALL_STATE(2492)] = 57377, - [SMALL_STATE(2493)] = 57430, - [SMALL_STATE(2494)] = 57503, - [SMALL_STATE(2495)] = 57553, - [SMALL_STATE(2496)] = 57605, - [SMALL_STATE(2497)] = 57655, - [SMALL_STATE(2498)] = 57705, - [SMALL_STATE(2499)] = 57755, - [SMALL_STATE(2500)] = 57805, - [SMALL_STATE(2501)] = 57857, - [SMALL_STATE(2502)] = 57907, - [SMALL_STATE(2503)] = 57957, - [SMALL_STATE(2504)] = 58011, - [SMALL_STATE(2505)] = 58065, - [SMALL_STATE(2506)] = 58115, - [SMALL_STATE(2507)] = 58165, - [SMALL_STATE(2508)] = 58215, - [SMALL_STATE(2509)] = 58267, - [SMALL_STATE(2510)] = 58317, - [SMALL_STATE(2511)] = 58421, - [SMALL_STATE(2512)] = 58471, - [SMALL_STATE(2513)] = 58521, - [SMALL_STATE(2514)] = 58571, - [SMALL_STATE(2515)] = 58621, - [SMALL_STATE(2516)] = 58671, - [SMALL_STATE(2517)] = 58721, - [SMALL_STATE(2518)] = 58771, - [SMALL_STATE(2519)] = 58821, - [SMALL_STATE(2520)] = 58871, - [SMALL_STATE(2521)] = 58921, - [SMALL_STATE(2522)] = 58971, - [SMALL_STATE(2523)] = 59021, - [SMALL_STATE(2524)] = 59071, - [SMALL_STATE(2525)] = 59121, - [SMALL_STATE(2526)] = 59171, - [SMALL_STATE(2527)] = 59221, - [SMALL_STATE(2528)] = 59271, - [SMALL_STATE(2529)] = 59321, - [SMALL_STATE(2530)] = 59371, - [SMALL_STATE(2531)] = 59421, - [SMALL_STATE(2532)] = 59471, - [SMALL_STATE(2533)] = 59521, - [SMALL_STATE(2534)] = 59571, - [SMALL_STATE(2535)] = 59621, - [SMALL_STATE(2536)] = 59671, - [SMALL_STATE(2537)] = 59721, - [SMALL_STATE(2538)] = 59771, - [SMALL_STATE(2539)] = 59821, - [SMALL_STATE(2540)] = 59871, - [SMALL_STATE(2541)] = 59921, - [SMALL_STATE(2542)] = 59971, - [SMALL_STATE(2543)] = 60021, - [SMALL_STATE(2544)] = 60071, - [SMALL_STATE(2545)] = 60121, - [SMALL_STATE(2546)] = 60171, - [SMALL_STATE(2547)] = 60221, - [SMALL_STATE(2548)] = 60271, - [SMALL_STATE(2549)] = 60321, - [SMALL_STATE(2550)] = 60371, - [SMALL_STATE(2551)] = 60421, - [SMALL_STATE(2552)] = 60501, - [SMALL_STATE(2553)] = 60551, - [SMALL_STATE(2554)] = 60631, - [SMALL_STATE(2555)] = 60721, - [SMALL_STATE(2556)] = 60809, - [SMALL_STATE(2557)] = 60889, - [SMALL_STATE(2558)] = 60965, - [SMALL_STATE(2559)] = 61015, - [SMALL_STATE(2560)] = 61065, - [SMALL_STATE(2561)] = 61115, - [SMALL_STATE(2562)] = 61165, - [SMALL_STATE(2563)] = 61215, - [SMALL_STATE(2564)] = 61265, - [SMALL_STATE(2565)] = 61315, - [SMALL_STATE(2566)] = 61365, - [SMALL_STATE(2567)] = 61443, - [SMALL_STATE(2568)] = 61493, - [SMALL_STATE(2569)] = 61543, - [SMALL_STATE(2570)] = 61643, - [SMALL_STATE(2571)] = 61743, - [SMALL_STATE(2572)] = 61793, - [SMALL_STATE(2573)] = 61843, - [SMALL_STATE(2574)] = 61921, - [SMALL_STATE(2575)] = 61971, - [SMALL_STATE(2576)] = 62057, - [SMALL_STATE(2577)] = 62141, - [SMALL_STATE(2578)] = 62219, - [SMALL_STATE(2579)] = 62293, - [SMALL_STATE(2580)] = 62345, - [SMALL_STATE(2581)] = 62395, - [SMALL_STATE(2582)] = 62501, - [SMALL_STATE(2583)] = 62551, - [SMALL_STATE(2584)] = 62601, - [SMALL_STATE(2585)] = 62651, - [SMALL_STATE(2586)] = 62729, - [SMALL_STATE(2587)] = 62779, - [SMALL_STATE(2588)] = 62857, - [SMALL_STATE(2589)] = 62943, - [SMALL_STATE(2590)] = 63027, - [SMALL_STATE(2591)] = 63077, - [SMALL_STATE(2592)] = 63155, - [SMALL_STATE(2593)] = 63229, - [SMALL_STATE(2594)] = 63279, - [SMALL_STATE(2595)] = 63383, - [SMALL_STATE(2596)] = 63433, - [SMALL_STATE(2597)] = 63483, - [SMALL_STATE(2598)] = 63533, - [SMALL_STATE(2599)] = 63585, - [SMALL_STATE(2600)] = 63635, - [SMALL_STATE(2601)] = 63735, - [SMALL_STATE(2602)] = 63835, - [SMALL_STATE(2603)] = 63885, - [SMALL_STATE(2604)] = 63989, - [SMALL_STATE(2605)] = 64039, - [SMALL_STATE(2606)] = 64089, - [SMALL_STATE(2607)] = 64189, - [SMALL_STATE(2608)] = 64239, - [SMALL_STATE(2609)] = 64289, - [SMALL_STATE(2610)] = 64339, - [SMALL_STATE(2611)] = 64389, - [SMALL_STATE(2612)] = 64439, - [SMALL_STATE(2613)] = 64489, - [SMALL_STATE(2614)] = 64539, - [SMALL_STATE(2615)] = 64591, - [SMALL_STATE(2616)] = 64641, - [SMALL_STATE(2617)] = 64691, - [SMALL_STATE(2618)] = 64743, - [SMALL_STATE(2619)] = 64793, - [SMALL_STATE(2620)] = 64843, - [SMALL_STATE(2621)] = 64897, - [SMALL_STATE(2622)] = 64951, - [SMALL_STATE(2623)] = 65001, - [SMALL_STATE(2624)] = 65051, - [SMALL_STATE(2625)] = 65155, - [SMALL_STATE(2626)] = 65258, - [SMALL_STATE(2627)] = 65361, - [SMALL_STATE(2628)] = 65464, - [SMALL_STATE(2629)] = 65563, - [SMALL_STATE(2630)] = 65664, - [SMALL_STATE(2631)] = 65765, - [SMALL_STATE(2632)] = 65820, - [SMALL_STATE(2633)] = 65923, - [SMALL_STATE(2634)] = 66024, - [SMALL_STATE(2635)] = 66127, - [SMALL_STATE(2636)] = 66182, - [SMALL_STATE(2637)] = 66283, - [SMALL_STATE(2638)] = 66386, - [SMALL_STATE(2639)] = 66489, - [SMALL_STATE(2640)] = 66538, - [SMALL_STATE(2641)] = 66641, - [SMALL_STATE(2642)] = 66742, - [SMALL_STATE(2643)] = 66845, - [SMALL_STATE(2644)] = 66944, - [SMALL_STATE(2645)] = 67047, - [SMALL_STATE(2646)] = 67146, - [SMALL_STATE(2647)] = 67245, - [SMALL_STATE(2648)] = 67298, - [SMALL_STATE(2649)] = 67397, - [SMALL_STATE(2650)] = 67498, - [SMALL_STATE(2651)] = 67599, - [SMALL_STATE(2652)] = 67700, - [SMALL_STATE(2653)] = 67751, - [SMALL_STATE(2654)] = 67802, - [SMALL_STATE(2655)] = 67851, - [SMALL_STATE(2656)] = 67952, - [SMALL_STATE(2657)] = 68053, - [SMALL_STATE(2658)] = 68104, - [SMALL_STATE(2659)] = 68153, - [SMALL_STATE(2660)] = 68254, - [SMALL_STATE(2661)] = 68355, - [SMALL_STATE(2662)] = 68404, - [SMALL_STATE(2663)] = 68507, - [SMALL_STATE(2664)] = 68610, - [SMALL_STATE(2665)] = 68713, - [SMALL_STATE(2666)] = 68814, - [SMALL_STATE(2667)] = 68915, - [SMALL_STATE(2668)] = 68967, - [SMALL_STATE(2669)] = 69015, - [SMALL_STATE(2670)] = 69113, - [SMALL_STATE(2671)] = 69211, - [SMALL_STATE(2672)] = 69287, - [SMALL_STATE(2673)] = 69339, - [SMALL_STATE(2674)] = 69387, - [SMALL_STATE(2675)] = 69463, - [SMALL_STATE(2676)] = 69557, - [SMALL_STATE(2677)] = 69605, - [SMALL_STATE(2678)] = 69703, - [SMALL_STATE(2679)] = 69797, - [SMALL_STATE(2680)] = 69845, - [SMALL_STATE(2681)] = 69893, - [SMALL_STATE(2682)] = 69977, - [SMALL_STATE(2683)] = 70025, - [SMALL_STATE(2684)] = 70073, - [SMALL_STATE(2685)] = 70121, - [SMALL_STATE(2686)] = 70169, - [SMALL_STATE(2687)] = 70217, - [SMALL_STATE(2688)] = 70315, - [SMALL_STATE(2689)] = 70397, - [SMALL_STATE(2690)] = 70495, - [SMALL_STATE(2691)] = 70593, - [SMALL_STATE(2692)] = 70691, - [SMALL_STATE(2693)] = 70739, - [SMALL_STATE(2694)] = 70787, - [SMALL_STATE(2695)] = 70881, - [SMALL_STATE(2696)] = 70979, - [SMALL_STATE(2697)] = 71027, - [SMALL_STATE(2698)] = 71075, - [SMALL_STATE(2699)] = 71123, - [SMALL_STATE(2700)] = 71171, - [SMALL_STATE(2701)] = 71219, - [SMALL_STATE(2702)] = 71267, - [SMALL_STATE(2703)] = 71365, - [SMALL_STATE(2704)] = 71413, - [SMALL_STATE(2705)] = 71461, - [SMALL_STATE(2706)] = 71555, - [SMALL_STATE(2707)] = 71653, - [SMALL_STATE(2708)] = 71701, - [SMALL_STATE(2709)] = 71749, - [SMALL_STATE(2710)] = 71797, - [SMALL_STATE(2711)] = 71845, - [SMALL_STATE(2712)] = 71893, - [SMALL_STATE(2713)] = 71941, - [SMALL_STATE(2714)] = 72039, - [SMALL_STATE(2715)] = 72087, - [SMALL_STATE(2716)] = 72163, - [SMALL_STATE(2717)] = 72261, - [SMALL_STATE(2718)] = 72309, - [SMALL_STATE(2719)] = 72403, - [SMALL_STATE(2720)] = 72475, - [SMALL_STATE(2721)] = 72523, - [SMALL_STATE(2722)] = 72571, - [SMALL_STATE(2723)] = 72619, - [SMALL_STATE(2724)] = 72667, - [SMALL_STATE(2725)] = 72715, - [SMALL_STATE(2726)] = 72813, - [SMALL_STATE(2727)] = 72911, - [SMALL_STATE(2728)] = 72959, - [SMALL_STATE(2729)] = 73007, - [SMALL_STATE(2730)] = 73055, - [SMALL_STATE(2731)] = 73103, - [SMALL_STATE(2732)] = 73151, - [SMALL_STATE(2733)] = 73199, - [SMALL_STATE(2734)] = 73293, - [SMALL_STATE(2735)] = 73341, - [SMALL_STATE(2736)] = 73435, - [SMALL_STATE(2737)] = 73483, - [SMALL_STATE(2738)] = 73535, - [SMALL_STATE(2739)] = 73583, - [SMALL_STATE(2740)] = 73681, - [SMALL_STATE(2741)] = 73729, - [SMALL_STATE(2742)] = 73777, - [SMALL_STATE(2743)] = 73825, - [SMALL_STATE(2744)] = 73873, - [SMALL_STATE(2745)] = 73921, - [SMALL_STATE(2746)] = 73969, - [SMALL_STATE(2747)] = 74017, - [SMALL_STATE(2748)] = 74065, - [SMALL_STATE(2749)] = 74113, - [SMALL_STATE(2750)] = 74161, - [SMALL_STATE(2751)] = 74209, - [SMALL_STATE(2752)] = 74257, - [SMALL_STATE(2753)] = 74355, - [SMALL_STATE(2754)] = 74403, - [SMALL_STATE(2755)] = 74451, - [SMALL_STATE(2756)] = 74549, - [SMALL_STATE(2757)] = 74597, - [SMALL_STATE(2758)] = 74647, - [SMALL_STATE(2759)] = 74697, - [SMALL_STATE(2760)] = 74745, - [SMALL_STATE(2761)] = 74793, - [SMALL_STATE(2762)] = 74891, - [SMALL_STATE(2763)] = 74939, - [SMALL_STATE(2764)] = 74987, - [SMALL_STATE(2765)] = 75085, - [SMALL_STATE(2766)] = 75133, - [SMALL_STATE(2767)] = 75181, - [SMALL_STATE(2768)] = 75279, - [SMALL_STATE(2769)] = 75329, - [SMALL_STATE(2770)] = 75427, - [SMALL_STATE(2771)] = 75475, - [SMALL_STATE(2772)] = 75523, - [SMALL_STATE(2773)] = 75571, - [SMALL_STATE(2774)] = 75621, - [SMALL_STATE(2775)] = 75719, - [SMALL_STATE(2776)] = 75767, - [SMALL_STATE(2777)] = 75815, - [SMALL_STATE(2778)] = 75863, - [SMALL_STATE(2779)] = 75911, - [SMALL_STATE(2780)] = 75961, - [SMALL_STATE(2781)] = 76033, - [SMALL_STATE(2782)] = 76109, - [SMALL_STATE(2783)] = 76207, - [SMALL_STATE(2784)] = 76301, - [SMALL_STATE(2785)] = 76351, - [SMALL_STATE(2786)] = 76449, - [SMALL_STATE(2787)] = 76531, - [SMALL_STATE(2788)] = 76615, - [SMALL_STATE(2789)] = 76663, - [SMALL_STATE(2790)] = 76761, - [SMALL_STATE(2791)] = 76837, - [SMALL_STATE(2792)] = 76931, - [SMALL_STATE(2793)] = 76979, - [SMALL_STATE(2794)] = 77055, - [SMALL_STATE(2795)] = 77153, - [SMALL_STATE(2796)] = 77201, - [SMALL_STATE(2797)] = 77299, - [SMALL_STATE(2798)] = 77397, - [SMALL_STATE(2799)] = 77491, - [SMALL_STATE(2800)] = 77589, - [SMALL_STATE(2801)] = 77637, - [SMALL_STATE(2802)] = 77685, - [SMALL_STATE(2803)] = 77733, - [SMALL_STATE(2804)] = 77783, - [SMALL_STATE(2805)] = 77833, - [SMALL_STATE(2806)] = 77881, - [SMALL_STATE(2807)] = 77929, - [SMALL_STATE(2808)] = 77977, - [SMALL_STATE(2809)] = 78025, - [SMALL_STATE(2810)] = 78123, - [SMALL_STATE(2811)] = 78173, - [SMALL_STATE(2812)] = 78271, - [SMALL_STATE(2813)] = 78365, - [SMALL_STATE(2814)] = 78413, - [SMALL_STATE(2815)] = 78461, - [SMALL_STATE(2816)] = 78509, - [SMALL_STATE(2817)] = 78557, - [SMALL_STATE(2818)] = 78609, - [SMALL_STATE(2819)] = 78659, - [SMALL_STATE(2820)] = 78757, - [SMALL_STATE(2821)] = 78805, - [SMALL_STATE(2822)] = 78903, - [SMALL_STATE(2823)] = 79001, - [SMALL_STATE(2824)] = 79099, - [SMALL_STATE(2825)] = 79197, - [SMALL_STATE(2826)] = 79247, - [SMALL_STATE(2827)] = 79295, - [SMALL_STATE(2828)] = 79393, - [SMALL_STATE(2829)] = 79491, - [SMALL_STATE(2830)] = 79539, - [SMALL_STATE(2831)] = 79633, - [SMALL_STATE(2832)] = 79727, - [SMALL_STATE(2833)] = 79775, - [SMALL_STATE(2834)] = 79823, - [SMALL_STATE(2835)] = 79921, - [SMALL_STATE(2836)] = 80019, - [SMALL_STATE(2837)] = 80113, - [SMALL_STATE(2838)] = 80211, - [SMALL_STATE(2839)] = 80309, - [SMALL_STATE(2840)] = 80407, - [SMALL_STATE(2841)] = 80505, - [SMALL_STATE(2842)] = 80599, - [SMALL_STATE(2843)] = 80697, - [SMALL_STATE(2844)] = 80745, - [SMALL_STATE(2845)] = 80795, - [SMALL_STATE(2846)] = 80843, - [SMALL_STATE(2847)] = 80891, - [SMALL_STATE(2848)] = 80989, - [SMALL_STATE(2849)] = 81087, - [SMALL_STATE(2850)] = 81137, - [SMALL_STATE(2851)] = 81235, - [SMALL_STATE(2852)] = 81333, - [SMALL_STATE(2853)] = 81431, - [SMALL_STATE(2854)] = 81525, - [SMALL_STATE(2855)] = 81620, - [SMALL_STATE(2856)] = 81709, - [SMALL_STATE(2857)] = 81804, - [SMALL_STATE(2858)] = 81893, - [SMALL_STATE(2859)] = 81946, - [SMALL_STATE(2860)] = 82041, - [SMALL_STATE(2861)] = 82090, - [SMALL_STATE(2862)] = 82185, - [SMALL_STATE(2863)] = 82280, - [SMALL_STATE(2864)] = 82333, - [SMALL_STATE(2865)] = 82380, - [SMALL_STATE(2866)] = 82475, - [SMALL_STATE(2867)] = 82570, - [SMALL_STATE(2868)] = 82665, - [SMALL_STATE(2869)] = 82760, - [SMALL_STATE(2870)] = 82847, - [SMALL_STATE(2871)] = 82896, - [SMALL_STATE(2872)] = 82991, - [SMALL_STATE(2873)] = 83086, - [SMALL_STATE(2874)] = 83181, - [SMALL_STATE(2875)] = 83276, - [SMALL_STATE(2876)] = 83363, - [SMALL_STATE(2877)] = 83412, - [SMALL_STATE(2878)] = 83507, - [SMALL_STATE(2879)] = 83602, - [SMALL_STATE(2880)] = 83649, - [SMALL_STATE(2881)] = 83744, - [SMALL_STATE(2882)] = 83839, - [SMALL_STATE(2883)] = 83885, - [SMALL_STATE(2884)] = 83931, - [SMALL_STATE(2885)] = 83977, - [SMALL_STATE(2886)] = 84023, - [SMALL_STATE(2887)] = 84069, - [SMALL_STATE(2888)] = 84115, - [SMALL_STATE(2889)] = 84161, - [SMALL_STATE(2890)] = 84207, - [SMALL_STATE(2891)] = 84253, - [SMALL_STATE(2892)] = 84299, - [SMALL_STATE(2893)] = 84345, - [SMALL_STATE(2894)] = 84393, - [SMALL_STATE(2895)] = 84441, - [SMALL_STATE(2896)] = 84487, - [SMALL_STATE(2897)] = 84535, - [SMALL_STATE(2898)] = 84581, - [SMALL_STATE(2899)] = 84627, - [SMALL_STATE(2900)] = 84673, - [SMALL_STATE(2901)] = 84719, - [SMALL_STATE(2902)] = 84765, - [SMALL_STATE(2903)] = 84811, - [SMALL_STATE(2904)] = 84893, - [SMALL_STATE(2905)] = 84939, - [SMALL_STATE(2906)] = 85027, - [SMALL_STATE(2907)] = 85073, - [SMALL_STATE(2908)] = 85121, - [SMALL_STATE(2909)] = 85167, - [SMALL_STATE(2910)] = 85213, - [SMALL_STATE(2911)] = 85261, - [SMALL_STATE(2912)] = 85307, - [SMALL_STATE(2913)] = 85353, - [SMALL_STATE(2914)] = 85399, - [SMALL_STATE(2915)] = 85447, - [SMALL_STATE(2916)] = 85493, - [SMALL_STATE(2917)] = 85541, - [SMALL_STATE(2918)] = 85623, - [SMALL_STATE(2919)] = 85671, - [SMALL_STATE(2920)] = 85717, - [SMALL_STATE(2921)] = 85799, - [SMALL_STATE(2922)] = 85845, - [SMALL_STATE(2923)] = 85893, - [SMALL_STATE(2924)] = 85939, - [SMALL_STATE(2925)] = 86021, - [SMALL_STATE(2926)] = 86069, - [SMALL_STATE(2927)] = 86117, - [SMALL_STATE(2928)] = 86165, - [SMALL_STATE(2929)] = 86213, - [SMALL_STATE(2930)] = 86261, - [SMALL_STATE(2931)] = 86343, - [SMALL_STATE(2932)] = 86425, - [SMALL_STATE(2933)] = 86472, - [SMALL_STATE(2934)] = 86519, - [SMALL_STATE(2935)] = 86568, - [SMALL_STATE(2936)] = 86617, - [SMALL_STATE(2937)] = 86666, - [SMALL_STATE(2938)] = 86713, - [SMALL_STATE(2939)] = 86760, - [SMALL_STATE(2940)] = 86807, - [SMALL_STATE(2941)] = 86854, - [SMALL_STATE(2942)] = 86901, - [SMALL_STATE(2943)] = 86948, - [SMALL_STATE(2944)] = 86995, - [SMALL_STATE(2945)] = 87044, - [SMALL_STATE(2946)] = 87091, - [SMALL_STATE(2947)] = 87138, - [SMALL_STATE(2948)] = 87187, - [SMALL_STATE(2949)] = 87234, - [SMALL_STATE(2950)] = 87283, - [SMALL_STATE(2951)] = 87330, - [SMALL_STATE(2952)] = 87379, - [SMALL_STATE(2953)] = 87428, - [SMALL_STATE(2954)] = 87475, - [SMALL_STATE(2955)] = 87522, - [SMALL_STATE(2956)] = 87569, - [SMALL_STATE(2957)] = 87618, - [SMALL_STATE(2958)] = 87665, - [SMALL_STATE(2959)] = 87712, - [SMALL_STATE(2960)] = 87759, - [SMALL_STATE(2961)] = 87808, - [SMALL_STATE(2962)] = 87855, - [SMALL_STATE(2963)] = 87902, - [SMALL_STATE(2964)] = 87949, - [SMALL_STATE(2965)] = 87998, - [SMALL_STATE(2966)] = 88047, - [SMALL_STATE(2967)] = 88096, - [SMALL_STATE(2968)] = 88143, - [SMALL_STATE(2969)] = 88190, - [SMALL_STATE(2970)] = 88237, - [SMALL_STATE(2971)] = 88284, - [SMALL_STATE(2972)] = 88331, - [SMALL_STATE(2973)] = 88380, - [SMALL_STATE(2974)] = 88427, - [SMALL_STATE(2975)] = 88476, - [SMALL_STATE(2976)] = 88523, - [SMALL_STATE(2977)] = 88570, - [SMALL_STATE(2978)] = 88619, - [SMALL_STATE(2979)] = 88668, - [SMALL_STATE(2980)] = 88717, - [SMALL_STATE(2981)] = 88764, - [SMALL_STATE(2982)] = 88813, - [SMALL_STATE(2983)] = 88862, - [SMALL_STATE(2984)] = 88911, - [SMALL_STATE(2985)] = 88958, - [SMALL_STATE(2986)] = 89005, - [SMALL_STATE(2987)] = 89052, - [SMALL_STATE(2988)] = 89099, - [SMALL_STATE(2989)] = 89148, - [SMALL_STATE(2990)] = 89197, - [SMALL_STATE(2991)] = 89244, - [SMALL_STATE(2992)] = 89291, - [SMALL_STATE(2993)] = 89340, - [SMALL_STATE(2994)] = 89387, - [SMALL_STATE(2995)] = 89434, - [SMALL_STATE(2996)] = 89481, - [SMALL_STATE(2997)] = 89528, - [SMALL_STATE(2998)] = 89575, - [SMALL_STATE(2999)] = 89624, - [SMALL_STATE(3000)] = 89673, - [SMALL_STATE(3001)] = 89720, - [SMALL_STATE(3002)] = 89767, - [SMALL_STATE(3003)] = 89816, - [SMALL_STATE(3004)] = 89865, - [SMALL_STATE(3005)] = 89912, - [SMALL_STATE(3006)] = 89959, - [SMALL_STATE(3007)] = 90006, - [SMALL_STATE(3008)] = 90088, - [SMALL_STATE(3009)] = 90170, - [SMALL_STATE(3010)] = 90249, - [SMALL_STATE(3011)] = 90328, - [SMALL_STATE(3012)] = 90407, - [SMALL_STATE(3013)] = 90486, - [SMALL_STATE(3014)] = 90565, - [SMALL_STATE(3015)] = 90644, - [SMALL_STATE(3016)] = 90723, - [SMALL_STATE(3017)] = 90802, - [SMALL_STATE(3018)] = 90881, - [SMALL_STATE(3019)] = 90960, - [SMALL_STATE(3020)] = 91039, - [SMALL_STATE(3021)] = 91118, - [SMALL_STATE(3022)] = 91197, - [SMALL_STATE(3023)] = 91276, - [SMALL_STATE(3024)] = 91355, - [SMALL_STATE(3025)] = 91434, - [SMALL_STATE(3026)] = 91513, - [SMALL_STATE(3027)] = 91592, - [SMALL_STATE(3028)] = 91645, - [SMALL_STATE(3029)] = 91724, - [SMALL_STATE(3030)] = 91803, - [SMALL_STATE(3031)] = 91882, - [SMALL_STATE(3032)] = 91961, - [SMALL_STATE(3033)] = 92040, - [SMALL_STATE(3034)] = 92119, - [SMALL_STATE(3035)] = 92198, - [SMALL_STATE(3036)] = 92277, - [SMALL_STATE(3037)] = 92356, - [SMALL_STATE(3038)] = 92435, - [SMALL_STATE(3039)] = 92514, - [SMALL_STATE(3040)] = 92593, - [SMALL_STATE(3041)] = 92672, - [SMALL_STATE(3042)] = 92751, - [SMALL_STATE(3043)] = 92830, - [SMALL_STATE(3044)] = 92909, - [SMALL_STATE(3045)] = 92988, - [SMALL_STATE(3046)] = 93067, - [SMALL_STATE(3047)] = 93146, - [SMALL_STATE(3048)] = 93222, - [SMALL_STATE(3049)] = 93298, - [SMALL_STATE(3050)] = 93374, - [SMALL_STATE(3051)] = 93450, - [SMALL_STATE(3052)] = 93526, - [SMALL_STATE(3053)] = 93602, - [SMALL_STATE(3054)] = 93678, - [SMALL_STATE(3055)] = 93754, - [SMALL_STATE(3056)] = 93830, - [SMALL_STATE(3057)] = 93906, - [SMALL_STATE(3058)] = 93982, - [SMALL_STATE(3059)] = 94058, - [SMALL_STATE(3060)] = 94134, - [SMALL_STATE(3061)] = 94210, - [SMALL_STATE(3062)] = 94286, - [SMALL_STATE(3063)] = 94362, - [SMALL_STATE(3064)] = 94438, - [SMALL_STATE(3065)] = 94514, - [SMALL_STATE(3066)] = 94590, - [SMALL_STATE(3067)] = 94666, - [SMALL_STATE(3068)] = 94742, - [SMALL_STATE(3069)] = 94818, - [SMALL_STATE(3070)] = 94894, - [SMALL_STATE(3071)] = 94970, - [SMALL_STATE(3072)] = 95046, - [SMALL_STATE(3073)] = 95122, - [SMALL_STATE(3074)] = 95198, - [SMALL_STATE(3075)] = 95274, - [SMALL_STATE(3076)] = 95350, - [SMALL_STATE(3077)] = 95426, - [SMALL_STATE(3078)] = 95502, - [SMALL_STATE(3079)] = 95578, - [SMALL_STATE(3080)] = 95654, - [SMALL_STATE(3081)] = 95730, - [SMALL_STATE(3082)] = 95806, - [SMALL_STATE(3083)] = 95882, - [SMALL_STATE(3084)] = 95958, - [SMALL_STATE(3085)] = 96034, - [SMALL_STATE(3086)] = 96110, - [SMALL_STATE(3087)] = 96186, - [SMALL_STATE(3088)] = 96262, - [SMALL_STATE(3089)] = 96338, - [SMALL_STATE(3090)] = 96414, - [SMALL_STATE(3091)] = 96490, - [SMALL_STATE(3092)] = 96566, - [SMALL_STATE(3093)] = 96642, - [SMALL_STATE(3094)] = 96718, - [SMALL_STATE(3095)] = 96794, - [SMALL_STATE(3096)] = 96870, - [SMALL_STATE(3097)] = 96946, - [SMALL_STATE(3098)] = 97022, - [SMALL_STATE(3099)] = 97098, - [SMALL_STATE(3100)] = 97174, - [SMALL_STATE(3101)] = 97250, - [SMALL_STATE(3102)] = 97326, - [SMALL_STATE(3103)] = 97402, - [SMALL_STATE(3104)] = 97478, - [SMALL_STATE(3105)] = 97554, - [SMALL_STATE(3106)] = 97630, - [SMALL_STATE(3107)] = 97706, - [SMALL_STATE(3108)] = 97782, - [SMALL_STATE(3109)] = 97858, - [SMALL_STATE(3110)] = 97934, - [SMALL_STATE(3111)] = 98010, - [SMALL_STATE(3112)] = 98086, - [SMALL_STATE(3113)] = 98162, - [SMALL_STATE(3114)] = 98238, - [SMALL_STATE(3115)] = 98314, - [SMALL_STATE(3116)] = 98390, - [SMALL_STATE(3117)] = 98466, - [SMALL_STATE(3118)] = 98542, - [SMALL_STATE(3119)] = 98618, - [SMALL_STATE(3120)] = 98694, - [SMALL_STATE(3121)] = 98770, - [SMALL_STATE(3122)] = 98846, - [SMALL_STATE(3123)] = 98922, - [SMALL_STATE(3124)] = 98998, - [SMALL_STATE(3125)] = 99074, - [SMALL_STATE(3126)] = 99150, - [SMALL_STATE(3127)] = 99226, - [SMALL_STATE(3128)] = 99302, - [SMALL_STATE(3129)] = 99378, - [SMALL_STATE(3130)] = 99454, - [SMALL_STATE(3131)] = 99530, - [SMALL_STATE(3132)] = 99606, - [SMALL_STATE(3133)] = 99682, - [SMALL_STATE(3134)] = 99758, - [SMALL_STATE(3135)] = 99834, - [SMALL_STATE(3136)] = 99910, - [SMALL_STATE(3137)] = 99986, - [SMALL_STATE(3138)] = 100062, - [SMALL_STATE(3139)] = 100138, - [SMALL_STATE(3140)] = 100214, - [SMALL_STATE(3141)] = 100290, - [SMALL_STATE(3142)] = 100366, - [SMALL_STATE(3143)] = 100442, - [SMALL_STATE(3144)] = 100518, - [SMALL_STATE(3145)] = 100594, - [SMALL_STATE(3146)] = 100670, - [SMALL_STATE(3147)] = 100746, - [SMALL_STATE(3148)] = 100822, - [SMALL_STATE(3149)] = 100898, - [SMALL_STATE(3150)] = 100974, - [SMALL_STATE(3151)] = 101050, - [SMALL_STATE(3152)] = 101126, - [SMALL_STATE(3153)] = 101202, - [SMALL_STATE(3154)] = 101278, - [SMALL_STATE(3155)] = 101354, - [SMALL_STATE(3156)] = 101430, - [SMALL_STATE(3157)] = 101506, - [SMALL_STATE(3158)] = 101582, - [SMALL_STATE(3159)] = 101658, - [SMALL_STATE(3160)] = 101734, - [SMALL_STATE(3161)] = 101810, - [SMALL_STATE(3162)] = 101886, - [SMALL_STATE(3163)] = 101962, - [SMALL_STATE(3164)] = 102038, - [SMALL_STATE(3165)] = 102114, - [SMALL_STATE(3166)] = 102190, - [SMALL_STATE(3167)] = 102266, - [SMALL_STATE(3168)] = 102342, - [SMALL_STATE(3169)] = 102418, - [SMALL_STATE(3170)] = 102494, - [SMALL_STATE(3171)] = 102570, - [SMALL_STATE(3172)] = 102646, - [SMALL_STATE(3173)] = 102722, - [SMALL_STATE(3174)] = 102798, - [SMALL_STATE(3175)] = 102874, - [SMALL_STATE(3176)] = 102950, - [SMALL_STATE(3177)] = 103026, - [SMALL_STATE(3178)] = 103102, - [SMALL_STATE(3179)] = 103178, - [SMALL_STATE(3180)] = 103254, - [SMALL_STATE(3181)] = 103330, - [SMALL_STATE(3182)] = 103406, - [SMALL_STATE(3183)] = 103482, - [SMALL_STATE(3184)] = 103558, - [SMALL_STATE(3185)] = 103634, - [SMALL_STATE(3186)] = 103710, - [SMALL_STATE(3187)] = 103786, - [SMALL_STATE(3188)] = 103862, - [SMALL_STATE(3189)] = 103938, - [SMALL_STATE(3190)] = 104014, - [SMALL_STATE(3191)] = 104090, - [SMALL_STATE(3192)] = 104166, - [SMALL_STATE(3193)] = 104242, - [SMALL_STATE(3194)] = 104318, - [SMALL_STATE(3195)] = 104394, - [SMALL_STATE(3196)] = 104470, - [SMALL_STATE(3197)] = 104546, - [SMALL_STATE(3198)] = 104622, - [SMALL_STATE(3199)] = 104698, - [SMALL_STATE(3200)] = 104774, - [SMALL_STATE(3201)] = 104850, - [SMALL_STATE(3202)] = 104926, - [SMALL_STATE(3203)] = 105002, - [SMALL_STATE(3204)] = 105078, - [SMALL_STATE(3205)] = 105154, - [SMALL_STATE(3206)] = 105230, - [SMALL_STATE(3207)] = 105306, - [SMALL_STATE(3208)] = 105382, - [SMALL_STATE(3209)] = 105458, - [SMALL_STATE(3210)] = 105534, - [SMALL_STATE(3211)] = 105610, - [SMALL_STATE(3212)] = 105686, - [SMALL_STATE(3213)] = 105762, - [SMALL_STATE(3214)] = 105838, - [SMALL_STATE(3215)] = 105914, - [SMALL_STATE(3216)] = 105990, - [SMALL_STATE(3217)] = 106066, - [SMALL_STATE(3218)] = 106142, - [SMALL_STATE(3219)] = 106218, - [SMALL_STATE(3220)] = 106294, - [SMALL_STATE(3221)] = 106370, - [SMALL_STATE(3222)] = 106446, - [SMALL_STATE(3223)] = 106522, - [SMALL_STATE(3224)] = 106598, - [SMALL_STATE(3225)] = 106674, - [SMALL_STATE(3226)] = 106750, - [SMALL_STATE(3227)] = 106826, - [SMALL_STATE(3228)] = 106902, - [SMALL_STATE(3229)] = 106978, - [SMALL_STATE(3230)] = 107054, - [SMALL_STATE(3231)] = 107130, - [SMALL_STATE(3232)] = 107206, - [SMALL_STATE(3233)] = 107282, - [SMALL_STATE(3234)] = 107358, - [SMALL_STATE(3235)] = 107434, - [SMALL_STATE(3236)] = 107510, - [SMALL_STATE(3237)] = 107586, - [SMALL_STATE(3238)] = 107662, - [SMALL_STATE(3239)] = 107738, - [SMALL_STATE(3240)] = 107814, - [SMALL_STATE(3241)] = 107890, - [SMALL_STATE(3242)] = 107966, - [SMALL_STATE(3243)] = 108042, - [SMALL_STATE(3244)] = 108118, - [SMALL_STATE(3245)] = 108194, - [SMALL_STATE(3246)] = 108270, - [SMALL_STATE(3247)] = 108346, - [SMALL_STATE(3248)] = 108422, - [SMALL_STATE(3249)] = 108498, - [SMALL_STATE(3250)] = 108574, - [SMALL_STATE(3251)] = 108650, - [SMALL_STATE(3252)] = 108726, - [SMALL_STATE(3253)] = 108802, - [SMALL_STATE(3254)] = 108878, - [SMALL_STATE(3255)] = 108954, - [SMALL_STATE(3256)] = 109030, - [SMALL_STATE(3257)] = 109106, - [SMALL_STATE(3258)] = 109182, - [SMALL_STATE(3259)] = 109258, - [SMALL_STATE(3260)] = 109334, - [SMALL_STATE(3261)] = 109410, - [SMALL_STATE(3262)] = 109486, - [SMALL_STATE(3263)] = 109562, - [SMALL_STATE(3264)] = 109638, - [SMALL_STATE(3265)] = 109714, - [SMALL_STATE(3266)] = 109790, - [SMALL_STATE(3267)] = 109866, - [SMALL_STATE(3268)] = 109942, - [SMALL_STATE(3269)] = 110018, - [SMALL_STATE(3270)] = 110094, - [SMALL_STATE(3271)] = 110170, - [SMALL_STATE(3272)] = 110246, - [SMALL_STATE(3273)] = 110322, - [SMALL_STATE(3274)] = 110398, - [SMALL_STATE(3275)] = 110474, - [SMALL_STATE(3276)] = 110550, - [SMALL_STATE(3277)] = 110626, - [SMALL_STATE(3278)] = 110702, - [SMALL_STATE(3279)] = 110778, - [SMALL_STATE(3280)] = 110854, - [SMALL_STATE(3281)] = 110930, - [SMALL_STATE(3282)] = 111006, - [SMALL_STATE(3283)] = 111082, - [SMALL_STATE(3284)] = 111158, - [SMALL_STATE(3285)] = 111234, - [SMALL_STATE(3286)] = 111310, - [SMALL_STATE(3287)] = 111386, - [SMALL_STATE(3288)] = 111462, - [SMALL_STATE(3289)] = 111538, - [SMALL_STATE(3290)] = 111614, - [SMALL_STATE(3291)] = 111690, - [SMALL_STATE(3292)] = 111766, - [SMALL_STATE(3293)] = 111842, - [SMALL_STATE(3294)] = 111918, - [SMALL_STATE(3295)] = 111994, - [SMALL_STATE(3296)] = 112070, - [SMALL_STATE(3297)] = 112146, - [SMALL_STATE(3298)] = 112222, - [SMALL_STATE(3299)] = 112298, - [SMALL_STATE(3300)] = 112374, - [SMALL_STATE(3301)] = 112450, - [SMALL_STATE(3302)] = 112526, - [SMALL_STATE(3303)] = 112602, - [SMALL_STATE(3304)] = 112678, - [SMALL_STATE(3305)] = 112754, - [SMALL_STATE(3306)] = 112830, - [SMALL_STATE(3307)] = 112906, - [SMALL_STATE(3308)] = 112982, - [SMALL_STATE(3309)] = 113058, - [SMALL_STATE(3310)] = 113134, - [SMALL_STATE(3311)] = 113210, - [SMALL_STATE(3312)] = 113286, - [SMALL_STATE(3313)] = 113362, - [SMALL_STATE(3314)] = 113438, - [SMALL_STATE(3315)] = 113499, - [SMALL_STATE(3316)] = 113560, - [SMALL_STATE(3317)] = 113621, - [SMALL_STATE(3318)] = 113686, - [SMALL_STATE(3319)] = 113747, - [SMALL_STATE(3320)] = 113808, - [SMALL_STATE(3321)] = 113869, - [SMALL_STATE(3322)] = 113930, - [SMALL_STATE(3323)] = 113991, - [SMALL_STATE(3324)] = 114052, - [SMALL_STATE(3325)] = 114113, - [SMALL_STATE(3326)] = 114174, - [SMALL_STATE(3327)] = 114235, - [SMALL_STATE(3328)] = 114296, - [SMALL_STATE(3329)] = 114357, - [SMALL_STATE(3330)] = 114422, - [SMALL_STATE(3331)] = 114482, - [SMALL_STATE(3332)] = 114512, - [SMALL_STATE(3333)] = 114542, - [SMALL_STATE(3334)] = 114572, - [SMALL_STATE(3335)] = 114602, - [SMALL_STATE(3336)] = 114632, - [SMALL_STATE(3337)] = 114662, - [SMALL_STATE(3338)] = 114700, - [SMALL_STATE(3339)] = 114744, - [SMALL_STATE(3340)] = 114782, - [SMALL_STATE(3341)] = 114808, - [SMALL_STATE(3342)] = 114834, - [SMALL_STATE(3343)] = 114860, - [SMALL_STATE(3344)] = 114886, - [SMALL_STATE(3345)] = 114912, - [SMALL_STATE(3346)] = 114950, - [SMALL_STATE(3347)] = 114977, - [SMALL_STATE(3348)] = 115000, - [SMALL_STATE(3349)] = 115023, - [SMALL_STATE(3350)] = 115046, - [SMALL_STATE(3351)] = 115073, - [SMALL_STATE(3352)] = 115102, - [SMALL_STATE(3353)] = 115128, - [SMALL_STATE(3354)] = 115154, - [SMALL_STATE(3355)] = 115180, - [SMALL_STATE(3356)] = 115206, - [SMALL_STATE(3357)] = 115232, - [SMALL_STATE(3358)] = 115258, - [SMALL_STATE(3359)] = 115284, - [SMALL_STATE(3360)] = 115310, - [SMALL_STATE(3361)] = 115336, - [SMALL_STATE(3362)] = 115359, - [SMALL_STATE(3363)] = 115382, - [SMALL_STATE(3364)] = 115423, - [SMALL_STATE(3365)] = 115464, - [SMALL_STATE(3366)] = 115505, - [SMALL_STATE(3367)] = 115530, - [SMALL_STATE(3368)] = 115570, - [SMALL_STATE(3369)] = 115610, - [SMALL_STATE(3370)] = 115650, - [SMALL_STATE(3371)] = 115676, - [SMALL_STATE(3372)] = 115716, - [SMALL_STATE(3373)] = 115756, - [SMALL_STATE(3374)] = 115796, - [SMALL_STATE(3375)] = 115836, - [SMALL_STATE(3376)] = 115858, - [SMALL_STATE(3377)] = 115898, - [SMALL_STATE(3378)] = 115938, - [SMALL_STATE(3379)] = 115978, - [SMALL_STATE(3380)] = 116000, - [SMALL_STATE(3381)] = 116024, - [SMALL_STATE(3382)] = 116046, - [SMALL_STATE(3383)] = 116072, - [SMALL_STATE(3384)] = 116112, - [SMALL_STATE(3385)] = 116134, - [SMALL_STATE(3386)] = 116160, - [SMALL_STATE(3387)] = 116200, - [SMALL_STATE(3388)] = 116240, - [SMALL_STATE(3389)] = 116280, - [SMALL_STATE(3390)] = 116320, - [SMALL_STATE(3391)] = 116344, - [SMALL_STATE(3392)] = 116370, - [SMALL_STATE(3393)] = 116410, - [SMALL_STATE(3394)] = 116450, - [SMALL_STATE(3395)] = 116490, - [SMALL_STATE(3396)] = 116516, - [SMALL_STATE(3397)] = 116556, - [SMALL_STATE(3398)] = 116578, - [SMALL_STATE(3399)] = 116604, - [SMALL_STATE(3400)] = 116644, - [SMALL_STATE(3401)] = 116666, - [SMALL_STATE(3402)] = 116706, - [SMALL_STATE(3403)] = 116728, - [SMALL_STATE(3404)] = 116768, - [SMALL_STATE(3405)] = 116808, - [SMALL_STATE(3406)] = 116848, - [SMALL_STATE(3407)] = 116874, - [SMALL_STATE(3408)] = 116914, - [SMALL_STATE(3409)] = 116940, - [SMALL_STATE(3410)] = 116980, - [SMALL_STATE(3411)] = 117020, - [SMALL_STATE(3412)] = 117060, - [SMALL_STATE(3413)] = 117100, - [SMALL_STATE(3414)] = 117125, - [SMALL_STATE(3415)] = 117144, - [SMALL_STATE(3416)] = 117163, - [SMALL_STATE(3417)] = 117182, - [SMALL_STATE(3418)] = 117207, - [SMALL_STATE(3419)] = 117227, - [SMALL_STATE(3420)] = 117251, - [SMALL_STATE(3421)] = 117271, - [SMALL_STATE(3422)] = 117288, - [SMALL_STATE(3423)] = 117305, - [SMALL_STATE(3424)] = 117322, - [SMALL_STATE(3425)] = 117339, - [SMALL_STATE(3426)] = 117356, - [SMALL_STATE(3427)] = 117377, - [SMALL_STATE(3428)] = 117394, - [SMALL_STATE(3429)] = 117417, - [SMALL_STATE(3430)] = 117434, - [SMALL_STATE(3431)] = 117451, - [SMALL_STATE(3432)] = 117468, - [SMALL_STATE(3433)] = 117485, - [SMALL_STATE(3434)] = 117502, - [SMALL_STATE(3435)] = 117519, - [SMALL_STATE(3436)] = 117536, - [SMALL_STATE(3437)] = 117553, - [SMALL_STATE(3438)] = 117570, - [SMALL_STATE(3439)] = 117587, - [SMALL_STATE(3440)] = 117604, - [SMALL_STATE(3441)] = 117621, - [SMALL_STATE(3442)] = 117638, - [SMALL_STATE(3443)] = 117659, - [SMALL_STATE(3444)] = 117676, - [SMALL_STATE(3445)] = 117693, - [SMALL_STATE(3446)] = 117710, - [SMALL_STATE(3447)] = 117730, - [SMALL_STATE(3448)] = 117752, - [SMALL_STATE(3449)] = 117784, - [SMALL_STATE(3450)] = 117811, - [SMALL_STATE(3451)] = 117826, - [SMALL_STATE(3452)] = 117847, - [SMALL_STATE(3453)] = 117874, - [SMALL_STATE(3454)] = 117901, - [SMALL_STATE(3455)] = 117930, - [SMALL_STATE(3456)] = 117957, - [SMALL_STATE(3457)] = 117976, - [SMALL_STATE(3458)] = 118003, - [SMALL_STATE(3459)] = 118020, - [SMALL_STATE(3460)] = 118047, - [SMALL_STATE(3461)] = 118074, - [SMALL_STATE(3462)] = 118101, - [SMALL_STATE(3463)] = 118128, - [SMALL_STATE(3464)] = 118149, - [SMALL_STATE(3465)] = 118176, - [SMALL_STATE(3466)] = 118203, - [SMALL_STATE(3467)] = 118230, - [SMALL_STATE(3468)] = 118248, - [SMALL_STATE(3469)] = 118264, - [SMALL_STATE(3470)] = 118278, - [SMALL_STATE(3471)] = 118292, - [SMALL_STATE(3472)] = 118306, - [SMALL_STATE(3473)] = 118320, - [SMALL_STATE(3474)] = 118334, - [SMALL_STATE(3475)] = 118348, - [SMALL_STATE(3476)] = 118364, - [SMALL_STATE(3477)] = 118378, - [SMALL_STATE(3478)] = 118406, - [SMALL_STATE(3479)] = 118428, - [SMALL_STATE(3480)] = 118446, - [SMALL_STATE(3481)] = 118464, - [SMALL_STATE(3482)] = 118478, - [SMALL_STATE(3483)] = 118492, - [SMALL_STATE(3484)] = 118508, - [SMALL_STATE(3485)] = 118529, - [SMALL_STATE(3486)] = 118550, - [SMALL_STATE(3487)] = 118571, - [SMALL_STATE(3488)] = 118594, - [SMALL_STATE(3489)] = 118615, - [SMALL_STATE(3490)] = 118636, - [SMALL_STATE(3491)] = 118649, - [SMALL_STATE(3492)] = 118670, - [SMALL_STATE(3493)] = 118687, - [SMALL_STATE(3494)] = 118708, - [SMALL_STATE(3495)] = 118729, - [SMALL_STATE(3496)] = 118750, - [SMALL_STATE(3497)] = 118771, - [SMALL_STATE(3498)] = 118792, - [SMALL_STATE(3499)] = 118815, - [SMALL_STATE(3500)] = 118840, - [SMALL_STATE(3501)] = 118861, - [SMALL_STATE(3502)] = 118882, - [SMALL_STATE(3503)] = 118903, - [SMALL_STATE(3504)] = 118924, - [SMALL_STATE(3505)] = 118945, - [SMALL_STATE(3506)] = 118966, - [SMALL_STATE(3507)] = 118979, - [SMALL_STATE(3508)] = 119000, - [SMALL_STATE(3509)] = 119021, - [SMALL_STATE(3510)] = 119042, - [SMALL_STATE(3511)] = 119055, - [SMALL_STATE(3512)] = 119076, - [SMALL_STATE(3513)] = 119099, - [SMALL_STATE(3514)] = 119120, - [SMALL_STATE(3515)] = 119145, - [SMALL_STATE(3516)] = 119166, - [SMALL_STATE(3517)] = 119187, - [SMALL_STATE(3518)] = 119203, - [SMALL_STATE(3519)] = 119219, - [SMALL_STATE(3520)] = 119239, - [SMALL_STATE(3521)] = 119259, - [SMALL_STATE(3522)] = 119279, - [SMALL_STATE(3523)] = 119299, - [SMALL_STATE(3524)] = 119321, - [SMALL_STATE(3525)] = 119341, - [SMALL_STATE(3526)] = 119361, - [SMALL_STATE(3527)] = 119381, - [SMALL_STATE(3528)] = 119401, - [SMALL_STATE(3529)] = 119421, - [SMALL_STATE(3530)] = 119441, - [SMALL_STATE(3531)] = 119461, - [SMALL_STATE(3532)] = 119481, - [SMALL_STATE(3533)] = 119501, - [SMALL_STATE(3534)] = 119521, - [SMALL_STATE(3535)] = 119541, - [SMALL_STATE(3536)] = 119561, - [SMALL_STATE(3537)] = 119581, - [SMALL_STATE(3538)] = 119601, - [SMALL_STATE(3539)] = 119615, - [SMALL_STATE(3540)] = 119631, - [SMALL_STATE(3541)] = 119651, - [SMALL_STATE(3542)] = 119671, - [SMALL_STATE(3543)] = 119691, - [SMALL_STATE(3544)] = 119711, - [SMALL_STATE(3545)] = 119731, - [SMALL_STATE(3546)] = 119751, - [SMALL_STATE(3547)] = 119771, - [SMALL_STATE(3548)] = 119791, - [SMALL_STATE(3549)] = 119811, - [SMALL_STATE(3550)] = 119831, - [SMALL_STATE(3551)] = 119851, - [SMALL_STATE(3552)] = 119871, - [SMALL_STATE(3553)] = 119891, - [SMALL_STATE(3554)] = 119911, - [SMALL_STATE(3555)] = 119931, - [SMALL_STATE(3556)] = 119951, - [SMALL_STATE(3557)] = 119971, - [SMALL_STATE(3558)] = 119991, - [SMALL_STATE(3559)] = 120011, - [SMALL_STATE(3560)] = 120031, - [SMALL_STATE(3561)] = 120051, - [SMALL_STATE(3562)] = 120071, - [SMALL_STATE(3563)] = 120091, - [SMALL_STATE(3564)] = 120111, - [SMALL_STATE(3565)] = 120131, - [SMALL_STATE(3566)] = 120151, - [SMALL_STATE(3567)] = 120171, - [SMALL_STATE(3568)] = 120191, - [SMALL_STATE(3569)] = 120211, - [SMALL_STATE(3570)] = 120231, - [SMALL_STATE(3571)] = 120247, - [SMALL_STATE(3572)] = 120263, - [SMALL_STATE(3573)] = 120283, - [SMALL_STATE(3574)] = 120303, - [SMALL_STATE(3575)] = 120323, - [SMALL_STATE(3576)] = 120343, - [SMALL_STATE(3577)] = 120363, - [SMALL_STATE(3578)] = 120383, - [SMALL_STATE(3579)] = 120403, - [SMALL_STATE(3580)] = 120423, - [SMALL_STATE(3581)] = 120443, - [SMALL_STATE(3582)] = 120463, - [SMALL_STATE(3583)] = 120483, - [SMALL_STATE(3584)] = 120503, - [SMALL_STATE(3585)] = 120523, - [SMALL_STATE(3586)] = 120543, - [SMALL_STATE(3587)] = 120563, - [SMALL_STATE(3588)] = 120583, - [SMALL_STATE(3589)] = 120603, - [SMALL_STATE(3590)] = 120619, - [SMALL_STATE(3591)] = 120639, - [SMALL_STATE(3592)] = 120659, - [SMALL_STATE(3593)] = 120679, - [SMALL_STATE(3594)] = 120695, - [SMALL_STATE(3595)] = 120715, - [SMALL_STATE(3596)] = 120735, - [SMALL_STATE(3597)] = 120755, - [SMALL_STATE(3598)] = 120775, - [SMALL_STATE(3599)] = 120795, - [SMALL_STATE(3600)] = 120815, - [SMALL_STATE(3601)] = 120835, - [SMALL_STATE(3602)] = 120855, - [SMALL_STATE(3603)] = 120871, - [SMALL_STATE(3604)] = 120891, - [SMALL_STATE(3605)] = 120911, - [SMALL_STATE(3606)] = 120927, - [SMALL_STATE(3607)] = 120947, - [SMALL_STATE(3608)] = 120967, - [SMALL_STATE(3609)] = 120987, - [SMALL_STATE(3610)] = 121007, - [SMALL_STATE(3611)] = 121027, - [SMALL_STATE(3612)] = 121047, - [SMALL_STATE(3613)] = 121067, - [SMALL_STATE(3614)] = 121087, - [SMALL_STATE(3615)] = 121107, - [SMALL_STATE(3616)] = 121127, - [SMALL_STATE(3617)] = 121143, - [SMALL_STATE(3618)] = 121163, - [SMALL_STATE(3619)] = 121183, - [SMALL_STATE(3620)] = 121205, - [SMALL_STATE(3621)] = 121225, - [SMALL_STATE(3622)] = 121245, - [SMALL_STATE(3623)] = 121261, - [SMALL_STATE(3624)] = 121281, - [SMALL_STATE(3625)] = 121301, - [SMALL_STATE(3626)] = 121321, - [SMALL_STATE(3627)] = 121341, - [SMALL_STATE(3628)] = 121361, - [SMALL_STATE(3629)] = 121381, - [SMALL_STATE(3630)] = 121401, - [SMALL_STATE(3631)] = 121416, - [SMALL_STATE(3632)] = 121435, - [SMALL_STATE(3633)] = 121448, - [SMALL_STATE(3634)] = 121467, - [SMALL_STATE(3635)] = 121480, - [SMALL_STATE(3636)] = 121491, - [SMALL_STATE(3637)] = 121508, - [SMALL_STATE(3638)] = 121525, - [SMALL_STATE(3639)] = 121544, - [SMALL_STATE(3640)] = 121563, - [SMALL_STATE(3641)] = 121578, - [SMALL_STATE(3642)] = 121595, - [SMALL_STATE(3643)] = 121612, - [SMALL_STATE(3644)] = 121623, - [SMALL_STATE(3645)] = 121638, - [SMALL_STATE(3646)] = 121649, - [SMALL_STATE(3647)] = 121664, - [SMALL_STATE(3648)] = 121675, - [SMALL_STATE(3649)] = 121694, - [SMALL_STATE(3650)] = 121711, - [SMALL_STATE(3651)] = 121730, - [SMALL_STATE(3652)] = 121741, - [SMALL_STATE(3653)] = 121758, - [SMALL_STATE(3654)] = 121775, - [SMALL_STATE(3655)] = 121788, - [SMALL_STATE(3656)] = 121801, - [SMALL_STATE(3657)] = 121816, - [SMALL_STATE(3658)] = 121827, - [SMALL_STATE(3659)] = 121842, - [SMALL_STATE(3660)] = 121855, - [SMALL_STATE(3661)] = 121872, - [SMALL_STATE(3662)] = 121887, - [SMALL_STATE(3663)] = 121903, - [SMALL_STATE(3664)] = 121917, - [SMALL_STATE(3665)] = 121931, - [SMALL_STATE(3666)] = 121947, - [SMALL_STATE(3667)] = 121961, - [SMALL_STATE(3668)] = 121977, - [SMALL_STATE(3669)] = 121991, - [SMALL_STATE(3670)] = 122007, - [SMALL_STATE(3671)] = 122021, - [SMALL_STATE(3672)] = 122035, - [SMALL_STATE(3673)] = 122049, - [SMALL_STATE(3674)] = 122063, - [SMALL_STATE(3675)] = 122079, - [SMALL_STATE(3676)] = 122095, - [SMALL_STATE(3677)] = 122111, - [SMALL_STATE(3678)] = 122125, - [SMALL_STATE(3679)] = 122141, - [SMALL_STATE(3680)] = 122155, - [SMALL_STATE(3681)] = 122169, - [SMALL_STATE(3682)] = 122185, - [SMALL_STATE(3683)] = 122201, - [SMALL_STATE(3684)] = 122215, - [SMALL_STATE(3685)] = 122229, - [SMALL_STATE(3686)] = 122243, - [SMALL_STATE(3687)] = 122257, - [SMALL_STATE(3688)] = 122271, - [SMALL_STATE(3689)] = 122287, - [SMALL_STATE(3690)] = 122301, - [SMALL_STATE(3691)] = 122317, - [SMALL_STATE(3692)] = 122331, - [SMALL_STATE(3693)] = 122345, - [SMALL_STATE(3694)] = 122359, - [SMALL_STATE(3695)] = 122375, - [SMALL_STATE(3696)] = 122389, - [SMALL_STATE(3697)] = 122405, - [SMALL_STATE(3698)] = 122419, - [SMALL_STATE(3699)] = 122429, - [SMALL_STATE(3700)] = 122443, - [SMALL_STATE(3701)] = 122457, - [SMALL_STATE(3702)] = 122467, - [SMALL_STATE(3703)] = 122481, - [SMALL_STATE(3704)] = 122495, - [SMALL_STATE(3705)] = 122509, - [SMALL_STATE(3706)] = 122519, - [SMALL_STATE(3707)] = 122529, - [SMALL_STATE(3708)] = 122543, - [SMALL_STATE(3709)] = 122559, - [SMALL_STATE(3710)] = 122573, - [SMALL_STATE(3711)] = 122587, - [SMALL_STATE(3712)] = 122601, - [SMALL_STATE(3713)] = 122617, - [SMALL_STATE(3714)] = 122627, - [SMALL_STATE(3715)] = 122641, - [SMALL_STATE(3716)] = 122655, - [SMALL_STATE(3717)] = 122665, - [SMALL_STATE(3718)] = 122679, - [SMALL_STATE(3719)] = 122693, - [SMALL_STATE(3720)] = 122707, - [SMALL_STATE(3721)] = 122721, - [SMALL_STATE(3722)] = 122735, - [SMALL_STATE(3723)] = 122751, - [SMALL_STATE(3724)] = 122765, - [SMALL_STATE(3725)] = 122779, - [SMALL_STATE(3726)] = 122793, - [SMALL_STATE(3727)] = 122807, - [SMALL_STATE(3728)] = 122821, - [SMALL_STATE(3729)] = 122837, - [SMALL_STATE(3730)] = 122853, - [SMALL_STATE(3731)] = 122869, - [SMALL_STATE(3732)] = 122883, - [SMALL_STATE(3733)] = 122897, - [SMALL_STATE(3734)] = 122907, - [SMALL_STATE(3735)] = 122917, - [SMALL_STATE(3736)] = 122933, - [SMALL_STATE(3737)] = 122947, - [SMALL_STATE(3738)] = 122961, - [SMALL_STATE(3739)] = 122975, - [SMALL_STATE(3740)] = 122985, - [SMALL_STATE(3741)] = 122999, - [SMALL_STATE(3742)] = 123015, - [SMALL_STATE(3743)] = 123029, - [SMALL_STATE(3744)] = 123039, - [SMALL_STATE(3745)] = 123053, - [SMALL_STATE(3746)] = 123067, - [SMALL_STATE(3747)] = 123079, - [SMALL_STATE(3748)] = 123095, - [SMALL_STATE(3749)] = 123109, - [SMALL_STATE(3750)] = 123123, - [SMALL_STATE(3751)] = 123133, - [SMALL_STATE(3752)] = 123147, - [SMALL_STATE(3753)] = 123161, - [SMALL_STATE(3754)] = 123177, - [SMALL_STATE(3755)] = 123187, - [SMALL_STATE(3756)] = 123199, - [SMALL_STATE(3757)] = 123211, - [SMALL_STATE(3758)] = 123225, - [SMALL_STATE(3759)] = 123239, - [SMALL_STATE(3760)] = 123255, - [SMALL_STATE(3761)] = 123269, - [SMALL_STATE(3762)] = 123281, - [SMALL_STATE(3763)] = 123291, - [SMALL_STATE(3764)] = 123301, - [SMALL_STATE(3765)] = 123315, - [SMALL_STATE(3766)] = 123329, - [SMALL_STATE(3767)] = 123341, - [SMALL_STATE(3768)] = 123355, - [SMALL_STATE(3769)] = 123365, - [SMALL_STATE(3770)] = 123379, - [SMALL_STATE(3771)] = 123391, - [SMALL_STATE(3772)] = 123405, - [SMALL_STATE(3773)] = 123419, - [SMALL_STATE(3774)] = 123431, - [SMALL_STATE(3775)] = 123445, - [SMALL_STATE(3776)] = 123461, - [SMALL_STATE(3777)] = 123471, - [SMALL_STATE(3778)] = 123483, - [SMALL_STATE(3779)] = 123493, - [SMALL_STATE(3780)] = 123507, - [SMALL_STATE(3781)] = 123521, - [SMALL_STATE(3782)] = 123531, - [SMALL_STATE(3783)] = 123545, - [SMALL_STATE(3784)] = 123561, - [SMALL_STATE(3785)] = 123575, - [SMALL_STATE(3786)] = 123589, - [SMALL_STATE(3787)] = 123599, - [SMALL_STATE(3788)] = 123613, - [SMALL_STATE(3789)] = 123629, - [SMALL_STATE(3790)] = 123645, - [SMALL_STATE(3791)] = 123655, - [SMALL_STATE(3792)] = 123669, - [SMALL_STATE(3793)] = 123683, - [SMALL_STATE(3794)] = 123699, - [SMALL_STATE(3795)] = 123713, - [SMALL_STATE(3796)] = 123727, - [SMALL_STATE(3797)] = 123743, - [SMALL_STATE(3798)] = 123757, - [SMALL_STATE(3799)] = 123771, - [SMALL_STATE(3800)] = 123787, - [SMALL_STATE(3801)] = 123801, - [SMALL_STATE(3802)] = 123811, - [SMALL_STATE(3803)] = 123821, - [SMALL_STATE(3804)] = 123831, - [SMALL_STATE(3805)] = 123845, - [SMALL_STATE(3806)] = 123859, - [SMALL_STATE(3807)] = 123875, - [SMALL_STATE(3808)] = 123891, - [SMALL_STATE(3809)] = 123905, - [SMALL_STATE(3810)] = 123919, - [SMALL_STATE(3811)] = 123935, - [SMALL_STATE(3812)] = 123949, - [SMALL_STATE(3813)] = 123959, - [SMALL_STATE(3814)] = 123973, - [SMALL_STATE(3815)] = 123987, - [SMALL_STATE(3816)] = 124001, - [SMALL_STATE(3817)] = 124015, - [SMALL_STATE(3818)] = 124029, - [SMALL_STATE(3819)] = 124043, - [SMALL_STATE(3820)] = 124057, - [SMALL_STATE(3821)] = 124069, - [SMALL_STATE(3822)] = 124083, - [SMALL_STATE(3823)] = 124099, - [SMALL_STATE(3824)] = 124113, - [SMALL_STATE(3825)] = 124123, - [SMALL_STATE(3826)] = 124137, - [SMALL_STATE(3827)] = 124151, - [SMALL_STATE(3828)] = 124165, - [SMALL_STATE(3829)] = 124179, - [SMALL_STATE(3830)] = 124193, - [SMALL_STATE(3831)] = 124209, - [SMALL_STATE(3832)] = 124223, - [SMALL_STATE(3833)] = 124233, - [SMALL_STATE(3834)] = 124246, - [SMALL_STATE(3835)] = 124259, - [SMALL_STATE(3836)] = 124272, - [SMALL_STATE(3837)] = 124285, - [SMALL_STATE(3838)] = 124298, - [SMALL_STATE(3839)] = 124311, - [SMALL_STATE(3840)] = 124324, - [SMALL_STATE(3841)] = 124337, - [SMALL_STATE(3842)] = 124350, - [SMALL_STATE(3843)] = 124363, - [SMALL_STATE(3844)] = 124376, - [SMALL_STATE(3845)] = 124385, - [SMALL_STATE(3846)] = 124398, - [SMALL_STATE(3847)] = 124407, - [SMALL_STATE(3848)] = 124420, - [SMALL_STATE(3849)] = 124433, - [SMALL_STATE(3850)] = 124446, - [SMALL_STATE(3851)] = 124459, - [SMALL_STATE(3852)] = 124472, - [SMALL_STATE(3853)] = 124485, - [SMALL_STATE(3854)] = 124494, - [SMALL_STATE(3855)] = 124507, - [SMALL_STATE(3856)] = 124520, - [SMALL_STATE(3857)] = 124533, - [SMALL_STATE(3858)] = 124546, - [SMALL_STATE(3859)] = 124559, - [SMALL_STATE(3860)] = 124572, - [SMALL_STATE(3861)] = 124585, - [SMALL_STATE(3862)] = 124598, - [SMALL_STATE(3863)] = 124611, - [SMALL_STATE(3864)] = 124624, - [SMALL_STATE(3865)] = 124633, - [SMALL_STATE(3866)] = 124646, - [SMALL_STATE(3867)] = 124659, - [SMALL_STATE(3868)] = 124672, - [SMALL_STATE(3869)] = 124685, - [SMALL_STATE(3870)] = 124698, - [SMALL_STATE(3871)] = 124711, - [SMALL_STATE(3872)] = 124724, - [SMALL_STATE(3873)] = 124737, - [SMALL_STATE(3874)] = 124750, - [SMALL_STATE(3875)] = 124763, - [SMALL_STATE(3876)] = 124776, - [SMALL_STATE(3877)] = 124789, - [SMALL_STATE(3878)] = 124802, - [SMALL_STATE(3879)] = 124815, - [SMALL_STATE(3880)] = 124824, - [SMALL_STATE(3881)] = 124837, - [SMALL_STATE(3882)] = 124850, - [SMALL_STATE(3883)] = 124863, - [SMALL_STATE(3884)] = 124876, - [SMALL_STATE(3885)] = 124889, - [SMALL_STATE(3886)] = 124902, - [SMALL_STATE(3887)] = 124915, - [SMALL_STATE(3888)] = 124928, - [SMALL_STATE(3889)] = 124941, - [SMALL_STATE(3890)] = 124954, - [SMALL_STATE(3891)] = 124967, - [SMALL_STATE(3892)] = 124980, - [SMALL_STATE(3893)] = 124993, - [SMALL_STATE(3894)] = 125006, - [SMALL_STATE(3895)] = 125019, - [SMALL_STATE(3896)] = 125032, - [SMALL_STATE(3897)] = 125045, - [SMALL_STATE(3898)] = 125058, - [SMALL_STATE(3899)] = 125071, - [SMALL_STATE(3900)] = 125084, - [SMALL_STATE(3901)] = 125097, - [SMALL_STATE(3902)] = 125110, - [SMALL_STATE(3903)] = 125123, - [SMALL_STATE(3904)] = 125136, - [SMALL_STATE(3905)] = 125149, - [SMALL_STATE(3906)] = 125162, - [SMALL_STATE(3907)] = 125175, - [SMALL_STATE(3908)] = 125188, - [SMALL_STATE(3909)] = 125199, - [SMALL_STATE(3910)] = 125212, - [SMALL_STATE(3911)] = 125225, - [SMALL_STATE(3912)] = 125238, - [SMALL_STATE(3913)] = 125251, - [SMALL_STATE(3914)] = 125264, - [SMALL_STATE(3915)] = 125277, - [SMALL_STATE(3916)] = 125290, - [SMALL_STATE(3917)] = 125303, - [SMALL_STATE(3918)] = 125316, - [SMALL_STATE(3919)] = 125329, - [SMALL_STATE(3920)] = 125342, - [SMALL_STATE(3921)] = 125355, - [SMALL_STATE(3922)] = 125368, - [SMALL_STATE(3923)] = 125381, - [SMALL_STATE(3924)] = 125394, - [SMALL_STATE(3925)] = 125407, - [SMALL_STATE(3926)] = 125420, - [SMALL_STATE(3927)] = 125433, - [SMALL_STATE(3928)] = 125446, - [SMALL_STATE(3929)] = 125459, - [SMALL_STATE(3930)] = 125472, - [SMALL_STATE(3931)] = 125485, - [SMALL_STATE(3932)] = 125498, - [SMALL_STATE(3933)] = 125511, - [SMALL_STATE(3934)] = 125522, - [SMALL_STATE(3935)] = 125535, - [SMALL_STATE(3936)] = 125548, - [SMALL_STATE(3937)] = 125561, - [SMALL_STATE(3938)] = 125574, - [SMALL_STATE(3939)] = 125587, - [SMALL_STATE(3940)] = 125600, - [SMALL_STATE(3941)] = 125613, - [SMALL_STATE(3942)] = 125626, - [SMALL_STATE(3943)] = 125639, - [SMALL_STATE(3944)] = 125652, - [SMALL_STATE(3945)] = 125665, - [SMALL_STATE(3946)] = 125678, - [SMALL_STATE(3947)] = 125691, - [SMALL_STATE(3948)] = 125704, - [SMALL_STATE(3949)] = 125717, - [SMALL_STATE(3950)] = 125730, - [SMALL_STATE(3951)] = 125743, - [SMALL_STATE(3952)] = 125756, - [SMALL_STATE(3953)] = 125769, - [SMALL_STATE(3954)] = 125782, - [SMALL_STATE(3955)] = 125795, - [SMALL_STATE(3956)] = 125808, - [SMALL_STATE(3957)] = 125817, - [SMALL_STATE(3958)] = 125830, - [SMALL_STATE(3959)] = 125843, - [SMALL_STATE(3960)] = 125856, - [SMALL_STATE(3961)] = 125869, - [SMALL_STATE(3962)] = 125882, - [SMALL_STATE(3963)] = 125895, - [SMALL_STATE(3964)] = 125908, - [SMALL_STATE(3965)] = 125921, - [SMALL_STATE(3966)] = 125934, - [SMALL_STATE(3967)] = 125947, - [SMALL_STATE(3968)] = 125960, - [SMALL_STATE(3969)] = 125971, - [SMALL_STATE(3970)] = 125980, - [SMALL_STATE(3971)] = 125993, - [SMALL_STATE(3972)] = 126002, - [SMALL_STATE(3973)] = 126015, - [SMALL_STATE(3974)] = 126028, - [SMALL_STATE(3975)] = 126041, - [SMALL_STATE(3976)] = 126052, - [SMALL_STATE(3977)] = 126065, - [SMALL_STATE(3978)] = 126078, - [SMALL_STATE(3979)] = 126091, - [SMALL_STATE(3980)] = 126104, - [SMALL_STATE(3981)] = 126117, - [SMALL_STATE(3982)] = 126130, - [SMALL_STATE(3983)] = 126143, - [SMALL_STATE(3984)] = 126156, - [SMALL_STATE(3985)] = 126165, - [SMALL_STATE(3986)] = 126178, - [SMALL_STATE(3987)] = 126187, - [SMALL_STATE(3988)] = 126200, - [SMALL_STATE(3989)] = 126213, - [SMALL_STATE(3990)] = 126226, - [SMALL_STATE(3991)] = 126239, - [SMALL_STATE(3992)] = 126252, - [SMALL_STATE(3993)] = 126265, - [SMALL_STATE(3994)] = 126278, - [SMALL_STATE(3995)] = 126291, - [SMALL_STATE(3996)] = 126304, - [SMALL_STATE(3997)] = 126317, - [SMALL_STATE(3998)] = 126330, - [SMALL_STATE(3999)] = 126343, - [SMALL_STATE(4000)] = 126356, - [SMALL_STATE(4001)] = 126369, - [SMALL_STATE(4002)] = 126382, - [SMALL_STATE(4003)] = 126395, - [SMALL_STATE(4004)] = 126408, - [SMALL_STATE(4005)] = 126421, - [SMALL_STATE(4006)] = 126430, - [SMALL_STATE(4007)] = 126443, - [SMALL_STATE(4008)] = 126456, - [SMALL_STATE(4009)] = 126465, - [SMALL_STATE(4010)] = 126478, - [SMALL_STATE(4011)] = 126491, - [SMALL_STATE(4012)] = 126504, - [SMALL_STATE(4013)] = 126517, - [SMALL_STATE(4014)] = 126530, - [SMALL_STATE(4015)] = 126543, - [SMALL_STATE(4016)] = 126556, - [SMALL_STATE(4017)] = 126569, - [SMALL_STATE(4018)] = 126582, - [SMALL_STATE(4019)] = 126595, - [SMALL_STATE(4020)] = 126608, - [SMALL_STATE(4021)] = 126621, - [SMALL_STATE(4022)] = 126634, - [SMALL_STATE(4023)] = 126647, - [SMALL_STATE(4024)] = 126660, - [SMALL_STATE(4025)] = 126673, - [SMALL_STATE(4026)] = 126686, - [SMALL_STATE(4027)] = 126699, - [SMALL_STATE(4028)] = 126712, - [SMALL_STATE(4029)] = 126725, - [SMALL_STATE(4030)] = 126738, - [SMALL_STATE(4031)] = 126751, - [SMALL_STATE(4032)] = 126764, - [SMALL_STATE(4033)] = 126777, - [SMALL_STATE(4034)] = 126790, - [SMALL_STATE(4035)] = 126799, - [SMALL_STATE(4036)] = 126812, - [SMALL_STATE(4037)] = 126825, - [SMALL_STATE(4038)] = 126838, - [SMALL_STATE(4039)] = 126849, - [SMALL_STATE(4040)] = 126862, - [SMALL_STATE(4041)] = 126875, - [SMALL_STATE(4042)] = 126888, - [SMALL_STATE(4043)] = 126901, - [SMALL_STATE(4044)] = 126914, - [SMALL_STATE(4045)] = 126927, - [SMALL_STATE(4046)] = 126940, - [SMALL_STATE(4047)] = 126953, - [SMALL_STATE(4048)] = 126966, - [SMALL_STATE(4049)] = 126979, - [SMALL_STATE(4050)] = 126992, - [SMALL_STATE(4051)] = 127005, - [SMALL_STATE(4052)] = 127018, - [SMALL_STATE(4053)] = 127031, - [SMALL_STATE(4054)] = 127042, - [SMALL_STATE(4055)] = 127055, - [SMALL_STATE(4056)] = 127068, - [SMALL_STATE(4057)] = 127081, - [SMALL_STATE(4058)] = 127094, - [SMALL_STATE(4059)] = 127107, - [SMALL_STATE(4060)] = 127120, - [SMALL_STATE(4061)] = 127133, - [SMALL_STATE(4062)] = 127146, - [SMALL_STATE(4063)] = 127159, - [SMALL_STATE(4064)] = 127172, - [SMALL_STATE(4065)] = 127185, - [SMALL_STATE(4066)] = 127198, - [SMALL_STATE(4067)] = 127211, - [SMALL_STATE(4068)] = 127224, - [SMALL_STATE(4069)] = 127237, - [SMALL_STATE(4070)] = 127250, - [SMALL_STATE(4071)] = 127263, - [SMALL_STATE(4072)] = 127276, - [SMALL_STATE(4073)] = 127285, - [SMALL_STATE(4074)] = 127298, - [SMALL_STATE(4075)] = 127311, - [SMALL_STATE(4076)] = 127321, - [SMALL_STATE(4077)] = 127331, - [SMALL_STATE(4078)] = 127341, - [SMALL_STATE(4079)] = 127351, - [SMALL_STATE(4080)] = 127359, - [SMALL_STATE(4081)] = 127369, - [SMALL_STATE(4082)] = 127379, - [SMALL_STATE(4083)] = 127389, - [SMALL_STATE(4084)] = 127399, - [SMALL_STATE(4085)] = 127409, - [SMALL_STATE(4086)] = 127419, - [SMALL_STATE(4087)] = 127429, - [SMALL_STATE(4088)] = 127439, - [SMALL_STATE(4089)] = 127449, - [SMALL_STATE(4090)] = 127459, - [SMALL_STATE(4091)] = 127469, - [SMALL_STATE(4092)] = 127479, - [SMALL_STATE(4093)] = 127489, - [SMALL_STATE(4094)] = 127499, - [SMALL_STATE(4095)] = 127509, - [SMALL_STATE(4096)] = 127519, - [SMALL_STATE(4097)] = 127529, - [SMALL_STATE(4098)] = 127539, - [SMALL_STATE(4099)] = 127549, - [SMALL_STATE(4100)] = 127559, - [SMALL_STATE(4101)] = 127569, - [SMALL_STATE(4102)] = 127579, - [SMALL_STATE(4103)] = 127589, - [SMALL_STATE(4104)] = 127597, - [SMALL_STATE(4105)] = 127607, - [SMALL_STATE(4106)] = 127617, - [SMALL_STATE(4107)] = 127627, - [SMALL_STATE(4108)] = 127637, - [SMALL_STATE(4109)] = 127647, - [SMALL_STATE(4110)] = 127657, - [SMALL_STATE(4111)] = 127667, - [SMALL_STATE(4112)] = 127675, - [SMALL_STATE(4113)] = 127685, - [SMALL_STATE(4114)] = 127695, - [SMALL_STATE(4115)] = 127705, - [SMALL_STATE(4116)] = 127715, - [SMALL_STATE(4117)] = 127725, - [SMALL_STATE(4118)] = 127735, - [SMALL_STATE(4119)] = 127745, - [SMALL_STATE(4120)] = 127755, - [SMALL_STATE(4121)] = 127765, - [SMALL_STATE(4122)] = 127775, - [SMALL_STATE(4123)] = 127785, - [SMALL_STATE(4124)] = 127795, - [SMALL_STATE(4125)] = 127805, - [SMALL_STATE(4126)] = 127815, - [SMALL_STATE(4127)] = 127825, - [SMALL_STATE(4128)] = 127835, - [SMALL_STATE(4129)] = 127845, - [SMALL_STATE(4130)] = 127855, - [SMALL_STATE(4131)] = 127865, - [SMALL_STATE(4132)] = 127873, - [SMALL_STATE(4133)] = 127883, - [SMALL_STATE(4134)] = 127893, - [SMALL_STATE(4135)] = 127903, - [SMALL_STATE(4136)] = 127913, - [SMALL_STATE(4137)] = 127923, - [SMALL_STATE(4138)] = 127933, - [SMALL_STATE(4139)] = 127943, - [SMALL_STATE(4140)] = 127953, - [SMALL_STATE(4141)] = 127963, - [SMALL_STATE(4142)] = 127973, - [SMALL_STATE(4143)] = 127983, - [SMALL_STATE(4144)] = 127991, - [SMALL_STATE(4145)] = 127999, - [SMALL_STATE(4146)] = 128009, - [SMALL_STATE(4147)] = 128019, - [SMALL_STATE(4148)] = 128029, - [SMALL_STATE(4149)] = 128039, - [SMALL_STATE(4150)] = 128047, - [SMALL_STATE(4151)] = 128057, - [SMALL_STATE(4152)] = 128067, - [SMALL_STATE(4153)] = 128077, - [SMALL_STATE(4154)] = 128087, - [SMALL_STATE(4155)] = 128095, - [SMALL_STATE(4156)] = 128105, - [SMALL_STATE(4157)] = 128115, - [SMALL_STATE(4158)] = 128125, - [SMALL_STATE(4159)] = 128135, - [SMALL_STATE(4160)] = 128145, - [SMALL_STATE(4161)] = 128155, - [SMALL_STATE(4162)] = 128165, - [SMALL_STATE(4163)] = 128173, - [SMALL_STATE(4164)] = 128183, - [SMALL_STATE(4165)] = 128191, - [SMALL_STATE(4166)] = 128201, - [SMALL_STATE(4167)] = 128209, - [SMALL_STATE(4168)] = 128219, - [SMALL_STATE(4169)] = 128229, - [SMALL_STATE(4170)] = 128237, - [SMALL_STATE(4171)] = 128247, - [SMALL_STATE(4172)] = 128257, - [SMALL_STATE(4173)] = 128267, - [SMALL_STATE(4174)] = 128277, - [SMALL_STATE(4175)] = 128287, - [SMALL_STATE(4176)] = 128297, - [SMALL_STATE(4177)] = 128307, - [SMALL_STATE(4178)] = 128317, - [SMALL_STATE(4179)] = 128327, - [SMALL_STATE(4180)] = 128337, - [SMALL_STATE(4181)] = 128347, - [SMALL_STATE(4182)] = 128357, - [SMALL_STATE(4183)] = 128367, - [SMALL_STATE(4184)] = 128375, - [SMALL_STATE(4185)] = 128385, - [SMALL_STATE(4186)] = 128395, - [SMALL_STATE(4187)] = 128403, - [SMALL_STATE(4188)] = 128413, - [SMALL_STATE(4189)] = 128423, - [SMALL_STATE(4190)] = 128433, - [SMALL_STATE(4191)] = 128441, - [SMALL_STATE(4192)] = 128451, - [SMALL_STATE(4193)] = 128461, - [SMALL_STATE(4194)] = 128471, - [SMALL_STATE(4195)] = 128481, - [SMALL_STATE(4196)] = 128491, - [SMALL_STATE(4197)] = 128501, - [SMALL_STATE(4198)] = 128511, - [SMALL_STATE(4199)] = 128521, - [SMALL_STATE(4200)] = 128531, - [SMALL_STATE(4201)] = 128541, - [SMALL_STATE(4202)] = 128549, - [SMALL_STATE(4203)] = 128559, - [SMALL_STATE(4204)] = 128569, - [SMALL_STATE(4205)] = 128579, - [SMALL_STATE(4206)] = 128589, - [SMALL_STATE(4207)] = 128599, - [SMALL_STATE(4208)] = 128607, - [SMALL_STATE(4209)] = 128617, - [SMALL_STATE(4210)] = 128627, - [SMALL_STATE(4211)] = 128637, - [SMALL_STATE(4212)] = 128647, - [SMALL_STATE(4213)] = 128657, - [SMALL_STATE(4214)] = 128667, - [SMALL_STATE(4215)] = 128677, - [SMALL_STATE(4216)] = 128687, - [SMALL_STATE(4217)] = 128697, - [SMALL_STATE(4218)] = 128707, - [SMALL_STATE(4219)] = 128717, - [SMALL_STATE(4220)] = 128727, - [SMALL_STATE(4221)] = 128735, - [SMALL_STATE(4222)] = 128745, - [SMALL_STATE(4223)] = 128755, - [SMALL_STATE(4224)] = 128765, - [SMALL_STATE(4225)] = 128775, - [SMALL_STATE(4226)] = 128785, - [SMALL_STATE(4227)] = 128795, - [SMALL_STATE(4228)] = 128805, - [SMALL_STATE(4229)] = 128815, - [SMALL_STATE(4230)] = 128825, - [SMALL_STATE(4231)] = 128835, - [SMALL_STATE(4232)] = 128845, - [SMALL_STATE(4233)] = 128855, - [SMALL_STATE(4234)] = 128865, - [SMALL_STATE(4235)] = 128875, - [SMALL_STATE(4236)] = 128885, - [SMALL_STATE(4237)] = 128895, - [SMALL_STATE(4238)] = 128905, - [SMALL_STATE(4239)] = 128915, - [SMALL_STATE(4240)] = 128925, - [SMALL_STATE(4241)] = 128935, - [SMALL_STATE(4242)] = 128945, - [SMALL_STATE(4243)] = 128955, - [SMALL_STATE(4244)] = 128965, - [SMALL_STATE(4245)] = 128975, - [SMALL_STATE(4246)] = 128985, - [SMALL_STATE(4247)] = 128995, - [SMALL_STATE(4248)] = 129005, - [SMALL_STATE(4249)] = 129015, - [SMALL_STATE(4250)] = 129025, - [SMALL_STATE(4251)] = 129035, - [SMALL_STATE(4252)] = 129045, - [SMALL_STATE(4253)] = 129055, - [SMALL_STATE(4254)] = 129065, - [SMALL_STATE(4255)] = 129075, - [SMALL_STATE(4256)] = 129085, - [SMALL_STATE(4257)] = 129095, - [SMALL_STATE(4258)] = 129105, - [SMALL_STATE(4259)] = 129115, - [SMALL_STATE(4260)] = 129125, - [SMALL_STATE(4261)] = 129135, - [SMALL_STATE(4262)] = 129145, - [SMALL_STATE(4263)] = 129155, - [SMALL_STATE(4264)] = 129165, - [SMALL_STATE(4265)] = 129175, - [SMALL_STATE(4266)] = 129185, - [SMALL_STATE(4267)] = 129195, - [SMALL_STATE(4268)] = 129205, - [SMALL_STATE(4269)] = 129215, - [SMALL_STATE(4270)] = 129225, - [SMALL_STATE(4271)] = 129235, - [SMALL_STATE(4272)] = 129245, - [SMALL_STATE(4273)] = 129255, - [SMALL_STATE(4274)] = 129265, - [SMALL_STATE(4275)] = 129275, - [SMALL_STATE(4276)] = 129285, - [SMALL_STATE(4277)] = 129295, - [SMALL_STATE(4278)] = 129305, - [SMALL_STATE(4279)] = 129315, - [SMALL_STATE(4280)] = 129325, - [SMALL_STATE(4281)] = 129335, - [SMALL_STATE(4282)] = 129345, - [SMALL_STATE(4283)] = 129355, - [SMALL_STATE(4284)] = 129365, - [SMALL_STATE(4285)] = 129375, - [SMALL_STATE(4286)] = 129385, - [SMALL_STATE(4287)] = 129395, - [SMALL_STATE(4288)] = 129403, - [SMALL_STATE(4289)] = 129411, - [SMALL_STATE(4290)] = 129421, - [SMALL_STATE(4291)] = 129429, - [SMALL_STATE(4292)] = 129439, - [SMALL_STATE(4293)] = 129449, - [SMALL_STATE(4294)] = 129459, - [SMALL_STATE(4295)] = 129467, - [SMALL_STATE(4296)] = 129477, - [SMALL_STATE(4297)] = 129485, - [SMALL_STATE(4298)] = 129493, - [SMALL_STATE(4299)] = 129503, - [SMALL_STATE(4300)] = 129513, - [SMALL_STATE(4301)] = 129523, - [SMALL_STATE(4302)] = 129533, - [SMALL_STATE(4303)] = 129543, - [SMALL_STATE(4304)] = 129553, - [SMALL_STATE(4305)] = 129563, - [SMALL_STATE(4306)] = 129573, - [SMALL_STATE(4307)] = 129583, - [SMALL_STATE(4308)] = 129593, - [SMALL_STATE(4309)] = 129603, - [SMALL_STATE(4310)] = 129613, - [SMALL_STATE(4311)] = 129623, - [SMALL_STATE(4312)] = 129633, - [SMALL_STATE(4313)] = 129641, - [SMALL_STATE(4314)] = 129651, - [SMALL_STATE(4315)] = 129659, - [SMALL_STATE(4316)] = 129669, - [SMALL_STATE(4317)] = 129679, - [SMALL_STATE(4318)] = 129687, - [SMALL_STATE(4319)] = 129697, - [SMALL_STATE(4320)] = 129707, - [SMALL_STATE(4321)] = 129717, - [SMALL_STATE(4322)] = 129727, - [SMALL_STATE(4323)] = 129735, - [SMALL_STATE(4324)] = 129745, - [SMALL_STATE(4325)] = 129755, - [SMALL_STATE(4326)] = 129765, - [SMALL_STATE(4327)] = 129775, - [SMALL_STATE(4328)] = 129785, - [SMALL_STATE(4329)] = 129795, - [SMALL_STATE(4330)] = 129805, - [SMALL_STATE(4331)] = 129815, - [SMALL_STATE(4332)] = 129825, - [SMALL_STATE(4333)] = 129835, - [SMALL_STATE(4334)] = 129845, - [SMALL_STATE(4335)] = 129855, - [SMALL_STATE(4336)] = 129865, - [SMALL_STATE(4337)] = 129875, - [SMALL_STATE(4338)] = 129885, - [SMALL_STATE(4339)] = 129895, - [SMALL_STATE(4340)] = 129905, - [SMALL_STATE(4341)] = 129915, - [SMALL_STATE(4342)] = 129925, - [SMALL_STATE(4343)] = 129933, - [SMALL_STATE(4344)] = 129943, - [SMALL_STATE(4345)] = 129953, - [SMALL_STATE(4346)] = 129963, - [SMALL_STATE(4347)] = 129973, - [SMALL_STATE(4348)] = 129983, - [SMALL_STATE(4349)] = 129993, - [SMALL_STATE(4350)] = 130003, - [SMALL_STATE(4351)] = 130013, - [SMALL_STATE(4352)] = 130023, - [SMALL_STATE(4353)] = 130033, - [SMALL_STATE(4354)] = 130043, - [SMALL_STATE(4355)] = 130053, - [SMALL_STATE(4356)] = 130063, - [SMALL_STATE(4357)] = 130073, - [SMALL_STATE(4358)] = 130083, - [SMALL_STATE(4359)] = 130093, - [SMALL_STATE(4360)] = 130103, - [SMALL_STATE(4361)] = 130113, - [SMALL_STATE(4362)] = 130123, - [SMALL_STATE(4363)] = 130133, - [SMALL_STATE(4364)] = 130143, - [SMALL_STATE(4365)] = 130151, - [SMALL_STATE(4366)] = 130161, - [SMALL_STATE(4367)] = 130171, - [SMALL_STATE(4368)] = 130181, - [SMALL_STATE(4369)] = 130191, - [SMALL_STATE(4370)] = 130201, - [SMALL_STATE(4371)] = 130211, - [SMALL_STATE(4372)] = 130221, - [SMALL_STATE(4373)] = 130231, - [SMALL_STATE(4374)] = 130241, - [SMALL_STATE(4375)] = 130251, - [SMALL_STATE(4376)] = 130261, - [SMALL_STATE(4377)] = 130271, - [SMALL_STATE(4378)] = 130281, - [SMALL_STATE(4379)] = 130291, - [SMALL_STATE(4380)] = 130301, - [SMALL_STATE(4381)] = 130309, - [SMALL_STATE(4382)] = 130317, - [SMALL_STATE(4383)] = 130327, - [SMALL_STATE(4384)] = 130337, - [SMALL_STATE(4385)] = 130347, - [SMALL_STATE(4386)] = 130357, - [SMALL_STATE(4387)] = 130367, - [SMALL_STATE(4388)] = 130377, - [SMALL_STATE(4389)] = 130387, - [SMALL_STATE(4390)] = 130397, - [SMALL_STATE(4391)] = 130407, - [SMALL_STATE(4392)] = 130417, - [SMALL_STATE(4393)] = 130424, - [SMALL_STATE(4394)] = 130431, - [SMALL_STATE(4395)] = 130438, - [SMALL_STATE(4396)] = 130445, - [SMALL_STATE(4397)] = 130452, - [SMALL_STATE(4398)] = 130459, - [SMALL_STATE(4399)] = 130466, - [SMALL_STATE(4400)] = 130473, - [SMALL_STATE(4401)] = 130480, - [SMALL_STATE(4402)] = 130487, - [SMALL_STATE(4403)] = 130494, - [SMALL_STATE(4404)] = 130501, - [SMALL_STATE(4405)] = 130508, - [SMALL_STATE(4406)] = 130515, - [SMALL_STATE(4407)] = 130522, - [SMALL_STATE(4408)] = 130529, - [SMALL_STATE(4409)] = 130536, - [SMALL_STATE(4410)] = 130543, - [SMALL_STATE(4411)] = 130550, - [SMALL_STATE(4412)] = 130557, - [SMALL_STATE(4413)] = 130564, - [SMALL_STATE(4414)] = 130571, - [SMALL_STATE(4415)] = 130578, - [SMALL_STATE(4416)] = 130585, - [SMALL_STATE(4417)] = 130592, - [SMALL_STATE(4418)] = 130599, - [SMALL_STATE(4419)] = 130606, - [SMALL_STATE(4420)] = 130613, - [SMALL_STATE(4421)] = 130620, - [SMALL_STATE(4422)] = 130627, - [SMALL_STATE(4423)] = 130634, - [SMALL_STATE(4424)] = 130641, - [SMALL_STATE(4425)] = 130648, - [SMALL_STATE(4426)] = 130655, - [SMALL_STATE(4427)] = 130662, - [SMALL_STATE(4428)] = 130669, - [SMALL_STATE(4429)] = 130676, - [SMALL_STATE(4430)] = 130683, - [SMALL_STATE(4431)] = 130690, - [SMALL_STATE(4432)] = 130697, - [SMALL_STATE(4433)] = 130704, - [SMALL_STATE(4434)] = 130711, - [SMALL_STATE(4435)] = 130718, - [SMALL_STATE(4436)] = 130725, - [SMALL_STATE(4437)] = 130732, - [SMALL_STATE(4438)] = 130739, - [SMALL_STATE(4439)] = 130746, - [SMALL_STATE(4440)] = 130753, - [SMALL_STATE(4441)] = 130760, - [SMALL_STATE(4442)] = 130767, - [SMALL_STATE(4443)] = 130774, - [SMALL_STATE(4444)] = 130781, - [SMALL_STATE(4445)] = 130788, - [SMALL_STATE(4446)] = 130795, - [SMALL_STATE(4447)] = 130802, - [SMALL_STATE(4448)] = 130809, - [SMALL_STATE(4449)] = 130816, - [SMALL_STATE(4450)] = 130823, - [SMALL_STATE(4451)] = 130830, - [SMALL_STATE(4452)] = 130837, - [SMALL_STATE(4453)] = 130844, - [SMALL_STATE(4454)] = 130851, - [SMALL_STATE(4455)] = 130858, - [SMALL_STATE(4456)] = 130865, - [SMALL_STATE(4457)] = 130872, - [SMALL_STATE(4458)] = 130879, - [SMALL_STATE(4459)] = 130886, - [SMALL_STATE(4460)] = 130893, - [SMALL_STATE(4461)] = 130900, - [SMALL_STATE(4462)] = 130907, - [SMALL_STATE(4463)] = 130914, - [SMALL_STATE(4464)] = 130921, - [SMALL_STATE(4465)] = 130928, - [SMALL_STATE(4466)] = 130935, - [SMALL_STATE(4467)] = 130942, - [SMALL_STATE(4468)] = 130949, - [SMALL_STATE(4469)] = 130956, - [SMALL_STATE(4470)] = 130963, - [SMALL_STATE(4471)] = 130970, - [SMALL_STATE(4472)] = 130977, - [SMALL_STATE(4473)] = 130984, - [SMALL_STATE(4474)] = 130991, - [SMALL_STATE(4475)] = 130998, - [SMALL_STATE(4476)] = 131005, - [SMALL_STATE(4477)] = 131012, - [SMALL_STATE(4478)] = 131019, - [SMALL_STATE(4479)] = 131026, - [SMALL_STATE(4480)] = 131033, - [SMALL_STATE(4481)] = 131040, - [SMALL_STATE(4482)] = 131047, - [SMALL_STATE(4483)] = 131054, - [SMALL_STATE(4484)] = 131061, - [SMALL_STATE(4485)] = 131068, - [SMALL_STATE(4486)] = 131075, - [SMALL_STATE(4487)] = 131082, - [SMALL_STATE(4488)] = 131089, - [SMALL_STATE(4489)] = 131096, - [SMALL_STATE(4490)] = 131103, - [SMALL_STATE(4491)] = 131110, - [SMALL_STATE(4492)] = 131117, - [SMALL_STATE(4493)] = 131124, - [SMALL_STATE(4494)] = 131131, - [SMALL_STATE(4495)] = 131138, - [SMALL_STATE(4496)] = 131145, - [SMALL_STATE(4497)] = 131152, - [SMALL_STATE(4498)] = 131159, - [SMALL_STATE(4499)] = 131166, - [SMALL_STATE(4500)] = 131173, - [SMALL_STATE(4501)] = 131180, - [SMALL_STATE(4502)] = 131187, - [SMALL_STATE(4503)] = 131194, - [SMALL_STATE(4504)] = 131201, - [SMALL_STATE(4505)] = 131208, - [SMALL_STATE(4506)] = 131215, - [SMALL_STATE(4507)] = 131222, - [SMALL_STATE(4508)] = 131229, - [SMALL_STATE(4509)] = 131236, - [SMALL_STATE(4510)] = 131243, - [SMALL_STATE(4511)] = 131250, - [SMALL_STATE(4512)] = 131257, - [SMALL_STATE(4513)] = 131264, - [SMALL_STATE(4514)] = 131271, - [SMALL_STATE(4515)] = 131278, - [SMALL_STATE(4516)] = 131285, - [SMALL_STATE(4517)] = 131292, - [SMALL_STATE(4518)] = 131299, - [SMALL_STATE(4519)] = 131306, - [SMALL_STATE(4520)] = 131313, - [SMALL_STATE(4521)] = 131320, - [SMALL_STATE(4522)] = 131327, - [SMALL_STATE(4523)] = 131334, - [SMALL_STATE(4524)] = 131341, - [SMALL_STATE(4525)] = 131348, - [SMALL_STATE(4526)] = 131355, - [SMALL_STATE(4527)] = 131362, - [SMALL_STATE(4528)] = 131369, - [SMALL_STATE(4529)] = 131376, - [SMALL_STATE(4530)] = 131383, - [SMALL_STATE(4531)] = 131390, - [SMALL_STATE(4532)] = 131397, - [SMALL_STATE(4533)] = 131404, - [SMALL_STATE(4534)] = 131411, - [SMALL_STATE(4535)] = 131418, - [SMALL_STATE(4536)] = 131425, - [SMALL_STATE(4537)] = 131432, - [SMALL_STATE(4538)] = 131439, - [SMALL_STATE(4539)] = 131446, - [SMALL_STATE(4540)] = 131453, - [SMALL_STATE(4541)] = 131460, - [SMALL_STATE(4542)] = 131467, - [SMALL_STATE(4543)] = 131474, - [SMALL_STATE(4544)] = 131481, - [SMALL_STATE(4545)] = 131488, - [SMALL_STATE(4546)] = 131495, - [SMALL_STATE(4547)] = 131502, - [SMALL_STATE(4548)] = 131509, - [SMALL_STATE(4549)] = 131516, - [SMALL_STATE(4550)] = 131523, - [SMALL_STATE(4551)] = 131530, - [SMALL_STATE(4552)] = 131537, - [SMALL_STATE(4553)] = 131544, - [SMALL_STATE(4554)] = 131551, - [SMALL_STATE(4555)] = 131558, - [SMALL_STATE(4556)] = 131565, - [SMALL_STATE(4557)] = 131572, - [SMALL_STATE(4558)] = 131579, - [SMALL_STATE(4559)] = 131586, - [SMALL_STATE(4560)] = 131593, - [SMALL_STATE(4561)] = 131600, - [SMALL_STATE(4562)] = 131607, - [SMALL_STATE(4563)] = 131614, - [SMALL_STATE(4564)] = 131621, - [SMALL_STATE(4565)] = 131628, - [SMALL_STATE(4566)] = 131635, - [SMALL_STATE(4567)] = 131642, - [SMALL_STATE(4568)] = 131649, - [SMALL_STATE(4569)] = 131656, - [SMALL_STATE(4570)] = 131663, - [SMALL_STATE(4571)] = 131670, - [SMALL_STATE(4572)] = 131677, - [SMALL_STATE(4573)] = 131684, - [SMALL_STATE(4574)] = 131691, - [SMALL_STATE(4575)] = 131698, - [SMALL_STATE(4576)] = 131705, - [SMALL_STATE(4577)] = 131712, - [SMALL_STATE(4578)] = 131719, - [SMALL_STATE(4579)] = 131726, - [SMALL_STATE(4580)] = 131733, - [SMALL_STATE(4581)] = 131740, - [SMALL_STATE(4582)] = 131747, - [SMALL_STATE(4583)] = 131754, - [SMALL_STATE(4584)] = 131761, - [SMALL_STATE(4585)] = 131768, - [SMALL_STATE(4586)] = 131775, - [SMALL_STATE(4587)] = 131782, - [SMALL_STATE(4588)] = 131789, - [SMALL_STATE(4589)] = 131796, - [SMALL_STATE(4590)] = 131803, - [SMALL_STATE(4591)] = 131810, - [SMALL_STATE(4592)] = 131817, - [SMALL_STATE(4593)] = 131824, - [SMALL_STATE(4594)] = 131831, - [SMALL_STATE(4595)] = 131838, - [SMALL_STATE(4596)] = 131845, - [SMALL_STATE(4597)] = 131852, - [SMALL_STATE(4598)] = 131859, - [SMALL_STATE(4599)] = 131866, - [SMALL_STATE(4600)] = 131873, - [SMALL_STATE(4601)] = 131880, - [SMALL_STATE(4602)] = 131887, - [SMALL_STATE(4603)] = 131894, - [SMALL_STATE(4604)] = 131901, - [SMALL_STATE(4605)] = 131908, - [SMALL_STATE(4606)] = 131915, - [SMALL_STATE(4607)] = 131922, - [SMALL_STATE(4608)] = 131929, - [SMALL_STATE(4609)] = 131936, - [SMALL_STATE(4610)] = 131943, - [SMALL_STATE(4611)] = 131950, - [SMALL_STATE(4612)] = 131957, - [SMALL_STATE(4613)] = 131964, - [SMALL_STATE(4614)] = 131971, - [SMALL_STATE(4615)] = 131978, - [SMALL_STATE(4616)] = 131985, - [SMALL_STATE(4617)] = 131992, - [SMALL_STATE(4618)] = 131999, - [SMALL_STATE(4619)] = 132006, - [SMALL_STATE(4620)] = 132013, - [SMALL_STATE(4621)] = 132020, - [SMALL_STATE(4622)] = 132027, - [SMALL_STATE(4623)] = 132034, - [SMALL_STATE(4624)] = 132041, - [SMALL_STATE(4625)] = 132048, - [SMALL_STATE(4626)] = 132055, - [SMALL_STATE(4627)] = 132062, - [SMALL_STATE(4628)] = 132069, - [SMALL_STATE(4629)] = 132076, - [SMALL_STATE(4630)] = 132083, - [SMALL_STATE(4631)] = 132090, - [SMALL_STATE(4632)] = 132097, - [SMALL_STATE(4633)] = 132104, - [SMALL_STATE(4634)] = 132111, - [SMALL_STATE(4635)] = 132118, - [SMALL_STATE(4636)] = 132125, - [SMALL_STATE(4637)] = 132132, - [SMALL_STATE(4638)] = 132139, - [SMALL_STATE(4639)] = 132146, - [SMALL_STATE(4640)] = 132153, - [SMALL_STATE(4641)] = 132160, - [SMALL_STATE(4642)] = 132167, - [SMALL_STATE(4643)] = 132174, - [SMALL_STATE(4644)] = 132181, - [SMALL_STATE(4645)] = 132188, - [SMALL_STATE(4646)] = 132195, - [SMALL_STATE(4647)] = 132202, - [SMALL_STATE(4648)] = 132209, - [SMALL_STATE(4649)] = 132216, - [SMALL_STATE(4650)] = 132223, - [SMALL_STATE(4651)] = 132230, - [SMALL_STATE(4652)] = 132237, - [SMALL_STATE(4653)] = 132244, - [SMALL_STATE(4654)] = 132251, - [SMALL_STATE(4655)] = 132258, - [SMALL_STATE(4656)] = 132265, - [SMALL_STATE(4657)] = 132272, - [SMALL_STATE(4658)] = 132279, - [SMALL_STATE(4659)] = 132286, - [SMALL_STATE(4660)] = 132293, - [SMALL_STATE(4661)] = 132300, - [SMALL_STATE(4662)] = 132307, - [SMALL_STATE(4663)] = 132314, - [SMALL_STATE(4664)] = 132321, - [SMALL_STATE(4665)] = 132328, - [SMALL_STATE(4666)] = 132335, - [SMALL_STATE(4667)] = 132342, - [SMALL_STATE(4668)] = 132349, - [SMALL_STATE(4669)] = 132356, - [SMALL_STATE(4670)] = 132363, - [SMALL_STATE(4671)] = 132370, - [SMALL_STATE(4672)] = 132377, - [SMALL_STATE(4673)] = 132384, - [SMALL_STATE(4674)] = 132391, - [SMALL_STATE(4675)] = 132398, - [SMALL_STATE(4676)] = 132405, - [SMALL_STATE(4677)] = 132412, - [SMALL_STATE(4678)] = 132419, - [SMALL_STATE(4679)] = 132426, - [SMALL_STATE(4680)] = 132433, - [SMALL_STATE(4681)] = 132440, - [SMALL_STATE(4682)] = 132447, - [SMALL_STATE(4683)] = 132454, - [SMALL_STATE(4684)] = 132461, - [SMALL_STATE(4685)] = 132468, - [SMALL_STATE(4686)] = 132475, - [SMALL_STATE(4687)] = 132482, - [SMALL_STATE(4688)] = 132489, - [SMALL_STATE(4689)] = 132496, - [SMALL_STATE(4690)] = 132503, - [SMALL_STATE(4691)] = 132510, - [SMALL_STATE(4692)] = 132517, - [SMALL_STATE(4693)] = 132524, - [SMALL_STATE(4694)] = 132531, - [SMALL_STATE(4695)] = 132538, - [SMALL_STATE(4696)] = 132545, - [SMALL_STATE(4697)] = 132552, - [SMALL_STATE(4698)] = 132559, - [SMALL_STATE(4699)] = 132566, - [SMALL_STATE(4700)] = 132573, - [SMALL_STATE(4701)] = 132580, - [SMALL_STATE(4702)] = 132587, - [SMALL_STATE(4703)] = 132594, - [SMALL_STATE(4704)] = 132601, - [SMALL_STATE(4705)] = 132608, - [SMALL_STATE(4706)] = 132615, - [SMALL_STATE(4707)] = 132622, - [SMALL_STATE(4708)] = 132629, - [SMALL_STATE(4709)] = 132636, - [SMALL_STATE(4710)] = 132643, - [SMALL_STATE(4711)] = 132650, - [SMALL_STATE(4712)] = 132657, - [SMALL_STATE(4713)] = 132664, - [SMALL_STATE(4714)] = 132671, - [SMALL_STATE(4715)] = 132678, - [SMALL_STATE(4716)] = 132685, + [SMALL_STATE(1649)] = 0, + [SMALL_STATE(1650)] = 93, + [SMALL_STATE(1651)] = 186, + [SMALL_STATE(1652)] = 277, + [SMALL_STATE(1653)] = 372, + [SMALL_STATE(1654)] = 467, + [SMALL_STATE(1655)] = 584, + [SMALL_STATE(1656)] = 679, + [SMALL_STATE(1657)] = 770, + [SMALL_STATE(1658)] = 887, + [SMALL_STATE(1659)] = 990, + [SMALL_STATE(1660)] = 1091, + [SMALL_STATE(1661)] = 1182, + [SMALL_STATE(1662)] = 1309, + [SMALL_STATE(1663)] = 1429, + [SMALL_STATE(1664)] = 1507, + [SMALL_STATE(1665)] = 1585, + [SMALL_STATE(1666)] = 1659, + [SMALL_STATE(1667)] = 1733, + [SMALL_STATE(1668)] = 1822, + [SMALL_STATE(1669)] = 1895, + [SMALL_STATE(1670)] = 1968, + [SMALL_STATE(1671)] = 2043, + [SMALL_STATE(1672)] = 2132, + [SMALL_STATE(1673)] = 2207, + [SMALL_STATE(1674)] = 2282, + [SMALL_STATE(1675)] = 2355, + [SMALL_STATE(1676)] = 2486, + [SMALL_STATE(1677)] = 2559, + [SMALL_STATE(1678)] = 2632, + [SMALL_STATE(1679)] = 2705, + [SMALL_STATE(1680)] = 2778, + [SMALL_STATE(1681)] = 2909, + [SMALL_STATE(1682)] = 2982, + [SMALL_STATE(1683)] = 3057, + [SMALL_STATE(1684)] = 3130, + [SMALL_STATE(1685)] = 3203, + [SMALL_STATE(1686)] = 3276, + [SMALL_STATE(1687)] = 3353, + [SMALL_STATE(1688)] = 3426, + [SMALL_STATE(1689)] = 3499, + [SMALL_STATE(1690)] = 3614, + [SMALL_STATE(1691)] = 3705, + [SMALL_STATE(1692)] = 3820, + [SMALL_STATE(1693)] = 3913, + [SMALL_STATE(1694)] = 4012, + [SMALL_STATE(1695)] = 4113, + [SMALL_STATE(1696)] = 4206, + [SMALL_STATE(1697)] = 4299, + [SMALL_STATE(1698)] = 4372, + [SMALL_STATE(1699)] = 4445, + [SMALL_STATE(1700)] = 4518, + [SMALL_STATE(1701)] = 4591, + [SMALL_STATE(1702)] = 4664, + [SMALL_STATE(1703)] = 4779, + [SMALL_STATE(1704)] = 4854, + [SMALL_STATE(1705)] = 4927, + [SMALL_STATE(1706)] = 5016, + [SMALL_STATE(1707)] = 5089, + [SMALL_STATE(1708)] = 5162, + [SMALL_STATE(1709)] = 5237, + [SMALL_STATE(1710)] = 5310, + [SMALL_STATE(1711)] = 5385, + [SMALL_STATE(1712)] = 5459, + [SMALL_STATE(1713)] = 5531, + [SMALL_STATE(1714)] = 5603, + [SMALL_STATE(1715)] = 5675, + [SMALL_STATE(1716)] = 5747, + [SMALL_STATE(1717)] = 5819, + [SMALL_STATE(1718)] = 5891, + [SMALL_STATE(1719)] = 5963, + [SMALL_STATE(1720)] = 6035, + [SMALL_STATE(1721)] = 6107, + [SMALL_STATE(1722)] = 6179, + [SMALL_STATE(1723)] = 6251, + [SMALL_STATE(1724)] = 6323, + [SMALL_STATE(1725)] = 6397, + [SMALL_STATE(1726)] = 6469, + [SMALL_STATE(1727)] = 6541, + [SMALL_STATE(1728)] = 6613, + [SMALL_STATE(1729)] = 6685, + [SMALL_STATE(1730)] = 6757, + [SMALL_STATE(1731)] = 6829, + [SMALL_STATE(1732)] = 6903, + [SMALL_STATE(1733)] = 6975, + [SMALL_STATE(1734)] = 7047, + [SMALL_STATE(1735)] = 7119, + [SMALL_STATE(1736)] = 7191, + [SMALL_STATE(1737)] = 7263, + [SMALL_STATE(1738)] = 7335, + [SMALL_STATE(1739)] = 7407, + [SMALL_STATE(1740)] = 7479, + [SMALL_STATE(1741)] = 7551, + [SMALL_STATE(1742)] = 7623, + [SMALL_STATE(1743)] = 7697, + [SMALL_STATE(1744)] = 7771, + [SMALL_STATE(1745)] = 7843, + [SMALL_STATE(1746)] = 7915, + [SMALL_STATE(1747)] = 7989, + [SMALL_STATE(1748)] = 8061, + [SMALL_STATE(1749)] = 8133, + [SMALL_STATE(1750)] = 8205, + [SMALL_STATE(1751)] = 8277, + [SMALL_STATE(1752)] = 8349, + [SMALL_STATE(1753)] = 8421, + [SMALL_STATE(1754)] = 8493, + [SMALL_STATE(1755)] = 8565, + [SMALL_STATE(1756)] = 8637, + [SMALL_STATE(1757)] = 8709, + [SMALL_STATE(1758)] = 8781, + [SMALL_STATE(1759)] = 8853, + [SMALL_STATE(1760)] = 8925, + [SMALL_STATE(1761)] = 8997, + [SMALL_STATE(1762)] = 9069, + [SMALL_STATE(1763)] = 9141, + [SMALL_STATE(1764)] = 9213, + [SMALL_STATE(1765)] = 9285, + [SMALL_STATE(1766)] = 9357, + [SMALL_STATE(1767)] = 9431, + [SMALL_STATE(1768)] = 9503, + [SMALL_STATE(1769)] = 9575, + [SMALL_STATE(1770)] = 9647, + [SMALL_STATE(1771)] = 9719, + [SMALL_STATE(1772)] = 9791, + [SMALL_STATE(1773)] = 9863, + [SMALL_STATE(1774)] = 9935, + [SMALL_STATE(1775)] = 10007, + [SMALL_STATE(1776)] = 10079, + [SMALL_STATE(1777)] = 10151, + [SMALL_STATE(1778)] = 10223, + [SMALL_STATE(1779)] = 10299, + [SMALL_STATE(1780)] = 10371, + [SMALL_STATE(1781)] = 10447, + [SMALL_STATE(1782)] = 10519, + [SMALL_STATE(1783)] = 10591, + [SMALL_STATE(1784)] = 10663, + [SMALL_STATE(1785)] = 10735, + [SMALL_STATE(1786)] = 10807, + [SMALL_STATE(1787)] = 10881, + [SMALL_STATE(1788)] = 10953, + [SMALL_STATE(1789)] = 11025, + [SMALL_STATE(1790)] = 11097, + [SMALL_STATE(1791)] = 11171, + [SMALL_STATE(1792)] = 11243, + [SMALL_STATE(1793)] = 11315, + [SMALL_STATE(1794)] = 11387, + [SMALL_STATE(1795)] = 11459, + [SMALL_STATE(1796)] = 11552, + [SMALL_STATE(1797)] = 11647, + [SMALL_STATE(1798)] = 11720, + [SMALL_STATE(1799)] = 11839, + [SMALL_STATE(1800)] = 11958, + [SMALL_STATE(1801)] = 12031, + [SMALL_STATE(1802)] = 12124, + [SMALL_STATE(1803)] = 12197, + [SMALL_STATE(1804)] = 12292, + [SMALL_STATE(1805)] = 12397, + [SMALL_STATE(1806)] = 12488, + [SMALL_STATE(1807)] = 12579, + [SMALL_STATE(1808)] = 12652, + [SMALL_STATE(1809)] = 12755, + [SMALL_STATE(1810)] = 12828, + [SMALL_STATE(1811)] = 12919, + [SMALL_STATE(1812)] = 13014, + [SMALL_STATE(1813)] = 13137, + [SMALL_STATE(1814)] = 13210, + [SMALL_STATE(1815)] = 13301, + [SMALL_STATE(1816)] = 13392, + [SMALL_STATE(1817)] = 13517, + [SMALL_STATE(1818)] = 13612, + [SMALL_STATE(1819)] = 13707, + [SMALL_STATE(1820)] = 13830, + [SMALL_STATE(1821)] = 13935, + [SMALL_STATE(1822)] = 14038, + [SMALL_STATE(1823)] = 14133, + [SMALL_STATE(1824)] = 14224, + [SMALL_STATE(1825)] = 14343, + [SMALL_STATE(1826)] = 14462, + [SMALL_STATE(1827)] = 14532, + [SMALL_STATE(1828)] = 14602, + [SMALL_STATE(1829)] = 14672, + [SMALL_STATE(1830)] = 14744, + [SMALL_STATE(1831)] = 14814, + [SMALL_STATE(1832)] = 14932, + [SMALL_STATE(1833)] = 15002, + [SMALL_STATE(1834)] = 15080, + [SMALL_STATE(1835)] = 15150, + [SMALL_STATE(1836)] = 15220, + [SMALL_STATE(1837)] = 15338, + [SMALL_STATE(1838)] = 15408, + [SMALL_STATE(1839)] = 15478, + [SMALL_STATE(1840)] = 15548, + [SMALL_STATE(1841)] = 15620, + [SMALL_STATE(1842)] = 15690, + [SMALL_STATE(1843)] = 15760, + [SMALL_STATE(1844)] = 15830, + [SMALL_STATE(1845)] = 15900, + [SMALL_STATE(1846)] = 15970, + [SMALL_STATE(1847)] = 16040, + [SMALL_STATE(1848)] = 16110, + [SMALL_STATE(1849)] = 16180, + [SMALL_STATE(1850)] = 16250, + [SMALL_STATE(1851)] = 16368, + [SMALL_STATE(1852)] = 16486, + [SMALL_STATE(1853)] = 16556, + [SMALL_STATE(1854)] = 16626, + [SMALL_STATE(1855)] = 16696, + [SMALL_STATE(1856)] = 16766, + [SMALL_STATE(1857)] = 16836, + [SMALL_STATE(1858)] = 16906, + [SMALL_STATE(1859)] = 16976, + [SMALL_STATE(1860)] = 17046, + [SMALL_STATE(1861)] = 17116, + [SMALL_STATE(1862)] = 17188, + [SMALL_STATE(1863)] = 17258, + [SMALL_STATE(1864)] = 17328, + [SMALL_STATE(1865)] = 17398, + [SMALL_STATE(1866)] = 17470, + [SMALL_STATE(1867)] = 17540, + [SMALL_STATE(1868)] = 17610, + [SMALL_STATE(1869)] = 17680, + [SMALL_STATE(1870)] = 17750, + [SMALL_STATE(1871)] = 17822, + [SMALL_STATE(1872)] = 17892, + [SMALL_STATE(1873)] = 17962, + [SMALL_STATE(1874)] = 18032, + [SMALL_STATE(1875)] = 18102, + [SMALL_STATE(1876)] = 18172, + [SMALL_STATE(1877)] = 18242, + [SMALL_STATE(1878)] = 18312, + [SMALL_STATE(1879)] = 18382, + [SMALL_STATE(1880)] = 18452, + [SMALL_STATE(1881)] = 18522, + [SMALL_STATE(1882)] = 18592, + [SMALL_STATE(1883)] = 18662, + [SMALL_STATE(1884)] = 18732, + [SMALL_STATE(1885)] = 18806, + [SMALL_STATE(1886)] = 18876, + [SMALL_STATE(1887)] = 18950, + [SMALL_STATE(1888)] = 19020, + [SMALL_STATE(1889)] = 19090, + [SMALL_STATE(1890)] = 19160, + [SMALL_STATE(1891)] = 19230, + [SMALL_STATE(1892)] = 19300, + [SMALL_STATE(1893)] = 19370, + [SMALL_STATE(1894)] = 19440, + [SMALL_STATE(1895)] = 19510, + [SMALL_STATE(1896)] = 19580, + [SMALL_STATE(1897)] = 19650, + [SMALL_STATE(1898)] = 19720, + [SMALL_STATE(1899)] = 19790, + [SMALL_STATE(1900)] = 19860, + [SMALL_STATE(1901)] = 19930, + [SMALL_STATE(1902)] = 20000, + [SMALL_STATE(1903)] = 20070, + [SMALL_STATE(1904)] = 20140, + [SMALL_STATE(1905)] = 20210, + [SMALL_STATE(1906)] = 20280, + [SMALL_STATE(1907)] = 20350, + [SMALL_STATE(1908)] = 20420, + [SMALL_STATE(1909)] = 20490, + [SMALL_STATE(1910)] = 20560, + [SMALL_STATE(1911)] = 20630, + [SMALL_STATE(1912)] = 20700, + [SMALL_STATE(1913)] = 20770, + [SMALL_STATE(1914)] = 20840, + [SMALL_STATE(1915)] = 20910, + [SMALL_STATE(1916)] = 20980, + [SMALL_STATE(1917)] = 21050, + [SMALL_STATE(1918)] = 21120, + [SMALL_STATE(1919)] = 21190, + [SMALL_STATE(1920)] = 21260, + [SMALL_STATE(1921)] = 21330, + [SMALL_STATE(1922)] = 21400, + [SMALL_STATE(1923)] = 21470, + [SMALL_STATE(1924)] = 21540, + [SMALL_STATE(1925)] = 21634, + [SMALL_STATE(1926)] = 21704, + [SMALL_STATE(1927)] = 21798, + [SMALL_STATE(1928)] = 21868, + [SMALL_STATE(1929)] = 21972, + [SMALL_STATE(1930)] = 22042, + [SMALL_STATE(1931)] = 22112, + [SMALL_STATE(1932)] = 22214, + [SMALL_STATE(1933)] = 22284, + [SMALL_STATE(1934)] = 22354, + [SMALL_STATE(1935)] = 22424, + [SMALL_STATE(1936)] = 22494, + [SMALL_STATE(1937)] = 22586, + [SMALL_STATE(1938)] = 22656, + [SMALL_STATE(1939)] = 22726, + [SMALL_STATE(1940)] = 22796, + [SMALL_STATE(1941)] = 22866, + [SMALL_STATE(1942)] = 22936, + [SMALL_STATE(1943)] = 23006, + [SMALL_STATE(1944)] = 23076, + [SMALL_STATE(1945)] = 23146, + [SMALL_STATE(1946)] = 23216, + [SMALL_STATE(1947)] = 23310, + [SMALL_STATE(1948)] = 23384, + [SMALL_STATE(1949)] = 23458, + [SMALL_STATE(1950)] = 23529, + [SMALL_STATE(1951)] = 23646, + [SMALL_STATE(1952)] = 23717, + [SMALL_STATE(1953)] = 23788, + [SMALL_STATE(1954)] = 23905, + [SMALL_STATE(1955)] = 23976, + [SMALL_STATE(1956)] = 24093, + [SMALL_STATE(1957)] = 24164, + [SMALL_STATE(1958)] = 24241, + [SMALL_STATE(1959)] = 24310, + [SMALL_STATE(1960)] = 24377, + [SMALL_STATE(1961)] = 24494, + [SMALL_STATE(1962)] = 24565, + [SMALL_STATE(1963)] = 24637, + [SMALL_STATE(1964)] = 24705, + [SMALL_STATE(1965)] = 24773, + [SMALL_STATE(1966)] = 24841, + [SMALL_STATE(1967)] = 24909, + [SMALL_STATE(1968)] = 24977, + [SMALL_STATE(1969)] = 25045, + [SMALL_STATE(1970)] = 25113, + [SMALL_STATE(1971)] = 25181, + [SMALL_STATE(1972)] = 25249, + [SMALL_STATE(1973)] = 25317, + [SMALL_STATE(1974)] = 25385, + [SMALL_STATE(1975)] = 25453, + [SMALL_STATE(1976)] = 25521, + [SMALL_STATE(1977)] = 25589, + [SMALL_STATE(1978)] = 25657, + [SMALL_STATE(1979)] = 25725, + [SMALL_STATE(1980)] = 25793, + [SMALL_STATE(1981)] = 25861, + [SMALL_STATE(1982)] = 25929, + [SMALL_STATE(1983)] = 25997, + [SMALL_STATE(1984)] = 26067, + [SMALL_STATE(1985)] = 26137, + [SMALL_STATE(1986)] = 26205, + [SMALL_STATE(1987)] = 26273, + [SMALL_STATE(1988)] = 26341, + [SMALL_STATE(1989)] = 26411, + [SMALL_STATE(1990)] = 26479, + [SMALL_STATE(1991)] = 26547, + [SMALL_STATE(1992)] = 26615, + [SMALL_STATE(1993)] = 26683, + [SMALL_STATE(1994)] = 26751, + [SMALL_STATE(1995)] = 26819, + [SMALL_STATE(1996)] = 26887, + [SMALL_STATE(1997)] = 26955, + [SMALL_STATE(1998)] = 27023, + [SMALL_STATE(1999)] = 27091, + [SMALL_STATE(2000)] = 27159, + [SMALL_STATE(2001)] = 27227, + [SMALL_STATE(2002)] = 27295, + [SMALL_STATE(2003)] = 27363, + [SMALL_STATE(2004)] = 27431, + [SMALL_STATE(2005)] = 27499, + [SMALL_STATE(2006)] = 27567, + [SMALL_STATE(2007)] = 27635, + [SMALL_STATE(2008)] = 27703, + [SMALL_STATE(2009)] = 27771, + [SMALL_STATE(2010)] = 27839, + [SMALL_STATE(2011)] = 27907, + [SMALL_STATE(2012)] = 27975, + [SMALL_STATE(2013)] = 28043, + [SMALL_STATE(2014)] = 28111, + [SMALL_STATE(2015)] = 28179, + [SMALL_STATE(2016)] = 28247, + [SMALL_STATE(2017)] = 28315, + [SMALL_STATE(2018)] = 28383, + [SMALL_STATE(2019)] = 28451, + [SMALL_STATE(2020)] = 28519, + [SMALL_STATE(2021)] = 28587, + [SMALL_STATE(2022)] = 28655, + [SMALL_STATE(2023)] = 28723, + [SMALL_STATE(2024)] = 28791, + [SMALL_STATE(2025)] = 28859, + [SMALL_STATE(2026)] = 28927, + [SMALL_STATE(2027)] = 28995, + [SMALL_STATE(2028)] = 29063, + [SMALL_STATE(2029)] = 29131, + [SMALL_STATE(2030)] = 29199, + [SMALL_STATE(2031)] = 29267, + [SMALL_STATE(2032)] = 29335, + [SMALL_STATE(2033)] = 29403, + [SMALL_STATE(2034)] = 29471, + [SMALL_STATE(2035)] = 29539, + [SMALL_STATE(2036)] = 29607, + [SMALL_STATE(2037)] = 29675, + [SMALL_STATE(2038)] = 29745, + [SMALL_STATE(2039)] = 29815, + [SMALL_STATE(2040)] = 29883, + [SMALL_STATE(2041)] = 29951, + [SMALL_STATE(2042)] = 30019, + [SMALL_STATE(2043)] = 30087, + [SMALL_STATE(2044)] = 30155, + [SMALL_STATE(2045)] = 30223, + [SMALL_STATE(2046)] = 30291, + [SMALL_STATE(2047)] = 30359, + [SMALL_STATE(2048)] = 30427, + [SMALL_STATE(2049)] = 30495, + [SMALL_STATE(2050)] = 30563, + [SMALL_STATE(2051)] = 30631, + [SMALL_STATE(2052)] = 30699, + [SMALL_STATE(2053)] = 30767, + [SMALL_STATE(2054)] = 30835, + [SMALL_STATE(2055)] = 30903, + [SMALL_STATE(2056)] = 30971, + [SMALL_STATE(2057)] = 31039, + [SMALL_STATE(2058)] = 31107, + [SMALL_STATE(2059)] = 31175, + [SMALL_STATE(2060)] = 31243, + [SMALL_STATE(2061)] = 31311, + [SMALL_STATE(2062)] = 31379, + [SMALL_STATE(2063)] = 31447, + [SMALL_STATE(2064)] = 31515, + [SMALL_STATE(2065)] = 31583, + [SMALL_STATE(2066)] = 31653, + [SMALL_STATE(2067)] = 31721, + [SMALL_STATE(2068)] = 31789, + [SMALL_STATE(2069)] = 31857, + [SMALL_STATE(2070)] = 31925, + [SMALL_STATE(2071)] = 31993, + [SMALL_STATE(2072)] = 32061, + [SMALL_STATE(2073)] = 32129, + [SMALL_STATE(2074)] = 32197, + [SMALL_STATE(2075)] = 32269, + [SMALL_STATE(2076)] = 32337, + [SMALL_STATE(2077)] = 32405, + [SMALL_STATE(2078)] = 32477, + [SMALL_STATE(2079)] = 32545, + [SMALL_STATE(2080)] = 32617, + [SMALL_STATE(2081)] = 32685, + [SMALL_STATE(2082)] = 32753, + [SMALL_STATE(2083)] = 32821, + [SMALL_STATE(2084)] = 32889, + [SMALL_STATE(2085)] = 32957, + [SMALL_STATE(2086)] = 33025, + [SMALL_STATE(2087)] = 33093, + [SMALL_STATE(2088)] = 33161, + [SMALL_STATE(2089)] = 33229, + [SMALL_STATE(2090)] = 33297, + [SMALL_STATE(2091)] = 33369, + [SMALL_STATE(2092)] = 33437, + [SMALL_STATE(2093)] = 33507, + [SMALL_STATE(2094)] = 33575, + [SMALL_STATE(2095)] = 33643, + [SMALL_STATE(2096)] = 33711, + [SMALL_STATE(2097)] = 33779, + [SMALL_STATE(2098)] = 33847, + [SMALL_STATE(2099)] = 33917, + [SMALL_STATE(2100)] = 33987, + [SMALL_STATE(2101)] = 34057, + [SMALL_STATE(2102)] = 34125, + [SMALL_STATE(2103)] = 34193, + [SMALL_STATE(2104)] = 34261, + [SMALL_STATE(2105)] = 34329, + [SMALL_STATE(2106)] = 34397, + [SMALL_STATE(2107)] = 34465, + [SMALL_STATE(2108)] = 34533, + [SMALL_STATE(2109)] = 34601, + [SMALL_STATE(2110)] = 34669, + [SMALL_STATE(2111)] = 34737, + [SMALL_STATE(2112)] = 34805, + [SMALL_STATE(2113)] = 34873, + [SMALL_STATE(2114)] = 34941, + [SMALL_STATE(2115)] = 35009, + [SMALL_STATE(2116)] = 35077, + [SMALL_STATE(2117)] = 35145, + [SMALL_STATE(2118)] = 35213, + [SMALL_STATE(2119)] = 35281, + [SMALL_STATE(2120)] = 35349, + [SMALL_STATE(2121)] = 35417, + [SMALL_STATE(2122)] = 35485, + [SMALL_STATE(2123)] = 35557, + [SMALL_STATE(2124)] = 35625, + [SMALL_STATE(2125)] = 35693, + [SMALL_STATE(2126)] = 35761, + [SMALL_STATE(2127)] = 35829, + [SMALL_STATE(2128)] = 35897, + [SMALL_STATE(2129)] = 35965, + [SMALL_STATE(2130)] = 36033, + [SMALL_STATE(2131)] = 36101, + [SMALL_STATE(2132)] = 36171, + [SMALL_STATE(2133)] = 36239, + [SMALL_STATE(2134)] = 36307, + [SMALL_STATE(2135)] = 36375, + [SMALL_STATE(2136)] = 36445, + [SMALL_STATE(2137)] = 36513, + [SMALL_STATE(2138)] = 36581, + [SMALL_STATE(2139)] = 36649, + [SMALL_STATE(2140)] = 36717, + [SMALL_STATE(2141)] = 36785, + [SMALL_STATE(2142)] = 36853, + [SMALL_STATE(2143)] = 36921, + [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)] = 39394, + [SMALL_STATE(2180)] = 39476, + [SMALL_STATE(2181)] = 39545, + [SMALL_STATE(2182)] = 39614, + [SMALL_STATE(2183)] = 39685, + [SMALL_STATE(2184)] = 39751, + [SMALL_STATE(2185)] = 39815, + [SMALL_STATE(2186)] = 39879, + [SMALL_STATE(2187)] = 39943, + [SMALL_STATE(2188)] = 40007, + [SMALL_STATE(2189)] = 40071, + [SMALL_STATE(2190)] = 40137, + [SMALL_STATE(2191)] = 40201, + [SMALL_STATE(2192)] = 40265, + [SMALL_STATE(2193)] = 40329, + [SMALL_STATE(2194)] = 40399, + [SMALL_STATE(2195)] = 40463, + [SMALL_STATE(2196)] = 40575, + [SMALL_STATE(2197)] = 40639, + [SMALL_STATE(2198)] = 40705, + [SMALL_STATE(2199)] = 40769, + [SMALL_STATE(2200)] = 40837, + [SMALL_STATE(2201)] = 40903, + [SMALL_STATE(2202)] = 40967, + [SMALL_STATE(2203)] = 41030, + [SMALL_STATE(2204)] = 41093, + [SMALL_STATE(2205)] = 41156, + [SMALL_STATE(2206)] = 41261, + [SMALL_STATE(2207)] = 41324, + [SMALL_STATE(2208)] = 41429, + [SMALL_STATE(2209)] = 41492, + [SMALL_STATE(2210)] = 41555, + [SMALL_STATE(2211)] = 41618, + [SMALL_STATE(2212)] = 41681, + [SMALL_STATE(2213)] = 41744, + [SMALL_STATE(2214)] = 41807, + [SMALL_STATE(2215)] = 41870, + [SMALL_STATE(2216)] = 41935, + [SMALL_STATE(2217)] = 41998, + [SMALL_STATE(2218)] = 42061, + [SMALL_STATE(2219)] = 42124, + [SMALL_STATE(2220)] = 42187, + [SMALL_STATE(2221)] = 42250, + [SMALL_STATE(2222)] = 42313, + [SMALL_STATE(2223)] = 42376, + [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)] = 42945, + [SMALL_STATE(2233)] = 43008, + [SMALL_STATE(2234)] = 43073, + [SMALL_STATE(2235)] = 43184, + [SMALL_STATE(2236)] = 43249, + [SMALL_STATE(2237)] = 43312, + [SMALL_STATE(2238)] = 43375, + [SMALL_STATE(2239)] = 43438, + [SMALL_STATE(2240)] = 43501, + [SMALL_STATE(2241)] = 43564, + [SMALL_STATE(2242)] = 43627, + [SMALL_STATE(2243)] = 43690, + [SMALL_STATE(2244)] = 43753, + [SMALL_STATE(2245)] = 43816, + [SMALL_STATE(2246)] = 43879, + [SMALL_STATE(2247)] = 43942, + [SMALL_STATE(2248)] = 44005, + [SMALL_STATE(2249)] = 44068, + [SMALL_STATE(2250)] = 44131, + [SMALL_STATE(2251)] = 44194, + [SMALL_STATE(2252)] = 44257, + [SMALL_STATE(2253)] = 44320, + [SMALL_STATE(2254)] = 44383, + [SMALL_STATE(2255)] = 44446, + [SMALL_STATE(2256)] = 44509, + [SMALL_STATE(2257)] = 44572, + [SMALL_STATE(2258)] = 44635, + [SMALL_STATE(2259)] = 44698, + [SMALL_STATE(2260)] = 44761, + [SMALL_STATE(2261)] = 44824, + [SMALL_STATE(2262)] = 44887, + [SMALL_STATE(2263)] = 44950, + [SMALL_STATE(2264)] = 45013, + [SMALL_STATE(2265)] = 45076, + [SMALL_STATE(2266)] = 45159, + [SMALL_STATE(2267)] = 45222, + [SMALL_STATE(2268)] = 45285, + [SMALL_STATE(2269)] = 45348, + [SMALL_STATE(2270)] = 45411, + [SMALL_STATE(2271)] = 45474, + [SMALL_STATE(2272)] = 45537, + [SMALL_STATE(2273)] = 45620, + [SMALL_STATE(2274)] = 45683, + [SMALL_STATE(2275)] = 45774, + [SMALL_STATE(2276)] = 45837, + [SMALL_STATE(2277)] = 45926, + [SMALL_STATE(2278)] = 45989, + [SMALL_STATE(2279)] = 46072, + [SMALL_STATE(2280)] = 46135, + [SMALL_STATE(2281)] = 46198, + [SMALL_STATE(2282)] = 46261, + [SMALL_STATE(2283)] = 46324, + [SMALL_STATE(2284)] = 46387, + [SMALL_STATE(2285)] = 46450, + [SMALL_STATE(2286)] = 46531, + [SMALL_STATE(2287)] = 46594, + [SMALL_STATE(2288)] = 46657, + [SMALL_STATE(2289)] = 46720, + [SMALL_STATE(2290)] = 46783, + [SMALL_STATE(2291)] = 46846, + [SMALL_STATE(2292)] = 46909, + [SMALL_STATE(2293)] = 46972, + [SMALL_STATE(2294)] = 47035, + [SMALL_STATE(2295)] = 47098, + [SMALL_STATE(2296)] = 47161, + [SMALL_STATE(2297)] = 47224, + [SMALL_STATE(2298)] = 47287, + [SMALL_STATE(2299)] = 47350, + [SMALL_STATE(2300)] = 47413, + [SMALL_STATE(2301)] = 47476, + [SMALL_STATE(2302)] = 47539, + [SMALL_STATE(2303)] = 47602, + [SMALL_STATE(2304)] = 47665, + [SMALL_STATE(2305)] = 47728, + [SMALL_STATE(2306)] = 47791, + [SMALL_STATE(2307)] = 47854, + [SMALL_STATE(2308)] = 47919, + [SMALL_STATE(2309)] = 47984, + [SMALL_STATE(2310)] = 48047, + [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)] = 48576, + [SMALL_STATE(2319)] = 48666, + [SMALL_STATE(2320)] = 48770, + [SMALL_STATE(2321)] = 48874, + [SMALL_STATE(2322)] = 48958, + [SMALL_STATE(2323)] = 49042, + [SMALL_STATE(2324)] = 49146, + [SMALL_STATE(2325)] = 49210, + [SMALL_STATE(2326)] = 49314, + [SMALL_STATE(2327)] = 49376, + [SMALL_STATE(2328)] = 49438, + [SMALL_STATE(2329)] = 49520, + [SMALL_STATE(2330)] = 49582, + [SMALL_STATE(2331)] = 49664, + [SMALL_STATE(2332)] = 49728, + [SMALL_STATE(2333)] = 49810, + [SMALL_STATE(2334)] = 49872, + [SMALL_STATE(2335)] = 49956, + [SMALL_STATE(2336)] = 50036, + [SMALL_STATE(2337)] = 50145, + [SMALL_STATE(2338)] = 50210, + [SMALL_STATE(2339)] = 50275, + [SMALL_STATE(2340)] = 50337, + [SMALL_STATE(2341)] = 50413, + [SMALL_STATE(2342)] = 50475, + [SMALL_STATE(2343)] = 50551, + [SMALL_STATE(2344)] = 50613, + [SMALL_STATE(2345)] = 50719, + [SMALL_STATE(2346)] = 50795, + [SMALL_STATE(2347)] = 50857, + [SMALL_STATE(2348)] = 50919, + [SMALL_STATE(2349)] = 50978, + [SMALL_STATE(2350)] = 51037, + [SMALL_STATE(2351)] = 51096, + [SMALL_STATE(2352)] = 51175, + [SMALL_STATE(2353)] = 51262, + [SMALL_STATE(2354)] = 51347, + [SMALL_STATE(2355)] = 51406, + [SMALL_STATE(2356)] = 51465, + [SMALL_STATE(2357)] = 51524, + [SMALL_STATE(2358)] = 51625, + [SMALL_STATE(2359)] = 51704, + [SMALL_STATE(2360)] = 51821, + [SMALL_STATE(2361)] = 51898, + [SMALL_STATE(2362)] = 51957, + [SMALL_STATE(2363)] = 52016, + [SMALL_STATE(2364)] = 52075, + [SMALL_STATE(2365)] = 52134, + [SMALL_STATE(2366)] = 52193, + [SMALL_STATE(2367)] = 52252, + [SMALL_STATE(2368)] = 52369, + [SMALL_STATE(2369)] = 52428, + [SMALL_STATE(2370)] = 52487, + [SMALL_STATE(2371)] = 52546, + [SMALL_STATE(2372)] = 52647, + [SMALL_STATE(2373)] = 52706, + [SMALL_STATE(2374)] = 52765, + [SMALL_STATE(2375)] = 52824, + [SMALL_STATE(2376)] = 52941, + [SMALL_STATE(2377)] = 53000, + [SMALL_STATE(2378)] = 53059, + [SMALL_STATE(2379)] = 53176, + [SMALL_STATE(2380)] = 53235, + [SMALL_STATE(2381)] = 53294, + [SMALL_STATE(2382)] = 53353, + [SMALL_STATE(2383)] = 53412, + [SMALL_STATE(2384)] = 53471, + [SMALL_STATE(2385)] = 53530, + [SMALL_STATE(2386)] = 53589, + [SMALL_STATE(2387)] = 53648, + [SMALL_STATE(2388)] = 53709, + [SMALL_STATE(2389)] = 53788, + [SMALL_STATE(2390)] = 53847, + [SMALL_STATE(2391)] = 53906, + [SMALL_STATE(2392)] = 53965, + [SMALL_STATE(2393)] = 54024, + [SMALL_STATE(2394)] = 54083, + [SMALL_STATE(2395)] = 54142, + [SMALL_STATE(2396)] = 54201, + [SMALL_STATE(2397)] = 54302, + [SMALL_STATE(2398)] = 54419, + [SMALL_STATE(2399)] = 54482, + [SMALL_STATE(2400)] = 54545, + [SMALL_STATE(2401)] = 54604, + [SMALL_STATE(2402)] = 54663, + [SMALL_STATE(2403)] = 54722, + [SMALL_STATE(2404)] = 54781, + [SMALL_STATE(2405)] = 54840, + [SMALL_STATE(2406)] = 54899, + [SMALL_STATE(2407)] = 54958, + [SMALL_STATE(2408)] = 55017, + [SMALL_STATE(2409)] = 55076, + [SMALL_STATE(2410)] = 55177, + [SMALL_STATE(2411)] = 55278, + [SMALL_STATE(2412)] = 55337, + [SMALL_STATE(2413)] = 55396, + [SMALL_STATE(2414)] = 55455, + [SMALL_STATE(2415)] = 55514, + [SMALL_STATE(2416)] = 55573, + [SMALL_STATE(2417)] = 55674, + [SMALL_STATE(2418)] = 55791, + [SMALL_STATE(2419)] = 55908, + [SMALL_STATE(2420)] = 56025, + [SMALL_STATE(2421)] = 56102, + [SMALL_STATE(2422)] = 56161, + [SMALL_STATE(2423)] = 56220, + [SMALL_STATE(2424)] = 56279, + [SMALL_STATE(2425)] = 56338, + [SMALL_STATE(2426)] = 56397, + [SMALL_STATE(2427)] = 56456, + [SMALL_STATE(2428)] = 56535, + [SMALL_STATE(2429)] = 56594, + [SMALL_STATE(2430)] = 56679, + [SMALL_STATE(2431)] = 56766, + [SMALL_STATE(2432)] = 56845, + [SMALL_STATE(2433)] = 56904, + [SMALL_STATE(2434)] = 56963, + [SMALL_STATE(2435)] = 57022, + [SMALL_STATE(2436)] = 57081, + [SMALL_STATE(2437)] = 57140, + [SMALL_STATE(2438)] = 57199, + [SMALL_STATE(2439)] = 57258, + [SMALL_STATE(2440)] = 57317, + [SMALL_STATE(2441)] = 57376, + [SMALL_STATE(2442)] = 57435, + [SMALL_STATE(2443)] = 57494, + [SMALL_STATE(2444)] = 57553, + [SMALL_STATE(2445)] = 57632, + [SMALL_STATE(2446)] = 57691, + [SMALL_STATE(2447)] = 57750, + [SMALL_STATE(2448)] = 57809, + [SMALL_STATE(2449)] = 57868, + [SMALL_STATE(2450)] = 57927, + [SMALL_STATE(2451)] = 58044, + [SMALL_STATE(2452)] = 58105, + [SMALL_STATE(2453)] = 58164, + [SMALL_STATE(2454)] = 58227, + [SMALL_STATE(2455)] = 58290, + [SMALL_STATE(2456)] = 58349, + [SMALL_STATE(2457)] = 58408, + [SMALL_STATE(2458)] = 58467, + [SMALL_STATE(2459)] = 58584, + [SMALL_STATE(2460)] = 58643, + [SMALL_STATE(2461)] = 58746, + [SMALL_STATE(2462)] = 58805, + [SMALL_STATE(2463)] = 58864, + [SMALL_STATE(2464)] = 58923, + [SMALL_STATE(2465)] = 58982, + [SMALL_STATE(2466)] = 59041, + [SMALL_STATE(2467)] = 59100, + [SMALL_STATE(2468)] = 59159, + [SMALL_STATE(2469)] = 59218, + [SMALL_STATE(2470)] = 59277, + [SMALL_STATE(2471)] = 59336, + [SMALL_STATE(2472)] = 59453, + [SMALL_STATE(2473)] = 59570, + [SMALL_STATE(2474)] = 59687, + [SMALL_STATE(2475)] = 59748, + [SMALL_STATE(2476)] = 59807, + [SMALL_STATE(2477)] = 59866, + [SMALL_STATE(2478)] = 59925, + [SMALL_STATE(2479)] = 59984, + [SMALL_STATE(2480)] = 60043, + [SMALL_STATE(2481)] = 60102, + [SMALL_STATE(2482)] = 60164, + [SMALL_STATE(2483)] = 60244, + [SMALL_STATE(2484)] = 60344, + [SMALL_STATE(2485)] = 60442, + [SMALL_STATE(2486)] = 60542, + [SMALL_STATE(2487)] = 60642, + [SMALL_STATE(2488)] = 60736, + [SMALL_STATE(2489)] = 60830, + [SMALL_STATE(2490)] = 60890, + [SMALL_STATE(2491)] = 60984, + [SMALL_STATE(2492)] = 61044, + [SMALL_STATE(2493)] = 61154, + [SMALL_STATE(2494)] = 61264, + [SMALL_STATE(2495)] = 61324, + [SMALL_STATE(2496)] = 61424, + [SMALL_STATE(2497)] = 61484, + [SMALL_STATE(2498)] = 61544, + [SMALL_STATE(2499)] = 61604, + [SMALL_STATE(2500)] = 61664, + [SMALL_STATE(2501)] = 61752, + [SMALL_STATE(2502)] = 61840, + [SMALL_STATE(2503)] = 61936, + [SMALL_STATE(2504)] = 61996, + [SMALL_STATE(2505)] = 62084, + [SMALL_STATE(2506)] = 62168, + [SMALL_STATE(2507)] = 62262, + [SMALL_STATE(2508)] = 62350, + [SMALL_STATE(2509)] = 62430, + [SMALL_STATE(2510)] = 62518, + [SMALL_STATE(2511)] = 62606, + [SMALL_STATE(2512)] = 62718, + [SMALL_STATE(2513)] = 62830, + [SMALL_STATE(2514)] = 62926, + [SMALL_STATE(2515)] = 63024, + [SMALL_STATE(2516)] = 63104, + [SMALL_STATE(2517)] = 63188, + [SMALL_STATE(2518)] = 63248, + [SMALL_STATE(2519)] = 63333, + [SMALL_STATE(2520)] = 63390, + [SMALL_STATE(2521)] = 63475, + [SMALL_STATE(2522)] = 63532, + [SMALL_STATE(2523)] = 63589, + [SMALL_STATE(2524)] = 63702, + [SMALL_STATE(2525)] = 63787, + [SMALL_STATE(2526)] = 63848, + [SMALL_STATE(2527)] = 63941, + [SMALL_STATE(2528)] = 64032, + [SMALL_STATE(2529)] = 64143, + [SMALL_STATE(2530)] = 64200, + [SMALL_STATE(2531)] = 64257, + [SMALL_STATE(2532)] = 64314, + [SMALL_STATE(2533)] = 64371, + [SMALL_STATE(2534)] = 64428, + [SMALL_STATE(2535)] = 64515, + [SMALL_STATE(2536)] = 64626, + [SMALL_STATE(2537)] = 64683, + [SMALL_STATE(2538)] = 64780, + [SMALL_STATE(2539)] = 64837, + [SMALL_STATE(2540)] = 64894, + [SMALL_STATE(2541)] = 64951, + [SMALL_STATE(2542)] = 65008, + [SMALL_STATE(2543)] = 65065, + [SMALL_STATE(2544)] = 65122, + [SMALL_STATE(2545)] = 65179, + [SMALL_STATE(2546)] = 65236, + [SMALL_STATE(2547)] = 65293, + [SMALL_STATE(2548)] = 65350, + [SMALL_STATE(2549)] = 65407, + [SMALL_STATE(2550)] = 65464, + [SMALL_STATE(2551)] = 65551, + [SMALL_STATE(2552)] = 65658, + [SMALL_STATE(2553)] = 65715, + [SMALL_STATE(2554)] = 65772, + [SMALL_STATE(2555)] = 65867, + [SMALL_STATE(2556)] = 65924, + [SMALL_STATE(2557)] = 66031, + [SMALL_STATE(2558)] = 66088, + [SMALL_STATE(2559)] = 66145, + [SMALL_STATE(2560)] = 66202, + [SMALL_STATE(2561)] = 66259, + [SMALL_STATE(2562)] = 66316, + [SMALL_STATE(2563)] = 66373, + [SMALL_STATE(2564)] = 66480, + [SMALL_STATE(2565)] = 66537, + [SMALL_STATE(2566)] = 66594, + [SMALL_STATE(2567)] = 66651, + [SMALL_STATE(2568)] = 66708, + [SMALL_STATE(2569)] = 66765, + [SMALL_STATE(2570)] = 66822, + [SMALL_STATE(2571)] = 66879, + [SMALL_STATE(2572)] = 66936, + [SMALL_STATE(2573)] = 67047, + [SMALL_STATE(2574)] = 67104, + [SMALL_STATE(2575)] = 67191, + [SMALL_STATE(2576)] = 67248, + [SMALL_STATE(2577)] = 67305, + [SMALL_STATE(2578)] = 67362, + [SMALL_STATE(2579)] = 67419, + [SMALL_STATE(2580)] = 67476, + [SMALL_STATE(2581)] = 67559, + [SMALL_STATE(2582)] = 67616, + [SMALL_STATE(2583)] = 67675, + [SMALL_STATE(2584)] = 67734, + [SMALL_STATE(2585)] = 67791, + [SMALL_STATE(2586)] = 67848, + [SMALL_STATE(2587)] = 67955, + [SMALL_STATE(2588)] = 68012, + [SMALL_STATE(2589)] = 68071, + [SMALL_STATE(2590)] = 68128, + [SMALL_STATE(2591)] = 68235, + [SMALL_STATE(2592)] = 68292, + [SMALL_STATE(2593)] = 68349, + [SMALL_STATE(2594)] = 68406, + [SMALL_STATE(2595)] = 68463, + [SMALL_STATE(2596)] = 68520, + [SMALL_STATE(2597)] = 68577, + [SMALL_STATE(2598)] = 68634, + [SMALL_STATE(2599)] = 68715, + [SMALL_STATE(2600)] = 68800, + [SMALL_STATE(2601)] = 68859, + [SMALL_STATE(2602)] = 68920, + [SMALL_STATE(2603)] = 68977, + [SMALL_STATE(2604)] = 69034, + [SMALL_STATE(2605)] = 69091, + [SMALL_STATE(2606)] = 69148, + [SMALL_STATE(2607)] = 69205, + [SMALL_STATE(2608)] = 69262, + [SMALL_STATE(2609)] = 69319, + [SMALL_STATE(2610)] = 69376, + [SMALL_STATE(2611)] = 69433, + [SMALL_STATE(2612)] = 69490, + [SMALL_STATE(2613)] = 69547, + [SMALL_STATE(2614)] = 69604, + [SMALL_STATE(2615)] = 69685, + [SMALL_STATE(2616)] = 69742, + [SMALL_STATE(2617)] = 69799, + [SMALL_STATE(2618)] = 69856, + [SMALL_STATE(2619)] = 69913, + [SMALL_STATE(2620)] = 69970, + [SMALL_STATE(2621)] = 70027, + [SMALL_STATE(2622)] = 70084, + [SMALL_STATE(2623)] = 70141, + [SMALL_STATE(2624)] = 70198, + [SMALL_STATE(2625)] = 70309, + [SMALL_STATE(2626)] = 70400, + [SMALL_STATE(2627)] = 70493, + [SMALL_STATE(2628)] = 70550, + [SMALL_STATE(2629)] = 70607, + [SMALL_STATE(2630)] = 70664, + [SMALL_STATE(2631)] = 70721, + [SMALL_STATE(2632)] = 70782, + [SMALL_STATE(2633)] = 70841, + [SMALL_STATE(2634)] = 70898, + [SMALL_STATE(2635)] = 70959, + [SMALL_STATE(2636)] = 71016, + [SMALL_STATE(2637)] = 71073, + [SMALL_STATE(2638)] = 71130, + [SMALL_STATE(2639)] = 71187, + [SMALL_STATE(2640)] = 71272, + [SMALL_STATE(2641)] = 71357, + [SMALL_STATE(2642)] = 71414, + [SMALL_STATE(2643)] = 71471, + [SMALL_STATE(2644)] = 71528, + [SMALL_STATE(2645)] = 71585, + [SMALL_STATE(2646)] = 71642, + [SMALL_STATE(2647)] = 71699, + [SMALL_STATE(2648)] = 71756, + [SMALL_STATE(2649)] = 71813, + [SMALL_STATE(2650)] = 71872, + [SMALL_STATE(2651)] = 71931, + [SMALL_STATE(2652)] = 72037, + [SMALL_STATE(2653)] = 72145, + [SMALL_STATE(2654)] = 72253, + [SMALL_STATE(2655)] = 72363, + [SMALL_STATE(2656)] = 72473, + [SMALL_STATE(2657)] = 72583, + [SMALL_STATE(2658)] = 72691, + [SMALL_STATE(2659)] = 72801, + [SMALL_STATE(2660)] = 72911, + [SMALL_STATE(2661)] = 73019, + [SMALL_STATE(2662)] = 73075, + [SMALL_STATE(2663)] = 73185, + [SMALL_STATE(2664)] = 73241, + [SMALL_STATE(2665)] = 73351, + [SMALL_STATE(2666)] = 73459, + [SMALL_STATE(2667)] = 73565, + [SMALL_STATE(2668)] = 73673, + [SMALL_STATE(2669)] = 73735, + [SMALL_STATE(2670)] = 73843, + [SMALL_STATE(2671)] = 73953, + [SMALL_STATE(2672)] = 74011, + [SMALL_STATE(2673)] = 74117, + [SMALL_STATE(2674)] = 74225, + [SMALL_STATE(2675)] = 74333, + [SMALL_STATE(2676)] = 74391, + [SMALL_STATE(2677)] = 74451, + [SMALL_STATE(2678)] = 74559, + [SMALL_STATE(2679)] = 74669, + [SMALL_STATE(2680)] = 74725, + [SMALL_STATE(2681)] = 74833, + [SMALL_STATE(2682)] = 74943, + [SMALL_STATE(2683)] = 75051, + [SMALL_STATE(2684)] = 75161, + [SMALL_STATE(2685)] = 75271, + [SMALL_STATE(2686)] = 75377, + [SMALL_STATE(2687)] = 75435, + [SMALL_STATE(2688)] = 75545, + [SMALL_STATE(2689)] = 75607, + [SMALL_STATE(2690)] = 75713, + [SMALL_STATE(2691)] = 75821, + [SMALL_STATE(2692)] = 75929, + [SMALL_STATE(2693)] = 75985, + [SMALL_STATE(2694)] = 76040, + [SMALL_STATE(2695)] = 76145, + [SMALL_STATE(2696)] = 76250, + [SMALL_STATE(2697)] = 76305, + [SMALL_STATE(2698)] = 76360, + [SMALL_STATE(2699)] = 76465, + [SMALL_STATE(2700)] = 76570, + [SMALL_STATE(2701)] = 76675, + [SMALL_STATE(2702)] = 76732, + [SMALL_STATE(2703)] = 76787, + [SMALL_STATE(2704)] = 76842, + [SMALL_STATE(2705)] = 76897, + [SMALL_STATE(2706)] = 77002, + [SMALL_STATE(2707)] = 77103, + [SMALL_STATE(2708)] = 77208, + [SMALL_STATE(2709)] = 77263, + [SMALL_STATE(2710)] = 77318, + [SMALL_STATE(2711)] = 77373, + [SMALL_STATE(2712)] = 77428, + [SMALL_STATE(2713)] = 77483, + [SMALL_STATE(2714)] = 77538, + [SMALL_STATE(2715)] = 77643, + [SMALL_STATE(2716)] = 77748, + [SMALL_STATE(2717)] = 77803, + [SMALL_STATE(2718)] = 77858, + [SMALL_STATE(2719)] = 77963, + [SMALL_STATE(2720)] = 78018, + [SMALL_STATE(2721)] = 78073, + [SMALL_STATE(2722)] = 78128, + [SMALL_STATE(2723)] = 78233, + [SMALL_STATE(2724)] = 78288, + [SMALL_STATE(2725)] = 78343, + [SMALL_STATE(2726)] = 78398, + [SMALL_STATE(2727)] = 78453, + [SMALL_STATE(2728)] = 78508, + [SMALL_STATE(2729)] = 78563, + [SMALL_STATE(2730)] = 78618, + [SMALL_STATE(2731)] = 78723, + [SMALL_STATE(2732)] = 78828, + [SMALL_STATE(2733)] = 78883, + [SMALL_STATE(2734)] = 78938, + [SMALL_STATE(2735)] = 78993, + [SMALL_STATE(2736)] = 79048, + [SMALL_STATE(2737)] = 79103, + [SMALL_STATE(2738)] = 79158, + [SMALL_STATE(2739)] = 79213, + [SMALL_STATE(2740)] = 79268, + [SMALL_STATE(2741)] = 79323, + [SMALL_STATE(2742)] = 79428, + [SMALL_STATE(2743)] = 79533, + [SMALL_STATE(2744)] = 79634, + [SMALL_STATE(2745)] = 79739, + [SMALL_STATE(2746)] = 79840, + [SMALL_STATE(2747)] = 79895, + [SMALL_STATE(2748)] = 79950, + [SMALL_STATE(2749)] = 80005, + [SMALL_STATE(2750)] = 80088, + [SMALL_STATE(2751)] = 80189, + [SMALL_STATE(2752)] = 80244, + [SMALL_STATE(2753)] = 80299, + [SMALL_STATE(2754)] = 80354, + [SMALL_STATE(2755)] = 80409, + [SMALL_STATE(2756)] = 80510, + [SMALL_STATE(2757)] = 80615, + [SMALL_STATE(2758)] = 80670, + [SMALL_STATE(2759)] = 80753, + [SMALL_STATE(2760)] = 80808, + [SMALL_STATE(2761)] = 80863, + [SMALL_STATE(2762)] = 80918, + [SMALL_STATE(2763)] = 80973, + [SMALL_STATE(2764)] = 81028, + [SMALL_STATE(2765)] = 81083, + [SMALL_STATE(2766)] = 81138, + [SMALL_STATE(2767)] = 81193, + [SMALL_STATE(2768)] = 81248, + [SMALL_STATE(2769)] = 81303, + [SMALL_STATE(2770)] = 81358, + [SMALL_STATE(2771)] = 81413, + [SMALL_STATE(2772)] = 81468, + [SMALL_STATE(2773)] = 81523, + [SMALL_STATE(2774)] = 81578, + [SMALL_STATE(2775)] = 81633, + [SMALL_STATE(2776)] = 81688, + [SMALL_STATE(2777)] = 81743, + [SMALL_STATE(2778)] = 81798, + [SMALL_STATE(2779)] = 81855, + [SMALL_STATE(2780)] = 81910, + [SMALL_STATE(2781)] = 82001, + [SMALL_STATE(2782)] = 82056, + [SMALL_STATE(2783)] = 82111, + [SMALL_STATE(2784)] = 82166, + [SMALL_STATE(2785)] = 82221, + [SMALL_STATE(2786)] = 82310, + [SMALL_STATE(2787)] = 82365, + [SMALL_STATE(2788)] = 82420, + [SMALL_STATE(2789)] = 82475, + [SMALL_STATE(2790)] = 82530, + [SMALL_STATE(2791)] = 82585, + [SMALL_STATE(2792)] = 82640, + [SMALL_STATE(2793)] = 82695, + [SMALL_STATE(2794)] = 82750, + [SMALL_STATE(2795)] = 82805, + [SMALL_STATE(2796)] = 82910, + [SMALL_STATE(2797)] = 82965, + [SMALL_STATE(2798)] = 83020, + [SMALL_STATE(2799)] = 83077, + [SMALL_STATE(2800)] = 83134, + [SMALL_STATE(2801)] = 83191, + [SMALL_STATE(2802)] = 83246, + [SMALL_STATE(2803)] = 83351, + [SMALL_STATE(2804)] = 83434, + [SMALL_STATE(2805)] = 83539, + [SMALL_STATE(2806)] = 83594, + [SMALL_STATE(2807)] = 83699, + [SMALL_STATE(2808)] = 83778, + [SMALL_STATE(2809)] = 83883, + [SMALL_STATE(2810)] = 83940, + [SMALL_STATE(2811)] = 83995, + [SMALL_STATE(2812)] = 84050, + [SMALL_STATE(2813)] = 84105, + [SMALL_STATE(2814)] = 84160, + [SMALL_STATE(2815)] = 84215, + [SMALL_STATE(2816)] = 84274, + [SMALL_STATE(2817)] = 84329, + [SMALL_STATE(2818)] = 84388, + [SMALL_STATE(2819)] = 84443, + [SMALL_STATE(2820)] = 84498, + [SMALL_STATE(2821)] = 84553, + [SMALL_STATE(2822)] = 84658, + [SMALL_STATE(2823)] = 84763, + [SMALL_STATE(2824)] = 84868, + [SMALL_STATE(2825)] = 84923, + [SMALL_STATE(2826)] = 85028, + [SMALL_STATE(2827)] = 85083, + [SMALL_STATE(2828)] = 85138, + [SMALL_STATE(2829)] = 85239, + [SMALL_STATE(2830)] = 85296, + [SMALL_STATE(2831)] = 85351, + [SMALL_STATE(2832)] = 85456, + [SMALL_STATE(2833)] = 85561, + [SMALL_STATE(2834)] = 85666, + [SMALL_STATE(2835)] = 85721, + [SMALL_STATE(2836)] = 85826, + [SMALL_STATE(2837)] = 85931, + [SMALL_STATE(2838)] = 85986, + [SMALL_STATE(2839)] = 86041, + [SMALL_STATE(2840)] = 86146, + [SMALL_STATE(2841)] = 86247, + [SMALL_STATE(2842)] = 86352, + [SMALL_STATE(2843)] = 86409, + [SMALL_STATE(2844)] = 86510, + [SMALL_STATE(2845)] = 86611, + [SMALL_STATE(2846)] = 86668, + [SMALL_STATE(2847)] = 86725, + [SMALL_STATE(2848)] = 86826, + [SMALL_STATE(2849)] = 86931, + [SMALL_STATE(2850)] = 87032, + [SMALL_STATE(2851)] = 87137, + [SMALL_STATE(2852)] = 87242, + [SMALL_STATE(2853)] = 87347, + [SMALL_STATE(2854)] = 87452, + [SMALL_STATE(2855)] = 87557, + [SMALL_STATE(2856)] = 87614, + [SMALL_STATE(2857)] = 87719, + [SMALL_STATE(2858)] = 87820, + [SMALL_STATE(2859)] = 87925, + [SMALL_STATE(2860)] = 88030, + [SMALL_STATE(2861)] = 88087, + [SMALL_STATE(2862)] = 88192, + [SMALL_STATE(2863)] = 88251, + [SMALL_STATE(2864)] = 88308, + [SMALL_STATE(2865)] = 88413, + [SMALL_STATE(2866)] = 88514, + [SMALL_STATE(2867)] = 88619, + [SMALL_STATE(2868)] = 88724, + [SMALL_STATE(2869)] = 88829, + [SMALL_STATE(2870)] = 88888, + [SMALL_STATE(2871)] = 88989, + [SMALL_STATE(2872)] = 89094, + [SMALL_STATE(2873)] = 89173, + [SMALL_STATE(2874)] = 89256, + [SMALL_STATE(2875)] = 89361, + [SMALL_STATE(2876)] = 89444, + [SMALL_STATE(2877)] = 89545, + [SMALL_STATE(2878)] = 89646, + [SMALL_STATE(2879)] = 89737, + [SMALL_STATE(2880)] = 89820, + [SMALL_STATE(2881)] = 89909, + [SMALL_STATE(2882)] = 90014, + [SMALL_STATE(2883)] = 90070, + [SMALL_STATE(2884)] = 90172, + [SMALL_STATE(2885)] = 90274, + [SMALL_STATE(2886)] = 90376, + [SMALL_STATE(2887)] = 90436, + [SMALL_STATE(2888)] = 90530, + [SMALL_STATE(2889)] = 90632, + [SMALL_STATE(2890)] = 90734, + [SMALL_STATE(2891)] = 90836, + [SMALL_STATE(2892)] = 90932, + [SMALL_STATE(2893)] = 91034, + [SMALL_STATE(2894)] = 91136, + [SMALL_STATE(2895)] = 91238, + [SMALL_STATE(2896)] = 91340, + [SMALL_STATE(2897)] = 91394, + [SMALL_STATE(2898)] = 91496, + [SMALL_STATE(2899)] = 91550, + [SMALL_STATE(2900)] = 91652, + [SMALL_STATE(2901)] = 91708, + [SMALL_STATE(2902)] = 91802, + [SMALL_STATE(2903)] = 91904, + [SMALL_STATE(2904)] = 92000, + [SMALL_STATE(2905)] = 92102, + [SMALL_STATE(2906)] = 92158, + [SMALL_STATE(2907)] = 92218, + [SMALL_STATE(2908)] = 92320, + [SMALL_STATE(2909)] = 92422, + [SMALL_STATE(2910)] = 92524, + [SMALL_STATE(2911)] = 92579, + [SMALL_STATE(2912)] = 92634, + [SMALL_STATE(2913)] = 92723, + [SMALL_STATE(2914)] = 92776, + [SMALL_STATE(2915)] = 92829, + [SMALL_STATE(2916)] = 92882, + [SMALL_STATE(2917)] = 92935, + [SMALL_STATE(2918)] = 92988, + [SMALL_STATE(2919)] = 93041, + [SMALL_STATE(2920)] = 93096, + [SMALL_STATE(2921)] = 93149, + [SMALL_STATE(2922)] = 93202, + [SMALL_STATE(2923)] = 93255, + [SMALL_STATE(2924)] = 93308, + [SMALL_STATE(2925)] = 93361, + [SMALL_STATE(2926)] = 93414, + [SMALL_STATE(2927)] = 93467, + [SMALL_STATE(2928)] = 93556, + [SMALL_STATE(2929)] = 93609, + [SMALL_STATE(2930)] = 93662, + [SMALL_STATE(2931)] = 93717, + [SMALL_STATE(2932)] = 93770, + [SMALL_STATE(2933)] = 93823, + [SMALL_STATE(2934)] = 93876, + [SMALL_STATE(2935)] = 93931, + [SMALL_STATE(2936)] = 93986, + [SMALL_STATE(2937)] = 94075, + [SMALL_STATE(2938)] = 94130, + [SMALL_STATE(2939)] = 94219, + [SMALL_STATE(2940)] = 94272, + [SMALL_STATE(2941)] = 94327, + [SMALL_STATE(2942)] = 94382, + [SMALL_STATE(2943)] = 94435, + [SMALL_STATE(2944)] = 94488, + [SMALL_STATE(2945)] = 94541, + [SMALL_STATE(2946)] = 94636, + [SMALL_STATE(2947)] = 94691, + [SMALL_STATE(2948)] = 94744, + [SMALL_STATE(2949)] = 94799, + [SMALL_STATE(2950)] = 94888, + [SMALL_STATE(2951)] = 94943, + [SMALL_STATE(2952)] = 94996, + [SMALL_STATE(2953)] = 95051, + [SMALL_STATE(2954)] = 95104, + [SMALL_STATE(2955)] = 95157, + [SMALL_STATE(2956)] = 95212, + [SMALL_STATE(2957)] = 95265, + [SMALL_STATE(2958)] = 95354, + [SMALL_STATE(2959)] = 95407, + [SMALL_STATE(2960)] = 95460, + [SMALL_STATE(2961)] = 95514, + [SMALL_STATE(2962)] = 95568, + [SMALL_STATE(2963)] = 95622, + [SMALL_STATE(2964)] = 95676, + [SMALL_STATE(2965)] = 95732, + [SMALL_STATE(2966)] = 95786, + [SMALL_STATE(2967)] = 95842, + [SMALL_STATE(2968)] = 95896, + [SMALL_STATE(2969)] = 95950, + [SMALL_STATE(2970)] = 96006, + [SMALL_STATE(2971)] = 96060, + [SMALL_STATE(2972)] = 96116, + [SMALL_STATE(2973)] = 96172, + [SMALL_STATE(2974)] = 96226, + [SMALL_STATE(2975)] = 96280, + [SMALL_STATE(2976)] = 96334, + [SMALL_STATE(2977)] = 96388, + [SMALL_STATE(2978)] = 96444, + [SMALL_STATE(2979)] = 96498, + [SMALL_STATE(2980)] = 96554, + [SMALL_STATE(2981)] = 96608, + [SMALL_STATE(2982)] = 96662, + [SMALL_STATE(2983)] = 96716, + [SMALL_STATE(2984)] = 96772, + [SMALL_STATE(2985)] = 96826, + [SMALL_STATE(2986)] = 96880, + [SMALL_STATE(2987)] = 96934, + [SMALL_STATE(2988)] = 96988, + [SMALL_STATE(2989)] = 97042, + [SMALL_STATE(2990)] = 97096, + [SMALL_STATE(2991)] = 97152, + [SMALL_STATE(2992)] = 97208, + [SMALL_STATE(2993)] = 97262, + [SMALL_STATE(2994)] = 97316, + [SMALL_STATE(2995)] = 97372, + [SMALL_STATE(2996)] = 97428, + [SMALL_STATE(2997)] = 97484, + [SMALL_STATE(2998)] = 97538, + [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)] = 97924, + [SMALL_STATE(3006)] = 97980, + [SMALL_STATE(3007)] = 98034, + [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)] = 98414, + [SMALL_STATE(3015)] = 98468, + [SMALL_STATE(3016)] = 98524, + [SMALL_STATE(3017)] = 98580, + [SMALL_STATE(3018)] = 98636, + [SMALL_STATE(3019)] = 98690, + [SMALL_STATE(3020)] = 98746, + [SMALL_STATE(3021)] = 98800, + [SMALL_STATE(3022)] = 98854, + [SMALL_STATE(3023)] = 98908, + [SMALL_STATE(3024)] = 98964, + [SMALL_STATE(3025)] = 99018, + [SMALL_STATE(3026)] = 99074, + [SMALL_STATE(3027)] = 99130, + [SMALL_STATE(3028)] = 99184, + [SMALL_STATE(3029)] = 99238, + [SMALL_STATE(3030)] = 99292, + [SMALL_STATE(3031)] = 99348, + [SMALL_STATE(3032)] = 99404, + [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)] = 100690, + [SMALL_STATE(3049)] = 100776, + [SMALL_STATE(3050)] = 100862, + [SMALL_STATE(3051)] = 100948, + [SMALL_STATE(3052)] = 101034, + [SMALL_STATE(3053)] = 101120, + [SMALL_STATE(3054)] = 101206, + [SMALL_STATE(3055)] = 101292, + [SMALL_STATE(3056)] = 101378, + [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)] = 125765, + [SMALL_STATE(3352)] = 125833, + [SMALL_STATE(3353)] = 125901, + [SMALL_STATE(3354)] = 125969, + [SMALL_STATE(3355)] = 126037, + [SMALL_STATE(3356)] = 126111, + [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)] = 126669, + [SMALL_STATE(3369)] = 126702, + [SMALL_STATE(3370)] = 126735, + [SMALL_STATE(3371)] = 126768, + [SMALL_STATE(3372)] = 126815, + [SMALL_STATE(3373)] = 126862, + [SMALL_STATE(3374)] = 126895, + [SMALL_STATE(3375)] = 126925, + [SMALL_STATE(3376)] = 126959, + [SMALL_STATE(3377)] = 126995, + [SMALL_STATE(3378)] = 127025, + [SMALL_STATE(3379)] = 127059, + [SMALL_STATE(3380)] = 127089, + [SMALL_STATE(3381)] = 127122, + [SMALL_STATE(3382)] = 127153, + [SMALL_STATE(3383)] = 127186, + [SMALL_STATE(3384)] = 127219, + [SMALL_STATE(3385)] = 127252, + [SMALL_STATE(3386)] = 127285, + [SMALL_STATE(3387)] = 127318, + [SMALL_STATE(3388)] = 127349, + [SMALL_STATE(3389)] = 127382, + [SMALL_STATE(3390)] = 127430, + [SMALL_STATE(3391)] = 127460, + [SMALL_STATE(3392)] = 127506, + [SMALL_STATE(3393)] = 127554, + [SMALL_STATE(3394)] = 127586, + [SMALL_STATE(3395)] = 127616, + [SMALL_STATE(3396)] = 127663, + [SMALL_STATE(3397)] = 127710, + [SMALL_STATE(3398)] = 127757, + [SMALL_STATE(3399)] = 127804, + [SMALL_STATE(3400)] = 127851, + [SMALL_STATE(3401)] = 127898, + [SMALL_STATE(3402)] = 127945, + [SMALL_STATE(3403)] = 127992, + [SMALL_STATE(3404)] = 128039, + [SMALL_STATE(3405)] = 128086, + [SMALL_STATE(3406)] = 128133, + [SMALL_STATE(3407)] = 128164, + [SMALL_STATE(3408)] = 128211, + [SMALL_STATE(3409)] = 128258, + [SMALL_STATE(3410)] = 128293, + [SMALL_STATE(3411)] = 128340, + [SMALL_STATE(3412)] = 128375, + [SMALL_STATE(3413)] = 128406, + [SMALL_STATE(3414)] = 128441, + [SMALL_STATE(3415)] = 128476, + [SMALL_STATE(3416)] = 128523, + [SMALL_STATE(3417)] = 128570, + [SMALL_STATE(3418)] = 128605, + [SMALL_STATE(3419)] = 128652, + [SMALL_STATE(3420)] = 128681, + [SMALL_STATE(3421)] = 128728, + [SMALL_STATE(3422)] = 128775, + [SMALL_STATE(3423)] = 128820, + [SMALL_STATE(3424)] = 128849, + [SMALL_STATE(3425)] = 128896, + [SMALL_STATE(3426)] = 128943, + [SMALL_STATE(3427)] = 128990, + [SMALL_STATE(3428)] = 129037, + [SMALL_STATE(3429)] = 129072, + [SMALL_STATE(3430)] = 129101, + [SMALL_STATE(3431)] = 129136, + [SMALL_STATE(3432)] = 129165, + [SMALL_STATE(3433)] = 129194, + [SMALL_STATE(3434)] = 129241, + [SMALL_STATE(3435)] = 129288, + [SMALL_STATE(3436)] = 129335, + [SMALL_STATE(3437)] = 129382, + [SMALL_STATE(3438)] = 129417, + [SMALL_STATE(3439)] = 129446, + [SMALL_STATE(3440)] = 129493, + [SMALL_STATE(3441)] = 129522, + [SMALL_STATE(3442)] = 129548, + [SMALL_STATE(3443)] = 129580, + [SMALL_STATE(3444)] = 129606, + [SMALL_STATE(3445)] = 129632, + [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)] = 129867, + [SMALL_STATE(3455)] = 129891, + [SMALL_STATE(3456)] = 129919, + [SMALL_STATE(3457)] = 129943, + [SMALL_STATE(3458)] = 129973, + [SMALL_STATE(3459)] = 129997, + [SMALL_STATE(3460)] = 130021, + [SMALL_STATE(3461)] = 130045, + [SMALL_STATE(3462)] = 130069, + [SMALL_STATE(3463)] = 130097, + [SMALL_STATE(3464)] = 130121, + [SMALL_STATE(3465)] = 130145, + [SMALL_STATE(3466)] = 130169, + [SMALL_STATE(3467)] = 130193, + [SMALL_STATE(3468)] = 130217, + [SMALL_STATE(3469)] = 130241, + [SMALL_STATE(3470)] = 130265, + [SMALL_STATE(3471)] = 130289, + [SMALL_STATE(3472)] = 130313, + [SMALL_STATE(3473)] = 130337, + [SMALL_STATE(3474)] = 130361, + [SMALL_STATE(3475)] = 130400, + [SMALL_STATE(3476)] = 130429, + [SMALL_STATE(3477)] = 130456, + [SMALL_STATE(3478)] = 130492, + [SMALL_STATE(3479)] = 130526, + [SMALL_STATE(3480)] = 130560, + [SMALL_STATE(3481)] = 130594, + [SMALL_STATE(3482)] = 130616, + [SMALL_STATE(3483)] = 130650, + [SMALL_STATE(3484)] = 130684, + [SMALL_STATE(3485)] = 130718, + [SMALL_STATE(3486)] = 130752, + [SMALL_STATE(3487)] = 130780, + [SMALL_STATE(3488)] = 130814, + [SMALL_STATE(3489)] = 130848, + [SMALL_STATE(3490)] = 130872, + [SMALL_STATE(3491)] = 130898, + [SMALL_STATE(3492)] = 130932, + [SMALL_STATE(3493)] = 130960, + [SMALL_STATE(3494)] = 130994, + [SMALL_STATE(3495)] = 131028, + [SMALL_STATE(3496)] = 131051, + [SMALL_STATE(3497)] = 131072, + [SMALL_STATE(3498)] = 131095, + [SMALL_STATE(3499)] = 131124, + [SMALL_STATE(3500)] = 131145, + [SMALL_STATE(3501)] = 131168, + [SMALL_STATE(3502)] = 131189, + [SMALL_STATE(3503)] = 131214, + [SMALL_STATE(3504)] = 131237, + [SMALL_STATE(3505)] = 131258, + [SMALL_STATE(3506)] = 131279, + [SMALL_STATE(3507)] = 131300, + [SMALL_STATE(3508)] = 131321, + [SMALL_STATE(3509)] = 131346, + [SMALL_STATE(3510)] = 131367, + [SMALL_STATE(3511)] = 131388, + [SMALL_STATE(3512)] = 131423, + [SMALL_STATE(3513)] = 131451, + [SMALL_STATE(3514)] = 131479, + [SMALL_STATE(3515)] = 131499, + [SMALL_STATE(3516)] = 131527, + [SMALL_STATE(3517)] = 131555, + [SMALL_STATE(3518)] = 131583, + [SMALL_STATE(3519)] = 131611, + [SMALL_STATE(3520)] = 131639, + [SMALL_STATE(3521)] = 131667, + [SMALL_STATE(3522)] = 131695, + [SMALL_STATE(3523)] = 131715, + [SMALL_STATE(3524)] = 131747, + [SMALL_STATE(3525)] = 131775, + [SMALL_STATE(3526)] = 131803, + [SMALL_STATE(3527)] = 131831, + [SMALL_STATE(3528)] = 131859, + [SMALL_STATE(3529)] = 131889, + [SMALL_STATE(3530)] = 131917, + [SMALL_STATE(3531)] = 131945, + [SMALL_STATE(3532)] = 131973, + [SMALL_STATE(3533)] = 132001, + [SMALL_STATE(3534)] = 132029, + [SMALL_STATE(3535)] = 132057, + [SMALL_STATE(3536)] = 132085, + [SMALL_STATE(3537)] = 132113, + [SMALL_STATE(3538)] = 132143, + [SMALL_STATE(3539)] = 132171, + [SMALL_STATE(3540)] = 132199, + [SMALL_STATE(3541)] = 132227, + [SMALL_STATE(3542)] = 132259, + [SMALL_STATE(3543)] = 132279, + [SMALL_STATE(3544)] = 132303, + [SMALL_STATE(3545)] = 132331, + [SMALL_STATE(3546)] = 132358, + [SMALL_STATE(3547)] = 132387, + [SMALL_STATE(3548)] = 132416, + [SMALL_STATE(3549)] = 132445, + [SMALL_STATE(3550)] = 132474, + [SMALL_STATE(3551)] = 132503, + [SMALL_STATE(3552)] = 132526, + [SMALL_STATE(3553)] = 132555, + [SMALL_STATE(3554)] = 132584, + [SMALL_STATE(3555)] = 132607, + [SMALL_STATE(3556)] = 132630, + [SMALL_STATE(3557)] = 132659, + [SMALL_STATE(3558)] = 132682, + [SMALL_STATE(3559)] = 132711, + [SMALL_STATE(3560)] = 132740, + [SMALL_STATE(3561)] = 132769, + [SMALL_STATE(3562)] = 132798, + [SMALL_STATE(3563)] = 132827, + [SMALL_STATE(3564)] = 132856, + [SMALL_STATE(3565)] = 132885, + [SMALL_STATE(3566)] = 132908, + [SMALL_STATE(3567)] = 132937, + [SMALL_STATE(3568)] = 132966, + [SMALL_STATE(3569)] = 132995, + [SMALL_STATE(3570)] = 133024, + [SMALL_STATE(3571)] = 133047, + [SMALL_STATE(3572)] = 133076, + [SMALL_STATE(3573)] = 133105, + [SMALL_STATE(3574)] = 133134, + [SMALL_STATE(3575)] = 133163, + [SMALL_STATE(3576)] = 133192, + [SMALL_STATE(3577)] = 133221, + [SMALL_STATE(3578)] = 133250, + [SMALL_STATE(3579)] = 133273, + [SMALL_STATE(3580)] = 133302, + [SMALL_STATE(3581)] = 133331, + [SMALL_STATE(3582)] = 133360, + [SMALL_STATE(3583)] = 133389, + [SMALL_STATE(3584)] = 133418, + [SMALL_STATE(3585)] = 133447, + [SMALL_STATE(3586)] = 133476, + [SMALL_STATE(3587)] = 133505, + [SMALL_STATE(3588)] = 133534, + [SMALL_STATE(3589)] = 133563, + [SMALL_STATE(3590)] = 133592, + [SMALL_STATE(3591)] = 133621, + [SMALL_STATE(3592)] = 133650, + [SMALL_STATE(3593)] = 133679, + [SMALL_STATE(3594)] = 133708, + [SMALL_STATE(3595)] = 133737, + [SMALL_STATE(3596)] = 133766, + [SMALL_STATE(3597)] = 133795, + [SMALL_STATE(3598)] = 133824, + [SMALL_STATE(3599)] = 133853, + [SMALL_STATE(3600)] = 133882, + [SMALL_STATE(3601)] = 133911, + [SMALL_STATE(3602)] = 133940, + [SMALL_STATE(3603)] = 133969, + [SMALL_STATE(3604)] = 133998, + [SMALL_STATE(3605)] = 134027, + [SMALL_STATE(3606)] = 134050, + [SMALL_STATE(3607)] = 134079, + [SMALL_STATE(3608)] = 134108, + [SMALL_STATE(3609)] = 134137, + [SMALL_STATE(3610)] = 134166, + [SMALL_STATE(3611)] = 134195, + [SMALL_STATE(3612)] = 134224, + [SMALL_STATE(3613)] = 134253, + [SMALL_STATE(3614)] = 134280, + [SMALL_STATE(3615)] = 134309, + [SMALL_STATE(3616)] = 134338, + [SMALL_STATE(3617)] = 134367, + [SMALL_STATE(3618)] = 134396, + [SMALL_STATE(3619)] = 134425, + [SMALL_STATE(3620)] = 134454, + [SMALL_STATE(3621)] = 134483, + [SMALL_STATE(3622)] = 134512, + [SMALL_STATE(3623)] = 134533, + [SMALL_STATE(3624)] = 134562, + [SMALL_STATE(3625)] = 134591, + [SMALL_STATE(3626)] = 134620, + [SMALL_STATE(3627)] = 134649, + [SMALL_STATE(3628)] = 134678, + [SMALL_STATE(3629)] = 134707, + [SMALL_STATE(3630)] = 134736, + [SMALL_STATE(3631)] = 134765, + [SMALL_STATE(3632)] = 134794, + [SMALL_STATE(3633)] = 134823, + [SMALL_STATE(3634)] = 134852, + [SMALL_STATE(3635)] = 134881, + [SMALL_STATE(3636)] = 134910, + [SMALL_STATE(3637)] = 134939, + [SMALL_STATE(3638)] = 134968, + [SMALL_STATE(3639)] = 134995, + [SMALL_STATE(3640)] = 135016, + [SMALL_STATE(3641)] = 135045, + [SMALL_STATE(3642)] = 135074, + [SMALL_STATE(3643)] = 135103, + [SMALL_STATE(3644)] = 135132, + [SMALL_STATE(3645)] = 135155, + [SMALL_STATE(3646)] = 135176, + [SMALL_STATE(3647)] = 135205, + [SMALL_STATE(3648)] = 135234, + [SMALL_STATE(3649)] = 135263, + [SMALL_STATE(3650)] = 135292, + [SMALL_STATE(3651)] = 135321, + [SMALL_STATE(3652)] = 135350, + [SMALL_STATE(3653)] = 135379, + [SMALL_STATE(3654)] = 135408, + [SMALL_STATE(3655)] = 135437, + [SMALL_STATE(3656)] = 135466, + [SMALL_STATE(3657)] = 135495, + [SMALL_STATE(3658)] = 135524, + [SMALL_STATE(3659)] = 135546, + [SMALL_STATE(3660)] = 135564, + [SMALL_STATE(3661)] = 135584, + [SMALL_STATE(3662)] = 135608, + [SMALL_STATE(3663)] = 135628, + [SMALL_STATE(3664)] = 135654, + [SMALL_STATE(3665)] = 135672, + [SMALL_STATE(3666)] = 135696, + [SMALL_STATE(3667)] = 135714, + [SMALL_STATE(3668)] = 135732, + [SMALL_STATE(3669)] = 135754, + [SMALL_STATE(3670)] = 135780, + [SMALL_STATE(3671)] = 135804, + [SMALL_STATE(3672)] = 135826, + [SMALL_STATE(3673)] = 135846, + [SMALL_STATE(3674)] = 135870, + [SMALL_STATE(3675)] = 135896, + [SMALL_STATE(3676)] = 135920, + [SMALL_STATE(3677)] = 135944, + [SMALL_STATE(3678)] = 135970, + [SMALL_STATE(3679)] = 135990, + [SMALL_STATE(3680)] = 136012, + [SMALL_STATE(3681)] = 136036, + [SMALL_STATE(3682)] = 136058, + [SMALL_STATE(3683)] = 136084, + [SMALL_STATE(3684)] = 136108, + [SMALL_STATE(3685)] = 136128, + [SMALL_STATE(3686)] = 136150, + [SMALL_STATE(3687)] = 136168, + [SMALL_STATE(3688)] = 136188, + [SMALL_STATE(3689)] = 136214, + [SMALL_STATE(3690)] = 136232, + [SMALL_STATE(3691)] = 136253, + [SMALL_STATE(3692)] = 136272, + [SMALL_STATE(3693)] = 136293, + [SMALL_STATE(3694)] = 136316, + [SMALL_STATE(3695)] = 136337, + [SMALL_STATE(3696)] = 136358, + [SMALL_STATE(3697)] = 136379, + [SMALL_STATE(3698)] = 136398, + [SMALL_STATE(3699)] = 136419, + [SMALL_STATE(3700)] = 136440, + [SMALL_STATE(3701)] = 136461, + [SMALL_STATE(3702)] = 136482, + [SMALL_STATE(3703)] = 136503, + [SMALL_STATE(3704)] = 136524, + [SMALL_STATE(3705)] = 136541, + [SMALL_STATE(3706)] = 136562, + [SMALL_STATE(3707)] = 136583, + [SMALL_STATE(3708)] = 136604, + [SMALL_STATE(3709)] = 136625, + [SMALL_STATE(3710)] = 136646, + [SMALL_STATE(3711)] = 136667, + [SMALL_STATE(3712)] = 136688, + [SMALL_STATE(3713)] = 136709, + [SMALL_STATE(3714)] = 136730, + [SMALL_STATE(3715)] = 136747, + [SMALL_STATE(3716)] = 136770, + [SMALL_STATE(3717)] = 136791, + [SMALL_STATE(3718)] = 136814, + [SMALL_STATE(3719)] = 136833, + [SMALL_STATE(3720)] = 136856, + [SMALL_STATE(3721)] = 136877, + [SMALL_STATE(3722)] = 136896, + [SMALL_STATE(3723)] = 136917, + [SMALL_STATE(3724)] = 136938, + [SMALL_STATE(3725)] = 136961, + [SMALL_STATE(3726)] = 136982, + [SMALL_STATE(3727)] = 137005, + [SMALL_STATE(3728)] = 137026, + [SMALL_STATE(3729)] = 137047, + [SMALL_STATE(3730)] = 137068, + [SMALL_STATE(3731)] = 137089, + [SMALL_STATE(3732)] = 137112, + [SMALL_STATE(3733)] = 137133, + [SMALL_STATE(3734)] = 137150, + [SMALL_STATE(3735)] = 137171, + [SMALL_STATE(3736)] = 137194, + [SMALL_STATE(3737)] = 137211, + [SMALL_STATE(3738)] = 137232, + [SMALL_STATE(3739)] = 137255, + [SMALL_STATE(3740)] = 137272, + [SMALL_STATE(3741)] = 137289, + [SMALL_STATE(3742)] = 137310, + [SMALL_STATE(3743)] = 137331, + [SMALL_STATE(3744)] = 137354, + [SMALL_STATE(3745)] = 137377, + [SMALL_STATE(3746)] = 137400, + [SMALL_STATE(3747)] = 137421, + [SMALL_STATE(3748)] = 137444, + [SMALL_STATE(3749)] = 137465, + [SMALL_STATE(3750)] = 137486, + [SMALL_STATE(3751)] = 137509, + [SMALL_STATE(3752)] = 137530, + [SMALL_STATE(3753)] = 137549, + [SMALL_STATE(3754)] = 137568, + [SMALL_STATE(3755)] = 137589, + [SMALL_STATE(3756)] = 137606, + [SMALL_STATE(3757)] = 137623, + [SMALL_STATE(3758)] = 137644, + [SMALL_STATE(3759)] = 137665, + [SMALL_STATE(3760)] = 137682, + [SMALL_STATE(3761)] = 137703, + [SMALL_STATE(3762)] = 137726, + [SMALL_STATE(3763)] = 137747, + [SMALL_STATE(3764)] = 137770, + [SMALL_STATE(3765)] = 137791, + [SMALL_STATE(3766)] = 137812, + [SMALL_STATE(3767)] = 137831, + [SMALL_STATE(3768)] = 137852, + [SMALL_STATE(3769)] = 137869, + [SMALL_STATE(3770)] = 137888, + [SMALL_STATE(3771)] = 137907, + [SMALL_STATE(3772)] = 137930, + [SMALL_STATE(3773)] = 137951, + [SMALL_STATE(3774)] = 137970, + [SMALL_STATE(3775)] = 137991, + [SMALL_STATE(3776)] = 138012, + [SMALL_STATE(3777)] = 138033, + [SMALL_STATE(3778)] = 138054, + [SMALL_STATE(3779)] = 138075, + [SMALL_STATE(3780)] = 138096, + [SMALL_STATE(3781)] = 138117, + [SMALL_STATE(3782)] = 138138, + [SMALL_STATE(3783)] = 138155, + [SMALL_STATE(3784)] = 138176, + [SMALL_STATE(3785)] = 138197, + [SMALL_STATE(3786)] = 138218, + [SMALL_STATE(3787)] = 138239, + [SMALL_STATE(3788)] = 138260, + [SMALL_STATE(3789)] = 138277, + [SMALL_STATE(3790)] = 138294, + [SMALL_STATE(3791)] = 138315, + [SMALL_STATE(3792)] = 138336, + [SMALL_STATE(3793)] = 138359, + [SMALL_STATE(3794)] = 138380, + [SMALL_STATE(3795)] = 138397, + [SMALL_STATE(3796)] = 138420, + [SMALL_STATE(3797)] = 138441, + [SMALL_STATE(3798)] = 138462, + [SMALL_STATE(3799)] = 138483, + [SMALL_STATE(3800)] = 138504, + [SMALL_STATE(3801)] = 138525, + [SMALL_STATE(3802)] = 138546, + [SMALL_STATE(3803)] = 138567, + [SMALL_STATE(3804)] = 138588, + [SMALL_STATE(3805)] = 138605, + [SMALL_STATE(3806)] = 138628, + [SMALL_STATE(3807)] = 138645, + [SMALL_STATE(3808)] = 138662, + [SMALL_STATE(3809)] = 138679, + [SMALL_STATE(3810)] = 138700, + [SMALL_STATE(3811)] = 138723, + [SMALL_STATE(3812)] = 138744, + [SMALL_STATE(3813)] = 138765, + [SMALL_STATE(3814)] = 138786, + [SMALL_STATE(3815)] = 138803, + [SMALL_STATE(3816)] = 138826, + [SMALL_STATE(3817)] = 138843, + [SMALL_STATE(3818)] = 138864, + [SMALL_STATE(3819)] = 138881, + [SMALL_STATE(3820)] = 138904, + [SMALL_STATE(3821)] = 138927, + [SMALL_STATE(3822)] = 138950, + [SMALL_STATE(3823)] = 138969, + [SMALL_STATE(3824)] = 138988, + [SMALL_STATE(3825)] = 139009, + [SMALL_STATE(3826)] = 139030, + [SMALL_STATE(3827)] = 139053, + [SMALL_STATE(3828)] = 139074, + [SMALL_STATE(3829)] = 139095, + [SMALL_STATE(3830)] = 139118, + [SMALL_STATE(3831)] = 139139, + [SMALL_STATE(3832)] = 139160, + [SMALL_STATE(3833)] = 139181, + [SMALL_STATE(3834)] = 139202, + [SMALL_STATE(3835)] = 139225, + [SMALL_STATE(3836)] = 139248, + [SMALL_STATE(3837)] = 139269, + [SMALL_STATE(3838)] = 139292, + [SMALL_STATE(3839)] = 139313, + [SMALL_STATE(3840)] = 139334, + [SMALL_STATE(3841)] = 139355, + [SMALL_STATE(3842)] = 139376, + [SMALL_STATE(3843)] = 139397, + [SMALL_STATE(3844)] = 139418, + [SMALL_STATE(3845)] = 139441, + [SMALL_STATE(3846)] = 139464, + [SMALL_STATE(3847)] = 139481, + [SMALL_STATE(3848)] = 139502, + [SMALL_STATE(3849)] = 139523, + [SMALL_STATE(3850)] = 139544, + [SMALL_STATE(3851)] = 139563, + [SMALL_STATE(3852)] = 139580, + [SMALL_STATE(3853)] = 139603, + [SMALL_STATE(3854)] = 139620, + [SMALL_STATE(3855)] = 139641, + [SMALL_STATE(3856)] = 139662, + [SMALL_STATE(3857)] = 139679, + [SMALL_STATE(3858)] = 139700, + [SMALL_STATE(3859)] = 139721, + [SMALL_STATE(3860)] = 139742, + [SMALL_STATE(3861)] = 139759, + [SMALL_STATE(3862)] = 139780, + [SMALL_STATE(3863)] = 139803, + [SMALL_STATE(3864)] = 139823, + [SMALL_STATE(3865)] = 139843, + [SMALL_STATE(3866)] = 139863, + [SMALL_STATE(3867)] = 139883, + [SMALL_STATE(3868)] = 139903, + [SMALL_STATE(3869)] = 139923, + [SMALL_STATE(3870)] = 139943, + [SMALL_STATE(3871)] = 139963, + [SMALL_STATE(3872)] = 139983, + [SMALL_STATE(3873)] = 140003, + [SMALL_STATE(3874)] = 140021, + [SMALL_STATE(3875)] = 140037, + [SMALL_STATE(3876)] = 140057, + [SMALL_STATE(3877)] = 140077, + [SMALL_STATE(3878)] = 140097, + [SMALL_STATE(3879)] = 140117, + [SMALL_STATE(3880)] = 140137, + [SMALL_STATE(3881)] = 140157, + [SMALL_STATE(3882)] = 140177, + [SMALL_STATE(3883)] = 140197, + [SMALL_STATE(3884)] = 140217, + [SMALL_STATE(3885)] = 140237, + [SMALL_STATE(3886)] = 140257, + [SMALL_STATE(3887)] = 140277, + [SMALL_STATE(3888)] = 140297, + [SMALL_STATE(3889)] = 140317, + [SMALL_STATE(3890)] = 140337, + [SMALL_STATE(3891)] = 140357, + [SMALL_STATE(3892)] = 140377, + [SMALL_STATE(3893)] = 140397, + [SMALL_STATE(3894)] = 140417, + [SMALL_STATE(3895)] = 140433, + [SMALL_STATE(3896)] = 140453, + [SMALL_STATE(3897)] = 140473, + [SMALL_STATE(3898)] = 140493, + [SMALL_STATE(3899)] = 140513, + [SMALL_STATE(3900)] = 140533, + [SMALL_STATE(3901)] = 140553, + [SMALL_STATE(3902)] = 140573, + [SMALL_STATE(3903)] = 140593, + [SMALL_STATE(3904)] = 140609, + [SMALL_STATE(3905)] = 140627, + [SMALL_STATE(3906)] = 140647, + [SMALL_STATE(3907)] = 140667, + [SMALL_STATE(3908)] = 140687, + [SMALL_STATE(3909)] = 140703, + [SMALL_STATE(3910)] = 140723, + [SMALL_STATE(3911)] = 140743, + [SMALL_STATE(3912)] = 140763, + [SMALL_STATE(3913)] = 140781, + [SMALL_STATE(3914)] = 140801, + [SMALL_STATE(3915)] = 140821, + [SMALL_STATE(3916)] = 140837, + [SMALL_STATE(3917)] = 140853, + [SMALL_STATE(3918)] = 140873, + [SMALL_STATE(3919)] = 140893, + [SMALL_STATE(3920)] = 140913, + [SMALL_STATE(3921)] = 140933, + [SMALL_STATE(3922)] = 140953, + [SMALL_STATE(3923)] = 140973, + [SMALL_STATE(3924)] = 140991, + [SMALL_STATE(3925)] = 141011, + [SMALL_STATE(3926)] = 141031, + [SMALL_STATE(3927)] = 141051, + [SMALL_STATE(3928)] = 141071, + [SMALL_STATE(3929)] = 141091, + [SMALL_STATE(3930)] = 141111, + [SMALL_STATE(3931)] = 141131, + [SMALL_STATE(3932)] = 141151, + [SMALL_STATE(3933)] = 141171, + [SMALL_STATE(3934)] = 141191, + [SMALL_STATE(3935)] = 141211, + [SMALL_STATE(3936)] = 141229, + [SMALL_STATE(3937)] = 141249, + [SMALL_STATE(3938)] = 141269, + [SMALL_STATE(3939)] = 141289, + [SMALL_STATE(3940)] = 141307, + [SMALL_STATE(3941)] = 141327, + [SMALL_STATE(3942)] = 141345, + [SMALL_STATE(3943)] = 141365, + [SMALL_STATE(3944)] = 141385, + [SMALL_STATE(3945)] = 141405, + [SMALL_STATE(3946)] = 141425, + [SMALL_STATE(3947)] = 141445, + [SMALL_STATE(3948)] = 141465, + [SMALL_STATE(3949)] = 141485, + [SMALL_STATE(3950)] = 141505, + [SMALL_STATE(3951)] = 141525, + [SMALL_STATE(3952)] = 141545, + [SMALL_STATE(3953)] = 141565, + [SMALL_STATE(3954)] = 141585, + [SMALL_STATE(3955)] = 141605, + [SMALL_STATE(3956)] = 141625, + [SMALL_STATE(3957)] = 141645, + [SMALL_STATE(3958)] = 141665, + [SMALL_STATE(3959)] = 141683, + [SMALL_STATE(3960)] = 141703, + [SMALL_STATE(3961)] = 141721, + [SMALL_STATE(3962)] = 141741, + [SMALL_STATE(3963)] = 141761, + [SMALL_STATE(3964)] = 141781, + [SMALL_STATE(3965)] = 141801, + [SMALL_STATE(3966)] = 141821, + [SMALL_STATE(3967)] = 141841, + [SMALL_STATE(3968)] = 141861, + [SMALL_STATE(3969)] = 141881, + [SMALL_STATE(3970)] = 141901, + [SMALL_STATE(3971)] = 141917, + [SMALL_STATE(3972)] = 141937, + [SMALL_STATE(3973)] = 141957, + [SMALL_STATE(3974)] = 141977, + [SMALL_STATE(3975)] = 141997, + [SMALL_STATE(3976)] = 142017, + [SMALL_STATE(3977)] = 142037, + [SMALL_STATE(3978)] = 142057, + [SMALL_STATE(3979)] = 142077, + [SMALL_STATE(3980)] = 142097, + [SMALL_STATE(3981)] = 142117, + [SMALL_STATE(3982)] = 142137, + [SMALL_STATE(3983)] = 142157, + [SMALL_STATE(3984)] = 142177, + [SMALL_STATE(3985)] = 142197, + [SMALL_STATE(3986)] = 142217, + [SMALL_STATE(3987)] = 142235, + [SMALL_STATE(3988)] = 142255, + [SMALL_STATE(3989)] = 142271, + [SMALL_STATE(3990)] = 142291, + [SMALL_STATE(3991)] = 142311, + [SMALL_STATE(3992)] = 142331, + [SMALL_STATE(3993)] = 142351, + [SMALL_STATE(3994)] = 142371, + [SMALL_STATE(3995)] = 142391, + [SMALL_STATE(3996)] = 142411, + [SMALL_STATE(3997)] = 142431, + [SMALL_STATE(3998)] = 142451, + [SMALL_STATE(3999)] = 142471, + [SMALL_STATE(4000)] = 142491, + [SMALL_STATE(4001)] = 142511, + [SMALL_STATE(4002)] = 142531, + [SMALL_STATE(4003)] = 142551, + [SMALL_STATE(4004)] = 142571, + [SMALL_STATE(4005)] = 142591, + [SMALL_STATE(4006)] = 142611, + [SMALL_STATE(4007)] = 142631, + [SMALL_STATE(4008)] = 142651, + [SMALL_STATE(4009)] = 142671, + [SMALL_STATE(4010)] = 142689, + [SMALL_STATE(4011)] = 142709, + [SMALL_STATE(4012)] = 142729, + [SMALL_STATE(4013)] = 142745, + [SMALL_STATE(4014)] = 142761, + [SMALL_STATE(4015)] = 142781, + [SMALL_STATE(4016)] = 142801, + [SMALL_STATE(4017)] = 142819, + [SMALL_STATE(4018)] = 142839, + [SMALL_STATE(4019)] = 142857, + [SMALL_STATE(4020)] = 142877, + [SMALL_STATE(4021)] = 142895, + [SMALL_STATE(4022)] = 142915, + [SMALL_STATE(4023)] = 142935, + [SMALL_STATE(4024)] = 142955, + [SMALL_STATE(4025)] = 142975, + [SMALL_STATE(4026)] = 142995, + [SMALL_STATE(4027)] = 143015, + [SMALL_STATE(4028)] = 143035, + [SMALL_STATE(4029)] = 143055, + [SMALL_STATE(4030)] = 143075, + [SMALL_STATE(4031)] = 143095, + [SMALL_STATE(4032)] = 143115, + [SMALL_STATE(4033)] = 143133, + [SMALL_STATE(4034)] = 143153, + [SMALL_STATE(4035)] = 143173, + [SMALL_STATE(4036)] = 143191, + [SMALL_STATE(4037)] = 143207, + [SMALL_STATE(4038)] = 143227, + [SMALL_STATE(4039)] = 143247, + [SMALL_STATE(4040)] = 143267, + [SMALL_STATE(4041)] = 143287, + [SMALL_STATE(4042)] = 143307, + [SMALL_STATE(4043)] = 143327, + [SMALL_STATE(4044)] = 143347, + [SMALL_STATE(4045)] = 143365, + [SMALL_STATE(4046)] = 143385, + [SMALL_STATE(4047)] = 143401, + [SMALL_STATE(4048)] = 143421, + [SMALL_STATE(4049)] = 143441, + [SMALL_STATE(4050)] = 143461, + [SMALL_STATE(4051)] = 143481, + [SMALL_STATE(4052)] = 143497, + [SMALL_STATE(4053)] = 143517, + [SMALL_STATE(4054)] = 143537, + [SMALL_STATE(4055)] = 143557, + [SMALL_STATE(4056)] = 143577, + [SMALL_STATE(4057)] = 143597, + [SMALL_STATE(4058)] = 143617, + [SMALL_STATE(4059)] = 143637, + [SMALL_STATE(4060)] = 143657, + [SMALL_STATE(4061)] = 143677, + [SMALL_STATE(4062)] = 143697, + [SMALL_STATE(4063)] = 143717, + [SMALL_STATE(4064)] = 143737, + [SMALL_STATE(4065)] = 143757, + [SMALL_STATE(4066)] = 143773, + [SMALL_STATE(4067)] = 143793, + [SMALL_STATE(4068)] = 143813, + [SMALL_STATE(4069)] = 143833, + [SMALL_STATE(4070)] = 143853, + [SMALL_STATE(4071)] = 143873, + [SMALL_STATE(4072)] = 143893, + [SMALL_STATE(4073)] = 143909, + [SMALL_STATE(4074)] = 143929, + [SMALL_STATE(4075)] = 143949, + [SMALL_STATE(4076)] = 143969, + [SMALL_STATE(4077)] = 143989, + [SMALL_STATE(4078)] = 144007, + [SMALL_STATE(4079)] = 144027, + [SMALL_STATE(4080)] = 144047, + [SMALL_STATE(4081)] = 144067, + [SMALL_STATE(4082)] = 144087, + [SMALL_STATE(4083)] = 144107, + [SMALL_STATE(4084)] = 144125, + [SMALL_STATE(4085)] = 144145, + [SMALL_STATE(4086)] = 144165, + [SMALL_STATE(4087)] = 144185, + [SMALL_STATE(4088)] = 144205, + [SMALL_STATE(4089)] = 144225, + [SMALL_STATE(4090)] = 144245, + [SMALL_STATE(4091)] = 144265, + [SMALL_STATE(4092)] = 144285, + [SMALL_STATE(4093)] = 144305, + [SMALL_STATE(4094)] = 144325, + [SMALL_STATE(4095)] = 144345, + [SMALL_STATE(4096)] = 144365, + [SMALL_STATE(4097)] = 144385, + [SMALL_STATE(4098)] = 144405, + [SMALL_STATE(4099)] = 144425, + [SMALL_STATE(4100)] = 144445, + [SMALL_STATE(4101)] = 144465, + [SMALL_STATE(4102)] = 144485, + [SMALL_STATE(4103)] = 144505, + [SMALL_STATE(4104)] = 144525, + [SMALL_STATE(4105)] = 144543, + [SMALL_STATE(4106)] = 144563, + [SMALL_STATE(4107)] = 144580, + [SMALL_STATE(4108)] = 144597, + [SMALL_STATE(4109)] = 144614, + [SMALL_STATE(4110)] = 144631, + [SMALL_STATE(4111)] = 144646, + [SMALL_STATE(4112)] = 144663, + [SMALL_STATE(4113)] = 144680, + [SMALL_STATE(4114)] = 144697, + [SMALL_STATE(4115)] = 144714, + [SMALL_STATE(4116)] = 144731, + [SMALL_STATE(4117)] = 144748, + [SMALL_STATE(4118)] = 144765, + [SMALL_STATE(4119)] = 144782, + [SMALL_STATE(4120)] = 144799, + [SMALL_STATE(4121)] = 144816, + [SMALL_STATE(4122)] = 144833, + [SMALL_STATE(4123)] = 144850, + [SMALL_STATE(4124)] = 144867, + [SMALL_STATE(4125)] = 144884, + [SMALL_STATE(4126)] = 144901, + [SMALL_STATE(4127)] = 144918, + [SMALL_STATE(4128)] = 144935, + [SMALL_STATE(4129)] = 144952, + [SMALL_STATE(4130)] = 144969, + [SMALL_STATE(4131)] = 144986, + [SMALL_STATE(4132)] = 145003, + [SMALL_STATE(4133)] = 145020, + [SMALL_STATE(4134)] = 145037, + [SMALL_STATE(4135)] = 145054, + [SMALL_STATE(4136)] = 145071, + [SMALL_STATE(4137)] = 145088, + [SMALL_STATE(4138)] = 145105, + [SMALL_STATE(4139)] = 145122, + [SMALL_STATE(4140)] = 145139, + [SMALL_STATE(4141)] = 145156, + [SMALL_STATE(4142)] = 145173, + [SMALL_STATE(4143)] = 145190, + [SMALL_STATE(4144)] = 145207, + [SMALL_STATE(4145)] = 145224, + [SMALL_STATE(4146)] = 145239, + [SMALL_STATE(4147)] = 145256, + [SMALL_STATE(4148)] = 145273, + [SMALL_STATE(4149)] = 145290, + [SMALL_STATE(4150)] = 145307, + [SMALL_STATE(4151)] = 145324, + [SMALL_STATE(4152)] = 145341, + [SMALL_STATE(4153)] = 145356, + [SMALL_STATE(4154)] = 145373, + [SMALL_STATE(4155)] = 145390, + [SMALL_STATE(4156)] = 145407, + [SMALL_STATE(4157)] = 145424, + [SMALL_STATE(4158)] = 145441, + [SMALL_STATE(4159)] = 145458, + [SMALL_STATE(4160)] = 145475, + [SMALL_STATE(4161)] = 145492, + [SMALL_STATE(4162)] = 145509, + [SMALL_STATE(4163)] = 145526, + [SMALL_STATE(4164)] = 145543, + [SMALL_STATE(4165)] = 145560, + [SMALL_STATE(4166)] = 145577, + [SMALL_STATE(4167)] = 145594, + [SMALL_STATE(4168)] = 145611, + [SMALL_STATE(4169)] = 145628, + [SMALL_STATE(4170)] = 145645, + [SMALL_STATE(4171)] = 145662, + [SMALL_STATE(4172)] = 145679, + [SMALL_STATE(4173)] = 145696, + [SMALL_STATE(4174)] = 145713, + [SMALL_STATE(4175)] = 145730, + [SMALL_STATE(4176)] = 145747, + [SMALL_STATE(4177)] = 145764, + [SMALL_STATE(4178)] = 145781, + [SMALL_STATE(4179)] = 145796, + [SMALL_STATE(4180)] = 145811, + [SMALL_STATE(4181)] = 145826, + [SMALL_STATE(4182)] = 145843, + [SMALL_STATE(4183)] = 145860, + [SMALL_STATE(4184)] = 145877, + [SMALL_STATE(4185)] = 145892, + [SMALL_STATE(4186)] = 145907, + [SMALL_STATE(4187)] = 145924, + [SMALL_STATE(4188)] = 145941, + [SMALL_STATE(4189)] = 145958, + [SMALL_STATE(4190)] = 145975, + [SMALL_STATE(4191)] = 145992, + [SMALL_STATE(4192)] = 146009, + [SMALL_STATE(4193)] = 146026, + [SMALL_STATE(4194)] = 146041, + [SMALL_STATE(4195)] = 146058, + [SMALL_STATE(4196)] = 146075, + [SMALL_STATE(4197)] = 146090, + [SMALL_STATE(4198)] = 146107, + [SMALL_STATE(4199)] = 146122, + [SMALL_STATE(4200)] = 146139, + [SMALL_STATE(4201)] = 146156, + [SMALL_STATE(4202)] = 146173, + [SMALL_STATE(4203)] = 146190, + [SMALL_STATE(4204)] = 146207, + [SMALL_STATE(4205)] = 146224, + [SMALL_STATE(4206)] = 146241, + [SMALL_STATE(4207)] = 146258, + [SMALL_STATE(4208)] = 146275, + [SMALL_STATE(4209)] = 146292, + [SMALL_STATE(4210)] = 146309, + [SMALL_STATE(4211)] = 146326, + [SMALL_STATE(4212)] = 146343, + [SMALL_STATE(4213)] = 146360, + [SMALL_STATE(4214)] = 146377, + [SMALL_STATE(4215)] = 146394, + [SMALL_STATE(4216)] = 146411, + [SMALL_STATE(4217)] = 146428, + [SMALL_STATE(4218)] = 146445, + [SMALL_STATE(4219)] = 146462, + [SMALL_STATE(4220)] = 146479, + [SMALL_STATE(4221)] = 146496, + [SMALL_STATE(4222)] = 146511, + [SMALL_STATE(4223)] = 146528, + [SMALL_STATE(4224)] = 146545, + [SMALL_STATE(4225)] = 146562, + [SMALL_STATE(4226)] = 146579, + [SMALL_STATE(4227)] = 146596, + [SMALL_STATE(4228)] = 146613, + [SMALL_STATE(4229)] = 146628, + [SMALL_STATE(4230)] = 146645, + [SMALL_STATE(4231)] = 146662, + [SMALL_STATE(4232)] = 146679, + [SMALL_STATE(4233)] = 146696, + [SMALL_STATE(4234)] = 146713, + [SMALL_STATE(4235)] = 146730, + [SMALL_STATE(4236)] = 146747, + [SMALL_STATE(4237)] = 146764, + [SMALL_STATE(4238)] = 146781, + [SMALL_STATE(4239)] = 146798, + [SMALL_STATE(4240)] = 146813, + [SMALL_STATE(4241)] = 146830, + [SMALL_STATE(4242)] = 146845, + [SMALL_STATE(4243)] = 146860, + [SMALL_STATE(4244)] = 146875, + [SMALL_STATE(4245)] = 146892, + [SMALL_STATE(4246)] = 146909, + [SMALL_STATE(4247)] = 146926, + [SMALL_STATE(4248)] = 146943, + [SMALL_STATE(4249)] = 146960, + [SMALL_STATE(4250)] = 146977, + [SMALL_STATE(4251)] = 146994, + [SMALL_STATE(4252)] = 147011, + [SMALL_STATE(4253)] = 147028, + [SMALL_STATE(4254)] = 147045, + [SMALL_STATE(4255)] = 147062, + [SMALL_STATE(4256)] = 147079, + [SMALL_STATE(4257)] = 147096, + [SMALL_STATE(4258)] = 147113, + [SMALL_STATE(4259)] = 147130, + [SMALL_STATE(4260)] = 147145, + [SMALL_STATE(4261)] = 147160, + [SMALL_STATE(4262)] = 147177, + [SMALL_STATE(4263)] = 147194, + [SMALL_STATE(4264)] = 147211, + [SMALL_STATE(4265)] = 147228, + [SMALL_STATE(4266)] = 147245, + [SMALL_STATE(4267)] = 147262, + [SMALL_STATE(4268)] = 147279, + [SMALL_STATE(4269)] = 147296, + [SMALL_STATE(4270)] = 147313, + [SMALL_STATE(4271)] = 147330, + [SMALL_STATE(4272)] = 147347, + [SMALL_STATE(4273)] = 147364, + [SMALL_STATE(4274)] = 147381, + [SMALL_STATE(4275)] = 147398, + [SMALL_STATE(4276)] = 147415, + [SMALL_STATE(4277)] = 147432, + [SMALL_STATE(4278)] = 147449, + [SMALL_STATE(4279)] = 147466, + [SMALL_STATE(4280)] = 147483, + [SMALL_STATE(4281)] = 147500, + [SMALL_STATE(4282)] = 147517, + [SMALL_STATE(4283)] = 147534, + [SMALL_STATE(4284)] = 147551, + [SMALL_STATE(4285)] = 147568, + [SMALL_STATE(4286)] = 147585, + [SMALL_STATE(4287)] = 147602, + [SMALL_STATE(4288)] = 147619, + [SMALL_STATE(4289)] = 147636, + [SMALL_STATE(4290)] = 147651, + [SMALL_STATE(4291)] = 147668, + [SMALL_STATE(4292)] = 147685, + [SMALL_STATE(4293)] = 147702, + [SMALL_STATE(4294)] = 147719, + [SMALL_STATE(4295)] = 147736, + [SMALL_STATE(4296)] = 147753, + [SMALL_STATE(4297)] = 147768, + [SMALL_STATE(4298)] = 147785, + [SMALL_STATE(4299)] = 147802, + [SMALL_STATE(4300)] = 147817, + [SMALL_STATE(4301)] = 147832, + [SMALL_STATE(4302)] = 147849, + [SMALL_STATE(4303)] = 147866, + [SMALL_STATE(4304)] = 147883, + [SMALL_STATE(4305)] = 147900, + [SMALL_STATE(4306)] = 147917, + [SMALL_STATE(4307)] = 147934, + [SMALL_STATE(4308)] = 147951, + [SMALL_STATE(4309)] = 147968, + [SMALL_STATE(4310)] = 147985, + [SMALL_STATE(4311)] = 148002, + [SMALL_STATE(4312)] = 148017, + [SMALL_STATE(4313)] = 148034, + [SMALL_STATE(4314)] = 148051, + [SMALL_STATE(4315)] = 148068, + [SMALL_STATE(4316)] = 148085, + [SMALL_STATE(4317)] = 148102, + [SMALL_STATE(4318)] = 148119, + [SMALL_STATE(4319)] = 148136, + [SMALL_STATE(4320)] = 148153, + [SMALL_STATE(4321)] = 148170, + [SMALL_STATE(4322)] = 148185, + [SMALL_STATE(4323)] = 148202, + [SMALL_STATE(4324)] = 148217, + [SMALL_STATE(4325)] = 148234, + [SMALL_STATE(4326)] = 148251, + [SMALL_STATE(4327)] = 148268, + [SMALL_STATE(4328)] = 148285, + [SMALL_STATE(4329)] = 148300, + [SMALL_STATE(4330)] = 148317, + [SMALL_STATE(4331)] = 148334, + [SMALL_STATE(4332)] = 148351, + [SMALL_STATE(4333)] = 148368, + [SMALL_STATE(4334)] = 148385, + [SMALL_STATE(4335)] = 148402, + [SMALL_STATE(4336)] = 148419, + [SMALL_STATE(4337)] = 148434, + [SMALL_STATE(4338)] = 148451, + [SMALL_STATE(4339)] = 148466, + [SMALL_STATE(4340)] = 148483, + [SMALL_STATE(4341)] = 148500, + [SMALL_STATE(4342)] = 148515, + [SMALL_STATE(4343)] = 148532, + [SMALL_STATE(4344)] = 148549, + [SMALL_STATE(4345)] = 148566, + [SMALL_STATE(4346)] = 148583, + [SMALL_STATE(4347)] = 148600, + [SMALL_STATE(4348)] = 148617, + [SMALL_STATE(4349)] = 148634, + [SMALL_STATE(4350)] = 148651, + [SMALL_STATE(4351)] = 148668, + [SMALL_STATE(4352)] = 148685, + [SMALL_STATE(4353)] = 148702, + [SMALL_STATE(4354)] = 148719, + [SMALL_STATE(4355)] = 148736, + [SMALL_STATE(4356)] = 148753, + [SMALL_STATE(4357)] = 148768, + [SMALL_STATE(4358)] = 148785, + [SMALL_STATE(4359)] = 148802, + [SMALL_STATE(4360)] = 148819, + [SMALL_STATE(4361)] = 148836, + [SMALL_STATE(4362)] = 148851, + [SMALL_STATE(4363)] = 148868, + [SMALL_STATE(4364)] = 148885, + [SMALL_STATE(4365)] = 148902, + [SMALL_STATE(4366)] = 148919, + [SMALL_STATE(4367)] = 148936, + [SMALL_STATE(4368)] = 148953, + [SMALL_STATE(4369)] = 148970, + [SMALL_STATE(4370)] = 148987, + [SMALL_STATE(4371)] = 149004, + [SMALL_STATE(4372)] = 149021, + [SMALL_STATE(4373)] = 149038, + [SMALL_STATE(4374)] = 149055, + [SMALL_STATE(4375)] = 149072, + [SMALL_STATE(4376)] = 149089, + [SMALL_STATE(4377)] = 149106, + [SMALL_STATE(4378)] = 149123, + [SMALL_STATE(4379)] = 149140, + [SMALL_STATE(4380)] = 149157, + [SMALL_STATE(4381)] = 149174, + [SMALL_STATE(4382)] = 149191, + [SMALL_STATE(4383)] = 149208, + [SMALL_STATE(4384)] = 149225, + [SMALL_STATE(4385)] = 149242, + [SMALL_STATE(4386)] = 149259, + [SMALL_STATE(4387)] = 149276, + [SMALL_STATE(4388)] = 149293, + [SMALL_STATE(4389)] = 149310, + [SMALL_STATE(4390)] = 149327, + [SMALL_STATE(4391)] = 149344, + [SMALL_STATE(4392)] = 149361, + [SMALL_STATE(4393)] = 149378, + [SMALL_STATE(4394)] = 149395, + [SMALL_STATE(4395)] = 149412, + [SMALL_STATE(4396)] = 149429, + [SMALL_STATE(4397)] = 149446, + [SMALL_STATE(4398)] = 149463, + [SMALL_STATE(4399)] = 149480, + [SMALL_STATE(4400)] = 149497, + [SMALL_STATE(4401)] = 149514, + [SMALL_STATE(4402)] = 149531, + [SMALL_STATE(4403)] = 149548, + [SMALL_STATE(4404)] = 149565, + [SMALL_STATE(4405)] = 149582, + [SMALL_STATE(4406)] = 149599, + [SMALL_STATE(4407)] = 149616, + [SMALL_STATE(4408)] = 149633, + [SMALL_STATE(4409)] = 149650, + [SMALL_STATE(4410)] = 149667, + [SMALL_STATE(4411)] = 149684, + [SMALL_STATE(4412)] = 149701, + [SMALL_STATE(4413)] = 149718, + [SMALL_STATE(4414)] = 149735, + [SMALL_STATE(4415)] = 149752, + [SMALL_STATE(4416)] = 149769, + [SMALL_STATE(4417)] = 149786, + [SMALL_STATE(4418)] = 149803, + [SMALL_STATE(4419)] = 149820, + [SMALL_STATE(4420)] = 149837, + [SMALL_STATE(4421)] = 149854, + [SMALL_STATE(4422)] = 149871, + [SMALL_STATE(4423)] = 149888, + [SMALL_STATE(4424)] = 149905, + [SMALL_STATE(4425)] = 149920, + [SMALL_STATE(4426)] = 149937, + [SMALL_STATE(4427)] = 149951, + [SMALL_STATE(4428)] = 149965, + [SMALL_STATE(4429)] = 149979, + [SMALL_STATE(4430)] = 149993, + [SMALL_STATE(4431)] = 150007, + [SMALL_STATE(4432)] = 150021, + [SMALL_STATE(4433)] = 150035, + [SMALL_STATE(4434)] = 150049, + [SMALL_STATE(4435)] = 150063, + [SMALL_STATE(4436)] = 150077, + [SMALL_STATE(4437)] = 150091, + [SMALL_STATE(4438)] = 150105, + [SMALL_STATE(4439)] = 150119, + [SMALL_STATE(4440)] = 150133, + [SMALL_STATE(4441)] = 150147, + [SMALL_STATE(4442)] = 150161, + [SMALL_STATE(4443)] = 150175, + [SMALL_STATE(4444)] = 150189, + [SMALL_STATE(4445)] = 150203, + [SMALL_STATE(4446)] = 150217, + [SMALL_STATE(4447)] = 150231, + [SMALL_STATE(4448)] = 150245, + [SMALL_STATE(4449)] = 150259, + [SMALL_STATE(4450)] = 150273, + [SMALL_STATE(4451)] = 150287, + [SMALL_STATE(4452)] = 150301, + [SMALL_STATE(4453)] = 150315, + [SMALL_STATE(4454)] = 150329, + [SMALL_STATE(4455)] = 150343, + [SMALL_STATE(4456)] = 150357, + [SMALL_STATE(4457)] = 150371, + [SMALL_STATE(4458)] = 150385, + [SMALL_STATE(4459)] = 150399, + [SMALL_STATE(4460)] = 150413, + [SMALL_STATE(4461)] = 150427, + [SMALL_STATE(4462)] = 150441, + [SMALL_STATE(4463)] = 150455, + [SMALL_STATE(4464)] = 150469, + [SMALL_STATE(4465)] = 150483, + [SMALL_STATE(4466)] = 150497, + [SMALL_STATE(4467)] = 150511, + [SMALL_STATE(4468)] = 150525, + [SMALL_STATE(4469)] = 150539, + [SMALL_STATE(4470)] = 150553, + [SMALL_STATE(4471)] = 150567, + [SMALL_STATE(4472)] = 150581, + [SMALL_STATE(4473)] = 150595, + [SMALL_STATE(4474)] = 150609, + [SMALL_STATE(4475)] = 150623, + [SMALL_STATE(4476)] = 150637, + [SMALL_STATE(4477)] = 150651, + [SMALL_STATE(4478)] = 150665, + [SMALL_STATE(4479)] = 150679, + [SMALL_STATE(4480)] = 150693, + [SMALL_STATE(4481)] = 150707, + [SMALL_STATE(4482)] = 150721, + [SMALL_STATE(4483)] = 150735, + [SMALL_STATE(4484)] = 150749, + [SMALL_STATE(4485)] = 150763, + [SMALL_STATE(4486)] = 150777, + [SMALL_STATE(4487)] = 150791, + [SMALL_STATE(4488)] = 150805, + [SMALL_STATE(4489)] = 150819, + [SMALL_STATE(4490)] = 150833, + [SMALL_STATE(4491)] = 150847, + [SMALL_STATE(4492)] = 150861, + [SMALL_STATE(4493)] = 150875, + [SMALL_STATE(4494)] = 150889, + [SMALL_STATE(4495)] = 150903, + [SMALL_STATE(4496)] = 150917, + [SMALL_STATE(4497)] = 150931, + [SMALL_STATE(4498)] = 150945, + [SMALL_STATE(4499)] = 150959, + [SMALL_STATE(4500)] = 150973, + [SMALL_STATE(4501)] = 150987, + [SMALL_STATE(4502)] = 151001, + [SMALL_STATE(4503)] = 151015, + [SMALL_STATE(4504)] = 151029, + [SMALL_STATE(4505)] = 151043, + [SMALL_STATE(4506)] = 151057, + [SMALL_STATE(4507)] = 151071, + [SMALL_STATE(4508)] = 151085, + [SMALL_STATE(4509)] = 151099, + [SMALL_STATE(4510)] = 151113, + [SMALL_STATE(4511)] = 151127, + [SMALL_STATE(4512)] = 151141, + [SMALL_STATE(4513)] = 151155, + [SMALL_STATE(4514)] = 151169, + [SMALL_STATE(4515)] = 151183, + [SMALL_STATE(4516)] = 151197, + [SMALL_STATE(4517)] = 151211, + [SMALL_STATE(4518)] = 151225, + [SMALL_STATE(4519)] = 151239, + [SMALL_STATE(4520)] = 151253, + [SMALL_STATE(4521)] = 151267, + [SMALL_STATE(4522)] = 151281, + [SMALL_STATE(4523)] = 151295, + [SMALL_STATE(4524)] = 151309, + [SMALL_STATE(4525)] = 151323, + [SMALL_STATE(4526)] = 151337, + [SMALL_STATE(4527)] = 151351, + [SMALL_STATE(4528)] = 151365, + [SMALL_STATE(4529)] = 151379, + [SMALL_STATE(4530)] = 151393, + [SMALL_STATE(4531)] = 151407, + [SMALL_STATE(4532)] = 151421, + [SMALL_STATE(4533)] = 151435, + [SMALL_STATE(4534)] = 151449, + [SMALL_STATE(4535)] = 151463, + [SMALL_STATE(4536)] = 151477, + [SMALL_STATE(4537)] = 151491, + [SMALL_STATE(4538)] = 151505, + [SMALL_STATE(4539)] = 151519, + [SMALL_STATE(4540)] = 151533, + [SMALL_STATE(4541)] = 151547, + [SMALL_STATE(4542)] = 151561, + [SMALL_STATE(4543)] = 151575, + [SMALL_STATE(4544)] = 151589, + [SMALL_STATE(4545)] = 151603, + [SMALL_STATE(4546)] = 151617, + [SMALL_STATE(4547)] = 151631, + [SMALL_STATE(4548)] = 151645, + [SMALL_STATE(4549)] = 151659, + [SMALL_STATE(4550)] = 151673, + [SMALL_STATE(4551)] = 151687, + [SMALL_STATE(4552)] = 151701, + [SMALL_STATE(4553)] = 151715, + [SMALL_STATE(4554)] = 151729, + [SMALL_STATE(4555)] = 151743, + [SMALL_STATE(4556)] = 151757, + [SMALL_STATE(4557)] = 151771, + [SMALL_STATE(4558)] = 151785, + [SMALL_STATE(4559)] = 151799, + [SMALL_STATE(4560)] = 151813, + [SMALL_STATE(4561)] = 151827, + [SMALL_STATE(4562)] = 151841, + [SMALL_STATE(4563)] = 151855, + [SMALL_STATE(4564)] = 151869, + [SMALL_STATE(4565)] = 151883, + [SMALL_STATE(4566)] = 151897, + [SMALL_STATE(4567)] = 151911, + [SMALL_STATE(4568)] = 151925, + [SMALL_STATE(4569)] = 151939, + [SMALL_STATE(4570)] = 151953, + [SMALL_STATE(4571)] = 151967, + [SMALL_STATE(4572)] = 151981, + [SMALL_STATE(4573)] = 151995, + [SMALL_STATE(4574)] = 152009, + [SMALL_STATE(4575)] = 152023, + [SMALL_STATE(4576)] = 152037, + [SMALL_STATE(4577)] = 152051, + [SMALL_STATE(4578)] = 152065, + [SMALL_STATE(4579)] = 152079, + [SMALL_STATE(4580)] = 152093, + [SMALL_STATE(4581)] = 152107, + [SMALL_STATE(4582)] = 152121, + [SMALL_STATE(4583)] = 152135, + [SMALL_STATE(4584)] = 152149, + [SMALL_STATE(4585)] = 152163, + [SMALL_STATE(4586)] = 152177, + [SMALL_STATE(4587)] = 152191, + [SMALL_STATE(4588)] = 152205, + [SMALL_STATE(4589)] = 152219, + [SMALL_STATE(4590)] = 152233, + [SMALL_STATE(4591)] = 152247, + [SMALL_STATE(4592)] = 152261, + [SMALL_STATE(4593)] = 152275, + [SMALL_STATE(4594)] = 152289, + [SMALL_STATE(4595)] = 152303, + [SMALL_STATE(4596)] = 152317, + [SMALL_STATE(4597)] = 152331, + [SMALL_STATE(4598)] = 152345, + [SMALL_STATE(4599)] = 152359, + [SMALL_STATE(4600)] = 152373, + [SMALL_STATE(4601)] = 152387, + [SMALL_STATE(4602)] = 152401, + [SMALL_STATE(4603)] = 152415, + [SMALL_STATE(4604)] = 152429, + [SMALL_STATE(4605)] = 152443, + [SMALL_STATE(4606)] = 152457, + [SMALL_STATE(4607)] = 152471, + [SMALL_STATE(4608)] = 152485, + [SMALL_STATE(4609)] = 152499, + [SMALL_STATE(4610)] = 152513, + [SMALL_STATE(4611)] = 152527, + [SMALL_STATE(4612)] = 152541, + [SMALL_STATE(4613)] = 152555, + [SMALL_STATE(4614)] = 152569, + [SMALL_STATE(4615)] = 152583, + [SMALL_STATE(4616)] = 152597, + [SMALL_STATE(4617)] = 152611, + [SMALL_STATE(4618)] = 152625, + [SMALL_STATE(4619)] = 152639, + [SMALL_STATE(4620)] = 152653, + [SMALL_STATE(4621)] = 152667, + [SMALL_STATE(4622)] = 152681, + [SMALL_STATE(4623)] = 152695, + [SMALL_STATE(4624)] = 152709, + [SMALL_STATE(4625)] = 152723, + [SMALL_STATE(4626)] = 152737, + [SMALL_STATE(4627)] = 152751, + [SMALL_STATE(4628)] = 152765, + [SMALL_STATE(4629)] = 152779, + [SMALL_STATE(4630)] = 152793, + [SMALL_STATE(4631)] = 152807, + [SMALL_STATE(4632)] = 152821, + [SMALL_STATE(4633)] = 152835, + [SMALL_STATE(4634)] = 152849, + [SMALL_STATE(4635)] = 152863, + [SMALL_STATE(4636)] = 152877, + [SMALL_STATE(4637)] = 152891, + [SMALL_STATE(4638)] = 152905, + [SMALL_STATE(4639)] = 152919, + [SMALL_STATE(4640)] = 152933, + [SMALL_STATE(4641)] = 152947, + [SMALL_STATE(4642)] = 152961, + [SMALL_STATE(4643)] = 152975, + [SMALL_STATE(4644)] = 152989, + [SMALL_STATE(4645)] = 153003, + [SMALL_STATE(4646)] = 153017, + [SMALL_STATE(4647)] = 153031, + [SMALL_STATE(4648)] = 153045, + [SMALL_STATE(4649)] = 153059, + [SMALL_STATE(4650)] = 153073, + [SMALL_STATE(4651)] = 153087, + [SMALL_STATE(4652)] = 153101, + [SMALL_STATE(4653)] = 153115, + [SMALL_STATE(4654)] = 153129, + [SMALL_STATE(4655)] = 153143, + [SMALL_STATE(4656)] = 153157, + [SMALL_STATE(4657)] = 153171, + [SMALL_STATE(4658)] = 153185, + [SMALL_STATE(4659)] = 153199, + [SMALL_STATE(4660)] = 153213, + [SMALL_STATE(4661)] = 153227, + [SMALL_STATE(4662)] = 153241, + [SMALL_STATE(4663)] = 153255, + [SMALL_STATE(4664)] = 153269, + [SMALL_STATE(4665)] = 153283, + [SMALL_STATE(4666)] = 153297, + [SMALL_STATE(4667)] = 153311, + [SMALL_STATE(4668)] = 153325, + [SMALL_STATE(4669)] = 153339, + [SMALL_STATE(4670)] = 153353, + [SMALL_STATE(4671)] = 153367, + [SMALL_STATE(4672)] = 153381, + [SMALL_STATE(4673)] = 153395, + [SMALL_STATE(4674)] = 153409, + [SMALL_STATE(4675)] = 153423, + [SMALL_STATE(4676)] = 153437, + [SMALL_STATE(4677)] = 153451, + [SMALL_STATE(4678)] = 153465, + [SMALL_STATE(4679)] = 153479, + [SMALL_STATE(4680)] = 153493, + [SMALL_STATE(4681)] = 153507, + [SMALL_STATE(4682)] = 153521, + [SMALL_STATE(4683)] = 153535, + [SMALL_STATE(4684)] = 153549, + [SMALL_STATE(4685)] = 153563, + [SMALL_STATE(4686)] = 153577, + [SMALL_STATE(4687)] = 153591, + [SMALL_STATE(4688)] = 153605, + [SMALL_STATE(4689)] = 153619, + [SMALL_STATE(4690)] = 153633, + [SMALL_STATE(4691)] = 153647, + [SMALL_STATE(4692)] = 153661, + [SMALL_STATE(4693)] = 153675, + [SMALL_STATE(4694)] = 153689, + [SMALL_STATE(4695)] = 153703, + [SMALL_STATE(4696)] = 153717, + [SMALL_STATE(4697)] = 153731, + [SMALL_STATE(4698)] = 153745, + [SMALL_STATE(4699)] = 153759, + [SMALL_STATE(4700)] = 153773, + [SMALL_STATE(4701)] = 153787, + [SMALL_STATE(4702)] = 153801, + [SMALL_STATE(4703)] = 153815, + [SMALL_STATE(4704)] = 153829, + [SMALL_STATE(4705)] = 153843, + [SMALL_STATE(4706)] = 153857, + [SMALL_STATE(4707)] = 153871, + [SMALL_STATE(4708)] = 153885, + [SMALL_STATE(4709)] = 153899, + [SMALL_STATE(4710)] = 153913, + [SMALL_STATE(4711)] = 153927, + [SMALL_STATE(4712)] = 153941, + [SMALL_STATE(4713)] = 153955, + [SMALL_STATE(4714)] = 153969, + [SMALL_STATE(4715)] = 153983, + [SMALL_STATE(4716)] = 153997, + [SMALL_STATE(4717)] = 154011, + [SMALL_STATE(4718)] = 154025, + [SMALL_STATE(4719)] = 154039, + [SMALL_STATE(4720)] = 154053, + [SMALL_STATE(4721)] = 154067, + [SMALL_STATE(4722)] = 154081, + [SMALL_STATE(4723)] = 154095, + [SMALL_STATE(4724)] = 154109, + [SMALL_STATE(4725)] = 154123, + [SMALL_STATE(4726)] = 154137, + [SMALL_STATE(4727)] = 154151, + [SMALL_STATE(4728)] = 154165, + [SMALL_STATE(4729)] = 154179, + [SMALL_STATE(4730)] = 154193, + [SMALL_STATE(4731)] = 154207, + [SMALL_STATE(4732)] = 154221, + [SMALL_STATE(4733)] = 154235, + [SMALL_STATE(4734)] = 154249, + [SMALL_STATE(4735)] = 154263, + [SMALL_STATE(4736)] = 154277, + [SMALL_STATE(4737)] = 154291, + [SMALL_STATE(4738)] = 154305, + [SMALL_STATE(4739)] = 154319, + [SMALL_STATE(4740)] = 154333, + [SMALL_STATE(4741)] = 154347, + [SMALL_STATE(4742)] = 154361, + [SMALL_STATE(4743)] = 154375, + [SMALL_STATE(4744)] = 154389, + [SMALL_STATE(4745)] = 154403, + [SMALL_STATE(4746)] = 154417, + [SMALL_STATE(4747)] = 154431, + [SMALL_STATE(4748)] = 154445, + [SMALL_STATE(4749)] = 154459, + [SMALL_STATE(4750)] = 154473, + [SMALL_STATE(4751)] = 154487, + [SMALL_STATE(4752)] = 154501, + [SMALL_STATE(4753)] = 154515, + [SMALL_STATE(4754)] = 154529, + [SMALL_STATE(4755)] = 154543, + [SMALL_STATE(4756)] = 154557, + [SMALL_STATE(4757)] = 154561, }; 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_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [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(407), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4094), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4049), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(479), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3447), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4682), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3330), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(487), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(490), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4033), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4451), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3510), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2167), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4545), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4544), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2903), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(688), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(689), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(691), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4257), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(180), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(693), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(695), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(696), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(287), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(699), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(412), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(339), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(286), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4260), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3865), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(696), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(750), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1611), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3230), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3218), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3128), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3110), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(717), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4303), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4306), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1467), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1468), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(430), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4112), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4099), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(472), + [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(4750), + [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(554), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(555), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4096), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4747), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3522), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2199), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4743), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4741), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2949), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(663), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(678), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(679), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4122), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(175), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(691), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(693), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(714), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(268), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(738), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(435), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(324), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(262), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4123), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4085), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(714), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(793), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1620), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3088), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3091), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3092), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3106), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(838), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4130), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4133), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1463), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1464), [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(3639), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(108), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4472), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4465), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3317), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3573), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3563), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3604), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3551), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3868), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3878), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3663), + [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(4719), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4717), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3355), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3547), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3549), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3552), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3553), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4074), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4073), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), - [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_option_type, 1), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1891), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4302), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(244), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(735), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3464), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(902), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(647), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4104), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2167), - [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2903), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(651), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(740), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(736), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4300), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(332), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(683), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(649), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2024), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(279), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(734), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(442), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(335), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(247), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4298), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4048), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2024), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1945), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1611), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3230), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3218), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3128), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3110), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3535), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3533), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3527), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3519), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4047), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4045), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2803), - [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4151), - [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(218), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(710), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3461), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(884), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(966), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4093), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2167), - [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2903), - [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(422), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(904), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(926), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4150), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(345), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(967), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(929), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2846), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(283), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4206), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(709), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(445), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(316), - [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(226), - [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4078), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3954), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2846), - [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2635), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1611), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3230), - [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3218), - [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3128), - [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3110), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3591), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3520), - [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3521), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3522), - [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3959), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3960), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1156), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4358), - [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(259), - [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(756), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3459), - [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(569), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(907), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(671), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4105), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2167), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2903), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(910), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(538), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(536), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4354), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(322), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(912), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(529), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1208), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(274), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(753), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(440), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(351), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(262), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4351), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3985), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1208), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1207), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1611), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3230), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3218), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3128), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3110), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3555), - [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3556), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3557), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3558), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3997), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3998), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 93), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 56), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [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(3487), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), + [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1833), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4316), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(292), + [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(747), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3480), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(447), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(763), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4128), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2199), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2949), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(761), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(804), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(803), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4333), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(363), + [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(800), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2057), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(289), + [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(755), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(410), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(332), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(297), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4352), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3956), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2057), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2058), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1620), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3088), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3091), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3092), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3106), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3564), + [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(3558), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3556), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3955), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3954), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2845), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4233), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(266), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(956), + [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3488), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(446), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(708), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4121), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2199), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2949), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(398), + [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(728), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(725), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4223), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(385), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(706), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(722), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2838), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(294), + [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4292), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(941), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(438), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(315), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(259), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4215), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3995), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2838), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2837), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1620), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3088), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3091), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3092), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3106), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3635), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3634), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3633), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3632), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4000), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4001), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1165), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4166), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(245), + [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(619), + [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(3483), + [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(939), + [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(861), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(953), + [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4131), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2199), + [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2949), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(860), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(927), + [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(919), + [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4168), + [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(337), + [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(857), + [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(917), + [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1183), + [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(270), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(640), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(427), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(355), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(228), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4170), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4024), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1183), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1193), + [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1620), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3088), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3091), + [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3092), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3106), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3599), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3600), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3601), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3602), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4023), + [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4022), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 93), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 56), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 62), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 31), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 31), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 31), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 31), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 28), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 28), - [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2458), - [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4122), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(253), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(848), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3449), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(646), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(645), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4251), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2167), - [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2903), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(638), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(493), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(491), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4119), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(382), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(489), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(485), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2328), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(258), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(842), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(435), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(357), - [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(264), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4117), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4022), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2328), - [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2331), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1611), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3230), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3218), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3128), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3110), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3594), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3596), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3598), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3610), - [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4043), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4046), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_expression, 3, .production_id = 31), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_expression, 3, .production_id = 31), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1156), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4358), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(259), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(756), - [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3459), - [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(569), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(907), - [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4105), - [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2167), - [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2903), - [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(910), - [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(538), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(536), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4354), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(322), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(912), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(529), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1208), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(274), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(753), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(440), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(351), - [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(262), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4351), - [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3985), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1208), - [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1207), - [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1611), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3230), - [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3218), - [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3128), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3110), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3555), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3556), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3557), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3558), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3997), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3998), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1308), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4118), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(261), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(830), - [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3465), - [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(532), - [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(531), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4112), - [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2167), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2903), - [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(526), - [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(524), - [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(523), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4123), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(338), - [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(521), - [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(518), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1295), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(270), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(826), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(436), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(333), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(250), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4273), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4014), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1295), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1345), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1611), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3230), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3218), - [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3128), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3110), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3581), - [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3580), - [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3578), - [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3576), - [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4013), - [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4011), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 22), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 22), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1308), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4118), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(261), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(830), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3465), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(499), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(510), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), - [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4112), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2167), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2903), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(511), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(520), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(522), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4123), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(338), - [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(530), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(534), - [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1295), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(270), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(826), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(436), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(366), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(237), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4273), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4014), - [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1295), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1345), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1611), - [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3230), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3218), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3128), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3110), - [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3581), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3580), - [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3578), - [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3576), - [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4013), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4011), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 65), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 29), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 27), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 27), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 59), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 59), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 32), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 32), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 33), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 33), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 47), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 47), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 48), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 48), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 56), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 56), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 58), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 58), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 66), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 66), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [3219] = {.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), - [3222] = {.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), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [3229] = {.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), - [3232] = {.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), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), - [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), - [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 83), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 83), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 88), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 88), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 32), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 32), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 56), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 56), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), - [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4319), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 58), - [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 58), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 58), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 58), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 34), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 34), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 30), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 30), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 38), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 38), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 39), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 39), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 85), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 37), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, .production_id = 18), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), - [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3969), - [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4085), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 26), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 26), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3260), - [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), - [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3260), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), - [4027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4510), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(403), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4510), - [4042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3112), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), - [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4510), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 45), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 45), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 67), - [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 67), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 72), - [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 72), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 79), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 79), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 82), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 82), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), + [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(516), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [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(3766), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_expression, 3, .production_id = 31), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_expression, 3, .production_id = 31), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 31), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 31), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 27), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 27), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 31), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 31), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2481), + [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4366), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(265), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(541), + [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3494), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(815), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(827), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4272), + [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2199), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2949), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(829), + [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(833), + [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(835), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4383), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(388), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(909), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(921), + [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2464), + [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(229), + [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(539), + [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(413), + [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(336), + [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(232), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4382), + [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3933), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2464), + [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2463), + [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1620), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3088), + [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3091), + [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3092), + [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3106), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3657), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3656), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3642), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3640), + [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3921), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3920), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1165), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4166), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(245), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(619), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3483), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(939), + [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(861), + [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4131), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2199), + [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2949), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(860), + [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(927), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(919), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4168), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(337), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(857), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(917), + [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1183), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(270), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(640), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(427), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(355), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(228), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4170), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4024), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1183), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1193), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1620), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3088), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3091), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3092), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3106), + [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3599), + [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3600), + [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3601), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3602), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4023), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4022), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1316), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4253), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(278), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(520), + [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3479), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(841), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(846), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4142), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2199), + [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2949), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(848), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(855), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(868), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4252), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(353), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(869), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(872), + [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1312), + [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(249), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(518), + [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(416), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(320), + [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(220), + [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4425), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3965), + [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1312), + [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1335), + [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1620), + [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3088), + [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3091), + [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3092), + [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3106), + [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3568), + [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3606), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3609), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3610), + [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3976), + [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4045), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 22), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 22), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1316), + [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4253), + [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(278), + [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(520), + [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3479), + [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(598), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(601), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4142), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2199), + [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2949), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(608), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(620), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(634), + [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4252), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(353), + [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(636), + [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(637), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1312), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(249), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(518), + [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(416), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(331), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(258), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4425), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3965), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1312), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1335), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1620), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3088), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3091), + [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3092), + [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3106), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3568), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3606), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3609), + [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3610), + [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3976), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4045), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), + [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(3269), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 65), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 29), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 28), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 28), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 32), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 32), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), + [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 33), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 33), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 47), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 47), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 48), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 48), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 56), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 56), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 58), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 58), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), + [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 66), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 66), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3271] = {.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), + [3274] = {.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), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3281] = {.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), + [3284] = {.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), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 83), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 83), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 88), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 88), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 32), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 32), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 56), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 56), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 59), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 59), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 58), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 58), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 58), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 58), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 34), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 34), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [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 = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4263), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), + [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(3412), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [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(477), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 30), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 30), + [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_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(1346), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 85), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 37), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, .production_id = 18), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), + [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3915), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4346), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 26), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 26), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3123), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3123), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [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(aux_sym__type_union_list_repeat1, 2), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4636), + [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3208), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [4027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(440), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), + [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4636), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), + [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), + [4043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4636), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), + [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 105), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 105), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 45), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 45), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 105), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 105), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), - [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 141), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 141), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 36), - [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 36), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 28), - [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 28), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 35), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 35), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 36), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 36), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), - [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), - [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 40), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 40), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 127), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 127), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 25), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 25), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 36), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 36), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 149), - [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 149), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), - [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), - [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 143), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 143), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 142), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 142), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), - [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), - [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), - [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), - [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), - [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), - [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 74), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 74), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), - [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 72), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 72), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 79), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 79), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 67), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 67), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), + [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, 5, .production_id = 82), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 82), + [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_enum_declaration, 4, .production_id = 19), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 25), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 25), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 36), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 36), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 97), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 97), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 96), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 96), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 137), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 137), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 74), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 74), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 36), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 36), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), + [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 36), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 36), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), + [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 120), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 120), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 118), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 118), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 142), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 142), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 143), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 143), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 40), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 40), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 36), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 36), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 35), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 35), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 27), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 27), [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), - [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 120), - [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 120), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), - [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 118), - [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 118), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), - [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 111), - [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 111), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), - [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3674), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 96), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 96), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), - [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), - [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), - [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), - [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 97), - [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 97), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 36), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 36), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), - [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4319), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), - [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 112), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), - [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 90), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 90), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 111), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 111), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 127), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 127), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3745), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 149), + [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 149), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), + [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), + [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), + [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), + [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), + [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [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 = false}}, REDUCE(sym_mutability_modifiers, 1), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), + [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 = true}}, REDUCE(aux_sym_import_list_repeat1, 1), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 1), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), + [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [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 = false}}, SHIFT(3841), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), + [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [4875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4263), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [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(3726), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 1), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 1), + [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 1), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 1), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), + [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 90), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 90), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 112), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), + [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [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 = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 38), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 31), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 31), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 95), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 63), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 95), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5), - [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 63), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 95), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), - [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(617), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(417), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2291), - [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [5995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4656), - [5998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4116), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2475), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4656), - [6057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4116), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [6076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [6116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3317), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 108), - [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 108), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 42), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 76), - [6129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 76), - [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 114), - [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), - [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 87), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 134), - [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), - [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_definition, 5, .production_id = 132), - [6185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 84), - [6187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [6197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), - [6205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4366), - [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), - [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), - [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), - [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3450), - [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), - [6251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(458), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [6300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3525), - [6303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3525), - [6306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(217), - [6309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [6357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3492), - [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [6538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(426), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3627), - [6608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3627), - [6611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(230), - [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(64), - [6623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [6631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [6649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), - [6651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [6655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), - [6657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 133), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [6661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), - [6665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 86), - [6667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4564), - [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [6748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3284), - [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3008), - [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [6812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), - [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3), - [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [6840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2), - [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [6848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [6872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3451), - [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [6893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4316), - [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2905), - [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3648), - [6948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3619), - [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [7039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(390), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 57), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [7086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(392), - [7089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3906), - [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [7106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3633), - [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 57), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [7163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3329), - [7166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(607), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), - [7197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(3957), - [7200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [7244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(434), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), - [7265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(3987), - [7268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [7386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4371), - [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [7423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(327), - [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 41), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 42), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 43), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), - [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 54), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 75), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 116), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [7644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 77), - [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 78), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 107), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 24), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), - [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 35), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 91), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 92), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [7766] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 117), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 61), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 60), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), + [5972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(635), + [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(420), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2234), + [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(4518), + [6000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4353), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [6057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2484), + [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [6062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4518), + [6065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4353), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [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(3355), + [6107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 42), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [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_interface_method_definition, 2, .production_id = 87), + [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), + [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 114), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 132), + [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), + [6165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4282), + [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [6174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 134), + [6176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [6180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), + [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), + [6188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 84), + [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), + [6192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), + [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), + [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 113), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [6206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3481), + [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), + [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(885), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), + [6244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3769), + [6247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3769), + [6250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(291), + [6253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [6351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3773), + [6354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3773), + [6357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(217), + [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [6370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3543), + [6373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [6399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(412), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [6406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), + [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [6432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 133), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), + [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), + [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(63), + [6461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [6465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 86), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), + [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3486), + [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2), + [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2), + [6568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), + [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [6582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), + [6584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 1), + [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 1), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [6592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 1), + [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 1), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [6638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3035), + [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), + [6659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3175), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [6684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4600), + [6687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [6699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4224), + [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [6742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4240), + [6745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), + [6807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4245), + [6810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), + [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [6842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4151), + [6845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [6873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3350), + [6876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [6890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(428), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 57), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [6921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3918), + [6924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [6930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(377), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [6993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), + [7035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [7041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(662), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [7064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(442), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3674), + [7078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [7092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2945), + [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), + [7097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [7155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3641), + [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [7172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(404), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [7213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3688), + [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [7218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 57), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [7290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 78), + [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), + [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 77), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [7300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 75), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 107), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), + [7330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), + [7332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 116), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), + [7338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 54), + [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 43), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 42), + [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 41), + [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 24), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 117), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 60), + [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 61), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 1), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [7902] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 92), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 91), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 35), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), + [7996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), }; #ifdef __cplusplus